blob: e732efdb2c55902e72e8b8dd9e5d3b6369e56c2e [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00002/*
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 Andersenab4e19a2003-01-14 08:54:08 +000013#include <net/if_arp.h>
Bernhard Reutner-Fischer9a67ca32006-04-02 21:14:19 +000014
Denis Vlasenko9a7d38f2007-05-31 22:42:12 +000015#include "libbb.h"
Bernhard Reutner-Fischer9a67ca32006-04-02 21:14:19 +000016#include "rt_names.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000017#include "utils.h"
Bernhard Reutner-Fischer9a67ca32006-04-02 21:14:19 +000018
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000019
20const char *ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen)
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;
30 for (i=0; i<alen; i++) {
31 if (i==0) {
Denis Vlasenko3a34d0c2007-01-12 22:10:34 +000032 snprintf(buf+l, blen, ":%02x"+1, addr[i]);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000033 blen -= 2;
34 l += 2;
35 } else {
36 snprintf(buf+l, blen, ":%02x", addr[i]);
37 blen -= 3;
38 l += 3;
39 }
40 }
41 return buf;
42}
43
44int ll_addr_a2n(unsigned char *lladdr, int len, char *arg)
45{
46 if (strchr(arg, '.')) {
47 inet_prefix pfx;
48 if (get_addr_1(&pfx, arg, AF_INET)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +000049 bb_error_msg("\"%s\" is invalid lladdr", arg);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000050 return -1;
51 }
Glenn L McGrath1b0813a2002-11-28 12:39:19 +000052 if (len < 4) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000053 return -1;
Glenn L McGrath1b0813a2002-11-28 12:39:19 +000054 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000055 memcpy(lladdr, pfx.data, 4);
56 return 4;
57 } else {
58 int i;
59
60 for (i=0; i<len; i++) {
61 int temp;
62 char *cp = strchr(arg, ':');
63 if (cp) {
64 *cp = 0;
65 cp++;
66 }
Bernhard Reutner-Fischerb8635e22008-05-16 16:55:17 +000067 if (sscanf(arg, "%x", &temp) != 1 || (temp < 0 || temp > 255)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +000068 bb_error_msg("\"%s\" is invalid lladdr", arg);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000069 return -1;
70 }
71 lladdr[i] = temp;
Glenn L McGrath1b0813a2002-11-28 12:39:19 +000072 if (!cp) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000073 break;
Glenn L McGrath1b0813a2002-11-28 12:39:19 +000074 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000075 arg = cp;
76 }
77 return i+1;
78 }
79}