"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 | /* |
| 3 | * ll_addr.c |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License |
| 7 | * as published by the Free Software Foundation; either version |
| 8 | * 2 of the License, or (at your option) any later version. |
| 9 | * |
| 10 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
| 11 | */ |
| 12 | |
Eric Andersen | ab4e19a | 2003-01-14 08:54:08 +0000 | [diff] [blame] | 13 | #include <net/if_arp.h> |
Bernhard Reutner-Fischer | 9a67ca3 | 2006-04-02 21:14:19 +0000 | [diff] [blame] | 14 | |
Denis Vlasenko | 9a7d38f | 2007-05-31 22:42:12 +0000 | [diff] [blame] | 15 | #include "libbb.h" |
Bernhard Reutner-Fischer | 9a67ca3 | 2006-04-02 21:14:19 +0000 | [diff] [blame] | 16 | #include "rt_names.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 17 | #include "utils.h" |
Bernhard Reutner-Fischer | 9a67ca3 | 2006-04-02 21:14:19 +0000 | [diff] [blame] | 18 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 19 | |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame^] | 20 | const char* FAST_FUNC ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 21 | { |
| 22 | int i; |
| 23 | int l; |
| 24 | |
| 25 | if (alen == 4 && |
| 26 | (type == ARPHRD_TUNNEL || type == ARPHRD_SIT || type == ARPHRD_IPGRE)) { |
| 27 | return inet_ntop(AF_INET, addr, buf, blen); |
| 28 | } |
| 29 | l = 0; |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame^] | 30 | for (i = 0; i < alen; i++) { |
| 31 | if (i == 0) { |
| 32 | snprintf(buf + l, blen, ":%02x"+1, addr[i]); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 33 | blen -= 2; |
| 34 | l += 2; |
| 35 | } else { |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame^] | 36 | snprintf(buf + l, blen, ":%02x", addr[i]); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 37 | blen -= 3; |
| 38 | l += 3; |
| 39 | } |
| 40 | } |
| 41 | return buf; |
| 42 | } |
| 43 | |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame^] | 44 | int FAST_FUNC ll_addr_a2n(unsigned char *lladdr, int len, char *arg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 45 | { |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 46 | int i; |
| 47 | |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 48 | if (strchr(arg, '.')) { |
| 49 | inet_prefix pfx; |
| 50 | if (get_addr_1(&pfx, arg, AF_INET)) { |
Denis Vlasenko | d3d004d | 2006-10-27 09:02:31 +0000 | [diff] [blame] | 51 | bb_error_msg("\"%s\" is invalid lladdr", arg); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 52 | return -1; |
| 53 | } |
Glenn L McGrath | 1b0813a | 2002-11-28 12:39:19 +0000 | [diff] [blame] | 54 | if (len < 4) { |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 55 | return -1; |
Glenn L McGrath | 1b0813a | 2002-11-28 12:39:19 +0000 | [diff] [blame] | 56 | } |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 57 | memcpy(lladdr, pfx.data, 4); |
| 58 | return 4; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 59 | } |
Denis Vlasenko | efb545b | 2008-12-08 22:56:18 +0000 | [diff] [blame] | 60 | |
| 61 | for (i = 0; i < len; i++) { |
| 62 | int temp; |
| 63 | char *cp = strchr(arg, ':'); |
| 64 | if (cp) { |
| 65 | *cp = 0; |
| 66 | cp++; |
| 67 | } |
| 68 | if (sscanf(arg, "%x", &temp) != 1 || (temp < 0 || temp > 255)) { |
| 69 | bb_error_msg("\"%s\" is invalid lladdr", arg); |
| 70 | return -1; |
| 71 | } |
| 72 | lladdr[i] = temp; |
| 73 | if (!cp) { |
| 74 | break; |
| 75 | } |
| 76 | arg = cp; |
| 77 | } |
| 78 | return i+1; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 79 | } |