bird/nest/proto.c

169 lines
3.2 KiB
C
Raw Normal View History

/*
* BIRD -- Protocols
*
* (c) 1998--1999 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
1998-06-03 16:38:53 +08:00
#define LOCAL_DEBUG
#include <string.h>
#include "nest/bird.h"
#include "nest/protocol.h"
#include "lib/resource.h"
#include "lib/lists.h"
#include "conf/conf.h"
#include "nest/route.h"
#include "nest/iface.h"
1998-06-03 16:38:53 +08:00
list protocol_list;
list proto_list;
list inactive_proto_list;
1998-06-03 16:38:53 +08:00
void *
proto_new(struct proto_config *c, unsigned size)
1998-06-03 16:38:53 +08:00
{
struct protocol *pr = c->proto;
struct proto *p = cfg_allocz(size); /* FIXME: Allocate from global pool */
1998-06-03 16:38:53 +08:00
p->cf = c;
p->debug = c->debug;
p->preference = c->preference;
p->disabled = c->disabled;
1998-06-03 16:38:53 +08:00
p->proto = pr;
p->pool = rp_new(&root_pool, c->name);
1998-06-03 16:38:53 +08:00
return p;
}
void *
proto_config_new(struct protocol *pr, unsigned size)
{
struct proto_config *c = cfg_allocz(size);
add_tail(&new_config->protos, &c->n);
c->global = new_config;
c->proto = pr;
c->debug = pr->debug;
c->name = pr->name;
return c;
}
void
protos_preconfig(struct config *c)
{
1998-06-03 16:38:53 +08:00
struct protocol *p;
init_list(&proto_list);
init_list(&inactive_proto_list);
debug("Protocol preconfig:");
1998-06-03 16:38:53 +08:00
WALK_LIST(p, protocol_list)
{
debug(" %s", p->name);
if (p->preconfig)
p->preconfig(p, c);
1998-06-03 16:38:53 +08:00
}
debug("\n");
1998-06-03 16:38:53 +08:00
}
void
protos_postconfig(struct config *c)
1998-06-03 16:38:53 +08:00
{
struct proto_config *x;
1998-06-03 16:38:53 +08:00
struct protocol *p;
debug("Protocol postconfig:");
WALK_LIST(x, c->protos)
1998-06-03 16:38:53 +08:00
{
debug(" %s", x->name);
p = x->proto;
if (p->postconfig)
p->postconfig(x);
}
debug("\n");
}
void
protos_commit(struct config *c)
{
struct proto_config *x;
struct protocol *p;
struct proto *q;
debug("Protocol commit:");
WALK_LIST(x, c->protos)
{
debug(" %s", x->name);
p = x->proto;
q = p->init(x);
add_tail(&inactive_proto_list, &q->n);
1998-06-03 16:38:53 +08:00
}
debug("\n");
1998-06-03 16:38:53 +08:00
}
static void
proto_start(struct proto *p)
{
rem_node(&p->n);
1998-11-30 06:01:33 +08:00
if (p->disabled)
return;
p->proto_state = PS_DOWN;
p->core_state = FS_HUNGRY;
if (p->proto->start && p->proto->start(p) != PS_UP)
bug("Delayed protocol start not supported yet");
p->proto_state = PS_UP;
p->core_state = FS_FEEDING;
if_feed_baby(p);
rt_feed_baby(p);
p->core_state = FS_HAPPY;
add_tail(&proto_list, &p->n);
}
1998-06-03 16:38:53 +08:00
void
protos_start(void)
{
struct proto *p, *n;
1998-06-03 16:38:53 +08:00
debug("Protocol start\n");
WALK_LIST_DELSAFE(p, n, inactive_proto_list)
1998-06-03 16:38:53 +08:00
{
debug("Starting %s\n", p->cf->name);
proto_start(p);
1998-06-03 16:38:53 +08:00
}
}
1998-07-10 03:36:52 +08:00
void
protos_dump_all(void)
{
struct proto *p;
static char *p_states[] = { "DOWN", "START", "UP", "STOP" };
static char *c_states[] = { "HUNGRY", "FEEDING", "HAPPY", "FLUSHING" };
1998-07-10 03:36:52 +08:00
debug("Protocols:\n");
WALK_LIST(p, proto_list)
{
debug(" protocol %s: state %s/%s\n", p->cf->name, p_states[p->proto_state], c_states[p->core_state]);
1998-11-30 06:01:33 +08:00
if (p->disabled)
debug("\tDISABLED\n");
else if (p->proto->dump)
p->proto->dump(p);
1998-07-10 03:36:52 +08:00
}
WALK_LIST(p, inactive_proto_list)
debug(" inactive %s\n", p->cf->name);
1998-07-10 03:36:52 +08:00
}
void
protos_build(void)
{
init_list(&protocol_list);
add_tail(&protocol_list, &proto_device.n);
#ifdef CONFIG_RIP
add_tail(&protocol_list, &proto_rip.n);
#endif
#ifdef CONFIG_STATIC
add_tail(&protocol_list, &proto_static.n);
#endif
}