Replace outdated NLS support with GNU gettext (patch from
[platform/upstream/net-tools.git] / lib / inet6.c
1 /*
2  * lib/inet6.c  This file contains an implementation of the "INET6"
3  *              support functions for the net-tools.
4  *              (most of it copied from lib/inet.c 1.26).
5  *
6  * Version:     lib/inet6.c 0.02 1998-07-01
7  *
8  * Author:      Fred N. van Kempen, <waltje@uwalt.nl.mugnet.org>
9  *              Copyright 1993 MicroWalt Corporation
10  *
11  * Modified:
12  *960808 {0.01} Frank Strauss :         adapted for IPv6 support
13  *980701 {0.02} Arnaldo C. Melo:        GNU gettext instead of catgets
14  *
15  *              This program is free software; you can redistribute it
16  *              and/or  modify it under  the terms of  the GNU General
17  *              Public  License as  published  by  the  Free  Software
18  *              Foundation;  either  version 2 of the License, or  (at
19  *              your option) any later version.
20  */
21 #include "config.h"
22
23 #if HAVE_AFINET6
24 #include <asm/types.h>
25 #include <sys/types.h>
26 #include <sys/socket.h>
27 #include <netinet/in.h>
28 #include <arpa/inet.h>
29 #include <arpa/nameser.h>
30 #include <ctype.h>
31 #include <errno.h>
32 #include <netdb.h>
33 #include <resolv.h>
34 #include <stdlib.h>
35 #include <string.h>
36 #include <stdio.h>
37 #include <unistd.h>
38 #include "version.h"
39 #include "net-support.h"
40 #include "pathnames.h"
41 #include "intl.h"
42
43 extern int h_errno;  /* some netdb.h versions don't export this */
44
45 static int
46 INET6_resolve(char *name, struct sockaddr_in6 *sin6)
47 {
48   struct addrinfo req, *ai; 
49   int s; 
50
51   req.ai_family = AF_INET6;
52   if ((s = getaddrinfo(name, NULL, &req, &ai))) {
53     fprintf(stderr, "getaddrinfo: %s: %s\n", name, gai_strerror(s));
54     return -1;
55   }
56
57   memcpy(sin6, ai->ai_addr, sizeof(struct sockaddr_in6));
58
59   freeaddrinfo(ai);
60
61   return(0);
62 }
63
64
65 static int
66 INET6_rresolve(char *name, struct sockaddr_in6 *sin6, int numeric)
67 {
68   int s;
69
70   /* Grmpf. -FvK */
71   if (sin6->sin6_family != AF_INET6) {
72 #ifdef DEBUG
73         fprintf(stderr, _("rresolve: unsupport address family %d !\n"),
74                                                         sin6->sin6_family);
75 #endif
76         errno = EAFNOSUPPORT;
77         return(-1);
78   }
79
80   if (numeric & 0x7FFF) {
81         inet_ntop(AF_INET6, &sin6->sin6_addr, name, 80);
82         return(0);
83   }
84
85   if ((s = getnameinfo((struct sockaddr *)sin6, sizeof(struct sockaddr_in6),
86                       name, 255 /* !! */, NULL, 0, 0))) {
87     fprintf(stderr, "getnameinfo: %s\n", gai_strerror(s));
88     return -1;
89   }
90
91   return(0);
92 }
93
94
95 static void
96 INET6_reserror(char *text)
97 {
98   herror(text);
99 }
100
101
102 /* Display an Internet socket address. */
103 static char *
104 INET6_print(unsigned char *ptr)
105 {
106   static char name[80];
107
108   inet_ntop(AF_INET6, (struct in6_addr *)ptr, name, 80);
109   return name;
110 }
111
112
113 /* Display an Internet socket address. */
114 /* dirty! struct sockaddr usually doesn't suffer for inet6 addresses, fst. */
115 static char *
116 INET6_sprint(struct sockaddr *sap, int numeric)
117 {
118   static char buff[128];
119
120   if (sap->sa_family == 0xFFFF || sap->sa_family == 0)
121         return strncpy (buff, _("[NONE SET]"), sizeof (buff));
122   if (INET6_rresolve(buff, (struct sockaddr_in6 *) sap, numeric) != 0)
123                                                         return(NULL);
124   return(buff);
125 }
126
127
128 static int
129 INET6_getsock(char *bufp, struct sockaddr *sap)
130 {
131   struct sockaddr_in6 *sin6;
132   
133   sin6              = (struct sockaddr_in6 *) sap;
134   sin6->sin6_family = AF_INET6;
135   sin6->sin6_port   = 0;
136
137   if (inet_pton(AF_INET6, bufp, sin6->sin6_addr.s6_addr) <= 0)
138     return(-1);
139
140   return 16; /* ?;) */
141 }
142
143 static int
144 INET6_input(int type, char *bufp, struct sockaddr *sap)
145 {
146   switch(type) {
147         case 1:
148                 return(INET6_getsock(bufp, sap));
149         default:
150                 return(INET6_resolve(bufp, (struct sockaddr_in6 *) sap));
151   }
152 }
153
154
155 struct aftype inet6_aftype = {
156   "inet6",      NULL, /*"IPv6",*/       AF_INET6,       sizeof(struct in6_addr),
157   INET6_print,  INET6_sprint,           INET6_input,    INET6_reserror, 
158   INET6_rprint, INET6_rinput
159 };
160
161
162 #endif  /* HAVE_AFINET6 */