summaryrefslogtreecommitdiffstats
path: root/proto/ospf/rt.c
blob: cc996b851f8177eabb3df1e69a02586eca38de1f (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*
 *	BIRD -- OSPF
 *
 *	(c) 2000 Ondrej Filip <feela@network.cz>
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

#include "ospf.h"

/* FIXME next hop calculation
 * FIXME sync with BIRD's routing table
 */

void
ospf_rt_spfa(struct ospf_area *oa, struct proto *p)
{
  struct top_hash_entry *en, *nx;
  slab *sl, *sll;
  struct spf_n *cn;
  u32 i,*rts;
  struct ospf_lsa_rt *rt;
  struct ospf_lsa_rt_link *rtl;

  /*
   * First of all, mark all vertices as they are not in SPF
   * Maybe I can join this work with Aging of structure
   */

  WALK_SLIST(SNODE en, oa->lsal)
  {
    en->color=OUTSPF;
    en->dist=LSINFINITY;
  }

  init_list(&oa->cand);		/* Empty list of candidates */
  oa->trcap=0;

  sl=sl_new(p->pool,sizeof(struct spf_n));
  sll=sl_new(p->pool,sizeof(list));

  cn=sl_alloc(sl);
  cn->en=oa->rt;
  oa->rt->dist=0;
  oa->rt->color=CANDIDATE;
  add_head(&oa->cand,NODE cn);

  while(!EMPTY_LIST(oa->cand))
  {
    struct top_hash_entry *act,*tmp;
    node *n;
    struct ospf_lsa_net *net;

    n=HEAD(oa->cand);
    act=((struct spf_n *)n)->en;
    rem_node(n);
    sl_free(sl,n);		/* Good idea? */

    act->color=INSPF;
    switch(act->lsa.type)
    {
      case LSA_T_RT:
        rt=(struct ospf_lsa_rt *)act->lsa_body;
	if((rt->VEB)&(1>>LSA_RT_V)) oa->trcap=1;
	rtl=(struct ospf_lsa_rt_link *)(rt+1);
	for(i=0;rt->links;i++)
	{
	  tmp=NULL;
	  switch((rtl+i)->type)
	  {
            case LSART_STUB:
	    case LSART_VLNK:
	      continue;
	      break;
	    case LSART_NET:
	      tmp=ospf_hash_find(oa->gr,rtl->data,rtl->id,LSA_T_RT);
	      break;
	    case LSART_PTP:
	      tmp=ospf_hash_find(oa->gr,rtl->data,rtl->id,LSA_T_NET);
	      break;
	    default:
	      log("Unknown link type in router lsa.\n");
	      break;
	  }
	  add_cand(&oa->cand,tmp,act,act->dist+rtl->metric,sl,sll);
	}
        break;
      case LSA_T_NET:
	net=(struct ospf_lsa_net *)act->lsa_body;
	rts=(u32 *)(net+1);
	for(i=0;i<(act->lsa.length-sizeof(struct ospf_lsa_header)-
	  sizeof(struct ospf_lsa_net))/sizeof(u32);i++)
	{
	  tmp=ospf_hash_find(oa->gr, *rts, *rts, LSA_T_RT);
          add_cand(&oa->cand,tmp,act,act->dist,sl,sll);
	}
        break;
    }
    /* FIXME Now modify rt for this entry */
  }

  /* Now calculate routes to stub networks */

  WALK_SLIST_DELSAFE(SNODE en, SNODE nx, oa->lsal)
  {
    if((en->lsa.type==LSA_T_RT)||(en->lsa.type==LSA_T_NET))
    {
      if(en->dist==LSINFINITY)
      {
        s_rem_node(SNODE en);
	/* FIXME Remove from routing table! */
	mb_free(en->lsa_body);
	ospf_hash_delete(oa->gr, en);
      }
      if(en->lsa.type==LSA_T_NET)
      {
        rt=(struct ospf_lsa_rt *)en->lsa_body;
	if((rt->VEB)&(1>>LSA_RT_V)) oa->trcap=1;
	rtl=(struct ospf_lsa_rt_link *)(rt+1);
	for(i=0;rt->links;i++)
	{
	  if((rtl+i)->type==LSART_STUB)
	  {
	    /* Check destination and so on (pg 166) */
	  }
	}
      }
    }
  }
}

void
add_cand(list *l, struct top_hash_entry *en, struct top_hash_entry *par, 
  u16 dist, slab *s, slab *sll)
{
  struct spf_n *tmp;
  node *prev;
  int flag=0;

  if(en==NULL) return;
  if(en->lsa.age==LSA_MAXAGE) return;
  /* FIXME Does it have link back? Test it! */
  if(en->color==INSPF) return;

  if(dist>en->dist) return;
  
  if(dist==en->dist)
  {
    en->nh=multi_next_hop(par,en,s,sll);
  }
  else
  {
    en->nh=calc_next_hop(par,s,sll);

    if(en->color==CANDIDATE)
    {
      WALK_LIST(tmp,*l)
      {
        if(tmp->en==en)
	{
	  rem_node(NODE tmp);
	  flag=1;
	  break;
	}
      }
    }

    if(flag!=1)
    {
      tmp=sl_alloc(s);
      tmp->en=en;
    }

    en->dist=dist;
    en->color=CANDIDATE;

    prev=NULL;

    WALK_LIST(tmp,*l)
    {
      if((tmp->en->dist>dist)||
        ((tmp->en->dist==dist)&&(tmp->en->lsa.type==LSA_T_NET)))
      {
        if(prev==NULL) add_head(l,NODE tmp);
	else insert_node(NODE tmp,prev);
        break;
      }
    }
    /* FIXME Some VLINK staff should be here */
  }
}

list *
calc_next_hop(struct top_hash_entry *par, slab *sl, slab *sll)
{
  struct spf_n *nh;
  list *l;

  if(par->nh==NULL)
  {
    if(par->lsa.type!=LSA_T_RT) return NULL;
    l=sl_alloc(sll);
    init_list(l);
    nh=sl_alloc(sl);
    nh->en=par;
    add_head(l, NODE nh);
    return l;
  }
  return par->nh;
}

list *
multi_next_hop(struct top_hash_entry *par, struct top_hash_entry *en, slab *sl,
 slab *sll)
{
  struct spf_n *n1,*n2;
  list *l1,*l2;

  l1=calc_next_hop(par,sl,sll);
  if(l1==NULL) return en->nh;
  if(en->nh==NULL) return l1;

  l2=sl_alloc(sll);
  init_list(l2);
  WALK_LIST(n1, *l1)
  {
    n2=sl_alloc(sl);
    memcpy(n2,n1,sizeof(struct spf_n));
    add_tail(l2,NODE n2);
  }

  WALK_LIST(n1, *en->nh)
  {
    n2=sl_alloc(sl);
    memcpy(n2,n1,sizeof(struct spf_n));
    add_tail(l2,NODE n2);
  }
  return l2;
}