applets
applets_sh
arch
archival
configs
console-tools
coreutils
debianutils
docs
e2fsprogs
editors
examples
findutils
include
init
klibc-utils
libbb
libpwdgrp
loginutils
mailutils
miscutils
modutils
networking
libiproute
Kbuild.src
ip_common.h
ip_parse_common_args.c
ipaddress.c
iplink.c
ipneigh.c
iproute.c
iprule.c
iptunnel.c
libnetlink.c
libnetlink.h
ll_addr.c
ll_map.c
ll_map.h
ll_proto.c
ll_types.c
rt_names.c
rt_names.h
rtm_map.c
rtm_map.h
utils.c
utils.h
ssl_helper
ssl_helper-wolfssl
udhcp
Config.src
Kbuild.src
arp.c
arping.c
brctl.c
dnsd.c
ether-wake.c
ftpd.c
ftpgetput.c
hostname.c
httpd.c
httpd_helpers.sh
httpd_indexcgi.c
httpd_post_upload.cgi
httpd_ssi.c
ifconfig.c
ifenslave.c
ifplugd.c
ifupdown.c
inetd.c
interface.c
ip.c
ipcalc.c
isrv.c
isrv.h
isrv_identd.c
nameif.c
nbd-client.c
nc.c
nc_bloaty.c
netstat.c
nslookup.c
ntpd.c
ntpd.diff
ping.c
pscan.c
route.c
slattach.c
ssl_client.c
tc.c
tcpudp.c
tcpudp_perhost.c
tcpudp_perhost.h
telnet.c
telnetd.IAC_test.sh
telnetd.c
telnetd.ctrlSQ.patch
tftp.c
tls.c
tls.h
tls_aes.c
tls_aes.h
tls_pstm.c
tls_pstm.h
tls_pstm_montgomery_reduce.c
tls_pstm_mul_comba.c
tls_pstm_sqr_comba.c
tls_rsa.c
tls_rsa.h
tls_symmetric.h
traceroute.c
tunctl.c
vconfig.c
wget.c
whois.c
zcip.c
printutils
procps
qemu_multiarch_testing
runit
scripts
selinux
shell
sysklogd
testsuite
util-linux
.gitignore
.indent.pro
AUTHORS
Config.in
INSTALL
LICENSE
Makefile
Makefile.custom
Makefile.flags
Makefile.help
NOFORK_NOEXEC.lst
README
TODO
TODO_unicode
make_single_applets.sh
size_single_applets.sh
function old new delta rtnl_rtprot_a2n 31 88 +57 print_tunnel 647 640 -7 print_route 1865 1858 -7 print_linkinfo 820 812 -8 print_addrinfo 1241 1227 -14 rtnl_rttable_n2a 53 38 -15 rtnl_rtscope_n2a 53 38 -15 rtnl_rtrealm_n2a 53 38 -15 rtnl_dsfield_n2a 61 38 -23 rtnl_rtntype_n2a 118 89 -29 print_rule 724 689 -35 ipaddr_list_or_flush 1293 1253 -40 rtnl_rtprot_n2a 53 - -53 rtnl_rtprot_initialize 63 - -63 ------------------------------------------------------------------------------ (add/remove: 0/2 grow/shrink: 1/11 up/down: 57/-324) Total: -267 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
115 lines
2.5 KiB
C
115 lines
2.5 KiB
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* 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>
|
|
*/
|
|
|
|
#include "libbb.h"
|
|
#include "rt_names.h"
|
|
#include "utils.h"
|
|
|
|
const char* FAST_FUNC rtnl_rtntype_n2a(int id)
|
|
{
|
|
switch (id) {
|
|
case RTN_UNSPEC:
|
|
return "none";
|
|
case RTN_UNICAST:
|
|
return "unicast";
|
|
case RTN_LOCAL:
|
|
return "local";
|
|
case RTN_BROADCAST:
|
|
return "broadcast";
|
|
case RTN_ANYCAST:
|
|
return "anycast";
|
|
case RTN_MULTICAST:
|
|
return "multicast";
|
|
case RTN_BLACKHOLE:
|
|
return "blackhole";
|
|
case RTN_UNREACHABLE:
|
|
return "unreachable";
|
|
case RTN_PROHIBIT:
|
|
return "prohibit";
|
|
case RTN_THROW:
|
|
return "throw";
|
|
case RTN_NAT:
|
|
return "nat";
|
|
case RTN_XRESOLVE:
|
|
return "xresolve";
|
|
default:
|
|
return itoa(id);
|
|
}
|
|
}
|
|
|
|
|
|
int FAST_FUNC rtnl_rtntype_a2n(int *id, char *arg)
|
|
{
|
|
static const char keywords[] ALIGN1 =
|
|
"local\0""nat\0""broadcast\0""brd\0""anycast\0"
|
|
"multicast\0""prohibit\0""unreachable\0""blackhole\0"
|
|
"xresolve\0""unicast\0""throw\0";
|
|
enum {
|
|
ARG_local = 1, ARG_nat, ARG_broadcast, ARG_brd, ARG_anycast,
|
|
ARG_multicast, ARG_prohibit, ARG_unreachable, ARG_blackhole,
|
|
ARG_xresolve, ARG_unicast, ARG_throw
|
|
};
|
|
const smalluint key = index_in_substrings(keywords, arg) + 1;
|
|
char *end;
|
|
unsigned long res;
|
|
|
|
if (key == ARG_local)
|
|
res = RTN_LOCAL;
|
|
else if (key == ARG_nat)
|
|
res = RTN_NAT;
|
|
else if (key == ARG_broadcast || key == ARG_brd)
|
|
res = RTN_BROADCAST;
|
|
else if (key == ARG_anycast)
|
|
res = RTN_ANYCAST;
|
|
else if (key == ARG_multicast)
|
|
res = RTN_MULTICAST;
|
|
else if (key == ARG_prohibit)
|
|
res = RTN_PROHIBIT;
|
|
else if (key == ARG_unreachable)
|
|
res = RTN_UNREACHABLE;
|
|
else if (key == ARG_blackhole)
|
|
res = RTN_BLACKHOLE;
|
|
else if (key == ARG_xresolve)
|
|
res = RTN_XRESOLVE;
|
|
else if (key == ARG_unicast)
|
|
res = RTN_UNICAST;
|
|
else if (key == ARG_throw)
|
|
res = RTN_THROW;
|
|
else {
|
|
res = strtoul(arg, &end, 0);
|
|
if (end == arg || *end || res > 255)
|
|
return -1;
|
|
}
|
|
*id = res;
|
|
return 0;
|
|
}
|
|
|
|
int FAST_FUNC get_rt_realms(uint32_t *realms, char *arg)
|
|
{
|
|
uint32_t realm = 0;
|
|
char *p = strchr(arg, '/');
|
|
|
|
*realms = 0;
|
|
if (p) {
|
|
*p = 0;
|
|
if (rtnl_rtrealm_a2n(realms, arg)) {
|
|
*p = '/';
|
|
return -1;
|
|
}
|
|
*realms <<= 16;
|
|
*p = '/';
|
|
arg = p+1;
|
|
}
|
|
if (*arg && rtnl_rtrealm_a2n(&realm, arg))
|
|
return -1;
|
|
*realms |= realm;
|
|
return 0;
|
|
}
|