bird/nest/proto.c

139 lines
2.3 KiB
C
Raw Normal View History

/*
* BIRD -- Protocols
*
* (c) 1998 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 protocol *pr, unsigned size)
{
1998-11-30 06:01:33 +08:00
struct proto *p = cfg_allocz(size);
1998-06-03 16:38:53 +08:00
debug("proto_new(%s)\n", pr->name);
p->proto = pr;
p->name = pr->name;
p->debug = pr->debug;
p->pool = rp_new(&root_pool, pr->name);
add_tail(&inactive_proto_list, &p->n);
1998-06-03 16:38:53 +08:00
return p;
}
void
1998-06-03 16:38:53 +08:00
protos_preconfig(void)
{
1998-06-03 16:38:53 +08:00
struct protocol *p;
init_list(&proto_list);
init_list(&inactive_proto_list);
1998-06-03 16:38:53 +08:00
debug("Protocol preconfig\n");
WALK_LIST(p, protocol_list)
{
debug("...%s\n", p->name);
if (p->preconfig)
p->preconfig(p);
1998-06-03 16:38:53 +08:00
}
}
void
protos_postconfig(void)
{
struct protocol *p;
debug("Protocol postconfig\n");
WALK_LIST(p, protocol_list)
{
debug("...%s\n", p->name);
if (p->postconfig)
p->postconfig(p);
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->state = PRS_STARTING;
if (p->start)
p->start(p);
if_feed_baby(p);
rt_feed_baby(p);
p->state = PRS_UP;
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("...%s\n", p->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;
debug("Protocols:\n");
WALK_LIST(p, proto_list)
{
debug(" protocol %s:\n", p->name);
1998-11-30 06:01:33 +08:00
if (p->disabled)
debug("\tDISABLED\n");
else if (p->dump)
1998-07-10 03:36:52 +08:00
p->dump(p);
}
WALK_LIST(p, inactive_proto_list)
debug(" inactive %s\n", p->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
}
1998-06-03 16:38:53 +08:00
void
protos_init(void)
{
struct protocol *p;
debug("Initializing protocols\n");
WALK_LIST(p, protocol_list)
if (p->init)
p->init(p);
}