blob: f59831cc190f0aca46a054f9b653fae983510d06 [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
Denys Vlasenkod31575a2009-10-13 17:58:24 +020020const char* FAST_FUNC ll_addr_n2a(unsigned char *addr, int alen, int type, char *buf, int blen)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000021{
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 Vlasenkod31575a2009-10-13 17:58:24 +020030 for (i = 0; i < alen; i++) {
31 if (i == 0) {
32 snprintf(buf + l, blen, ":%02x"+1, addr[i]);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000033 blen -= 2;
34 l += 2;
35 } else {
Denys Vlasenkod31575a2009-10-13 17:58:24 +020036 snprintf(buf + l, blen, ":%02x", addr[i]);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000037 blen -= 3;
38 l += 3;
39 }
40 }
41 return buf;
42}
43
Denys Vlasenkod31575a2009-10-13 17:58:24 +020044int FAST_FUNC ll_addr_a2n(unsigned char *lladdr, int len, char *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000045{
Denis Vlasenkoefb545b2008-12-08 22:56:18 +000046 int i;
47
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000048 if (strchr(arg, '.')) {
49 inet_prefix pfx;
50 if (get_addr_1(&pfx, arg, AF_INET)) {
Denis Vlasenkod3d004d2006-10-27 09:02:31 +000051 bb_error_msg("\"%s\" is invalid lladdr", arg);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000052 return -1;
53 }
Glenn L McGrath1b0813a2002-11-28 12:39:19 +000054 if (len < 4) {
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000055 return -1;
Glenn L McGrath1b0813a2002-11-28 12:39:19 +000056 }
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000057 memcpy(lladdr, pfx.data, 4);
58 return 4;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000059 }
Denis Vlasenkoefb545b2008-12-08 22:56:18 +000060
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 McGrath9a2d2722002-11-10 01:33:55 +000079}