1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348 |
- /*
- Copyright (c) 2007-2010 by Juliusz Chroboczek
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #include <stdlib.h>
- #include <string.h>
- #include <stdio.h>
- #include <sys/time.h>
- #include <assert.h>
- #ifdef __linux
- /* Defining it rather than including <linux/rtnetlink.h> because this
- * implies <asm/types.h> on Linux 2.4 */
- #define RTPROT_BOOT 3 /* Route installed during boot */
- #endif
- #include "babeld.h"
- #include "util.h"
- #include "interface.h"
- #include "route.h"
- #include "kernel.h"
- #include "configuration.h"
- #include "rule.h"
- struct filter *input_filters = NULL;
- struct filter *output_filters = NULL;
- struct filter *redistribute_filters = NULL;
- struct filter *install_filters = NULL;
- struct interface_conf *default_interface_conf = NULL;
- struct interface_conf *interface_confs = NULL;
- /* This indicates whether initial configuration is done. See
- finalize_config below. */
- int config_finalised = 0;
- /* This file implements a recursive descent parser with one character
- lookahead. The looked-ahead character is returned from most
- functions.
- Throughout this file, -1 signals that the look-ahead is EOF,
- while -2 signals an error. */
- /* get_next_char callback */
- typedef int (*gnc_t)(void*);
- static int
- skip_whitespace(int c, gnc_t gnc, void *closure)
- {
- while(c == ' ' || c == '\t' || c == '\r')
- c = gnc(closure);
- return c;
- }
- static int
- skip_to_eol(int c, gnc_t gnc, void *closure)
- {
- while(c != '\n' && c >= 0)
- c = gnc(closure);
- if(c == '\n')
- c = gnc(closure);
- return c;
- }
- static int
- skip_eol(int c, gnc_t gnc, void *closure)
- {
- c = skip_whitespace(c, gnc, closure);
- if(c < 0 || c == '\n' || c == '#') {
- c = skip_to_eol(c, gnc, closure);
- return c;
- }
- return -2;
- }
- static int
- getword(int c, char **token_r, gnc_t gnc, void *closure)
- {
- char buf[256];
- int i = 0;
- c = skip_whitespace(c, gnc, closure);
- if(c < 0 || c == '"' || c == '\n' || c == '#' || c < 0)
- return -2;
- do {
- if(i >= 255) return -2;
- buf[i++] = c;
- c = gnc(closure);
- } while(c != ' ' && c != '\t' && c != '\r' && c != '\n' && c != '#' && c >= 0);
- buf[i] = '\0';
- *token_r = strdup(buf);
- if(*token_r == NULL)
- return -2;
- return c;
- }
- static int
- getstring(int c, char **token_r, gnc_t gnc, void *closure)
- {
- char buf[256];
- int i = 0;
- c = skip_whitespace(c, gnc, closure);
- if(c < 0 || c == '\n' || c == '#')
- return -2;
- /* Unquoted strings have the same syntax as words. */
- if(c != '"')
- return getword(c, token_r, gnc, closure);
- c = gnc(closure);
- while(1) {
- if(i >= 255 || c == '\n') return -2;
- if(c == '"') {
- c = gnc(closure);
- break;
- }
- if(c == '\\')
- c = gnc(closure);
- if(c < 0)
- return -2;
- buf[i++] = c;
- c = gnc(closure);
- }
- buf[i] = '\0';
- *token_r = strdup(buf);
- if(*token_r == NULL)
- return -2;
- return c;
- }
- static int
- getint(int c, int *int_r, gnc_t gnc, void *closure)
- {
- char *t, *end;
- int i;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- i = strtol(t, &end, 0);
- if(*end != '\0') {
- free(t);
- return -2;
- }
- free(t);
- *int_r = i;
- return c;
- }
- static int
- getthousands(int c, int *int_r, gnc_t gnc, void *closure)
- {
- char *t;
- int i;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- i = parse_thousands(t);
- if(i < 0) {
- free(t);
- return -2;
- }
- free(t);
- *int_r = i;
- return c;
- }
- static int
- getbool(int c, int *bool_r, gnc_t gnc, void *closure)
- {
- char *t;
- int i;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- if(strcmp(t, "true") == 0 || strcmp(t, "yes") == 0)
- i = CONFIG_YES;
- else if(strcmp(t, "false") == 0 || strcmp(t, "no") == 0)
- i = CONFIG_NO;
- else if(strcmp(t, "default") == 0 || strcmp(t, "auto") == 0)
- i = CONFIG_DEFAULT;
- else {
- free(t);
- return -2;
- }
- free(t);
- *bool_r = i;
- return c;
- }
- static int
- getip(int c, unsigned char **ip_r, int *af_r, gnc_t gnc, void *closure)
- {
- char *t;
- unsigned char *ip;
- unsigned char addr[16];
- int af, rc;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- rc = parse_address(t, addr, &af);
- if(rc < 0) {
- free(t);
- return -2;
- }
- free(t);
- ip = malloc(16);
- if(ip == NULL) {
- return -2;
- }
- memcpy(ip, addr, 16);
- *ip_r = ip;
- if(af_r)
- *af_r = af;
- return c;
- }
- static int
- getid(int c, unsigned char **id_r, gnc_t gnc, void *closure)
- {
- char *t;
- unsigned char *idp;
- unsigned char id[8];
- int rc;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- rc = parse_eui64(t, id);
- if(rc < 0) {
- free(t);
- return -2;
- }
- free(t);
- idp = malloc(8);
- if(idp == NULL) {
- return -2;
- }
- memcpy(idp, id, 8);
- *id_r = idp;
- return c;
- }
- static int
- getnet(int c, unsigned char **p_r, unsigned char *plen_r, int *af_r,
- gnc_t gnc, void *closure)
- {
- char *t;
- unsigned char *ip;
- unsigned char addr[16];
- unsigned char plen;
- int af, rc;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- rc = parse_net(t, addr, &plen, &af);
- if(rc < 0) {
- free(t);
- return -2;
- }
- free(t);
- ip = malloc(16);
- if(ip == NULL)
- return -2;
- memcpy(ip, addr, 16);
- *p_r = ip;
- *plen_r = plen;
- if(af_r) *af_r = af;
- return c;
- }
- static int
- get_interface_type(int c, int *type_r, gnc_t gnc, void *closure)
- {
- char *t;
- int i;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- return c;
- if(strcmp(t, "default") == 0 || strcmp(t, "auto") == 0) {
- i = IF_TYPE_DEFAULT;
- } else if(strcmp(t, "wired") == 0) {
- i = IF_TYPE_WIRED;
- } else if(strcmp(t, "wireless") == 0) {
- i = IF_TYPE_WIRELESS;
- } else if(strcmp(t, "tunnel") == 0) {
- i = IF_TYPE_TUNNEL;
- } else {
- free(t);
- return -2;
- }
- free(t);
- *type_r = i;
- return c;
- }
- static int
- parse_filter(int c, gnc_t gnc, void *closure, struct filter **filter_return)
- {
- char *token;
- struct filter *filter;
- filter = calloc(1, sizeof(struct filter));
- if(filter == NULL)
- return -2;
- filter->plen_le = 128;
- filter->src_plen_le = 128;
- while(1) {
- c = skip_whitespace(c, gnc, closure);
- if(c < 0 || c == '\n' || c == '#') {
- c = skip_to_eol(c, gnc, closure);
- break;
- }
- c = getword(c, &token, gnc, closure);
- if(c < -1) {
- free(filter);
- return -2;
- }
- if(strcmp(token, "ip") == 0) {
- int af;
- c = getnet(c, &filter->prefix, &filter->plen, &af,
- gnc, closure);
- if(c < -1)
- goto error;
- if(filter->af == AF_UNSPEC)
- filter->af = af;
- else if(filter->af != af)
- goto error;
- } else if(strcmp(token, "src-ip") == 0) {
- int af;
- c = getnet(c, &filter->src_prefix, &filter->src_plen, &af,
- gnc, closure);
- if(c < -1)
- goto error;
- if(filter->af == AF_UNSPEC)
- filter->af = af;
- else if(filter->af != af)
- goto error;
- } else if(strcmp(token, "eq") == 0) {
- int p;
- c = getint(c, &p, gnc, closure);
- if(c < -1)
- goto error;
- filter->plen_ge = MAX(filter->plen_ge, p);
- filter->plen_le = MIN(filter->plen_le, p);
- } else if(strcmp(token, "le") == 0) {
- int p;
- c = getint(c, &p, gnc, closure);
- if(c < -1)
- goto error;
- filter->plen_le = MIN(filter->plen_le, p);
- } else if(strcmp(token, "ge") == 0) {
- int p;
- c = getint(c, &p, gnc, closure);
- if(c < -1)
- goto error;
- filter->plen_ge = MAX(filter->plen_ge, p);
- } else if(strcmp(token, "src-eq") == 0) {
- int p;
- c = getint(c, &p, gnc, closure);
- if(c < -1)
- goto error;
- filter->src_plen_ge = MAX(filter->src_plen_ge, p);
- filter->src_plen_le = MIN(filter->src_plen_le, p);
- } else if(strcmp(token, "src-le") == 0) {
- int p;
- c = getint(c, &p, gnc, closure);
- if(c < -1)
- goto error;
- filter->src_plen_le = MIN(filter->src_plen_le, p);
- } else if(strcmp(token, "src-ge") == 0) {
- int p;
- c = getint(c, &p, gnc, closure);
- if(c < -1)
- goto error;
- filter->src_plen_ge = MAX(filter->src_plen_ge, p);
- } else if(strcmp(token, "neigh") == 0) {
- unsigned char *neigh = NULL;
- c = getip(c, &neigh, NULL, gnc, closure);
- if(c < -1)
- goto error;
- filter->neigh = neigh;
- } else if(strcmp(token, "id") == 0) {
- unsigned char *id = NULL;
- c = getid(c, &id, gnc, closure);
- if(c < -1)
- goto error;
- filter->id = id;
- } else if(strcmp(token, "proto") == 0) {
- int proto;
- c = getint(c, &proto, gnc, closure);
- if(c < -1)
- goto error;
- filter->proto = proto;
- } else if(strcmp(token, "local") == 0) {
- filter->proto = RTPROT_BABEL_LOCAL;
- } else if(strcmp(token, "if") == 0) {
- char *interface;
- c = getstring(c, &interface, gnc, closure);
- if(c < -1)
- goto error;
- filter->ifname = interface;
- filter->ifindex = if_nametoindex(interface);
- } else if(strcmp(token, "allow") == 0) {
- filter->action.add_metric = 0;
- } else if(strcmp(token, "deny") == 0) {
- filter->action.add_metric = INFINITY;
- } else if(strcmp(token, "metric") == 0) {
- int metric;
- c = getint(c, &metric, gnc, closure);
- if(c < -1) goto error;
- if(metric <= 0 || metric > INFINITY)
- goto error;
- filter->action.add_metric = metric;
- } else if(strcmp(token, "src-prefix") == 0) {
- int af;
- c = getnet(c, &filter->action.src_prefix, &filter->action.src_plen,
- &af, gnc, closure);
- if(c < -1)
- goto error;
- if(filter->af == AF_UNSPEC)
- filter->af = af;
- else if(filter->af != af)
- goto error;
- if(af == AF_INET && filter->action.src_plen == 96)
- memset(&filter->action.src_prefix, 0, 16);
- } else if(strcmp(token, "table") == 0) {
- int table;
- c = getint(c, &table, gnc, closure);
- if(c < -1) goto error;
- if(table <= 0 || table > INFINITY)
- goto error;
- filter->action.table = table;
- } else {
- goto error;
- }
- free(token);
- }
- if(filter->af == 0) {
- if(filter->plen_le < 128 || filter->plen_ge > 0 ||
- filter->src_plen_le < 128 || filter->src_plen_ge > 0)
- filter->af = AF_INET6;
- } else if(filter->af == AF_INET) {
- filter->plen_le += 96;
- filter->plen_ge += 96;
- }
- *filter_return = filter;
- return c;
- error:
- free(token);
- free(filter);
- return -2;
- }
- static int
- parse_anonymous_ifconf(int c, gnc_t gnc, void *closure,
- struct interface_conf *if_conf,
- struct interface_conf **if_conf_return)
- {
- char *token;
- if(if_conf == NULL) {
- if_conf = calloc(1, sizeof(struct interface_conf));
- if(if_conf == NULL)
- goto error;
- }
- while(1) {
- c = skip_whitespace(c, gnc, closure);
- if(c < 0 || c == '\n' || c == '#') {
- c = skip_to_eol(c, gnc, closure);
- break;
- }
- c = getword(c, &token, gnc, closure);
- if(c < -1)
- goto error;
- if(strcmp(token, "rxcost") == 0) {
- int cost;
- c = getint(c, &cost, gnc, closure);
- if(c < -1 || cost <= 0 || cost > 0xFFFF)
- goto error;
- if_conf->cost = cost;
- } else if(strcmp(token, "hello-interval") == 0) {
- int interval;
- c = getthousands(c, &interval, gnc, closure);
- if(c < -1 || interval <= 0 || interval > 10 * 0xFFFF)
- goto error;
- if_conf->hello_interval = interval;
- } else if(strcmp(token, "update-interval") == 0) {
- int interval;
- c = getthousands(c, &interval, gnc, closure);
- if(c < -1 || interval <= 0 || interval > 10 * 0xFFFF)
- goto error;
- if_conf->update_interval = interval;
- } else if(strcmp(token, "type") == 0) {
- int type = IF_TYPE_DEFAULT;
- c = get_interface_type(c, &type, gnc, closure);
- if(c < -1)
- goto error;
- if_conf->type = type;
- } else if(strcmp(token, "wired") == 0) {
- int v;
- fprintf(stderr, "Warning: keyword \"wired\" is deprecated -- "
- "please use \"type\" instead.\n");
- c = getbool(c, &v, gnc, closure);
- if(c < -1)
- goto error;
- if_conf->type = (v == CONFIG_YES) ?
- IF_TYPE_WIRED : IF_TYPE_WIRELESS;
- } else if(strcmp(token, "faraway") == 0) {
- int v;
- c = getbool(c, &v, gnc, closure);
- if(c < -1)
- goto error;
- if_conf->faraway = v;
- } else if(strcmp(token, "link-quality") == 0) {
- int v;
- c = getbool(c, &v, gnc, closure);
- if(c < -1)
- goto error;
- if_conf->lq = v;
- } else if(strcmp(token, "split-horizon") == 0) {
- int v;
- c = getbool(c, &v, gnc, closure);
- if(c < -1)
- goto error;
- if_conf->split_horizon = v;
- } else if(strcmp(token, "channel") == 0) {
- char *t, *end;
- c = getword(c, &t, gnc, closure);
- if(c < -1)
- goto error;
- if(strcmp(t, "noninterfering") == 0)
- if_conf->channel = IF_CHANNEL_NONINTERFERING;
- else if(strcmp(t, "interfering") == 0)
- if_conf->channel = IF_CHANNEL_INTERFERING;
- else {
- if_conf->channel = strtol(t, &end, 0);
- if(*end != '\0')
- goto error;
- }
- free(t);
- if((if_conf->channel < 1 || if_conf->channel > 255) &&
- if_conf->channel != IF_CHANNEL_NONINTERFERING)
- goto error;
- } else if(strcmp(token, "enable-timestamps") == 0) {
- int v;
- c = getbool(c, &v, gnc, closure);
- if(c < -1)
- goto error;
- if_conf->enable_timestamps = v;
- } else if(strcmp(token, "rtt-decay") == 0) {
- int decay;
- c = getint(c, &decay, gnc, closure);
- if(c < -1 || decay <= 0 || decay > 256)
- goto error;
- if_conf->rtt_decay = decay;
- } else if(strcmp(token, "rtt-min") == 0) {
- int rtt;
- c = getthousands(c, &rtt, gnc, closure);
- if(c < -1 || rtt <= 0)
- goto error;
- if_conf->rtt_min = rtt;
- } else if(strcmp(token, "rtt-max") == 0) {
- int rtt;
- c = getthousands(c, &rtt, gnc, closure);
- if(c < -1 || rtt <= 0)
- goto error;
- if_conf->rtt_max = rtt;
- } else if(strcmp(token, "max-rtt-penalty") == 0) {
- int penalty;
- c = getint(c, &penalty, gnc, closure);
- if(c < -1 || penalty <= 0 || penalty > 0xFFFF)
- goto error;
- if_conf->max_rtt_penalty = penalty;
- } else {
- goto error;
- }
- free(token);
- }
- *if_conf_return = if_conf;
- return c;
- error:
- free(if_conf);
- return -2;
- }
- static int
- parse_ifconf(int c, gnc_t gnc, void *closure,
- struct interface_conf **if_conf_return)
- {
- char *token;
- struct interface_conf *if_conf;
- if_conf = calloc(1, sizeof(struct interface_conf));
- if(if_conf == NULL)
- goto error;
- c = skip_whitespace(c, gnc, closure);
- if(c < -1 || c == '\n' || c == '#')
- goto error;
- c = getstring(c, &token, gnc, closure);
- if(c < -1 || token == NULL)
- goto error;
- if_conf->ifname = token;
- return parse_anonymous_ifconf(c, gnc, closure, if_conf, if_conf_return);
- error:
- free(if_conf);
- return -2;
- }
- static void
- add_filter(struct filter *filter, struct filter **filters)
- {
- if(*filters == NULL) {
- filter->next = NULL;
- *filters = filter;
- } else {
- struct filter *f;
- f = *filters;
- while(f->next)
- f = f->next;
- filter->next = NULL;
- f->next = filter;
- }
- }
- static void
- merge_ifconf(struct interface_conf *dest,
- const struct interface_conf *src1,
- const struct interface_conf *src2)
- {
- #define MERGE(field) \
- do { \
- if(src1->field) \
- dest->field = src1->field; \
- else \
- dest->field = src2->field; \
- } while(0)
- MERGE(hello_interval);
- MERGE(update_interval);
- MERGE(cost);
- MERGE(type);
- MERGE(split_horizon);
- MERGE(lq);
- MERGE(faraway);
- MERGE(channel);
- MERGE(enable_timestamps);
- MERGE(rtt_decay);
- MERGE(rtt_min);
- MERGE(rtt_max);
- MERGE(max_rtt_penalty);
- #undef MERGE
- }
- static void
- add_ifconf(struct interface_conf *if_conf, struct interface_conf **if_confs)
- {
- if(*if_confs == NULL) {
- if_conf->next = NULL;
- *if_confs = if_conf;
- } else {
- struct interface_conf *prev, *next;
- next = *if_confs;
- prev = NULL;
- while(next) {
- if(strcmp(next->ifname, if_conf->ifname) == 0) {
- merge_ifconf(next, if_conf, next);
- free(if_conf);
- if_conf = next;
- goto done;
- }
- prev = next;
- next = next->next;
- }
- if_conf->next = NULL;
- prev->next = if_conf;
- }
- done:
- if(config_finalised)
- add_interface(if_conf->ifname, if_conf);
- }
- void
- flush_ifconf(struct interface_conf *if_conf)
- {
- if(if_conf == interface_confs) {
- interface_confs = if_conf->next;
- free(if_conf);
- return;
- } else {
- struct interface_conf *prev = interface_confs;
- while(prev) {
- if(prev->next == if_conf) {
- prev->next = if_conf->next;
- free(if_conf);
- return;
- }
- prev = prev->next;
- }
- }
- fprintf(stderr, "Warning: attempting to free nonexistent ifconf.\n");
- }
- static int
- parse_option(int c, gnc_t gnc, void *closure, char *token)
- {
- /* These are the only options that are allowed at runtime, either
- because they require no special setup or because there is special
- case code for them. */
- if(config_finalised) {
- if(strcmp(token, "keep-unfeasible") != 0 &&
- strcmp(token, "link-detect") != 0 &&
- strcmp(token, "log-file") != 0 &&
- strcmp(token, "diversity") != 0 &&
- strcmp(token, "diversity-factor") != 0 &&
- strcmp(token, "smoothing-half-life") != 0)
- goto error;
- }
- if(strcmp(token, "protocol-port") == 0 ||
- strcmp(token, "kernel-priority") == 0 ||
- strcmp(token, "allow-duplicates") == 0 ||
- strcmp(token, "local-port") == 0 ||
- strcmp(token, "local-port-readwrite") == 0 ||
- strcmp(token, "export-table") == 0 ||
- strcmp(token, "import-table") == 0) {
- int v;
- c = getint(c, &v, gnc, closure);
- if(c < -1 || v <= 0 || v >= 0xFFFF)
- goto error;
- if(strcmp(token, "protocol-port") == 0)
- protocol_port = v;
- else if(strcmp(token, "kernel-priority") == 0)
- kernel_metric = v;
- else if(strcmp(token, "allow_duplicates") == 0)
- allow_duplicates = v;
- else if(strcmp(token, "local-port") == 0) {
- local_server_port = v;
- free(local_server_path);
- local_server_path = NULL;
- local_server_write = 0;
- } else if(strcmp(token, "local-port-readwrite") == 0) {
- local_server_port = v;
- free(local_server_path);
- local_server_path = NULL;
- local_server_write = 1;
- } else if(strcmp(token, "export-table") == 0)
- export_table = v;
- else if(strcmp(token, "import-table") == 0)
- add_import_table(v);
- else
- abort();
- } else if(strcmp(token, "keep-unfeasible") == 0 ||
- strcmp(token, "link-detect") == 0 ||
- strcmp(token, "random-id") == 0 ||
- strcmp(token, "daemonise") == 0 ||
- strcmp(token, "skip-kernel-setup") == 0 ||
- strcmp(token, "ipv6-subtrees") == 0 ||
- strcmp(token, "reflect-kernel-metric") == 0) {
- int b;
- c = getbool(c, &b, gnc, closure);
- if(c < -1)
- goto error;
- b = (b == CONFIG_YES);
- if(strcmp(token, "keep-unfeasible") == 0)
- keep_unfeasible = b;
- else if(strcmp(token, "link-detect") == 0)
- link_detect = b;
- else if(strcmp(token, "random-id") == 0)
- random_id = b;
- else if(strcmp(token, "daemonise") == 0)
- do_daemonise = b;
- else if(strcmp(token, "skip-kernel-setup") == 0)
- skip_kernel_setup = b;
- else if(strcmp(token, "ipv6-subtrees") == 0)
- has_ipv6_subtrees = b;
- else if(strcmp(token, "reflect-kernel-metric") == 0)
- reflect_kernel_metric = b;
- else
- abort();
- } else if(strcmp(token, "protocol-group") == 0) {
- unsigned char *group = NULL;
- c = getip(c, &group, NULL, gnc, closure);
- if(c < -1)
- goto error;
- memcpy(protocol_group, group, 16);
- free(group);
- } else if(strcmp(token, "state-file") == 0 ||
- strcmp(token, "log-file") == 0 ||
- strcmp(token, "pid-file") == 0 ||
- strcmp(token, "local-path") == 0 ||
- strcmp(token, "local-path-readwrite") == 0) {
- char *file;
- c = getstring(c, &file, gnc, closure);
- if(c < -1)
- goto error;
- if(strcmp(token, "state-file") == 0)
- state_file = file;
- else if(strcmp(token, "log-file") == 0) {
- logfile = file;
- if(config_finalised)
- reopen_logfile();
- } else if(strcmp(token, "pid-file") == 0)
- pidfile = file;
- else if(strcmp(token, "local-path") == 0) {
- local_server_port = -1;
- free(local_server_path);
- local_server_path = file;
- local_server_write = 0;
- } else if(strcmp(token, "local-path-readwrite") == 0) {
- local_server_port = -1;
- free(local_server_path);
- local_server_path = file;
- local_server_write = 1;
- } else
- abort();
- } else if(strcmp(token, "debug") == 0) {
- int d;
- c = getint(c, &d, gnc, closure);
- if(c < -1 || d < 0)
- goto error;
- debug = d;
- } else if(strcmp(token, "diversity") == 0) {
- int d;
- c = skip_whitespace(c, gnc, closure);
- if(c >= '0' && c <= '9') {
- c = getint(c, &d, gnc, closure);
- if(c < -1)
- goto error;
- } else {
- int b;
- c = getbool(c, &b, gnc, closure);
- if(c < -1)
- goto error;
- d = (b == CONFIG_YES) ? 3 : 0;
- }
- diversity_kind = d;
- } else if(strcmp(token, "diversity-factor") == 0) {
- int f;
- c = getint(c, &f, gnc, closure);
- if(c < -1 || f < 0 || f > 256)
- goto error;
- diversity_factor = f;
- } else if(strcmp(token, "smoothing-half-life") == 0) {
- int h;
- c = getint(c, &h, gnc, closure);
- if(c < -1 || h < 0)
- goto error;
- change_smoothing_half_life(h);
- } else if(strcmp(token, "first-table-number") == 0) {
- int n;
- c = getint(c, &n, gnc, closure);
- if(c < -1 || n <= 0 || n + SRC_TABLE_NUM >= 254)
- goto error;
- src_table_idx = n;
- } else if(strcmp(token, "first-rule-priority") == 0) {
- int n;
- c = getint(c, &n, gnc, closure);
- if(c < -1 || n <= 0 || n + SRC_TABLE_NUM >= 32765)
- goto error;
- src_table_prio = n;
- } else if(strcmp(token, "router-id") == 0) {
- unsigned char *id = NULL;
- c = getid(c, &id, gnc, closure);
- if(c < -1 || id == NULL)
- goto error;
- memcpy(myid, id, 8);
- free(id);
- have_id = 1;
- } else {
- goto error;
- }
- return skip_eol(c, gnc, closure);
- error:
- return -2;
- }
- static int
- parse_config_line(int c, gnc_t gnc, void *closure,
- int *action_return, const char **message_return)
- {
- char *token;
- if(action_return)
- *action_return = CONFIG_ACTION_DONE;
- if(message_return)
- *message_return = NULL;
- c = skip_whitespace(c, gnc, closure);
- if(c < 0 || c == '\n' || c == '#')
- return skip_to_eol(c, gnc, closure);
- c = getword(c, &token, gnc, closure);
- if(c < -1)
- return c;
- /* Directives allowed in read-only mode */
- if(strcmp(token, "quit") == 0) {
- c = skip_eol(c, gnc, closure);
- if(c < -1 || !action_return)
- goto fail;
- *action_return = CONFIG_ACTION_QUIT;
- } else if(strcmp(token, "dump") == 0) {
- c = skip_eol(c, gnc, closure);
- if(c < -1 || !action_return)
- goto fail;
- *action_return = CONFIG_ACTION_DUMP;
- } else if(strcmp(token, "monitor") == 0) {
- c = skip_eol(c, gnc, closure);
- if(c < -1 || !action_return)
- goto fail;
- *action_return = CONFIG_ACTION_MONITOR;
- } else if(strcmp(token, "unmonitor") == 0) {
- c = skip_eol(c, gnc, closure);
- if(c < -1 || !action_return)
- goto fail;
- *action_return = CONFIG_ACTION_UNMONITOR;
- } else if(config_finalised && !local_server_write) {
- /* The remaining directives are only allowed in read-write mode. */
- c = skip_to_eol(c, gnc, closure);
- if(c < -1 || !action_return)
- goto fail;
- /* Unfortunately, we cannot report NO here, since we don't know if
- the line is parsable. Oh, well. */
- goto fail;
- } else if(strcmp(token, "in") == 0) {
- struct filter *filter;
- if(config_finalised)
- goto fail;
- c = parse_filter(c, gnc, closure, &filter);
- if(c < -1)
- goto fail;
- add_filter(filter, &input_filters);
- } else if(strcmp(token, "out") == 0) {
- struct filter *filter;
- if(config_finalised)
- goto fail;
- c = parse_filter(c, gnc, closure, &filter);
- if(c < -1)
- goto fail;
- add_filter(filter, &output_filters);
- } else if(strcmp(token, "redistribute") == 0) {
- struct filter *filter;
- if(config_finalised)
- goto fail;
- c = parse_filter(c, gnc, closure, &filter);
- if(c < -1)
- goto fail;
- add_filter(filter, &redistribute_filters);
- } else if(strcmp(token, "install") == 0) {
- struct filter *filter;
- if(config_finalised)
- goto fail;
- c = parse_filter(c, gnc, closure, &filter);
- if(c < -1)
- goto fail;
- } else if(strcmp(token, "interface") == 0) {
- struct interface_conf *if_conf;
- c = parse_ifconf(c, gnc, closure, &if_conf);
- if(c < -1)
- goto fail;
- add_ifconf(if_conf, &interface_confs);
- } else if(strcmp(token, "default") == 0) {
- struct interface_conf *if_conf;
- c = parse_anonymous_ifconf(c, gnc, closure, NULL, &if_conf);
- if(c < -1)
- goto fail;
- if(default_interface_conf == NULL)
- default_interface_conf = if_conf;
- else {
- merge_ifconf(default_interface_conf,
- if_conf, default_interface_conf);
- free(if_conf);
- }
- } else if(strcmp(token, "flush") == 0) {
- char *token2;
- c = skip_whitespace(c, gnc, closure);
- c = getword(c, &token2, gnc, closure);
- if(c < -1)
- goto fail;
- if(strcmp(token2, "interface") == 0) {
- char *ifname;
- int rc;
- c = getword(c, &ifname, gnc, closure);
- c = skip_eol(c, gnc, closure);
- if(c < -1) {
- free(token2);
- goto fail;
- }
- rc = flush_interface(ifname);
- if(rc <= 0) {
- if(action_return)
- *action_return = CONFIG_ACTION_NO;
- if(message_return) {
- if(rc < 0)
- *message_return = "Couldn't flush interface";
- else
- *message_return = "No such interface";
- }
- }
- free(token2);
- free(ifname);
- } else {
- free(token2);
- goto fail;
- }
- } else if(strcmp(token, "reopen-logfile") == 0) {
- c = skip_eol(c, gnc, closure);
- if(c < -1 || !action_return)
- goto fail;
- reopen_logfile();
- } else {
- c = parse_option(c, gnc, closure, token);
- if(c < -1)
- goto fail;
- }
- free(token);
- return c;
- fail:
- free(token);
- return -2;
- }
- struct file_state {
- FILE *f;
- int line;
- };
- static int
- gnc_file(struct file_state *s)
- {
- int c;
- c = fgetc(s->f);
- if(c == '\n')
- s->line++;
- return c;
- }
- int
- parse_config_from_file(const char *filename, int *line_return)
- {
- struct file_state s = { NULL, 1 };
- int c;
- s.f = fopen(filename, "r");
- if(s.f == NULL) {
- *line_return = 0;
- return -1;
- }
- c = gnc_file(&s);
- if(c < 0)
- return 0;
- while(1) {
- c = parse_config_line(c, (gnc_t)gnc_file, &s, NULL, NULL);
- if(c < -1) {
- *line_return = s.line;
- return -1;
- }
- if(c == -1)
- break;
- }
- fclose(s.f);
- return 1;
- }
- struct buf_state {
- char *buf;
- int i, n;
- };
- static int
- gnc_buf(struct buf_state *s)
- {
- if(s->i < s->n)
- return (s->buf[s->i++]) & 0xFF;
- else
- return -1;
- }
- int
- parse_config_from_string(char *string, int n, const char **message_return)
- {
- int c, action;
- const char *message;
- struct buf_state s = { string, 0, n };
- c = gnc_buf(&s);
- if(c < 0)
- return -1;
- c = parse_config_line(c, (gnc_t)gnc_buf, &s, &action, &message);
- if(c == -1) {
- if(message_return)
- *message_return = message;
- return action;
- } else
- return -1;
- }
- static void
- renumber_filter(struct filter *filter)
- {
- while(filter) {
- if(filter->ifname)
- filter->ifindex = if_nametoindex(filter->ifname);
- filter = filter->next;
- }
- }
- void
- renumber_filters()
- {
- renumber_filter(input_filters);
- renumber_filter(output_filters);
- renumber_filter(redistribute_filters);
- renumber_filter(install_filters);
- }
- static int
- filter_match(struct filter *f, const unsigned char *id,
- const unsigned char *prefix, unsigned short plen,
- const unsigned char *src_prefix, unsigned short src_plen,
- const unsigned char *neigh, unsigned int ifindex, int proto)
- {
- if(f->af) {
- if(plen >= 96 && v4mapped(prefix)) {
- if(f->af == AF_INET6) return 0;
- } else {
- if(f->af == AF_INET) return 0;
- }
- }
- if(f->id) {
- if(!id || memcmp(f->id, id, 8) != 0)
- return 0;
- }
- if(f->prefix) {
- if(!prefix || plen < f->plen || !in_prefix(prefix, f->prefix, f->plen))
- return 0;
- }
- if(f->src_prefix) {
- if(!src_prefix || src_plen < f->src_plen ||
- !in_prefix(src_prefix, f->src_prefix, f->src_plen))
- return 0;
- }
- if(f->plen_ge > 0 || f->plen_le < 128) {
- if(!prefix)
- return 0;
- if(plen > f->plen_le)
- return 0;
- if(plen < f->plen_ge)
- return 0;
- }
- if(f->src_plen_ge > 0 || f->src_plen_le < 128) {
- if(!src_prefix)
- return 0;
- if(src_plen > f->src_plen_le)
- return 0;
- if(src_plen < f->src_plen_ge)
- return 0;
- }
- if(f->neigh) {
- if(!neigh || memcmp(f->neigh, neigh, 16) != 0)
- return 0;
- }
- if(f->ifname) {
- if(!f->ifindex) /* no such interface */
- return 0;
- if(!ifindex || f->ifindex != ifindex)
- return 0;
- }
- if(f->proto) {
- if(!proto || f->proto != proto)
- return 0;
- } else if(proto == RTPROT_BABEL_LOCAL) {
- return 0;
- #ifdef __linux
- } else if(proto == RTPROT_BOOT) {
- return 0;
- #endif
- }
- return 1;
- }
- static int
- do_filter(struct filter *f, const unsigned char *id,
- const unsigned char *prefix, unsigned short plen,
- const unsigned char *src_prefix, unsigned short src_plen,
- const unsigned char *neigh, unsigned int ifindex, int proto,
- struct filter_result *result)
- {
- if(result)
- memset(result, 0, sizeof(struct filter_result));
- while(f) {
- if(filter_match(f, id, prefix, plen, src_prefix, src_plen,
- neigh, ifindex, proto)) {
- if(result)
- memcpy(result, &f->action, sizeof(struct filter_result));
- return f->action.add_metric;
- }
- f = f->next;
- }
- return -1;
- }
- int
- input_filter(const unsigned char *id,
- const unsigned char *prefix, unsigned short plen,
- const unsigned char *src_prefix, unsigned short src_plen,
- const unsigned char *neigh, unsigned int ifindex)
- {
- int res;
- res = do_filter(input_filters, id, prefix, plen,
- src_prefix, src_plen, neigh, ifindex, 0, NULL);
- if(res < 0)
- res = 0;
- return res;
- }
- int
- output_filter(const unsigned char *id,
- const unsigned char *prefix, unsigned short plen,
- const unsigned char *src_prefix, unsigned short src_plen,
- unsigned int ifindex)
- {
- int res;
- res = do_filter(output_filters, id, prefix, plen,
- src_prefix, src_plen, NULL, ifindex, 0, NULL);
- if(res < 0)
- res = 0;
- return res;
- }
- int
- redistribute_filter(const unsigned char *prefix, unsigned short plen,
- const unsigned char *src_prefix, unsigned short src_plen,
- unsigned int ifindex, int proto,
- struct filter_result *result)
- {
- int res;
- res = do_filter(redistribute_filters, NULL, prefix, plen,
- src_prefix, src_plen, NULL, ifindex, proto, result);
- if(res < 0)
- res = INFINITY;
- return res;
- }
- int
- install_filter(const unsigned char *prefix, unsigned short plen,
- const unsigned char *src_prefix, unsigned short src_plen,
- struct filter_result *result)
- {
- int res;
- res = do_filter(install_filters, NULL, prefix, plen,
- src_prefix, src_plen, NULL, 0, 0, result);
- if(res < 0)
- res = INFINITY;
- return res;
- }
- int
- finalise_config()
- {
- struct filter *filter = calloc(1, sizeof(struct filter));
- if(filter == NULL)
- return -1;
- filter->proto = RTPROT_BABEL_LOCAL;
- filter->plen_le = 128;
- filter->src_plen_le = 128;
- add_filter(filter, &redistribute_filters);
- while(interface_confs) {
- struct interface_conf *if_conf;
- void *vrc;
- if_conf = interface_confs;
- interface_confs = interface_confs->next;
- if_conf->next = NULL;
- if(default_interface_conf)
- merge_ifconf(if_conf, if_conf, default_interface_conf);
- vrc = add_interface(if_conf->ifname, if_conf);
- if(vrc == NULL) {
- fprintf(stderr, "Couldn't add interface %s.\n", if_conf->ifname);
- return -1;
- }
- }
- config_finalised = 1;
- return 1;
- }
|