"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 4 | * |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 5 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 6 | * |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 7 | * Changes: |
| 8 | * |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 9 | * Rani Assaf <rani@magic.metawire.com> 980929: resolve addresses |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
Rob Landley | ecae66a | 2006-06-02 20:53:38 +0000 | [diff] [blame] | 12 | #include "libbb.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 13 | #include "utils.h" |
"Vladimir N. Oleynik" | 007a011 | 2005-09-22 11:11:11 +0000 | [diff] [blame] | 14 | #include "inet_common.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 15 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 16 | unsigned get_unsigned(char *arg, const char *errmsg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 17 | { |
| 18 | unsigned long res; |
| 19 | char *ptr; |
| 20 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 21 | if (*arg) { |
| 22 | res = strtoul(arg, &ptr, 0); |
Denys Vlasenko | 1f27ab0 | 2009-09-23 17:17:53 +0200 | [diff] [blame] | 23 | //FIXME: "" will be accepted too, is it correct?! |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 24 | if (!*ptr && res <= UINT_MAX) { |
| 25 | return res; |
| 26 | } |
| 27 | } |
| 28 | invarg(arg, errmsg); /* does not return */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 29 | } |
| 30 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 31 | uint32_t get_u32(char *arg, const char *errmsg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 32 | { |
| 33 | unsigned long res; |
| 34 | char *ptr; |
| 35 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 36 | if (*arg) { |
| 37 | res = strtoul(arg, &ptr, 0); |
Denys Vlasenko | 1f27ab0 | 2009-09-23 17:17:53 +0200 | [diff] [blame] | 38 | //FIXME: "" will be accepted too, is it correct?! |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 39 | if (!*ptr && res <= 0xFFFFFFFFUL) { |
| 40 | return res; |
| 41 | } |
| 42 | } |
| 43 | invarg(arg, errmsg); /* does not return */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 44 | } |
| 45 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 46 | uint16_t get_u16(char *arg, const char *errmsg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 47 | { |
| 48 | unsigned long res; |
| 49 | char *ptr; |
| 50 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 51 | if (*arg) { |
| 52 | res = strtoul(arg, &ptr, 0); |
Denys Vlasenko | 1f27ab0 | 2009-09-23 17:17:53 +0200 | [diff] [blame] | 53 | //FIXME: "" will be accepted too, is it correct?! |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 54 | if (!*ptr && res <= 0xFFFF) { |
| 55 | return res; |
| 56 | } |
| 57 | } |
| 58 | invarg(arg, errmsg); /* does not return */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Denis Vlasenko | 787a492 | 2009-03-03 14:55:29 +0000 | [diff] [blame] | 61 | int get_addr_1(inet_prefix *addr, char *name, int family) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 62 | { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 63 | memset(addr, 0, sizeof(*addr)); |
| 64 | |
Denys Vlasenko | 0004e99 | 2010-09-01 12:01:17 +0200 | [diff] [blame] | 65 | if (strcmp(name, "default") == 0 |
Denis Vlasenko | 787a492 | 2009-03-03 14:55:29 +0000 | [diff] [blame] | 66 | || strcmp(name, "all") == 0 |
| 67 | || strcmp(name, "any") == 0 |
| 68 | ) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 69 | addr->family = family; |
| 70 | addr->bytelen = (family == AF_INET6 ? 16 : 4); |
| 71 | addr->bitlen = -1; |
| 72 | return 0; |
| 73 | } |
| 74 | |
| 75 | if (strchr(name, ':')) { |
| 76 | addr->family = AF_INET6; |
| 77 | if (family != AF_UNSPEC && family != AF_INET6) |
| 78 | return -1; |
| 79 | if (inet_pton(AF_INET6, name, addr->data) <= 0) |
| 80 | return -1; |
| 81 | addr->bytelen = 16; |
| 82 | addr->bitlen = -1; |
| 83 | return 0; |
| 84 | } |
| 85 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 86 | if (family != AF_UNSPEC && family != AF_INET) |
| 87 | return -1; |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 88 | |
| 89 | /* Try to parse it as IPv4 */ |
| 90 | addr->family = AF_INET; |
| 91 | #if 0 /* Doesn't handle e.g. "10.10", for example, "ip r l root 10.10/16" */ |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 92 | if (inet_pton(AF_INET, name, addr->data) <= 0) |
| 93 | return -1; |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 94 | #else |
| 95 | { |
| 96 | unsigned i = 0; |
| 97 | unsigned n = 0; |
| 98 | const char *cp = name - 1; |
| 99 | while (*++cp) { |
| 100 | if ((unsigned char)(*cp - '0') <= 9) { |
| 101 | n = 10 * n + (unsigned char)(*cp - '0'); |
| 102 | if (n >= 256) |
| 103 | return -1; |
| 104 | ((uint8_t*)addr->data)[i] = n; |
| 105 | continue; |
| 106 | } |
| 107 | if (*cp == '.' && ++i <= 3) { |
| 108 | n = 0; |
| 109 | continue; |
| 110 | } |
| 111 | return -1; |
| 112 | } |
| 113 | } |
| 114 | #endif |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 115 | addr->bytelen = 4; |
| 116 | addr->bitlen = -1; |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 117 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 118 | return 0; |
| 119 | } |
| 120 | |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 121 | static void get_prefix_1(inet_prefix *dst, char *arg, int family) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 122 | { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 123 | char *slash; |
| 124 | |
| 125 | memset(dst, 0, sizeof(*dst)); |
| 126 | |
Denys Vlasenko | 0004e99 | 2010-09-01 12:01:17 +0200 | [diff] [blame] | 127 | if (strcmp(arg, "default") == 0 |
Denis Vlasenko | 787a492 | 2009-03-03 14:55:29 +0000 | [diff] [blame] | 128 | || strcmp(arg, "all") == 0 |
| 129 | || strcmp(arg, "any") == 0 |
| 130 | ) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 131 | dst->family = family; |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 132 | /*dst->bytelen = 0; - done by memset */ |
| 133 | /*dst->bitlen = 0;*/ |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 134 | return; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | slash = strchr(arg, '/'); |
| 138 | if (slash) |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 139 | *slash = '\0'; |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 140 | |
| 141 | if (get_addr_1(dst, arg, family) == 0) { |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 142 | dst->bitlen = (dst->family == AF_INET6) ? 128 : 32; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 143 | if (slash) { |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 144 | unsigned plen; |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 145 | inet_prefix netmask_pfx; |
| 146 | |
| 147 | netmask_pfx.family = AF_UNSPEC; |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 148 | plen = bb_strtou(slash + 1, NULL, 0); |
| 149 | if ((errno || plen > dst->bitlen) |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 150 | && get_addr_1(&netmask_pfx, slash + 1, family) != 0 |
| 151 | ) { |
| 152 | goto bad; |
| 153 | } |
| 154 | if (netmask_pfx.family == AF_INET) { |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 155 | /* fill in prefix length of dotted quad */ |
| 156 | uint32_t mask = ntohl(netmask_pfx.data[0]); |
| 157 | uint32_t host = ~mask; |
| 158 | |
| 159 | /* a valid netmask must be 2^n - 1 */ |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 160 | if (host & (host + 1)) |
| 161 | goto bad; |
| 162 | |
| 163 | for (plen = 0; mask; mask <<= 1) |
| 164 | ++plen; |
| 165 | if (plen > dst->bitlen) |
| 166 | goto bad; |
| 167 | /* dst->flags |= PREFIXLEN_SPECIFIED; */ |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 168 | } |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 169 | dst->bitlen = plen; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 170 | } |
| 171 | } |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 172 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 173 | if (slash) |
| 174 | *slash = '/'; |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 175 | return; |
| 176 | bad: |
| 177 | bb_error_msg_and_die("an %s %s is expected rather than \"%s\"", "inet", "prefix", arg); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Denis Vlasenko | 787a492 | 2009-03-03 14:55:29 +0000 | [diff] [blame] | 180 | int get_addr(inet_prefix *dst, char *arg, int family) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 181 | { |
| 182 | if (family == AF_PACKET) { |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 183 | bb_error_msg_and_die("\"%s\" may be inet %s, but it is not allowed in this context", arg, "address"); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 184 | } |
| 185 | if (get_addr_1(dst, arg, family)) { |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 186 | bb_error_msg_and_die("an %s %s is expected rather than \"%s\"", "inet", "address", arg); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 187 | } |
| 188 | return 0; |
| 189 | } |
| 190 | |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 191 | void get_prefix(inet_prefix *dst, char *arg, int family) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 192 | { |
| 193 | if (family == AF_PACKET) { |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 194 | bb_error_msg_and_die("\"%s\" may be inet %s, but it is not allowed in this context", arg, "prefix"); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 195 | } |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 196 | get_prefix_1(dst, arg, family); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 197 | } |
| 198 | |
Denis Vlasenko | 98ee06d | 2006-12-31 18:57:37 +0000 | [diff] [blame] | 199 | uint32_t get_addr32(char *name) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 200 | { |
| 201 | inet_prefix addr; |
Glenn L McGrath | 50c00f4 | 2002-11-18 07:26:42 +0000 | [diff] [blame] | 202 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 203 | if (get_addr_1(&addr, name, AF_INET)) { |
Bernhard Reutner-Fischer | 8fbd8ac | 2008-10-21 12:42:45 +0000 | [diff] [blame] | 204 | bb_error_msg_and_die("an %s %s is expected rather than \"%s\"", "IP", "address", name); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 205 | } |
| 206 | return addr.data[0]; |
| 207 | } |
| 208 | |
Mike Frysinger | 4e5936e | 2005-04-16 04:30:38 +0000 | [diff] [blame] | 209 | void incomplete_command(void) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 210 | { |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 211 | bb_error_msg_and_die("command line is not complete, try option \"help\""); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 212 | } |
| 213 | |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 214 | void invarg(const char *arg, const char *opt) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 215 | { |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 216 | bb_error_msg_and_die(bb_msg_invalid_arg, arg, opt); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 217 | } |
| 218 | |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 219 | void duparg(const char *key, const char *arg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 220 | { |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 221 | bb_error_msg_and_die("duplicate \"%s\": \"%s\" is the second value", key, arg); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 222 | } |
| 223 | |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 224 | void duparg2(const char *key, const char *arg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 225 | { |
Denis Vlasenko | ab2aea4 | 2007-01-29 22:51:58 +0000 | [diff] [blame] | 226 | bb_error_msg_and_die("either \"%s\" is duplicate, or \"%s\" is garbage", key, arg); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 227 | } |
| 228 | |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 229 | int inet_addr_match(const inet_prefix *a, const inet_prefix *b, int bits) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 230 | { |
Denys Vlasenko | 3bb235c | 2011-02-23 01:20:44 +0100 | [diff] [blame] | 231 | const uint32_t *a1 = a->data; |
| 232 | const uint32_t *a2 = b->data; |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 233 | int words = bits >> 5; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 234 | |
| 235 | bits &= 0x1f; |
| 236 | |
| 237 | if (words) |
| 238 | if (memcmp(a1, a2, words << 2)) |
| 239 | return -1; |
| 240 | |
| 241 | if (bits) { |
Denis Vlasenko | 98ee06d | 2006-12-31 18:57:37 +0000 | [diff] [blame] | 242 | uint32_t w1, w2; |
| 243 | uint32_t mask; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 244 | |
| 245 | w1 = a1[words]; |
| 246 | w2 = a2[words]; |
| 247 | |
| 248 | mask = htonl((0xffffffff) << (0x20 - bits)); |
| 249 | |
| 250 | if ((w1 ^ w2) & mask) |
| 251 | return 1; |
| 252 | } |
| 253 | |
| 254 | return 0; |
| 255 | } |
| 256 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 257 | const char *rt_addr_n2a(int af, |
Bernhard Reutner-Fischer | 20f4000 | 2006-01-30 17:17:14 +0000 | [diff] [blame] | 258 | void *addr, char *buf, int buflen) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 259 | { |
| 260 | switch (af) { |
| 261 | case AF_INET: |
| 262 | case AF_INET6: |
| 263 | return inet_ntop(af, addr, buf, buflen); |
| 264 | default: |
| 265 | return "???"; |
| 266 | } |
| 267 | } |
| 268 | |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 269 | #ifdef RESOLVE_HOSTNAMES |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 270 | const char *format_host(int af, int len, void *addr, char *buf, int buflen) |
| 271 | { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 272 | if (resolve_hosts) { |
| 273 | struct hostent *h_ent; |
Glenn L McGrath | 50c00f4 | 2002-11-18 07:26:42 +0000 | [diff] [blame] | 274 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 275 | if (len <= 0) { |
| 276 | switch (af) { |
| 277 | case AF_INET: |
| 278 | len = 4; |
| 279 | break; |
| 280 | case AF_INET6: |
| 281 | len = 16; |
| 282 | break; |
Glenn L McGrath | 50c00f4 | 2002-11-18 07:26:42 +0000 | [diff] [blame] | 283 | default:; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 284 | } |
| 285 | } |
Denis Vlasenko | 8c1aaf3 | 2007-06-04 21:03:51 +0000 | [diff] [blame] | 286 | if (len > 0) { |
| 287 | h_ent = gethostbyaddr(addr, len, af); |
| 288 | if (h_ent != NULL) { |
| 289 | safe_strncpy(buf, h_ent->h_name, buflen); |
| 290 | return buf; |
| 291 | } |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 292 | } |
| 293 | } |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 294 | return rt_addr_n2a(af, addr, buf, buflen); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 295 | } |
Denis Vlasenko | 76140a7 | 2009-03-05 09:21:57 +0000 | [diff] [blame] | 296 | #endif |