]> git.proxmox.com Git - mirror_frr.git/blob - ldpd/ldpd.h
ldpd: use red-black trees to store 'tnbr' elements
[mirror_frr.git] / ldpd / ldpd.h
1 /* $OpenBSD$ */
2
3 /*
4 * Copyright (c) 2013, 2016 Renato Westphal <renato@openbsd.org>
5 * Copyright (c) 2009 Michele Marchetto <michele@openbsd.org>
6 * Copyright (c) 2004 Esben Norby <norby@openbsd.org>
7 * Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
8 *
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 */
21
22 #ifndef _LDPD_H_
23 #define _LDPD_H_
24
25 #include "openbsd-queue.h"
26 #include "openbsd-tree.h"
27 #include "imsg.h"
28 #include "thread.h"
29 #include "qobj.h"
30
31 #include "ldp.h"
32
33 #define CONF_FILE "/etc/ldpd.conf"
34 #define LDPD_USER "_ldpd"
35
36 #define LDPD_OPT_VERBOSE 0x00000001
37 #define LDPD_OPT_VERBOSE2 0x00000002
38 #define LDPD_OPT_NOACTION 0x00000004
39
40 #define TCP_MD5_KEY_LEN 80
41 #define L2VPN_NAME_LEN 32
42
43 #define RT_BUF_SIZE 16384
44 #define MAX_RTSOCK_BUF 128 * 1024
45 #define LDP_BACKLOG 128
46
47 #define F_LDPD_INSERTED 0x0001
48 #define F_CONNECTED 0x0002
49 #define F_STATIC 0x0004
50 #define F_DYNAMIC 0x0008
51 #define F_REJECT 0x0010
52 #define F_BLACKHOLE 0x0020
53 #define F_REDISTRIBUTED 0x0040
54
55 struct evbuf {
56 struct msgbuf wbuf;
57 struct thread *ev;
58 int (*handler)(struct thread *);
59 void *arg;
60 };
61
62 struct imsgev {
63 struct imsgbuf ibuf;
64 int (*handler_write)(struct thread *);
65 struct thread *ev_write;
66 int (*handler_read)(struct thread *);
67 struct thread *ev_read;
68 };
69
70 enum imsg_type {
71 IMSG_NONE,
72 IMSG_CTL_RELOAD,
73 IMSG_CTL_SHOW_INTERFACE,
74 IMSG_CTL_SHOW_DISCOVERY,
75 IMSG_CTL_SHOW_DISC_IFACE,
76 IMSG_CTL_SHOW_DISC_TNBR,
77 IMSG_CTL_SHOW_DISC_ADJ,
78 IMSG_CTL_SHOW_NBR,
79 IMSG_CTL_SHOW_NBR_DISC,
80 IMSG_CTL_SHOW_NBR_END,
81 IMSG_CTL_SHOW_LIB,
82 IMSG_CTL_SHOW_L2VPN_PW,
83 IMSG_CTL_SHOW_L2VPN_BINDING,
84 IMSG_CTL_CLEAR_NBR,
85 IMSG_CTL_FIB_COUPLE,
86 IMSG_CTL_FIB_DECOUPLE,
87 IMSG_CTL_KROUTE,
88 IMSG_CTL_KROUTE_ADDR,
89 IMSG_CTL_IFINFO,
90 IMSG_CTL_END,
91 IMSG_CTL_LOG_VERBOSE,
92 IMSG_KLABEL_CHANGE,
93 IMSG_KLABEL_DELETE,
94 IMSG_KPWLABEL_CHANGE,
95 IMSG_KPWLABEL_DELETE,
96 IMSG_IFSTATUS,
97 IMSG_NEWADDR,
98 IMSG_DELADDR,
99 IMSG_RTRID_UPDATE,
100 IMSG_LABEL_MAPPING,
101 IMSG_LABEL_MAPPING_FULL,
102 IMSG_LABEL_REQUEST,
103 IMSG_LABEL_RELEASE,
104 IMSG_LABEL_WITHDRAW,
105 IMSG_LABEL_ABORT,
106 IMSG_REQUEST_ADD,
107 IMSG_REQUEST_ADD_END,
108 IMSG_MAPPING_ADD,
109 IMSG_MAPPING_ADD_END,
110 IMSG_RELEASE_ADD,
111 IMSG_RELEASE_ADD_END,
112 IMSG_WITHDRAW_ADD,
113 IMSG_WITHDRAW_ADD_END,
114 IMSG_ADDRESS_ADD,
115 IMSG_ADDRESS_DEL,
116 IMSG_NOTIFICATION,
117 IMSG_NOTIFICATION_SEND,
118 IMSG_NEIGHBOR_UP,
119 IMSG_NEIGHBOR_DOWN,
120 IMSG_NETWORK_ADD,
121 IMSG_NETWORK_ADD_END,
122 IMSG_NETWORK_DEL,
123 IMSG_SOCKET_IPC,
124 IMSG_SOCKET_NET,
125 IMSG_CLOSE_SOCKETS,
126 IMSG_REQUEST_SOCKETS,
127 IMSG_SETUP_SOCKETS,
128 IMSG_RECONF_CONF,
129 IMSG_RECONF_IFACE,
130 IMSG_RECONF_TNBR,
131 IMSG_RECONF_NBRP,
132 IMSG_RECONF_L2VPN,
133 IMSG_RECONF_L2VPN_IF,
134 IMSG_RECONF_L2VPN_PW,
135 IMSG_RECONF_L2VPN_IPW,
136 IMSG_RECONF_END,
137 IMSG_DEBUG_UPDATE,
138 IMSG_LOG
139 };
140
141 union ldpd_addr {
142 struct in_addr v4;
143 struct in6_addr v6;
144 };
145
146 #define IN6_IS_SCOPE_EMBED(a) \
147 ((IN6_IS_ADDR_LINKLOCAL(a)) || \
148 (IN6_IS_ADDR_MC_LINKLOCAL(a)) || \
149 (IN6_IS_ADDR_MC_INTFACELOCAL(a)))
150
151 /* interface states */
152 #define IF_STA_DOWN 0x01
153 #define IF_STA_ACTIVE 0x02
154
155 /* targeted neighbor states */
156 #define TNBR_STA_DOWN 0x01
157 #define TNBR_STA_ACTIVE 0x02
158
159 /* interface types */
160 enum iface_type {
161 IF_TYPE_POINTOPOINT,
162 IF_TYPE_BROADCAST
163 };
164
165 /* neighbor states */
166 #define NBR_STA_PRESENT 0x0001
167 #define NBR_STA_INITIAL 0x0002
168 #define NBR_STA_OPENREC 0x0004
169 #define NBR_STA_OPENSENT 0x0008
170 #define NBR_STA_OPER 0x0010
171 #define NBR_STA_SESSION (NBR_STA_INITIAL | NBR_STA_OPENREC | \
172 NBR_STA_OPENSENT | NBR_STA_OPER)
173
174 /* neighbor events */
175 enum nbr_event {
176 NBR_EVT_NOTHING,
177 NBR_EVT_MATCH_ADJ,
178 NBR_EVT_CONNECT_UP,
179 NBR_EVT_CLOSE_SESSION,
180 NBR_EVT_INIT_RCVD,
181 NBR_EVT_KEEPALIVE_RCVD,
182 NBR_EVT_PDU_RCVD,
183 NBR_EVT_PDU_SENT,
184 NBR_EVT_INIT_SENT
185 };
186
187 /* neighbor actions */
188 enum nbr_action {
189 NBR_ACT_NOTHING,
190 NBR_ACT_RST_KTIMEOUT,
191 NBR_ACT_SESSION_EST,
192 NBR_ACT_RST_KTIMER,
193 NBR_ACT_CONNECT_SETUP,
194 NBR_ACT_PASSIVE_INIT,
195 NBR_ACT_KEEPALIVE_SEND,
196 NBR_ACT_CLOSE_SESSION
197 };
198
199 TAILQ_HEAD(mapping_head, mapping_entry);
200
201 struct map {
202 uint8_t type;
203 uint32_t msg_id;
204 union {
205 struct {
206 uint16_t af;
207 union ldpd_addr prefix;
208 uint8_t prefixlen;
209 } prefix;
210 struct {
211 uint16_t type;
212 uint32_t pwid;
213 uint32_t group_id;
214 uint16_t ifmtu;
215 } pwid;
216 } fec;
217 struct {
218 uint32_t status_code;
219 uint32_t msg_id;
220 uint16_t msg_type;
221 } st;
222 uint32_t label;
223 uint32_t requestid;
224 uint32_t pw_status;
225 uint8_t flags;
226 };
227 #define F_MAP_REQ_ID 0x01 /* optional request message id present */
228 #define F_MAP_STATUS 0x02 /* status */
229 #define F_MAP_PW_CWORD 0x04 /* pseudowire control word */
230 #define F_MAP_PW_ID 0x08 /* pseudowire connection id */
231 #define F_MAP_PW_IFMTU 0x10 /* pseudowire interface parameter */
232 #define F_MAP_PW_STATUS 0x20 /* pseudowire status */
233
234 struct notify_msg {
235 uint32_t status_code;
236 uint32_t msg_id; /* network byte order */
237 uint16_t msg_type; /* network byte order */
238 uint32_t pw_status;
239 struct map fec;
240 uint8_t flags;
241 };
242 #define F_NOTIF_PW_STATUS 0x01 /* pseudowire status tlv present */
243 #define F_NOTIF_FEC 0x02 /* fec tlv present */
244
245 struct if_addr {
246 LIST_ENTRY(if_addr) entry;
247 int af;
248 union ldpd_addr addr;
249 uint8_t prefixlen;
250 union ldpd_addr dstbrd;
251 };
252 LIST_HEAD(if_addr_head, if_addr);
253
254 struct iface_af {
255 struct iface *iface;
256 int af;
257 int enabled;
258 int state;
259 LIST_HEAD(, adj) adj_list;
260 time_t uptime;
261 struct thread *hello_timer;
262 uint16_t hello_holdtime;
263 uint16_t hello_interval;
264 };
265
266 struct iface {
267 RB_ENTRY(iface) entry;
268 char name[IF_NAMESIZE];
269 unsigned int ifindex;
270 struct if_addr_head addr_list;
271 struct in6_addr linklocal;
272 enum iface_type type;
273 uint16_t flags;
274 struct iface_af ipv4;
275 struct iface_af ipv6;
276 QOBJ_FIELDS
277 };
278 RB_HEAD(iface_head, iface);
279 RB_PROTOTYPE(iface_head, iface, entry, iface_compare);
280 DECLARE_QOBJ_TYPE(iface)
281
282 /* source of targeted hellos */
283 struct tnbr {
284 RB_ENTRY(tnbr) entry;
285 struct thread *hello_timer;
286 struct adj *adj;
287 int af;
288 union ldpd_addr addr;
289 int state;
290 uint16_t pw_count;
291 uint8_t flags;
292 QOBJ_FIELDS
293 };
294 RB_HEAD(tnbr_head, tnbr);
295 RB_PROTOTYPE(tnbr_head, tnbr, entry, tnbr_compare);
296 DECLARE_QOBJ_TYPE(tnbr)
297 #define F_TNBR_CONFIGURED 0x01
298 #define F_TNBR_DYNAMIC 0x02
299
300 enum auth_method {
301 AUTH_NONE,
302 AUTH_MD5SIG
303 };
304
305 /* neighbor specific parameters */
306 struct nbr_params {
307 LIST_ENTRY(nbr_params) entry;
308 struct in_addr lsr_id;
309 uint16_t keepalive;
310 int gtsm_enabled;
311 uint8_t gtsm_hops;
312 struct {
313 enum auth_method method;
314 char md5key[TCP_MD5_KEY_LEN];
315 uint8_t md5key_len;
316 } auth;
317 uint8_t flags;
318 QOBJ_FIELDS
319 };
320 DECLARE_QOBJ_TYPE(nbr_params)
321 #define F_NBRP_KEEPALIVE 0x01
322 #define F_NBRP_GTSM 0x02
323 #define F_NBRP_GTSM_HOPS 0x04
324
325 struct l2vpn_if {
326 LIST_ENTRY(l2vpn_if) entry;
327 struct l2vpn *l2vpn;
328 char ifname[IF_NAMESIZE];
329 unsigned int ifindex;
330 uint16_t flags;
331 QOBJ_FIELDS
332 };
333 DECLARE_QOBJ_TYPE(l2vpn_if)
334
335 struct l2vpn_pw {
336 LIST_ENTRY(l2vpn_pw) entry;
337 struct l2vpn *l2vpn;
338 struct in_addr lsr_id;
339 int af;
340 union ldpd_addr addr;
341 uint32_t pwid;
342 char ifname[IF_NAMESIZE];
343 unsigned int ifindex;
344 uint32_t remote_group;
345 uint16_t remote_mtu;
346 uint32_t remote_status;
347 uint8_t flags;
348 QOBJ_FIELDS
349 };
350 DECLARE_QOBJ_TYPE(l2vpn_pw)
351 #define F_PW_STATUSTLV_CONF 0x01 /* status tlv configured */
352 #define F_PW_STATUSTLV 0x02 /* status tlv negotiated */
353 #define F_PW_CWORD_CONF 0x04 /* control word configured */
354 #define F_PW_CWORD 0x08 /* control word negotiated */
355 #define F_PW_STATUS_UP 0x10 /* pseudowire is operational */
356 #define F_PW_STATIC_NBR_ADDR 0x20 /* static neighbor address configured */
357
358 struct l2vpn {
359 LIST_ENTRY(l2vpn) entry;
360 char name[L2VPN_NAME_LEN];
361 int type;
362 int pw_type;
363 int mtu;
364 char br_ifname[IF_NAMESIZE];
365 unsigned int br_ifindex;
366 LIST_HEAD(, l2vpn_if) if_list;
367 LIST_HEAD(, l2vpn_pw) pw_list;
368 LIST_HEAD(, l2vpn_pw) pw_inactive_list;
369 QOBJ_FIELDS
370 };
371 DECLARE_QOBJ_TYPE(l2vpn)
372 #define L2VPN_TYPE_VPWS 1
373 #define L2VPN_TYPE_VPLS 2
374
375 /* ldp_conf */
376 enum ldpd_process {
377 PROC_MAIN,
378 PROC_LDP_ENGINE,
379 PROC_LDE_ENGINE
380 } ldpd_process;
381
382 enum socket_type {
383 LDP_SOCKET_DISC,
384 LDP_SOCKET_EDISC,
385 LDP_SOCKET_SESSION
386 };
387
388 enum hello_type {
389 HELLO_LINK,
390 HELLO_TARGETED
391 };
392
393 struct ldpd_af_conf {
394 uint16_t keepalive;
395 uint16_t lhello_holdtime;
396 uint16_t lhello_interval;
397 uint16_t thello_holdtime;
398 uint16_t thello_interval;
399 union ldpd_addr trans_addr;
400 int flags;
401 };
402 #define F_LDPD_AF_ENABLED 0x0001
403 #define F_LDPD_AF_THELLO_ACCEPT 0x0002
404 #define F_LDPD_AF_EXPNULL 0x0004
405 #define F_LDPD_AF_NO_GTSM 0x0008
406
407 struct ldpd_conf {
408 struct in_addr rtr_id;
409 struct ldpd_af_conf ipv4;
410 struct ldpd_af_conf ipv6;
411 struct iface_head iface_tree;
412 struct tnbr_head tnbr_tree;
413 LIST_HEAD(, nbr_params) nbrp_list;
414 LIST_HEAD(, l2vpn) l2vpn_list;
415 uint16_t lhello_holdtime;
416 uint16_t lhello_interval;
417 uint16_t thello_holdtime;
418 uint16_t thello_interval;
419 uint16_t trans_pref;
420 int flags;
421 QOBJ_FIELDS
422 };
423 DECLARE_QOBJ_TYPE(ldpd_conf)
424 #define F_LDPD_NO_FIB_UPDATE 0x0001
425 #define F_LDPD_DS_CISCO_INTEROP 0x0002
426 #define F_LDPD_ENABLED 0x0004
427
428 struct ldpd_af_global {
429 struct thread *disc_ev;
430 struct thread *edisc_ev;
431 int ldp_disc_socket;
432 int ldp_edisc_socket;
433 int ldp_session_socket;
434 };
435
436 struct ldpd_global {
437 int cmd_opts;
438 time_t uptime;
439 struct in_addr rtr_id;
440 struct ldpd_af_global ipv4;
441 struct ldpd_af_global ipv6;
442 uint32_t conf_seqnum;
443 int pfkeysock;
444 struct if_addr_head addr_list;
445 LIST_HEAD(, adj) adj_list;
446 struct in_addr mcast_addr_v4;
447 struct in6_addr mcast_addr_v6;
448 TAILQ_HEAD(, pending_conn) pending_conns;
449 };
450
451 /* kroute */
452 struct kroute {
453 int af;
454 union ldpd_addr prefix;
455 uint8_t prefixlen;
456 union ldpd_addr nexthop;
457 uint32_t local_label;
458 uint32_t remote_label;
459 unsigned short ifindex;
460 uint8_t priority;
461 uint16_t flags;
462 };
463
464 struct kpw {
465 unsigned short ifindex;
466 int pw_type;
467 int af;
468 union ldpd_addr nexthop;
469 uint32_t local_label;
470 uint32_t remote_label;
471 uint8_t flags;
472 };
473
474 struct kaddr {
475 unsigned short ifindex;
476 int af;
477 union ldpd_addr addr;
478 uint8_t prefixlen;
479 union ldpd_addr dstbrd;
480 };
481
482 struct kif {
483 char ifname[IF_NAMESIZE];
484 unsigned short ifindex;
485 int flags;
486 int mtu;
487 };
488
489 /* control data structures */
490 struct ctl_iface {
491 int af;
492 char name[IF_NAMESIZE];
493 unsigned int ifindex;
494 int state;
495 uint16_t flags;
496 enum iface_type type;
497 uint16_t hello_holdtime;
498 uint16_t hello_interval;
499 time_t uptime;
500 uint16_t adj_cnt;
501 };
502
503 struct ctl_disc_if {
504 char name[IF_NAMESIZE];
505 int active_v4;
506 int active_v6;
507 int no_adj;
508 };
509
510 struct ctl_disc_tnbr {
511 int af;
512 union ldpd_addr addr;
513 int no_adj;
514 };
515
516 struct ctl_adj {
517 int af;
518 struct in_addr id;
519 enum hello_type type;
520 char ifname[IF_NAMESIZE];
521 union ldpd_addr src_addr;
522 uint16_t holdtime;
523 union ldpd_addr trans_addr;
524 };
525
526 struct ctl_nbr {
527 int af;
528 struct in_addr id;
529 union ldpd_addr laddr;
530 in_port_t lport;
531 union ldpd_addr raddr;
532 in_port_t rport;
533 uint16_t holdtime;
534 time_t uptime;
535 int nbr_state;
536 };
537
538 struct ctl_rt {
539 int af;
540 union ldpd_addr prefix;
541 uint8_t prefixlen;
542 struct in_addr nexthop; /* lsr-id */
543 uint32_t local_label;
544 uint32_t remote_label;
545 uint8_t flags;
546 uint8_t in_use;
547 int first;
548 };
549
550 struct ctl_pw {
551 uint16_t type;
552 char l2vpn_name[L2VPN_NAME_LEN];
553 char ifname[IF_NAMESIZE];
554 uint32_t pwid;
555 struct in_addr lsr_id;
556 uint32_t local_label;
557 uint32_t local_gid;
558 uint16_t local_ifmtu;
559 uint8_t local_cword;
560 uint32_t remote_label;
561 uint32_t remote_gid;
562 uint16_t remote_ifmtu;
563 uint8_t remote_cword;
564 uint32_t status;
565 };
566
567 extern struct ldpd_conf *ldpd_conf;
568 extern struct ldpd_global global;
569
570 /* parse.y */
571 struct ldpd_conf *parse_config(char *);
572 int cmdline_symset(char *);
573
574 /* kroute.c */
575 void kif_redistribute(const char *);
576 int kr_change(struct kroute *);
577 int kr_delete(struct kroute *);
578 int kmpw_set(struct kpw *);
579 int kmpw_unset(struct kpw *);
580
581 /* util.c */
582 uint8_t mask2prefixlen(in_addr_t);
583 uint8_t mask2prefixlen6(struct sockaddr_in6 *);
584 in_addr_t prefixlen2mask(uint8_t);
585 struct in6_addr *prefixlen2mask6(uint8_t);
586 void ldp_applymask(int, union ldpd_addr *,
587 const union ldpd_addr *, int);
588 int ldp_addrcmp(int, const union ldpd_addr *,
589 const union ldpd_addr *);
590 int ldp_addrisset(int, const union ldpd_addr *);
591 int ldp_prefixcmp(int, const union ldpd_addr *,
592 const union ldpd_addr *, uint8_t);
593 int bad_addr_v4(struct in_addr);
594 int bad_addr_v6(struct in6_addr *);
595 int bad_addr(int, union ldpd_addr *);
596 void embedscope(struct sockaddr_in6 *);
597 void recoverscope(struct sockaddr_in6 *);
598 void addscope(struct sockaddr_in6 *, uint32_t);
599 void clearscope(struct in6_addr *);
600 struct sockaddr *addr2sa(int af, union ldpd_addr *, uint16_t);
601 void sa2addr(struct sockaddr *, int *, union ldpd_addr *,
602 in_port_t *);
603 socklen_t sockaddr_len(struct sockaddr *);
604
605 /* ldpd.c */
606 int ldp_write_handler(struct thread *);
607 void main_imsg_compose_ldpe(int, pid_t, void *, uint16_t);
608 void main_imsg_compose_lde(int, pid_t, void *, uint16_t);
609 int main_imsg_compose_both(enum imsg_type, void *,
610 uint16_t);
611 void imsg_event_add(struct imsgev *);
612 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t,
613 pid_t, int, void *, uint16_t);
614 void evbuf_enqueue(struct evbuf *, struct ibuf *);
615 void evbuf_event_add(struct evbuf *);
616 void evbuf_init(struct evbuf *, int,
617 int (*)(struct thread *), void *);
618 void evbuf_clear(struct evbuf *);
619 struct ldpd_af_conf *ldp_af_conf_get(struct ldpd_conf *, int);
620 struct ldpd_af_global *ldp_af_global_get(struct ldpd_global *, int);
621 int ldp_is_dual_stack(struct ldpd_conf *);
622 in_addr_t ldp_rtr_id_get(struct ldpd_conf *);
623 int ldp_reload(struct ldpd_conf *);
624 int ldp_reload_ref(struct ldpd_conf *, void **);
625 struct ldpd_conf *ldp_dup_config_ref(struct ldpd_conf *, void **ref);
626 struct ldpd_conf *ldp_dup_config(struct ldpd_conf *);
627 void ldp_clear_config(struct ldpd_conf *);
628 void merge_config(struct ldpd_conf *, struct ldpd_conf *);
629 struct ldpd_conf *config_new_empty(void);
630 void config_clear(struct ldpd_conf *);
631
632 /* ldp_vty_conf.c */
633 /* NOTE: the parameters' names should be preserved because of codegen */
634 struct iface *iface_new_api(struct ldpd_conf *conf,
635 const char *name);
636 void iface_del_api(struct ldpd_conf *conf,
637 struct iface *iface);
638 struct tnbr *tnbr_new_api(struct ldpd_conf *conf, int af,
639 union ldpd_addr *addr);
640 void tnbr_del_api(struct ldpd_conf *conf, struct tnbr *tnbr);
641 struct nbr_params *nbrp_new_api(struct ldpd_conf *cfg,
642 struct in_addr lsr_id);
643 void nbrp_del_api(struct nbr_params *nbrp);
644 struct l2vpn *l2vpn_new_api(struct ldpd_conf *cfg, const char *name);
645 void l2vpn_del_api(struct l2vpn *l2vpn);
646 struct l2vpn_if *l2vpn_if_new_api(struct ldpd_conf *conf,
647 struct l2vpn *l2vpn, const char *ifname);
648 void l2vpn_if_del_api(struct l2vpn_if *lif);
649 struct l2vpn_pw *l2vpn_pw_new_api(struct ldpd_conf *conf,
650 struct l2vpn *l2vpn, const char *ifname);
651 void l2vpn_pw_del_api(struct l2vpn_pw *pw);
652
653 /* socket.c */
654 int ldp_create_socket(int, enum socket_type);
655 void sock_set_nonblock(int);
656 void sock_set_cloexec(int);
657 void sock_set_recvbuf(int);
658 int sock_set_reuse(int, int);
659 int sock_set_bindany(int, int);
660 int sock_set_md5sig(int, int, union ldpd_addr *, const char *);
661 int sock_set_ipv4_tos(int, int);
662 int sock_set_ipv4_pktinfo(int, int);
663 int sock_set_ipv4_recvdstaddr(int, int);
664 int sock_set_ipv4_recvif(int, int);
665 int sock_set_ipv4_minttl(int, int);
666 int sock_set_ipv4_ucast_ttl(int fd, int);
667 int sock_set_ipv4_mcast_ttl(int, uint8_t);
668 int sock_set_ipv4_mcast(struct iface *);
669 int sock_set_ipv4_mcast_loop(int);
670 int sock_set_ipv6_dscp(int, int);
671 int sock_set_ipv6_pktinfo(int, int);
672 int sock_set_ipv6_minhopcount(int, int);
673 int sock_set_ipv6_ucast_hops(int, int);
674 int sock_set_ipv6_mcast_hops(int, int);
675 int sock_set_ipv6_mcast(struct iface *);
676 int sock_set_ipv6_mcast_loop(int);
677
678 /* quagga */
679 extern struct thread_master *master;
680
681 /* ldp_zebra.c */
682 void ldp_zebra_init(struct thread_master *);
683
684 /* compatibility */
685 #ifndef __OpenBSD__
686 #define __IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f)
687 #define __IPV6_ADDR_SCOPE_INTFACELOCAL 0x01
688 #define IN6_IS_ADDR_MC_INTFACELOCAL(a) \
689 (IN6_IS_ADDR_MULTICAST(a) && \
690 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_INTFACELOCAL))
691 #endif
692
693 #endif /* _LDPD_H_ */