]> git.proxmox.com Git - mirror_frr.git/blame - ldpd/ldpd.h
ldpd: use red-black trees to store 'l2vpn' elements
[mirror_frr.git] / ldpd / ldpd.h
CommitLineData
8429abe0
RW
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
eac6e3f0
RW
25#include "openbsd-queue.h"
26#include "openbsd-tree.h"
27#include "imsg.h"
28#include "thread.h"
4af8997d 29#include "qobj.h"
8429abe0
RW
30
31#include "ldp.h"
32
33#define CONF_FILE "/etc/ldpd.conf"
8429abe0
RW
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
55struct evbuf {
eac6e3f0
RW
56 struct msgbuf wbuf;
57 struct thread *ev;
58 int (*handler)(struct thread *);
59 void *arg;
8429abe0
RW
60};
61
62struct imsgev {
63 struct imsgbuf ibuf;
eac6e3f0
RW
64 int (*handler_write)(struct thread *);
65 struct thread *ev_write;
66 int (*handler_read)(struct thread *);
67 struct thread *ev_read;
8429abe0
RW
68};
69
70enum imsg_type {
71 IMSG_NONE,
72 IMSG_CTL_RELOAD,
73 IMSG_CTL_SHOW_INTERFACE,
74 IMSG_CTL_SHOW_DISCOVERY,
eac6e3f0
RW
75 IMSG_CTL_SHOW_DISC_IFACE,
76 IMSG_CTL_SHOW_DISC_TNBR,
77 IMSG_CTL_SHOW_DISC_ADJ,
8429abe0 78 IMSG_CTL_SHOW_NBR,
eac6e3f0
RW
79 IMSG_CTL_SHOW_NBR_DISC,
80 IMSG_CTL_SHOW_NBR_END,
8429abe0
RW
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,
eac6e3f0 99 IMSG_RTRID_UPDATE,
8429abe0
RW
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,
134970a2 121 IMSG_NETWORK_ADD_END,
8429abe0
RW
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,
eac6e3f0
RW
135 IMSG_RECONF_L2VPN_IPW,
136 IMSG_RECONF_END,
137 IMSG_DEBUG_UPDATE,
138 IMSG_LOG
8429abe0
RW
139};
140
141union 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 */
160enum 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 */
175enum 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 */
188enum 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
199TAILQ_HEAD(mapping_head, mapping_entry);
200
201struct 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
234struct 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
245struct 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};
252LIST_HEAD(if_addr_head, if_addr);
253
254struct 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;
eac6e3f0 261 struct thread *hello_timer;
8429abe0
RW
262 uint16_t hello_holdtime;
263 uint16_t hello_interval;
264};
265
266struct iface {
7d3d7491 267 RB_ENTRY(iface) entry;
8429abe0
RW
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;
8429abe0 273 uint16_t flags;
8429abe0
RW
274 struct iface_af ipv4;
275 struct iface_af ipv6;
4af8997d 276 QOBJ_FIELDS
8429abe0 277};
7d3d7491
RW
278RB_HEAD(iface_head, iface);
279RB_PROTOTYPE(iface_head, iface, entry, iface_compare);
4af8997d 280DECLARE_QOBJ_TYPE(iface)
8429abe0
RW
281
282/* source of targeted hellos */
283struct tnbr {
7989cdba 284 RB_ENTRY(tnbr) entry;
eac6e3f0 285 struct thread *hello_timer;
8429abe0
RW
286 struct adj *adj;
287 int af;
288 union ldpd_addr addr;
289 int state;
8429abe0
RW
290 uint16_t pw_count;
291 uint8_t flags;
4af8997d 292 QOBJ_FIELDS
8429abe0 293};
7989cdba
RW
294RB_HEAD(tnbr_head, tnbr);
295RB_PROTOTYPE(tnbr_head, tnbr, entry, tnbr_compare);
4af8997d 296DECLARE_QOBJ_TYPE(tnbr)
8429abe0
RW
297#define F_TNBR_CONFIGURED 0x01
298#define F_TNBR_DYNAMIC 0x02
299
300enum auth_method {
301 AUTH_NONE,
302 AUTH_MD5SIG
303};
304
305/* neighbor specific parameters */
306struct nbr_params {
76c4abd1 307 RB_ENTRY(nbr_params) entry;
8429abe0
RW
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;
4af8997d 318 QOBJ_FIELDS
8429abe0 319};
76c4abd1
RW
320RB_HEAD(nbrp_head, nbr_params);
321RB_PROTOTYPE(nbrp_head, nbr_params, entry, nbr_params_compare);
4af8997d 322DECLARE_QOBJ_TYPE(nbr_params)
8429abe0
RW
323#define F_NBRP_KEEPALIVE 0x01
324#define F_NBRP_GTSM 0x02
325#define F_NBRP_GTSM_HOPS 0x04
326
327struct l2vpn_if {
328 LIST_ENTRY(l2vpn_if) entry;
329 struct l2vpn *l2vpn;
330 char ifname[IF_NAMESIZE];
331 unsigned int ifindex;
332 uint16_t flags;
4af8997d 333 QOBJ_FIELDS
8429abe0 334};
4af8997d 335DECLARE_QOBJ_TYPE(l2vpn_if)
8429abe0
RW
336
337struct l2vpn_pw {
338 LIST_ENTRY(l2vpn_pw) entry;
339 struct l2vpn *l2vpn;
340 struct in_addr lsr_id;
341 int af;
342 union ldpd_addr addr;
343 uint32_t pwid;
344 char ifname[IF_NAMESIZE];
345 unsigned int ifindex;
346 uint32_t remote_group;
347 uint16_t remote_mtu;
348 uint32_t remote_status;
349 uint8_t flags;
4af8997d 350 QOBJ_FIELDS
8429abe0 351};
4af8997d 352DECLARE_QOBJ_TYPE(l2vpn_pw)
8429abe0
RW
353#define F_PW_STATUSTLV_CONF 0x01 /* status tlv configured */
354#define F_PW_STATUSTLV 0x02 /* status tlv negotiated */
355#define F_PW_CWORD_CONF 0x04 /* control word configured */
356#define F_PW_CWORD 0x08 /* control word negotiated */
357#define F_PW_STATUS_UP 0x10 /* pseudowire is operational */
eac6e3f0 358#define F_PW_STATIC_NBR_ADDR 0x20 /* static neighbor address configured */
8429abe0
RW
359
360struct l2vpn {
90d7e7bd 361 RB_ENTRY(l2vpn) entry;
8429abe0
RW
362 char name[L2VPN_NAME_LEN];
363 int type;
364 int pw_type;
365 int mtu;
366 char br_ifname[IF_NAMESIZE];
367 unsigned int br_ifindex;
368 LIST_HEAD(, l2vpn_if) if_list;
369 LIST_HEAD(, l2vpn_pw) pw_list;
eac6e3f0 370 LIST_HEAD(, l2vpn_pw) pw_inactive_list;
4af8997d 371 QOBJ_FIELDS
8429abe0 372};
90d7e7bd
RW
373RB_HEAD(l2vpn_head, l2vpn);
374RB_PROTOTYPE(l2vpn_head, l2vpn, entry, l2vpn_compare);
4af8997d 375DECLARE_QOBJ_TYPE(l2vpn)
8429abe0
RW
376#define L2VPN_TYPE_VPWS 1
377#define L2VPN_TYPE_VPLS 2
378
379/* ldp_conf */
380enum ldpd_process {
381 PROC_MAIN,
382 PROC_LDP_ENGINE,
383 PROC_LDE_ENGINE
384} ldpd_process;
385
386enum socket_type {
387 LDP_SOCKET_DISC,
388 LDP_SOCKET_EDISC,
389 LDP_SOCKET_SESSION
390};
391
392enum hello_type {
393 HELLO_LINK,
394 HELLO_TARGETED
395};
396
397struct ldpd_af_conf {
398 uint16_t keepalive;
eac6e3f0
RW
399 uint16_t lhello_holdtime;
400 uint16_t lhello_interval;
8429abe0
RW
401 uint16_t thello_holdtime;
402 uint16_t thello_interval;
403 union ldpd_addr trans_addr;
404 int flags;
405};
406#define F_LDPD_AF_ENABLED 0x0001
407#define F_LDPD_AF_THELLO_ACCEPT 0x0002
408#define F_LDPD_AF_EXPNULL 0x0004
409#define F_LDPD_AF_NO_GTSM 0x0008
410
411struct ldpd_conf {
412 struct in_addr rtr_id;
413 struct ldpd_af_conf ipv4;
414 struct ldpd_af_conf ipv6;
7d3d7491 415 struct iface_head iface_tree;
7989cdba 416 struct tnbr_head tnbr_tree;
76c4abd1 417 struct nbrp_head nbrp_tree;
90d7e7bd 418 struct l2vpn_head l2vpn_tree;
eac6e3f0
RW
419 uint16_t lhello_holdtime;
420 uint16_t lhello_interval;
421 uint16_t thello_holdtime;
422 uint16_t thello_interval;
8429abe0
RW
423 uint16_t trans_pref;
424 int flags;
4af8997d 425 QOBJ_FIELDS
8429abe0 426};
4af8997d 427DECLARE_QOBJ_TYPE(ldpd_conf)
8429abe0
RW
428#define F_LDPD_NO_FIB_UPDATE 0x0001
429#define F_LDPD_DS_CISCO_INTEROP 0x0002
eac6e3f0 430#define F_LDPD_ENABLED 0x0004
8429abe0
RW
431
432struct ldpd_af_global {
eac6e3f0
RW
433 struct thread *disc_ev;
434 struct thread *edisc_ev;
8429abe0
RW
435 int ldp_disc_socket;
436 int ldp_edisc_socket;
437 int ldp_session_socket;
438};
439
440struct ldpd_global {
441 int cmd_opts;
442 time_t uptime;
eac6e3f0 443 struct in_addr rtr_id;
8429abe0
RW
444 struct ldpd_af_global ipv4;
445 struct ldpd_af_global ipv6;
446 uint32_t conf_seqnum;
447 int pfkeysock;
448 struct if_addr_head addr_list;
449 LIST_HEAD(, adj) adj_list;
450 struct in_addr mcast_addr_v4;
451 struct in6_addr mcast_addr_v6;
452 TAILQ_HEAD(, pending_conn) pending_conns;
453};
454
455/* kroute */
456struct kroute {
457 int af;
458 union ldpd_addr prefix;
459 uint8_t prefixlen;
460 union ldpd_addr nexthop;
461 uint32_t local_label;
462 uint32_t remote_label;
463 unsigned short ifindex;
464 uint8_t priority;
465 uint16_t flags;
466};
467
468struct kpw {
469 unsigned short ifindex;
470 int pw_type;
471 int af;
472 union ldpd_addr nexthop;
473 uint32_t local_label;
474 uint32_t remote_label;
475 uint8_t flags;
476};
477
478struct kaddr {
479 unsigned short ifindex;
480 int af;
481 union ldpd_addr addr;
482 uint8_t prefixlen;
483 union ldpd_addr dstbrd;
484};
485
486struct kif {
487 char ifname[IF_NAMESIZE];
488 unsigned short ifindex;
489 int flags;
8429abe0 490 int mtu;
8429abe0
RW
491};
492
493/* control data structures */
494struct ctl_iface {
495 int af;
496 char name[IF_NAMESIZE];
497 unsigned int ifindex;
498 int state;
499 uint16_t flags;
8429abe0 500 enum iface_type type;
8429abe0
RW
501 uint16_t hello_holdtime;
502 uint16_t hello_interval;
503 time_t uptime;
504 uint16_t adj_cnt;
505};
506
eac6e3f0
RW
507struct ctl_disc_if {
508 char name[IF_NAMESIZE];
509 int active_v4;
510 int active_v6;
511 int no_adj;
512};
513
514struct ctl_disc_tnbr {
515 int af;
516 union ldpd_addr addr;
517 int no_adj;
518};
519
8429abe0
RW
520struct ctl_adj {
521 int af;
522 struct in_addr id;
523 enum hello_type type;
524 char ifname[IF_NAMESIZE];
525 union ldpd_addr src_addr;
526 uint16_t holdtime;
527 union ldpd_addr trans_addr;
528};
529
530struct ctl_nbr {
531 int af;
532 struct in_addr id;
533 union ldpd_addr laddr;
eac6e3f0 534 in_port_t lport;
8429abe0 535 union ldpd_addr raddr;
eac6e3f0
RW
536 in_port_t rport;
537 uint16_t holdtime;
8429abe0
RW
538 time_t uptime;
539 int nbr_state;
540};
541
542struct ctl_rt {
543 int af;
544 union ldpd_addr prefix;
545 uint8_t prefixlen;
546 struct in_addr nexthop; /* lsr-id */
547 uint32_t local_label;
548 uint32_t remote_label;
549 uint8_t flags;
550 uint8_t in_use;
eac6e3f0 551 int first;
8429abe0
RW
552};
553
554struct ctl_pw {
555 uint16_t type;
eac6e3f0 556 char l2vpn_name[L2VPN_NAME_LEN];
8429abe0
RW
557 char ifname[IF_NAMESIZE];
558 uint32_t pwid;
559 struct in_addr lsr_id;
560 uint32_t local_label;
561 uint32_t local_gid;
562 uint16_t local_ifmtu;
eac6e3f0 563 uint8_t local_cword;
8429abe0
RW
564 uint32_t remote_label;
565 uint32_t remote_gid;
566 uint16_t remote_ifmtu;
eac6e3f0 567 uint8_t remote_cword;
8429abe0
RW
568 uint32_t status;
569};
570
571extern struct ldpd_conf *ldpd_conf;
572extern struct ldpd_global global;
573
574/* parse.y */
575struct ldpd_conf *parse_config(char *);
576int cmdline_symset(char *);
577
578/* kroute.c */
8429abe0
RW
579void kif_redistribute(const char *);
580int kr_change(struct kroute *);
581int kr_delete(struct kroute *);
8429abe0
RW
582int kmpw_set(struct kpw *);
583int kmpw_unset(struct kpw *);
584
585/* util.c */
586uint8_t mask2prefixlen(in_addr_t);
587uint8_t mask2prefixlen6(struct sockaddr_in6 *);
588in_addr_t prefixlen2mask(uint8_t);
589struct in6_addr *prefixlen2mask6(uint8_t);
590void ldp_applymask(int, union ldpd_addr *,
591 const union ldpd_addr *, int);
592int ldp_addrcmp(int, const union ldpd_addr *,
593 const union ldpd_addr *);
594int ldp_addrisset(int, const union ldpd_addr *);
595int ldp_prefixcmp(int, const union ldpd_addr *,
596 const union ldpd_addr *, uint8_t);
597int bad_addr_v4(struct in_addr);
598int bad_addr_v6(struct in6_addr *);
599int bad_addr(int, union ldpd_addr *);
600void embedscope(struct sockaddr_in6 *);
601void recoverscope(struct sockaddr_in6 *);
602void addscope(struct sockaddr_in6 *, uint32_t);
603void clearscope(struct in6_addr *);
604struct sockaddr *addr2sa(int af, union ldpd_addr *, uint16_t);
eac6e3f0
RW
605void sa2addr(struct sockaddr *, int *, union ldpd_addr *,
606 in_port_t *);
607socklen_t sockaddr_len(struct sockaddr *);
8429abe0
RW
608
609/* ldpd.c */
eac6e3f0 610int ldp_write_handler(struct thread *);
8429abe0
RW
611void main_imsg_compose_ldpe(int, pid_t, void *, uint16_t);
612void main_imsg_compose_lde(int, pid_t, void *, uint16_t);
eac6e3f0
RW
613int main_imsg_compose_both(enum imsg_type, void *,
614 uint16_t);
8429abe0 615void imsg_event_add(struct imsgev *);
eac6e3f0
RW
616int imsg_compose_event(struct imsgev *, uint16_t, uint32_t,
617 pid_t, int, void *, uint16_t);
8429abe0
RW
618void evbuf_enqueue(struct evbuf *, struct ibuf *);
619void evbuf_event_add(struct evbuf *);
eac6e3f0
RW
620void evbuf_init(struct evbuf *, int,
621 int (*)(struct thread *), void *);
8429abe0
RW
622void evbuf_clear(struct evbuf *);
623struct ldpd_af_conf *ldp_af_conf_get(struct ldpd_conf *, int);
624struct ldpd_af_global *ldp_af_global_get(struct ldpd_global *, int);
625int ldp_is_dual_stack(struct ldpd_conf *);
eac6e3f0
RW
626in_addr_t ldp_rtr_id_get(struct ldpd_conf *);
627int ldp_reload(struct ldpd_conf *);
b67c140b
RW
628int ldp_reload_ref(struct ldpd_conf *, void **);
629struct ldpd_conf *ldp_dup_config_ref(struct ldpd_conf *, void **ref);
eac6e3f0
RW
630struct ldpd_conf *ldp_dup_config(struct ldpd_conf *);
631void ldp_clear_config(struct ldpd_conf *);
8429abe0
RW
632void merge_config(struct ldpd_conf *, struct ldpd_conf *);
633struct ldpd_conf *config_new_empty(void);
634void config_clear(struct ldpd_conf *);
635
bbee85d2
RW
636/* ldp_vty_conf.c */
637/* NOTE: the parameters' names should be preserved because of codegen */
7d3d7491 638struct iface *iface_new_api(struct ldpd_conf *conf,
bbee85d2 639 const char *name);
7d3d7491
RW
640void iface_del_api(struct ldpd_conf *conf,
641 struct iface *iface);
7989cdba 642struct tnbr *tnbr_new_api(struct ldpd_conf *conf, int af,
bbee85d2 643 union ldpd_addr *addr);
7989cdba 644void tnbr_del_api(struct ldpd_conf *conf, struct tnbr *tnbr);
76c4abd1 645struct nbr_params *nbrp_new_api(struct ldpd_conf *conf,
bbee85d2 646 struct in_addr lsr_id);
76c4abd1
RW
647void nbrp_del_api(struct ldpd_conf *conf,
648 struct nbr_params *nbrp);
90d7e7bd
RW
649struct l2vpn *l2vpn_new_api(struct ldpd_conf *conf, const char *name);
650void l2vpn_del_api(struct ldpd_conf *conf,
651 struct l2vpn *l2vpn);
bbee85d2
RW
652struct l2vpn_if *l2vpn_if_new_api(struct ldpd_conf *conf,
653 struct l2vpn *l2vpn, const char *ifname);
654void l2vpn_if_del_api(struct l2vpn_if *lif);
655struct l2vpn_pw *l2vpn_pw_new_api(struct ldpd_conf *conf,
656 struct l2vpn *l2vpn, const char *ifname);
657void l2vpn_pw_del_api(struct l2vpn_pw *pw);
658
8429abe0
RW
659/* socket.c */
660int ldp_create_socket(int, enum socket_type);
eac6e3f0
RW
661void sock_set_nonblock(int);
662void sock_set_cloexec(int);
8429abe0
RW
663void sock_set_recvbuf(int);
664int sock_set_reuse(int, int);
665int sock_set_bindany(int, int);
eac6e3f0 666int sock_set_md5sig(int, int, union ldpd_addr *, const char *);
8429abe0 667int sock_set_ipv4_tos(int, int);
eac6e3f0
RW
668int sock_set_ipv4_pktinfo(int, int);
669int sock_set_ipv4_recvdstaddr(int, int);
8429abe0
RW
670int sock_set_ipv4_recvif(int, int);
671int sock_set_ipv4_minttl(int, int);
672int sock_set_ipv4_ucast_ttl(int fd, int);
673int sock_set_ipv4_mcast_ttl(int, uint8_t);
674int sock_set_ipv4_mcast(struct iface *);
675int sock_set_ipv4_mcast_loop(int);
676int sock_set_ipv6_dscp(int, int);
677int sock_set_ipv6_pktinfo(int, int);
678int sock_set_ipv6_minhopcount(int, int);
679int sock_set_ipv6_ucast_hops(int, int);
680int sock_set_ipv6_mcast_hops(int, int);
681int sock_set_ipv6_mcast(struct iface *);
682int sock_set_ipv6_mcast_loop(int);
683
eac6e3f0
RW
684/* quagga */
685extern struct thread_master *master;
686
687/* ldp_zebra.c */
688void ldp_zebra_init(struct thread_master *);
689
690/* compatibility */
691#ifndef __OpenBSD__
692#define __IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f)
693#define __IPV6_ADDR_SCOPE_INTFACELOCAL 0x01
694#define IN6_IS_ADDR_MC_INTFACELOCAL(a) \
695 (IN6_IS_ADDR_MULTICAST(a) && \
696 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_INTFACELOCAL))
697#endif
8429abe0
RW
698
699#endif /* _LDPD_H_ */