summaryrefslogtreecommitdiffstats
path: root/nest/rt-dev.c
blob: 81dd037787b32ef82fbedc77dbfdbdfec69a3738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 *	BIRD -- Direct Device Routes
 *
 *	(c) 1998 Martin Mares <mj@ucw.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#define LOCAL_DEBUG

#include <string.h>

#include "nest/bird.h"
#include "nest/iface.h"
#include "nest/protocol.h"
#include "nest/route.h"
#include "lib/resource.h"

static void
dev_if_notify(struct proto *p, unsigned c, struct iface *old, struct iface *new)
{
  if (c & IF_CHANGE_DOWN)
    {
      net *n;

      debug("dev_if_notify: %s going down\n", old->name);
      n = net_find(&master_table, 0, old->prefix, old->pxlen);
      if (!n)
	{
	  debug("dev_if_notify: device shutdown: prefix not found\n");
	  return;
	}
      rte_update(n, p, NULL);
    }
  else if (c & IF_CHANGE_UP)
    {
      rta *a, A;
      net *n;
      rte *e;

      debug("dev_if_notify: %s going up\n", new->name);
      bzero(&A, sizeof(A));
      A.proto = p;
      A.source = RTS_DEVICE;
      A.scope = (new->flags & IF_LOOPBACK) ? SCOPE_HOST : SCOPE_UNIVERSE;
      A.cast = RTC_UNICAST;
      A.dest = RTD_DEVICE;
      A.iface = new;
      A.attrs = NULL;
      a = rta_lookup(&A);
      n = net_get(&master_table, 0, new->prefix, new->pxlen);
      e = rte_get_temp(a);
      e->pflags = 0;
      rte_update(n, p, e);
    }
}

static void
dev_start(struct proto *p)
{
}

static void
dev_init(struct protocol *p)
{
}

static void
dev_preconfig(struct protocol *x)
{
  struct proto *p = proto_new(&proto_device, sizeof(struct proto));

  p->preference = DEF_PREF_DIRECT;
  p->start = dev_start;
  p->if_notify = dev_if_notify;
}

static void
dev_postconfig(struct protocol *p)
{
}

struct protocol proto_device = {
  { NULL, NULL },
  "Device",
  0,
  dev_init,
  dev_preconfig,
  dev_postconfig
};