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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* API message handling module for OSPF daemon and client.
* Copyright (C) 2001, 2002 Ralph Keller
* Copyright (c) 2022, LabN Consulting, L.L.C.
*/
#include <zebra.h>
#ifdef SUPPORT_OSPF_API
#include "linklist.h"
#include "prefix.h"
#include "if.h"
#include "table.h"
#include "memory.h"
#include "command.h"
#include "vty.h"
#include "stream.h"
#include "log.h"
#include "frrevent.h"
#include "hash.h"
#include "sockunion.h" /* for inet_aton() */
#include "buffer.h"
#include "network.h"
#include "ospfd/ospfd.h"
#include "ospfd/ospf_interface.h"
#include "ospfd/ospf_ism.h"
#include "ospfd/ospf_asbr.h"
#include "ospfd/ospf_lsa.h"
#include "ospfd/ospf_lsdb.h"
#include "ospfd/ospf_neighbor.h"
#include "ospfd/ospf_nsm.h"
#include "ospfd/ospf_flood.h"
#include "ospfd/ospf_packet.h"
#include "ospfd/ospf_spf.h"
#include "ospfd/ospf_dump.h"
#include "ospfd/ospf_route.h"
#include "ospfd/ospf_ase.h"
#include "ospfd/ospf_zebra.h"
#include "ospfd/ospf_api.h"
/* For debugging only, will be removed */
void api_opaque_lsa_print(struct ospf_lsa *lsa)
{
struct opaque_lsa {
struct lsa_header header;
uint8_t mydata[];
};
struct opaque_lsa *olsa;
int opaquelen;
int i;
ospf_lsa_header_dump(lsa->data);
olsa = (struct opaque_lsa *)lsa->data;
opaquelen = lsa->size - OSPF_LSA_HEADER_SIZE;
zlog_debug("apiserver_lsa_print: opaquelen=%d", opaquelen);
for (i = 0; i < opaquelen; i++) {
zlog_debug("0x%x ", olsa->mydata[i]);
}
zlog_debug(" ");
}
/* -----------------------------------------------------------
* Generic messages
* -----------------------------------------------------------
*/
struct msg *msg_new(uint8_t msgtype, void *msgbody, uint32_t seqnum,
uint16_t msglen)
{
struct msg *new;
new = XCALLOC(MTYPE_OSPF_API_MSG, sizeof(struct msg));
new->hdr.version = OSPF_API_VERSION;
new->hdr.msgtype = msgtype;
new->hdr.msglen = htons(msglen);
new->hdr.msgseq = htonl(seqnum);
new->s = stream_new(msglen);
assert(new->s);
stream_put(new->s, msgbody, msglen);
return new;
}
/* Duplicate a message by copying content. */
struct msg *msg_dup(struct msg *msg)
{
struct msg *new;
size_t size;
assert(msg);
size = ntohs(msg->hdr.msglen);
if (size > OSPF_MAX_LSA_SIZE)
return NULL;
new = msg_new(msg->hdr.msgtype, STREAM_DATA(msg->s),
ntohl(msg->hdr.msgseq), size);
return new;
}
/* XXX only for testing, will be removed */
struct nametab {
int value;
const char *name;
};
const char *ospf_api_typename(int msgtype)
{
struct nametab NameTab[] = {
{
MSG_REGISTER_OPAQUETYPE, "Register opaque-type",
},
{
MSG_UNREGISTER_OPAQUETYPE, "Unregister opaque-type",
},
{
MSG_REGISTER_EVENT, "Register event",
},
{
MSG_SYNC_LSDB, "Sync LSDB",
},
{
MSG_ORIGINATE_REQUEST, "Originate request",
},
{
MSG_DELETE_REQUEST, "Delete request",
},
{
MSG_REPLY, "Reply",
},
{
MSG_READY_NOTIFY, "Ready notify",
},
{
MSG_LSA_UPDATE_NOTIFY, "LSA update notify",
},
{
MSG_LSA_DELETE_NOTIFY, "LSA delete notify",
},
{
MSG_NEW_IF, "New interface",
},
{
MSG_DEL_IF, "Del interface",
},
{
MSG_ISM_CHANGE, "ISM change",
},
{
MSG_NSM_CHANGE, "NSM change",
},
{
MSG_REACHABLE_CHANGE,
"Reachable change",
},
};
int i, n = array_size(NameTab);
const char *name = NULL;
for (i = 0; i < n; i++) {
if (NameTab[i].value == msgtype) {
name = NameTab[i].name;
break;
}
}
return name ? name : "?";
}
const char *ospf_api_errname(int errcode)
{
struct nametab NameTab[] = {
{
OSPF_API_OK, "OK",
},
{
OSPF_API_NOSUCHINTERFACE, "No such interface",
},
{
OSPF_API_NOSUCHAREA, "No such area",
},
{
OSPF_API_NOSUCHLSA, "No such LSA",
},
{
OSPF_API_ILLEGALLSATYPE, "Illegal LSA type",
},
{
OSPF_API_OPAQUETYPEINUSE, "Opaque type in use",
},
{
OSPF_API_OPAQUETYPENOTREGISTERED,
"Opaque type not registered",
},
{
OSPF_API_NOTREADY, "Not ready",
},
{
OSPF_API_NOMEMORY, "No memory",
},
{
OSPF_API_ERROR, "Other error",
},
{
OSPF_API_UNDEF, "Undefined",
},
};
int i, n = array_size(NameTab);
const char *name = NULL;
for (i = 0; i < n; i++) {
if (NameTab[i].value == errcode) {
name = NameTab[i].name;
break;
}
}
return name ? name : "?";
}
void msg_print(struct msg *msg)
{
if (!msg) {
zlog_debug("msg_print msg=NULL!");
return;
}
/* API message common header part. */
zlog_debug("API-msg [%s]: type(%d),len(%d),seq(%lu),data(%p),size(%zd)",
ospf_api_typename(msg->hdr.msgtype), msg->hdr.msgtype,
ntohs(msg->hdr.msglen),
(unsigned long)ntohl(msg->hdr.msgseq), STREAM_DATA(msg->s),
STREAM_SIZE(msg->s));
return;
}
void msg_free(struct msg *msg)
{
if (msg->s)
stream_free(msg->s);
XFREE(MTYPE_OSPF_API_MSG, msg);
}
/* Set sequence number of message */
void msg_set_seq(struct msg *msg, uint32_t seqnr)
{
assert(msg);
msg->hdr.msgseq = htonl(seqnr);
}
/* Get sequence number of message */
uint32_t msg_get_seq(struct msg *msg)
{
assert(msg);
return ntohl(msg->hdr.msgseq);
}
/* -----------------------------------------------------------
* Message fifo queues
* -----------------------------------------------------------
*/
struct msg_fifo *msg_fifo_new(void)
{
return XCALLOC(MTYPE_OSPF_API_FIFO, sizeof(struct msg_fifo));
}
/* Add new message to fifo. */
void msg_fifo_push(struct msg_fifo *fifo, struct msg *msg)
{
if (fifo->tail)
fifo->tail->next = msg;
else
fifo->head = msg;
fifo->tail = msg;
fifo->count++;
}
/* Remove first message from fifo. */
struct msg *msg_fifo_pop(struct msg_fifo *fifo)
{
struct msg *msg;
msg = fifo->head;
if (msg) {
fifo->head = msg->next;
if (fifo->head == NULL)
fifo->tail = NULL;
fifo->count--;
}
return msg;
}
/* Return first fifo entry but do not remove it. */
struct msg *msg_fifo_head(struct msg_fifo *fifo)
{
return fifo->head;
}
/* Flush message fifo. */
void msg_fifo_flush(struct msg_fifo *fifo)
{
struct msg *op;
struct msg *next;
for (op = fifo->head; op; op = next) {
next = op->next;
msg_free(op);
}
fifo->head = fifo->tail = NULL;
fifo->count = 0;
}
/* Free API message fifo. */
void msg_fifo_free(struct msg_fifo *fifo)
{
msg_fifo_flush(fifo);
XFREE(MTYPE_OSPF_API_FIFO, fifo);
}
struct msg *msg_read(int fd)
{
struct msg *msg;
struct apimsghdr hdr;
uint8_t buf[OSPF_API_MAX_MSG_SIZE];
ssize_t bodylen;
ssize_t rlen;
/* Read message header */
rlen = readn(fd, (uint8_t *)&hdr, sizeof(struct apimsghdr));
if (rlen < 0) {
zlog_warn("msg_read: readn %s", safe_strerror(errno));
return NULL;
} else if (rlen == 0) {
zlog_warn("msg_read: Connection closed by peer");
return NULL;
} else if (rlen != sizeof(struct apimsghdr)) {
zlog_warn("msg_read: Cannot read message header!");
return NULL;
}
/* Check version of API protocol */
if (hdr.version != OSPF_API_VERSION) {
zlog_warn("msg_read: OSPF API protocol version mismatch");
return NULL;
}
/* Determine body length. */
bodylen = ntohs(hdr.msglen);
if (bodylen > (ssize_t)sizeof(buf)) {
zlog_warn("%s: Body Length of message greater than what we can read",
__func__);
return NULL;
}
if (bodylen > 0) {
/* Read message body */
rlen = readn(fd, buf, bodylen);
if (rlen < 0) {
zlog_warn("msg_read: readn %s", safe_strerror(errno));
return NULL;
} else if (rlen == 0) {
zlog_warn("msg_read: Connection closed by peer");
return NULL;
} else if (rlen != bodylen) {
zlog_warn("msg_read: Cannot read message body!");
return NULL;
}
}
/* Allocate new message */
msg = msg_new(hdr.msgtype, buf, ntohl(hdr.msgseq), bodylen);
return msg;
}
int msg_write(int fd, struct msg *msg)
{
uint8_t buf[OSPF_API_MAX_MSG_SIZE];
uint16_t l;
int wlen;
assert(msg);
assert(msg->s);
/* Length of OSPF LSA payload */
l = ntohs(msg->hdr.msglen);
if (l > OSPF_MAX_LSA_SIZE) {
zlog_warn("%s: wrong LSA size %d", __func__, l);
return -1;
}
/* Make contiguous memory buffer for message */
memcpy(buf, &msg->hdr, sizeof(struct apimsghdr));
memcpy(buf + sizeof(struct apimsghdr), STREAM_DATA(msg->s), l);
/* Total length of OSPF API Message */
l += sizeof(struct apimsghdr);
wlen = writen(fd, buf, l);
if (wlen < 0) {
zlog_warn("%s: writen %s", __func__, safe_strerror(errno));
return -1;
} else if (wlen == 0) {
zlog_warn("%s: Connection closed by peer", __func__);
return -1;
} else if (wlen != l) {
zlog_warn("%s: Cannot write API message", __func__);
return -1;
}
return 0;
}
/* -----------------------------------------------------------
* Specific messages
* -----------------------------------------------------------
*/
struct msg *new_msg_register_opaque_type(uint32_t seqnum, uint8_t ltype,
uint8_t otype)
{
struct msg_register_opaque_type rmsg;
rmsg.lsatype = ltype;
rmsg.opaquetype = otype;
memset(&rmsg.pad, 0, sizeof(rmsg.pad));
return msg_new(MSG_REGISTER_OPAQUETYPE, &rmsg, seqnum,
sizeof(struct msg_register_opaque_type));
}
struct msg *new_msg_register_event(uint32_t seqnum,
struct lsa_filter_type *filter)
{
uint8_t buf[OSPF_API_MAX_MSG_SIZE];
struct msg_register_event *emsg;
unsigned int len;
emsg = (struct msg_register_event *)buf;
len = sizeof(struct msg_register_event)
+ filter->num_areas * sizeof(struct in_addr);
emsg->filter.typemask = htons(filter->typemask);
emsg->filter.origin = filter->origin;
emsg->filter.num_areas = filter->num_areas;
if (len > sizeof(buf))
len = sizeof(buf);
/* API broken - missing memcpy to fill data */
return msg_new(MSG_REGISTER_EVENT, emsg, seqnum, len);
}
struct msg *new_msg_sync_lsdb(uint32_t seqnum, struct lsa_filter_type *filter)
{
uint8_t buf[OSPF_API_MAX_MSG_SIZE];
struct msg_sync_lsdb *smsg;
unsigned int len;
smsg = (struct msg_sync_lsdb *)buf;
len = sizeof(struct msg_sync_lsdb)
+ filter->num_areas * sizeof(struct in_addr);
smsg->filter.typemask = htons(filter->typemask);
smsg->filter.origin = filter->origin;
smsg->filter.num_areas = filter->num_areas;
if (len > sizeof(buf))
len = sizeof(buf);
/* API broken - missing memcpy to fill data */
return msg_new(MSG_SYNC_LSDB, smsg, seqnum, len);
}
struct msg *new_msg_originate_request(uint32_t seqnum, struct in_addr ifaddr,
struct in_addr area_id,
struct lsa_header *data)
{
struct msg_originate_request *omsg;
unsigned int omsglen;
char buf[OSPF_API_MAX_MSG_SIZE];
size_t off_data = offsetof(struct msg_originate_request, data);
size_t data_maxs = sizeof(buf) - off_data;
struct lsa_header *omsg_data = (struct lsa_header *)&buf[off_data];
omsg = (struct msg_originate_request *)buf;
omsg->ifaddr = ifaddr;
omsg->area_id = area_id;
omsglen = ntohs(data->length);
if (omsglen > data_maxs)
omsglen = data_maxs;
memcpy(omsg_data, data, omsglen);
omsglen += sizeof(struct msg_originate_request)
- sizeof(struct lsa_header);
return msg_new(MSG_ORIGINATE_REQUEST, omsg, seqnum, omsglen);
}
struct msg *new_msg_delete_request(uint32_t seqnum, struct in_addr addr,
uint8_t lsa_type, uint8_t opaque_type,
uint32_t opaque_id, uint8_t flags)
{
struct msg_delete_request dmsg;
dmsg.addr = addr;
dmsg.lsa_type = lsa_type;
dmsg.opaque_type = opaque_type;
dmsg.opaque_id = htonl(opaque_id);
memset(&dmsg.pad, 0, sizeof(dmsg.pad));
dmsg.flags = flags;
return msg_new(MSG_DELETE_REQUEST, &dmsg, seqnum,
sizeof(struct msg_delete_request));
}
struct msg *new_msg_reply(uint32_t seqnr, uint8_t rc)
{
struct msg *msg;
struct msg_reply rmsg;
/* Set return code */
rmsg.errcode = rc;
memset(&rmsg.pad, 0, sizeof(rmsg.pad));
msg = msg_new(MSG_REPLY, &rmsg, seqnr, sizeof(struct msg_reply));
return msg;
}
struct msg *new_msg_ready_notify(uint32_t seqnr, uint8_t lsa_type,
uint8_t opaque_type, struct in_addr addr)
{
struct msg_ready_notify rmsg;
rmsg.lsa_type = lsa_type;
rmsg.opaque_type = opaque_type;
memset(&rmsg.pad, 0, sizeof(rmsg.pad));
rmsg.addr = addr;
return msg_new(MSG_READY_NOTIFY, &rmsg, seqnr,
sizeof(struct msg_ready_notify));
}
struct msg *new_msg_new_if(uint32_t seqnr, struct in_addr ifaddr,
struct in_addr area_id)
{
struct msg_new_if nmsg;
nmsg.ifaddr = ifaddr;
nmsg.area_id = area_id;
return msg_new(MSG_NEW_IF, &nmsg, seqnr, sizeof(struct msg_new_if));
}
struct msg *new_msg_del_if(uint32_t seqnr, struct in_addr ifaddr)
{
struct msg_del_if dmsg;
dmsg.ifaddr = ifaddr;
return msg_new(MSG_DEL_IF, &dmsg, seqnr, sizeof(struct msg_del_if));
}
struct msg *new_msg_ism_change(uint32_t seqnr, struct in_addr ifaddr,
struct in_addr area_id, uint8_t status)
{
struct msg_ism_change imsg;
imsg.ifaddr = ifaddr;
imsg.area_id = area_id;
imsg.status = status;
memset(&imsg.pad, 0, sizeof(imsg.pad));
return msg_new(MSG_ISM_CHANGE, &imsg, seqnr,
sizeof(struct msg_ism_change));
}
struct msg *new_msg_nsm_change(uint32_t seqnr, struct in_addr ifaddr,
struct in_addr nbraddr, struct in_addr router_id,
uint8_t status)
{
struct msg_nsm_change nmsg;
nmsg.ifaddr = ifaddr;
nmsg.nbraddr = nbraddr;
nmsg.router_id = router_id;
nmsg.status = status;
memset(&nmsg.pad, 0, sizeof(nmsg.pad));
return msg_new(MSG_NSM_CHANGE, &nmsg, seqnr,
sizeof(struct msg_nsm_change));
}
struct msg *new_msg_lsa_change_notify(uint8_t msgtype, uint32_t seqnum,
struct in_addr ifaddr,
struct in_addr area_id,
uint8_t is_self_originated,
struct lsa_header *data)
{
uint8_t buf[OSPF_API_MAX_MSG_SIZE];
struct msg_lsa_change_notify *nmsg;
unsigned int len;
size_t off_data = offsetof(struct msg_lsa_change_notify, data);
size_t data_maxs = sizeof(buf) - off_data;
struct lsa_header *nmsg_data = (struct lsa_header *)&buf[off_data];
assert(data);
nmsg = (struct msg_lsa_change_notify *)buf;
nmsg->ifaddr = ifaddr;
nmsg->area_id = area_id;
nmsg->is_self_originated = is_self_originated;
memset(&nmsg->pad, 0, sizeof(nmsg->pad));
len = ntohs(data->length);
if (len > data_maxs)
len = data_maxs;
memcpy(nmsg_data, data, len);
len += sizeof(struct msg_lsa_change_notify) - sizeof(struct lsa_header);
return msg_new(msgtype, nmsg, seqnum, len);
}
struct msg *new_msg_reachable_change(uint32_t seqnum, uint16_t nadd,
struct in_addr *add, uint16_t nremove,
struct in_addr *remove)
{
uint8_t buf[OSPF_API_MAX_MSG_SIZE];
struct msg_reachable_change *nmsg = (void *)buf;
const uint insz = sizeof(*nmsg->router_ids);
const uint nmax = (sizeof(buf) - sizeof(*nmsg)) / insz;
uint len;
if (nadd > nmax)
nadd = nmax;
if (nremove > (nmax - nadd))
nremove = (nmax - nadd);
if (nadd)
memcpy(nmsg->router_ids, add, nadd * insz);
if (nremove)
memcpy(&nmsg->router_ids[nadd], remove, nremove * insz);
nmsg->nadd = htons(nadd);
nmsg->nremove = htons(nremove);
len = sizeof(*nmsg) + insz * (nadd + nremove);
return msg_new(MSG_REACHABLE_CHANGE, nmsg, seqnum, len);
}
struct msg *new_msg_router_id_change(uint32_t seqnum, struct in_addr router_id)
{
struct msg_router_id_change rmsg = {.router_id = router_id};
return msg_new(MSG_ROUTER_ID_CHANGE, &rmsg, seqnum,
sizeof(struct msg_router_id_change));
}
#endif /* SUPPORT_OSPF_API */
|