2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2002-11-10 07:03:55 +05:30
|
|
|
/*
|
|
|
|
* ll_proto.c
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
|
|
|
|
*/
|
|
|
|
|
2006-06-19 01:50:07 +05:30
|
|
|
#include "libbb.h"
|
2006-04-03 02:44:19 +05:30
|
|
|
#include "rt_names.h"
|
2002-11-10 07:03:55 +05:30
|
|
|
#include "utils.h"
|
|
|
|
|
2006-12-19 03:19:06 +05:30
|
|
|
#if defined(__GLIBC__) && __GLIBC__ >=2 && __GLIBC_MINOR__ >= 1
|
2003-07-14 14:19:43 +05:30
|
|
|
#include <net/ethernet.h>
|
|
|
|
#else
|
|
|
|
#include <linux/if_ether.h>
|
|
|
|
#endif
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2008-09-06 19:44:01 +05:30
|
|
|
#if !ENABLE_WERROR
|
2008-09-04 18:52:58 +05:30
|
|
|
#warning de-bloat
|
2008-09-06 19:44:01 +05:30
|
|
|
#endif
|
2007-10-30 01:03:26 +05:30
|
|
|
/* Before re-enabling this, please (1) conditionalize exotic protocols
|
|
|
|
* on CONFIG_something, and (2) decouple strings and numbers
|
|
|
|
* (use llproto_ids[] = n,n,n..; and llproto_names[] = "loop\0" "pup\0" ...;)
|
|
|
|
*/
|
|
|
|
|
2002-11-10 07:03:55 +05:30
|
|
|
#define __PF(f,n) { ETH_P_##f, #n },
|
|
|
|
static struct {
|
|
|
|
int id;
|
2007-01-30 05:13:52 +05:30
|
|
|
const char *name;
|
2002-11-10 07:03:55 +05:30
|
|
|
} llproto_names[] = {
|
|
|
|
__PF(LOOP,loop)
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(PUP,pup)
|
2002-11-10 07:03:55 +05:30
|
|
|
#ifdef ETH_P_PUPAT
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(PUPAT,pupat)
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
|
|
|
__PF(IP,ip)
|
|
|
|
__PF(X25,x25)
|
|
|
|
__PF(ARP,arp)
|
|
|
|
__PF(BPQ,bpq)
|
|
|
|
#ifdef ETH_P_IEEEPUP
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(IEEEPUP,ieeepup)
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
|
|
|
#ifdef ETH_P_IEEEPUPAT
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(IEEEPUPAT,ieeepupat)
|
2002-11-10 07:03:55 +05:30
|
|
|
#endif
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(DEC,dec)
|
|
|
|
__PF(DNA_DL,dna_dl)
|
|
|
|
__PF(DNA_RC,dna_rc)
|
|
|
|
__PF(DNA_RT,dna_rt)
|
|
|
|
__PF(LAT,lat)
|
|
|
|
__PF(DIAG,diag)
|
|
|
|
__PF(CUST,cust)
|
|
|
|
__PF(SCA,sca)
|
|
|
|
__PF(RARP,rarp)
|
|
|
|
__PF(ATALK,atalk)
|
|
|
|
__PF(AARP,aarp)
|
|
|
|
__PF(IPX,ipx)
|
|
|
|
__PF(IPV6,ipv6)
|
2003-06-20 14:35:00 +05:30
|
|
|
#ifdef ETH_P_PPP_DISC
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(PPP_DISC,ppp_disc)
|
2003-06-20 14:35:00 +05:30
|
|
|
#endif
|
|
|
|
#ifdef ETH_P_PPP_SES
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(PPP_SES,ppp_ses)
|
2003-06-20 14:35:00 +05:30
|
|
|
#endif
|
|
|
|
#ifdef ETH_P_ATMMPOA
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(ATMMPOA,atmmpoa)
|
2003-06-20 14:35:00 +05:30
|
|
|
#endif
|
|
|
|
#ifdef ETH_P_ATMFATE
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(ATMFATE,atmfate)
|
2003-06-20 14:35:00 +05:30
|
|
|
#endif
|
2002-11-10 07:03:55 +05:30
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(802_3,802_3)
|
|
|
|
__PF(AX25,ax25)
|
|
|
|
__PF(ALL,all)
|
|
|
|
__PF(802_2,802_2)
|
|
|
|
__PF(SNAP,snap)
|
|
|
|
__PF(DDCMP,ddcmp)
|
|
|
|
__PF(WAN_PPP,wan_ppp)
|
|
|
|
__PF(PPP_MP,ppp_mp)
|
|
|
|
__PF(LOCALTALK,localtalk)
|
|
|
|
__PF(PPPTALK,ppptalk)
|
|
|
|
__PF(TR_802_2,tr_802_2)
|
|
|
|
__PF(MOBITEX,mobitex)
|
|
|
|
__PF(CONTROL,control)
|
|
|
|
__PF(IRDA,irda)
|
2003-06-20 14:35:00 +05:30
|
|
|
#ifdef ETH_P_ECONET
|
2004-03-15 13:59:22 +05:30
|
|
|
__PF(ECONET,econet)
|
2003-06-20 14:35:00 +05:30
|
|
|
#endif
|
2002-11-10 07:03:55 +05:30
|
|
|
|
|
|
|
{ 0x8100, "802.1Q" },
|
|
|
|
{ ETH_P_IP, "ipv4" },
|
|
|
|
};
|
|
|
|
#undef __PF
|
|
|
|
|
|
|
|
|
2007-10-30 01:03:26 +05:30
|
|
|
const char *ll_proto_n2a(unsigned short id, char *buf, int len)
|
2002-11-10 07:03:55 +05:30
|
|
|
{
|
2008-05-16 03:00:45 +05:30
|
|
|
unsigned i;
|
2002-11-10 07:03:55 +05:30
|
|
|
id = ntohs(id);
|
2008-02-16 18:48:17 +05:30
|
|
|
for (i = 0; i < ARRAY_SIZE(llproto_names); i++) {
|
2006-01-25 05:38:53 +05:30
|
|
|
if (llproto_names[i].id == id)
|
2002-11-10 07:03:55 +05:30
|
|
|
return llproto_names[i].name;
|
|
|
|
}
|
2006-01-25 05:38:53 +05:30
|
|
|
snprintf(buf, len, "[%d]", id);
|
|
|
|
return buf;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
int ll_proto_a2n(unsigned short *id, char *buf)
|
|
|
|
{
|
2008-05-16 03:00:45 +05:30
|
|
|
unsigned i;
|
2008-02-16 18:48:17 +05:30
|
|
|
for (i = 0; i < ARRAY_SIZE(llproto_names); i++) {
|
2006-01-25 05:38:53 +05:30
|
|
|
if (strcasecmp(llproto_names[i].name, buf) == 0) {
|
2009-03-05 14:51:57 +05:30
|
|
|
i = llproto_names[i].id;
|
|
|
|
goto good;
|
2002-11-10 07:03:55 +05:30
|
|
|
}
|
|
|
|
}
|
2009-03-05 14:51:57 +05:30
|
|
|
i = bb_strtou(buf, NULL, 0);
|
|
|
|
if (errno || i > 0xffff)
|
2002-11-10 07:03:55 +05:30
|
|
|
return -1;
|
2009-03-05 14:51:57 +05:30
|
|
|
good:
|
|
|
|
*id = htons(i);
|
2002-11-10 07:03:55 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2007-10-30 01:03:26 +05:30
|
|
|
|