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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
|
/* $OpenBSD: labelmapping.c,v 1.29 2014/10/25 03:23:49 lteo Exp $ */
/*
* Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
#include <net/if_dl.h>
#include <netmpls/mpls.h>
#include <unistd.h>
#include <errno.h>
#include <event.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "ldpd.h"
#include "ldp.h"
#include "log.h"
#include "ldpe.h"
void gen_label_tlv(struct ibuf *, u_int32_t);
void gen_reqid_tlv(struct ibuf *, u_int32_t);
void gen_fec_tlv(struct ibuf *, struct in_addr, u_int8_t);
int tlv_decode_label(struct nbr *, struct ldp_msg *, char *, u_int16_t,
u_int32_t *);
int tlv_decode_fec_elm(struct nbr *, struct ldp_msg *, char *, u_int16_t,
u_int8_t *, u_int32_t *, u_int8_t *);
static void
enqueue_pdu(struct nbr *nbr, struct ibuf *buf, u_int16_t size)
{
struct ldp_hdr *ldp_hdr;
ldp_hdr = ibuf_seek(buf, 0, sizeof(struct ldp_hdr));
ldp_hdr->length = htons(size);
evbuf_enqueue(&nbr->tcp->wbuf, buf);
}
/* Generic function that handles all Label Message types */
void
send_labelmessage(struct nbr *nbr, u_int16_t type, struct mapping_head *mh)
{
struct ibuf *buf = NULL;
struct mapping_entry *me;
u_int16_t tlv_size, size = 0;
int first = 1;
while ((me = TAILQ_FIRST(mh)) != NULL) {
/* generate pdu */
if (first) {
if ((buf = ibuf_open(LDP_MAX_LEN)) == NULL)
fatal("send_labelmapping");
/* real size will be set up later */
gen_ldp_hdr(buf, 0);
size = LDP_HDR_PDU_LEN;
first = 0;
}
/* calculate size */
tlv_size = LDP_MSG_LEN + TLV_HDR_LEN + FEC_ELM_MIN_LEN +
PREFIX_SIZE(me->map.prefixlen);
if (type == MSG_TYPE_LABELMAPPING ||
me->map.flags & F_MAP_OPTLABEL)
tlv_size += LABEL_TLV_LEN;
if (me->map.flags & F_MAP_REQ_ID)
tlv_size += REQID_TLV_LEN;
/* maximum pdu length exceeded, we need a new ldp pdu */
if (size + tlv_size > LDP_MAX_LEN) {
enqueue_pdu(nbr, buf, size);
first = 1;
continue;
}
size += tlv_size;
/* append message and tlvs */
gen_msg_tlv(buf, type, tlv_size);
gen_fec_tlv(buf, me->map.prefix, me->map.prefixlen);
if (type == MSG_TYPE_LABELMAPPING ||
me->map.flags & F_MAP_OPTLABEL)
gen_label_tlv(buf, me->map.label);
if (me->map.flags & F_MAP_REQ_ID)
gen_reqid_tlv(buf, me->map.requestid);
TAILQ_REMOVE(mh, me, entry);
free(me);
}
enqueue_pdu(nbr, buf, size);
nbr_fsm(nbr, NBR_EVT_PDU_SENT);
}
/* Generic function that handles all Label Message types */
int
recv_labelmessage(struct nbr *nbr, char *buf, u_int16_t len, u_int16_t type)
{
struct ldp_msg lm;
struct tlv ft;
u_int32_t label, reqid;
u_int8_t flags = 0;
int feclen, lbllen, tlen;
u_int8_t addr_type;
struct mapping_entry *me;
struct mapping_head mh;
bcopy(buf, &lm, sizeof(lm));
buf += sizeof(struct ldp_msg);
len -= sizeof(struct ldp_msg);
/* FEC TLV */
if (len < sizeof(ft)) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm.msgid, lm.type);
return (-1);
}
bcopy(buf, &ft, sizeof(ft));
if (ntohs(ft.type) != TLV_TYPE_FEC) {
send_notification_nbr(nbr, S_MISS_MSG, lm.msgid, lm.type);
return (-1);
}
feclen = ntohs(ft.length);
if (feclen > len - TLV_HDR_LEN) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm.msgid, lm.type);
return (-1);
}
buf += TLV_HDR_LEN; /* just advance to the end of the fec header */
len -= TLV_HDR_LEN;
TAILQ_INIT(&mh);
do {
me = calloc(1, sizeof(*me));
me->map.messageid = lm.msgid;
TAILQ_INSERT_HEAD(&mh, me, entry);
if ((tlen = tlv_decode_fec_elm(nbr, &lm, buf, feclen,
&addr_type, &me->map.prefix.s_addr, &me->map.prefixlen)) == -1)
goto err;
/*
* The Wildcard FEC Element can be used only in the
* Label Withdraw and Label Release messages.
*/
if (addr_type == FEC_WILDCARD) {
switch (type) {
case MSG_TYPE_LABELWITHDRAW:
case MSG_TYPE_LABELRELEASE:
me->map.flags |= F_MAP_WILDCARD;
break;
default:
session_shutdown(nbr, S_BAD_TLV_VAL, lm.msgid,
lm.type);
goto err;
break;
}
}
/*
* LDP supports the use of multiple FEC Elements per
* FEC for the Label Mapping message only.
*/
if (type != MSG_TYPE_LABELMAPPING &&
tlen != feclen) {
session_shutdown(nbr, S_BAD_TLV_VAL, lm.msgid,
lm.type);
goto err;
}
buf += tlen;
len -= tlen;
feclen -= tlen;
} while (feclen > 0);
/* Mandatory Label TLV */
if (type == MSG_TYPE_LABELMAPPING) {
lbllen = tlv_decode_label(nbr, &lm, buf, len, &label);
if (lbllen == -1)
goto err;
buf += lbllen;
len -= lbllen;
}
/* Optional Parameters */
while (len > 0) {
struct tlv tlv;
if (len < sizeof(tlv)) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm.msgid,
lm.type);
goto err;
}
bcopy(buf, &tlv, sizeof(tlv));
buf += TLV_HDR_LEN;
len -= TLV_HDR_LEN;
switch (ntohs(tlv.type)) {
case TLV_TYPE_LABELREQUEST:
switch (type) {
case MSG_TYPE_LABELMAPPING:
case MSG_TYPE_LABELABORTREQ:
if (ntohs(tlv.length) != 4) {
session_shutdown(nbr, S_BAD_TLV_LEN,
lm.msgid, lm.type);
goto err;
}
flags |= F_MAP_REQ_ID;
reqid = ntohl(*(u_int32_t *)buf);
break;
default:
/* ignore */
break;
}
break;
case TLV_TYPE_HOPCOUNT:
case TLV_TYPE_PATHVECTOR:
/* TODO just ignore for now */
break;
case TLV_TYPE_GENERICLABEL:
switch (type) {
case MSG_TYPE_LABELWITHDRAW:
case MSG_TYPE_LABELRELEASE:
if (ntohs(tlv.length) != 4) {
session_shutdown(nbr, S_BAD_TLV_LEN,
lm.msgid, lm.type);
goto err;
}
label = ntohl(*(u_int32_t *)buf);
flags |= F_MAP_OPTLABEL;
break;
default:
/* ignore */
break;
}
break;
case TLV_TYPE_ATMLABEL:
case TLV_TYPE_FRLABEL:
switch (type) {
case MSG_TYPE_LABELWITHDRAW:
case MSG_TYPE_LABELRELEASE:
/* unsupported */
session_shutdown(nbr, S_BAD_TLV_VAL, lm.msgid,
lm.type);
goto err;
break;
default:
/* ignore */
break;
}
break;
default:
if (!(ntohs(tlv.type) & UNKNOWN_FLAG)) {
send_notification_nbr(nbr, S_UNKNOWN_TLV,
lm.msgid, lm.type);
}
/* ignore unknown tlv */
break;
}
buf += ntohs(tlv.length);
len -= ntohs(tlv.length);
}
/* notify lde about the received message. */
while ((me = TAILQ_FIRST(&mh)) != NULL) {
int imsg_type = IMSG_NONE;
me->map.flags |= flags;
if (type == MSG_TYPE_LABELMAPPING ||
me->map.flags & F_MAP_OPTLABEL)
me->map.label = label;
if (me->map.flags & F_MAP_REQ_ID)
me->map.requestid = reqid;
switch (type) {
case MSG_TYPE_LABELMAPPING:
imsg_type = IMSG_LABEL_MAPPING;
break;
case MSG_TYPE_LABELREQUEST:
imsg_type = IMSG_LABEL_REQUEST;
break;
case MSG_TYPE_LABELWITHDRAW:
imsg_type = IMSG_LABEL_WITHDRAW;
break;
case MSG_TYPE_LABELRELEASE:
imsg_type = IMSG_LABEL_RELEASE;
break;
case MSG_TYPE_LABELABORTREQ:
imsg_type = IMSG_LABEL_ABORT;
break;
default:
break;
}
ldpe_imsg_compose_lde(imsg_type, nbr->peerid, 0, &me->map,
sizeof(struct map));
TAILQ_REMOVE(&mh, me, entry);
free(me);
}
return (ntohs(lm.length));
err:
mapping_list_clr(&mh);
return (-1);
}
/* Other TLV related functions */
void
gen_label_tlv(struct ibuf *buf, u_int32_t label)
{
struct label_tlv lt;
lt.type = htons(TLV_TYPE_GENERICLABEL);
lt.length = htons(sizeof(label));
lt.label = htonl(label);
ibuf_add(buf, <, sizeof(lt));
}
int
tlv_decode_label(struct nbr *nbr, struct ldp_msg *lm, char *buf,
u_int16_t len, u_int32_t *label)
{
struct label_tlv lt;
if (len < sizeof(lt)) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm->msgid, lm->type);
return (-1);
}
bcopy(buf, <, sizeof(lt));
if (!(ntohs(lt.type) & TLV_TYPE_GENERICLABEL)) {
send_notification_nbr(nbr, S_MISS_MSG, lm->msgid, lm->type);
return (-1);
}
switch (htons(lt.type)) {
case TLV_TYPE_GENERICLABEL:
if (ntohs(lt.length) != sizeof(lt) - TLV_HDR_LEN) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm->msgid,
lm->type);
return (-1);
}
*label = ntohl(lt.label);
if (*label > MPLS_LABEL_MAX ||
(*label <= MPLS_LABEL_RESERVED_MAX &&
*label != MPLS_LABEL_IPV4NULL &&
*label != MPLS_LABEL_IMPLNULL)) {
session_shutdown(nbr, S_BAD_TLV_VAL, lm->msgid,
lm->type);
return (-1);
}
break;
case TLV_TYPE_ATMLABEL:
case TLV_TYPE_FRLABEL:
default:
/* unsupported */
session_shutdown(nbr, S_BAD_TLV_VAL, lm->msgid, lm->type);
return (-1);
}
return (sizeof(lt));
}
void
gen_reqid_tlv(struct ibuf *buf, u_int32_t reqid)
{
struct reqid_tlv rt;
rt.type = htons(TLV_TYPE_LABELREQUEST);
rt.length = htons(sizeof(reqid));
rt.reqid = htonl(reqid);
ibuf_add(buf, &rt, sizeof(rt));
}
void
gen_fec_tlv(struct ibuf *buf, struct in_addr prefix, u_int8_t prefixlen)
{
struct tlv ft;
u_int8_t type;
u_int16_t family;
u_int8_t len;
len = PREFIX_SIZE(prefixlen);
ft.type = htons(TLV_TYPE_FEC);
ft.length = htons(sizeof(type) + sizeof(family) + sizeof(prefixlen) +
len);
ibuf_add(buf, &ft, sizeof(ft));
type = FEC_PREFIX;
family = htons(FEC_IPV4);
ibuf_add(buf, &type, sizeof(type));
ibuf_add(buf, &family, sizeof(family));
ibuf_add(buf, &prefixlen, sizeof(prefixlen));
if (len)
ibuf_add(buf, &prefix, len);
}
int
tlv_decode_fec_elm(struct nbr *nbr, struct ldp_msg *lm, char *buf,
u_int16_t len, u_int8_t *type, u_int32_t *prefix, u_int8_t *prefixlen)
{
u_int16_t family, off = 0;
*type = *buf;
off += sizeof(u_int8_t);
if (*type == FEC_WILDCARD) {
if (len == 0)
return (off);
else {
session_shutdown(nbr, S_BAD_TLV_VAL, lm->msgid,
lm->type);
return (-1);
}
}
if (*type != FEC_PREFIX) {
send_notification_nbr(nbr, S_UNKNOWN_FEC, lm->msgid, lm->type);
return (-1);
}
if (len < FEC_ELM_MIN_LEN) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm->msgid, lm->type);
return (-1);
}
bcopy(buf + off, &family, sizeof(family));
off += sizeof(family);
if (family != htons(FEC_IPV4)) {
send_notification_nbr(nbr, S_UNSUP_ADDR, lm->msgid, lm->type);
return (-1);
}
*prefixlen = buf[off];
off += sizeof(u_int8_t);
if (len < off + PREFIX_SIZE(*prefixlen)) {
session_shutdown(nbr, S_BAD_TLV_LEN, lm->msgid, lm->type);
return (-1);
}
*prefix = 0;
bcopy(buf + off, prefix, PREFIX_SIZE(*prefixlen));
return (off + PREFIX_SIZE(*prefixlen));
}
|