blob: c474ab903e258f1b3b7d79c79270068a6982c4f1 [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/*
Denys Vlasenkofb132e42010-10-29 11:46:52 +02003 * 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 McGrath9a2d2722002-11-10 01:33:55 +00007 *
Denys Vlasenkofb132e42010-10-29 11:46:52 +02008 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>
Glenn L McGrath9a2d2722002-11-10 01:33:55 +00009 */
Denis Vlasenkod1a302b2006-12-31 20:40:20 +000010#include "libbb.h"
Bernhard Reutner-Fischer1d62d3b2005-10-08 20:47:15 +000011#include "rt_names.h"
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000012
Denys Vlasenko94466b82009-10-13 16:27:11 +020013typedef struct rtnl_tab_t {
14 const char *cached_str;
15 unsigned cached_result;
16 const char *tab[256];
17} rtnl_tab_t;
18
19static void rtnl_tab_initialize(const char *file, const char **tab)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000020{
Denis Vlasenko0f99d492008-07-24 23:38:04 +000021 char *token[2];
22 parser_t *parser = config_open2(file, fopen_for_read);
Denys Vlasenko94466b82009-10-13 16:27:11 +020023
Denis Vlasenko084266e2008-07-26 23:08:31 +000024 while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL)) {
Denys Vlasenko94466b82009-10-13 16:27:11 +020025 unsigned id = bb_strtou(token[0], NULL, 0);
26 if (id > 256) {
Denis Vlasenko0f99d492008-07-24 23:38:04 +000027 bb_error_msg("database %s is corrupted at line %d",
28 file, parser->lineno);
29 break;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000030 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +000031 tab[id] = xstrdup(token[1]);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000032 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +000033 config_close(parser);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000034}
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000035
Denys Vlasenko94466b82009-10-13 16:27:11 +020036static int rtnl_a2n(rtnl_tab_t *tab, uint32_t *id, const char *arg, int base)
37{
38 unsigned i;
39
40 if (tab->cached_str && strcmp(tab->cached_str, arg) == 0) {
41 *id = tab->cached_result;
42 return 0;
43 }
44
45 for (i = 0; i < 256; i++) {
46 if (tab->tab[i]
47 && strcmp(tab->tab[i], arg) == 0
48 ) {
49 tab->cached_str = tab->tab[i];
50 tab->cached_result = i;
51 *id = i;
52 return 0;
53 }
54 }
55
56 i = bb_strtou(arg, NULL, base);
57 if (i > 255)
58 return -1;
59 *id = i;
60 return 0;
61}
62
63
64static rtnl_tab_t *rtnl_rtprot_tab;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000065
66static void rtnl_rtprot_initialize(void)
67{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +000068 static const char *const init_tab[] = {
69 "none",
70 "redirect",
71 "kernel",
72 "boot",
73 "static",
74 NULL,
75 NULL,
76 NULL,
77 "gated",
78 "ra",
79 "mrt",
80 "zebra",
81 "bird",
82 };
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000083
Denys Vlasenko94466b82009-10-13 16:27:11 +020084 if (rtnl_rtprot_tab)
85 return;
86 rtnl_rtprot_tab = xzalloc(sizeof(*rtnl_rtprot_tab));
87 memcpy(rtnl_rtprot_tab->tab, init_tab, sizeof(init_tab));
88 rtnl_tab_initialize("/etc/iproute2/rt_protos", rtnl_rtprot_tab->tab);
89}
Denis Vlasenkod1a302b2006-12-31 20:40:20 +000090
Denys Vlasenkod31575a2009-10-13 17:58:24 +020091const char* FAST_FUNC rtnl_rtprot_n2a(int id, char *buf)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000092{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +000093 if (id < 0 || id >= 256) {
Denys Vlasenkod31575a2009-10-13 17:58:24 +020094 sprintf(buf, "%d", id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +000095 return buf;
96 }
Denis Vlasenkod1a302b2006-12-31 20:40:20 +000097
98 rtnl_rtprot_initialize();
99
Denys Vlasenko94466b82009-10-13 16:27:11 +0200100 if (rtnl_rtprot_tab->tab[id])
101 return rtnl_rtprot_tab->tab[id];
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200102 /* buf is SPRINT_BSIZE big */
103 sprintf(buf, "%d", id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000104 return buf;
105}
106
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200107int FAST_FUNC rtnl_rtprot_a2n(uint32_t *id, char *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000108{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000109 rtnl_rtprot_initialize();
Denys Vlasenko94466b82009-10-13 16:27:11 +0200110 return rtnl_a2n(rtnl_rtprot_tab, id, arg, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000111}
112
113
Denys Vlasenko94466b82009-10-13 16:27:11 +0200114static rtnl_tab_t *rtnl_rtscope_tab;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000115
116static void rtnl_rtscope_initialize(void)
117{
Denys Vlasenko94466b82009-10-13 16:27:11 +0200118 if (rtnl_rtscope_tab)
119 return;
120 rtnl_rtscope_tab = xzalloc(sizeof(*rtnl_rtscope_tab));
121 rtnl_rtscope_tab->tab[0] = "global";
122 rtnl_rtscope_tab->tab[255] = "nowhere";
123 rtnl_rtscope_tab->tab[254] = "host";
124 rtnl_rtscope_tab->tab[253] = "link";
125 rtnl_rtscope_tab->tab[200] = "site";
126 rtnl_tab_initialize("/etc/iproute2/rt_scopes", rtnl_rtscope_tab->tab);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000127}
128
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200129const char* FAST_FUNC rtnl_rtscope_n2a(int id, char *buf)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000130{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000131 if (id < 0 || id >= 256) {
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200132 sprintf(buf, "%d", id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000133 return buf;
134 }
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000135
136 rtnl_rtscope_initialize();
137
Denys Vlasenko94466b82009-10-13 16:27:11 +0200138 if (rtnl_rtscope_tab->tab[id])
139 return rtnl_rtscope_tab->tab[id];
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200140 /* buf is SPRINT_BSIZE big */
141 sprintf(buf, "%d", id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000142 return buf;
143}
144
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200145int FAST_FUNC rtnl_rtscope_a2n(uint32_t *id, char *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000146{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000147 rtnl_rtscope_initialize();
Denys Vlasenko94466b82009-10-13 16:27:11 +0200148 return rtnl_a2n(rtnl_rtscope_tab, id, arg, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000149}
150
151
Denys Vlasenko94466b82009-10-13 16:27:11 +0200152static rtnl_tab_t *rtnl_rtrealm_tab;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000153
154static void rtnl_rtrealm_initialize(void)
155{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000156 if (rtnl_rtrealm_tab) return;
Denys Vlasenko94466b82009-10-13 16:27:11 +0200157 rtnl_rtrealm_tab = xzalloc(sizeof(*rtnl_rtrealm_tab));
158 rtnl_rtrealm_tab->tab[0] = "unknown";
159 rtnl_tab_initialize("/etc/iproute2/rt_realms", rtnl_rtrealm_tab->tab);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000160}
161
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200162int FAST_FUNC rtnl_rtrealm_a2n(uint32_t *id, char *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000163{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000164 rtnl_rtrealm_initialize();
Denys Vlasenko94466b82009-10-13 16:27:11 +0200165 return rtnl_a2n(rtnl_rtrealm_tab, id, arg, 0);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000166}
167
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000168#if ENABLE_FEATURE_IP_RULE
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200169const char* FAST_FUNC rtnl_rtrealm_n2a(int id, char *buf)
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000170{
Denis Vlasenkoe27f1562007-01-01 06:00:38 +0000171 if (id < 0 || id >= 256) {
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200172 sprintf(buf, "%d", id);
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000173 return buf;
174 }
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000175
176 rtnl_rtrealm_initialize();
177
Denys Vlasenko94466b82009-10-13 16:27:11 +0200178 if (rtnl_rtrealm_tab->tab[id])
179 return rtnl_rtrealm_tab->tab[id];
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200180 /* buf is SPRINT_BSIZE big */
181 sprintf(buf, "%d", id);
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000182 return buf;
183}
184#endif
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000185
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000186
Denys Vlasenko94466b82009-10-13 16:27:11 +0200187static rtnl_tab_t *rtnl_rtdsfield_tab;
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000188
189static void rtnl_rtdsfield_initialize(void)
190{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000191 if (rtnl_rtdsfield_tab) return;
Denys Vlasenko94466b82009-10-13 16:27:11 +0200192 rtnl_rtdsfield_tab = xzalloc(sizeof(*rtnl_rtdsfield_tab));
193 rtnl_rtdsfield_tab->tab[0] = "0";
194 rtnl_tab_initialize("/etc/iproute2/rt_dsfield", rtnl_rtdsfield_tab->tab);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000195}
196
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200197const char* FAST_FUNC rtnl_dsfield_n2a(int id, char *buf)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000198{
Denis Vlasenkoe27f1562007-01-01 06:00:38 +0000199 if (id < 0 || id >= 256) {
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200200 sprintf(buf, "%d", id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000201 return buf;
202 }
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000203
204 rtnl_rtdsfield_initialize();
205
Denys Vlasenko94466b82009-10-13 16:27:11 +0200206 if (rtnl_rtdsfield_tab->tab[id])
207 return rtnl_rtdsfield_tab->tab[id];
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200208 /* buf is SPRINT_BSIZE big */
209 sprintf(buf, "0x%02x", id);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000210 return buf;
211}
212
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200213int FAST_FUNC rtnl_dsfield_a2n(uint32_t *id, char *arg)
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000214{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000215 rtnl_rtdsfield_initialize();
Denys Vlasenko94466b82009-10-13 16:27:11 +0200216 return rtnl_a2n(rtnl_rtdsfield_tab, id, arg, 16);
Glenn L McGrath9a2d2722002-11-10 01:33:55 +0000217}
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000218
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000219
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000220#if ENABLE_FEATURE_IP_RULE
Denys Vlasenko94466b82009-10-13 16:27:11 +0200221static rtnl_tab_t *rtnl_rttable_tab;
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000222
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000223static void rtnl_rttable_initialize(void)
224{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000225 if (rtnl_rtdsfield_tab) return;
Denys Vlasenko94466b82009-10-13 16:27:11 +0200226 rtnl_rttable_tab = xzalloc(sizeof(*rtnl_rttable_tab));
227 rtnl_rttable_tab->tab[0] = "unspec";
228 rtnl_rttable_tab->tab[255] = "local";
229 rtnl_rttable_tab->tab[254] = "main";
230 rtnl_rttable_tab->tab[253] = "default";
231 rtnl_tab_initialize("/etc/iproute2/rt_tables", rtnl_rttable_tab->tab);
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000232}
233
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200234const char* FAST_FUNC rtnl_rttable_n2a(int id, char *buf)
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000235{
236 if (id < 0 || id >= 256) {
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200237 sprintf(buf, "%d", id);
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000238 return buf;
239 }
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000240
241 rtnl_rttable_initialize();
242
Denys Vlasenko94466b82009-10-13 16:27:11 +0200243 if (rtnl_rttable_tab->tab[id])
244 return rtnl_rttable_tab->tab[id];
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200245 /* buf is SPRINT_BSIZE big */
246 sprintf(buf, "%d", id);
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000247 return buf;
248}
249
Denys Vlasenkod31575a2009-10-13 17:58:24 +0200250int FAST_FUNC rtnl_rttable_a2n(uint32_t *id, char *arg)
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000251{
Denis Vlasenkod1a302b2006-12-31 20:40:20 +0000252 rtnl_rttable_initialize();
Denys Vlasenko94466b82009-10-13 16:27:11 +0200253 return rtnl_a2n(rtnl_rttable_tab, id, arg, 0);
Bernhard Reutner-Fischer921f5df2006-11-21 15:36:08 +0000254}
255
256#endif