"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 | /* |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 3 | * This program is free software; you can redistribute it and/or |
| 4 | * modify it under the terms of the GNU General Public License |
| 5 | * as published by the Free Software Foundation; either version |
| 6 | * 2 of the License, or (at your option) any later version. |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 8 | * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Denis Vlasenko | 9a7d38f | 2007-05-31 22:42:12 +0000 | [diff] [blame] | 11 | #include "libbb.h" |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 12 | #include "rt_names.h" |
| 13 | #include "utils.h" |
| 14 | |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame] | 15 | const char* FAST_FUNC rtnl_rtntype_n2a(int id, char *buf) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 16 | { |
| 17 | switch (id) { |
| 18 | case RTN_UNSPEC: |
| 19 | return "none"; |
| 20 | case RTN_UNICAST: |
| 21 | return "unicast"; |
| 22 | case RTN_LOCAL: |
| 23 | return "local"; |
| 24 | case RTN_BROADCAST: |
| 25 | return "broadcast"; |
| 26 | case RTN_ANYCAST: |
| 27 | return "anycast"; |
| 28 | case RTN_MULTICAST: |
| 29 | return "multicast"; |
| 30 | case RTN_BLACKHOLE: |
| 31 | return "blackhole"; |
| 32 | case RTN_UNREACHABLE: |
| 33 | return "unreachable"; |
| 34 | case RTN_PROHIBIT: |
| 35 | return "prohibit"; |
| 36 | case RTN_THROW: |
| 37 | return "throw"; |
| 38 | case RTN_NAT: |
| 39 | return "nat"; |
| 40 | case RTN_XRESOLVE: |
| 41 | return "xresolve"; |
| 42 | default: |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame] | 43 | /* buf is SPRINT_BSIZE big */ |
| 44 | sprintf(buf, "%d", id); |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 45 | return buf; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame] | 50 | int FAST_FUNC rtnl_rtntype_a2n(int *id, char *arg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 51 | { |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 52 | static const char keywords[] ALIGN1 = |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 53 | "local\0""nat\0""broadcast\0""brd\0""anycast\0" |
| 54 | "multicast\0""prohibit\0""unreachable\0""blackhole\0" |
| 55 | "xresolve\0""unicast\0""throw\0"; |
| 56 | enum { |
| 57 | ARG_local = 1, ARG_nat, ARG_broadcast, ARG_brd, ARG_anycast, |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 58 | ARG_multicast, ARG_prohibit, ARG_unreachable, ARG_blackhole, |
| 59 | ARG_xresolve, ARG_unicast, ARG_throw |
| 60 | }; |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 61 | const smalluint key = index_in_substrings(keywords, arg) + 1; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 62 | char *end; |
| 63 | unsigned long res; |
| 64 | |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 65 | if (key == ARG_local) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 66 | res = RTN_LOCAL; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 67 | else if (key == ARG_nat) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 68 | res = RTN_NAT; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 69 | else if (key == ARG_broadcast || key == ARG_brd) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 70 | res = RTN_BROADCAST; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 71 | else if (key == ARG_anycast) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 72 | res = RTN_ANYCAST; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 73 | else if (key == ARG_multicast) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 74 | res = RTN_MULTICAST; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 75 | else if (key == ARG_prohibit) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 76 | res = RTN_PROHIBIT; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 77 | else if (key == ARG_unreachable) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 78 | res = RTN_UNREACHABLE; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 79 | else if (key == ARG_blackhole) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 80 | res = RTN_BLACKHOLE; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 81 | else if (key == ARG_xresolve) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 82 | res = RTN_XRESOLVE; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 83 | else if (key == ARG_unicast) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 84 | res = RTN_UNICAST; |
Bernhard Reutner-Fischer | 789b87e | 2007-06-21 10:20:13 +0000 | [diff] [blame] | 85 | else if (key == ARG_throw) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 86 | res = RTN_THROW; |
| 87 | else { |
| 88 | res = strtoul(arg, &end, 0); |
Denys Vlasenko | 1f27ab0 | 2009-09-23 17:17:53 +0200 | [diff] [blame] | 89 | if (end == arg || *end || res > 255) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 90 | return -1; |
| 91 | } |
| 92 | *id = res; |
| 93 | return 0; |
| 94 | } |
| 95 | |
Denys Vlasenko | d31575a | 2009-10-13 17:58:24 +0200 | [diff] [blame] | 96 | int FAST_FUNC get_rt_realms(uint32_t *realms, char *arg) |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 97 | { |
Denis Vlasenko | 98ee06d | 2006-12-31 18:57:37 +0000 | [diff] [blame] | 98 | uint32_t realm = 0; |
Glenn L McGrath | 9a2d272 | 2002-11-10 01:33:55 +0000 | [diff] [blame] | 99 | char *p = strchr(arg, '/'); |
| 100 | |
| 101 | *realms = 0; |
| 102 | if (p) { |
| 103 | *p = 0; |
| 104 | if (rtnl_rtrealm_a2n(realms, arg)) { |
| 105 | *p = '/'; |
| 106 | return -1; |
| 107 | } |
| 108 | *realms <<= 16; |
| 109 | *p = '/'; |
| 110 | arg = p+1; |
| 111 | } |
| 112 | if (*arg && rtnl_rtrealm_a2n(&realm, arg)) |
| 113 | return -1; |
| 114 | *realms |= realm; |
| 115 | return 0; |
| 116 | } |