]> git.proxmox.com Git - mirror_frr.git/blame - ldpd/ldpd.h
zebra: Switch to using ETH_ALEN
[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"
26519d8c 30#include "prefix.h"
45a8eba9 31#include "filter.h"
e4a82008 32#include "vty.h"
8429abe0
RW
33
34#include "ldp.h"
35
36#define CONF_FILE "/etc/ldpd.conf"
8429abe0
RW
37#define LDPD_USER "_ldpd"
38
28e8294c
RW
39#define LDPD_FD_ASYNC 3
40#define LDPD_FD_SYNC 4
41
8429abe0
RW
42#define LDPD_OPT_VERBOSE 0x00000001
43#define LDPD_OPT_VERBOSE2 0x00000002
44#define LDPD_OPT_NOACTION 0x00000004
45
46#define TCP_MD5_KEY_LEN 80
47#define L2VPN_NAME_LEN 32
48
49#define RT_BUF_SIZE 16384
50#define MAX_RTSOCK_BUF 128 * 1024
51#define LDP_BACKLOG 128
52
53#define F_LDPD_INSERTED 0x0001
54#define F_CONNECTED 0x0002
55#define F_STATIC 0x0004
56#define F_DYNAMIC 0x0008
57#define F_REJECT 0x0010
58#define F_BLACKHOLE 0x0020
59#define F_REDISTRIBUTED 0x0040
60
61struct evbuf {
eac6e3f0
RW
62 struct msgbuf wbuf;
63 struct thread *ev;
64 int (*handler)(struct thread *);
65 void *arg;
8429abe0
RW
66};
67
68struct imsgev {
69 struct imsgbuf ibuf;
eac6e3f0
RW
70 int (*handler_write)(struct thread *);
71 struct thread *ev_write;
72 int (*handler_read)(struct thread *);
73 struct thread *ev_read;
8429abe0
RW
74};
75
76enum imsg_type {
77 IMSG_NONE,
78 IMSG_CTL_RELOAD,
79 IMSG_CTL_SHOW_INTERFACE,
80 IMSG_CTL_SHOW_DISCOVERY,
bc0eb287 81 IMSG_CTL_SHOW_DISCOVERY_DTL,
eac6e3f0
RW
82 IMSG_CTL_SHOW_DISC_IFACE,
83 IMSG_CTL_SHOW_DISC_TNBR,
84 IMSG_CTL_SHOW_DISC_ADJ,
8429abe0 85 IMSG_CTL_SHOW_NBR,
eac6e3f0
RW
86 IMSG_CTL_SHOW_NBR_DISC,
87 IMSG_CTL_SHOW_NBR_END,
8429abe0 88 IMSG_CTL_SHOW_LIB,
0f7b5df9
RW
89 IMSG_CTL_SHOW_LIB_BEGIN,
90 IMSG_CTL_SHOW_LIB_SENT,
91 IMSG_CTL_SHOW_LIB_RCVD,
92 IMSG_CTL_SHOW_LIB_END,
8429abe0
RW
93 IMSG_CTL_SHOW_L2VPN_PW,
94 IMSG_CTL_SHOW_L2VPN_BINDING,
95 IMSG_CTL_CLEAR_NBR,
96 IMSG_CTL_FIB_COUPLE,
97 IMSG_CTL_FIB_DECOUPLE,
98 IMSG_CTL_KROUTE,
99 IMSG_CTL_KROUTE_ADDR,
100 IMSG_CTL_IFINFO,
101 IMSG_CTL_END,
102 IMSG_CTL_LOG_VERBOSE,
103 IMSG_KLABEL_CHANGE,
104 IMSG_KLABEL_DELETE,
105 IMSG_KPWLABEL_CHANGE,
106 IMSG_KPWLABEL_DELETE,
107 IMSG_IFSTATUS,
108 IMSG_NEWADDR,
109 IMSG_DELADDR,
eac6e3f0 110 IMSG_RTRID_UPDATE,
8429abe0
RW
111 IMSG_LABEL_MAPPING,
112 IMSG_LABEL_MAPPING_FULL,
113 IMSG_LABEL_REQUEST,
114 IMSG_LABEL_RELEASE,
115 IMSG_LABEL_WITHDRAW,
116 IMSG_LABEL_ABORT,
117 IMSG_REQUEST_ADD,
118 IMSG_REQUEST_ADD_END,
119 IMSG_MAPPING_ADD,
120 IMSG_MAPPING_ADD_END,
121 IMSG_RELEASE_ADD,
122 IMSG_RELEASE_ADD_END,
123 IMSG_WITHDRAW_ADD,
124 IMSG_WITHDRAW_ADD_END,
125 IMSG_ADDRESS_ADD,
126 IMSG_ADDRESS_DEL,
127 IMSG_NOTIFICATION,
128 IMSG_NOTIFICATION_SEND,
129 IMSG_NEIGHBOR_UP,
130 IMSG_NEIGHBOR_DOWN,
131 IMSG_NETWORK_ADD,
8cb1fc45 132 IMSG_NETWORK_UPDATE,
8429abe0
RW
133 IMSG_SOCKET_IPC,
134 IMSG_SOCKET_NET,
135 IMSG_CLOSE_SOCKETS,
136 IMSG_REQUEST_SOCKETS,
137 IMSG_SETUP_SOCKETS,
138 IMSG_RECONF_CONF,
139 IMSG_RECONF_IFACE,
140 IMSG_RECONF_TNBR,
141 IMSG_RECONF_NBRP,
142 IMSG_RECONF_L2VPN,
143 IMSG_RECONF_L2VPN_IF,
144 IMSG_RECONF_L2VPN_PW,
eac6e3f0
RW
145 IMSG_RECONF_L2VPN_IPW,
146 IMSG_RECONF_END,
147 IMSG_DEBUG_UPDATE,
45a8eba9 148 IMSG_LOG,
274f5abf
RW
149 IMSG_ACL_CHECK,
150 IMSG_INIT
151};
152
153struct ldpd_init {
154 char user[256];
155 char group[256];
156 char ctl_sock_path[MAXPATHLEN];
157 char zclient_serv_path[MAXPATHLEN];
158 u_short instance;
8429abe0
RW
159};
160
161union ldpd_addr {
162 struct in_addr v4;
163 struct in6_addr v6;
164};
165
166#define IN6_IS_SCOPE_EMBED(a) \
167 ((IN6_IS_ADDR_LINKLOCAL(a)) || \
168 (IN6_IS_ADDR_MC_LINKLOCAL(a)) || \
169 (IN6_IS_ADDR_MC_INTFACELOCAL(a)))
170
171/* interface states */
172#define IF_STA_DOWN 0x01
173#define IF_STA_ACTIVE 0x02
174
175/* targeted neighbor states */
176#define TNBR_STA_DOWN 0x01
177#define TNBR_STA_ACTIVE 0x02
178
179/* interface types */
180enum iface_type {
181 IF_TYPE_POINTOPOINT,
182 IF_TYPE_BROADCAST
183};
184
185/* neighbor states */
186#define NBR_STA_PRESENT 0x0001
187#define NBR_STA_INITIAL 0x0002
188#define NBR_STA_OPENREC 0x0004
189#define NBR_STA_OPENSENT 0x0008
190#define NBR_STA_OPER 0x0010
191#define NBR_STA_SESSION (NBR_STA_INITIAL | NBR_STA_OPENREC | \
192 NBR_STA_OPENSENT | NBR_STA_OPER)
193
194/* neighbor events */
195enum nbr_event {
196 NBR_EVT_NOTHING,
197 NBR_EVT_MATCH_ADJ,
198 NBR_EVT_CONNECT_UP,
199 NBR_EVT_CLOSE_SESSION,
200 NBR_EVT_INIT_RCVD,
201 NBR_EVT_KEEPALIVE_RCVD,
202 NBR_EVT_PDU_RCVD,
203 NBR_EVT_PDU_SENT,
204 NBR_EVT_INIT_SENT
205};
206
207/* neighbor actions */
208enum nbr_action {
209 NBR_ACT_NOTHING,
210 NBR_ACT_RST_KTIMEOUT,
211 NBR_ACT_SESSION_EST,
212 NBR_ACT_RST_KTIMER,
213 NBR_ACT_CONNECT_SETUP,
214 NBR_ACT_PASSIVE_INIT,
215 NBR_ACT_KEEPALIVE_SEND,
216 NBR_ACT_CLOSE_SESSION
217};
218
057d48bd
RW
219/* forward declarations */
220RB_HEAD(global_adj_head, adj);
221RB_HEAD(nbr_adj_head, adj);
222RB_HEAD(ia_adj_head, adj);
8429abe0
RW
223
224struct map {
225 uint8_t type;
226 uint32_t msg_id;
227 union {
228 struct {
229 uint16_t af;
230 union ldpd_addr prefix;
231 uint8_t prefixlen;
232 } prefix;
233 struct {
234 uint16_t type;
235 uint32_t pwid;
236 uint32_t group_id;
237 uint16_t ifmtu;
238 } pwid;
d4afb819
RW
239 struct {
240 uint8_t type;
241 union {
242 uint16_t prefix_af;
aba50a83 243 uint16_t pw_type;
d4afb819
RW
244 } u;
245 } twcard;
8429abe0
RW
246 } fec;
247 struct {
248 uint32_t status_code;
249 uint32_t msg_id;
250 uint16_t msg_type;
251 } st;
252 uint32_t label;
253 uint32_t requestid;
254 uint32_t pw_status;
255 uint8_t flags;
256};
257#define F_MAP_REQ_ID 0x01 /* optional request message id present */
258#define F_MAP_STATUS 0x02 /* status */
259#define F_MAP_PW_CWORD 0x04 /* pseudowire control word */
260#define F_MAP_PW_ID 0x08 /* pseudowire connection id */
261#define F_MAP_PW_IFMTU 0x10 /* pseudowire interface parameter */
262#define F_MAP_PW_STATUS 0x20 /* pseudowire status */
263
264struct notify_msg {
265 uint32_t status_code;
266 uint32_t msg_id; /* network byte order */
267 uint16_t msg_type; /* network byte order */
268 uint32_t pw_status;
269 struct map fec;
8819fc38
RW
270 struct {
271 uint16_t type;
272 uint16_t length;
273 char *data;
274 } rtlvs;
8429abe0
RW
275 uint8_t flags;
276};
277#define F_NOTIF_PW_STATUS 0x01 /* pseudowire status tlv present */
278#define F_NOTIF_FEC 0x02 /* fec tlv present */
8819fc38 279#define F_NOTIF_RETURNED_TLVS 0x04 /* returned tlvs present */
8429abe0
RW
280
281struct if_addr {
282 LIST_ENTRY(if_addr) entry;
283 int af;
284 union ldpd_addr addr;
285 uint8_t prefixlen;
286 union ldpd_addr dstbrd;
287};
288LIST_HEAD(if_addr_head, if_addr);
289
290struct iface_af {
291 struct iface *iface;
292 int af;
293 int enabled;
294 int state;
057d48bd 295 struct ia_adj_head adj_tree;
8429abe0 296 time_t uptime;
eac6e3f0 297 struct thread *hello_timer;
8429abe0
RW
298 uint16_t hello_holdtime;
299 uint16_t hello_interval;
300};
301
302struct iface {
7d3d7491 303 RB_ENTRY(iface) entry;
8429abe0
RW
304 char name[IF_NAMESIZE];
305 unsigned int ifindex;
306 struct if_addr_head addr_list;
307 struct in6_addr linklocal;
308 enum iface_type type;
988ded8d 309 int operative;
8429abe0
RW
310 struct iface_af ipv4;
311 struct iface_af ipv6;
4af8997d 312 QOBJ_FIELDS
8429abe0 313};
7d3d7491
RW
314RB_HEAD(iface_head, iface);
315RB_PROTOTYPE(iface_head, iface, entry, iface_compare);
4af8997d 316DECLARE_QOBJ_TYPE(iface)
8429abe0
RW
317
318/* source of targeted hellos */
319struct tnbr {
7989cdba 320 RB_ENTRY(tnbr) entry;
eac6e3f0 321 struct thread *hello_timer;
8429abe0
RW
322 struct adj *adj;
323 int af;
324 union ldpd_addr addr;
325 int state;
8429abe0
RW
326 uint16_t pw_count;
327 uint8_t flags;
4af8997d 328 QOBJ_FIELDS
8429abe0 329};
7989cdba
RW
330RB_HEAD(tnbr_head, tnbr);
331RB_PROTOTYPE(tnbr_head, tnbr, entry, tnbr_compare);
4af8997d 332DECLARE_QOBJ_TYPE(tnbr)
8429abe0
RW
333#define F_TNBR_CONFIGURED 0x01
334#define F_TNBR_DYNAMIC 0x02
335
336enum auth_method {
337 AUTH_NONE,
338 AUTH_MD5SIG
339};
340
341/* neighbor specific parameters */
342struct nbr_params {
76c4abd1 343 RB_ENTRY(nbr_params) entry;
8429abe0
RW
344 struct in_addr lsr_id;
345 uint16_t keepalive;
346 int gtsm_enabled;
347 uint8_t gtsm_hops;
348 struct {
349 enum auth_method method;
350 char md5key[TCP_MD5_KEY_LEN];
351 uint8_t md5key_len;
352 } auth;
353 uint8_t flags;
4af8997d 354 QOBJ_FIELDS
8429abe0 355};
76c4abd1
RW
356RB_HEAD(nbrp_head, nbr_params);
357RB_PROTOTYPE(nbrp_head, nbr_params, entry, nbr_params_compare);
4af8997d 358DECLARE_QOBJ_TYPE(nbr_params)
8429abe0
RW
359#define F_NBRP_KEEPALIVE 0x01
360#define F_NBRP_GTSM 0x02
361#define F_NBRP_GTSM_HOPS 0x04
362
0f7b5df9
RW
363struct ldp_stats {
364 uint32_t kalive_sent;
365 uint32_t kalive_rcvd;
366 uint32_t addr_sent;
367 uint32_t addr_rcvd;
368 uint32_t addrwdraw_sent;
369 uint32_t addrwdraw_rcvd;
370 uint32_t notif_sent;
371 uint32_t notif_rcvd;
372 uint32_t capability_sent;
373 uint32_t capability_rcvd;
374 uint32_t labelmap_sent;
375 uint32_t labelmap_rcvd;
376 uint32_t labelreq_sent;
377 uint32_t labelreq_rcvd;
378 uint32_t labelwdraw_sent;
379 uint32_t labelwdraw_rcvd;
380 uint32_t labelrel_sent;
381 uint32_t labelrel_rcvd;
382 uint32_t labelabreq_sent;
383 uint32_t labelabreq_rcvd;
384};
385
8429abe0 386struct l2vpn_if {
029c1958 387 RB_ENTRY(l2vpn_if) entry;
8429abe0
RW
388 struct l2vpn *l2vpn;
389 char ifname[IF_NAMESIZE];
390 unsigned int ifindex;
988ded8d 391 int operative;
26519d8c 392 uint8_t mac[ETHER_ADDR_LEN];
4af8997d 393 QOBJ_FIELDS
8429abe0 394};
029c1958
RW
395RB_HEAD(l2vpn_if_head, l2vpn_if);
396RB_PROTOTYPE(l2vpn_if_head, l2vpn_if, entry, l2vpn_if_compare);
4af8997d 397DECLARE_QOBJ_TYPE(l2vpn_if)
8429abe0
RW
398
399struct l2vpn_pw {
20bacaeb 400 RB_ENTRY(l2vpn_pw) entry;
8429abe0
RW
401 struct l2vpn *l2vpn;
402 struct in_addr lsr_id;
403 int af;
404 union ldpd_addr addr;
405 uint32_t pwid;
406 char ifname[IF_NAMESIZE];
407 unsigned int ifindex;
408 uint32_t remote_group;
409 uint16_t remote_mtu;
410 uint32_t remote_status;
411 uint8_t flags;
4af8997d 412 QOBJ_FIELDS
8429abe0 413};
20bacaeb
RW
414RB_HEAD(l2vpn_pw_head, l2vpn_pw);
415RB_PROTOTYPE(l2vpn_pw_head, l2vpn_pw, entry, l2vpn_pw_compare);
4af8997d 416DECLARE_QOBJ_TYPE(l2vpn_pw)
8429abe0
RW
417#define F_PW_STATUSTLV_CONF 0x01 /* status tlv configured */
418#define F_PW_STATUSTLV 0x02 /* status tlv negotiated */
419#define F_PW_CWORD_CONF 0x04 /* control word configured */
420#define F_PW_CWORD 0x08 /* control word negotiated */
421#define F_PW_STATUS_UP 0x10 /* pseudowire is operational */
eac6e3f0 422#define F_PW_STATIC_NBR_ADDR 0x20 /* static neighbor address configured */
8429abe0
RW
423
424struct l2vpn {
90d7e7bd 425 RB_ENTRY(l2vpn) entry;
8429abe0
RW
426 char name[L2VPN_NAME_LEN];
427 int type;
428 int pw_type;
429 int mtu;
430 char br_ifname[IF_NAMESIZE];
431 unsigned int br_ifindex;
029c1958 432 struct l2vpn_if_head if_tree;
20bacaeb
RW
433 struct l2vpn_pw_head pw_tree;
434 struct l2vpn_pw_head pw_inactive_tree;
4af8997d 435 QOBJ_FIELDS
8429abe0 436};
90d7e7bd
RW
437RB_HEAD(l2vpn_head, l2vpn);
438RB_PROTOTYPE(l2vpn_head, l2vpn, entry, l2vpn_compare);
4af8997d 439DECLARE_QOBJ_TYPE(l2vpn)
8429abe0
RW
440#define L2VPN_TYPE_VPWS 1
441#define L2VPN_TYPE_VPLS 2
442
443/* ldp_conf */
444enum ldpd_process {
445 PROC_MAIN,
446 PROC_LDP_ENGINE,
447 PROC_LDE_ENGINE
448} ldpd_process;
449
fa68f9da
RW
450static const char * const log_procnames[] = {
451 "parent",
452 "ldpe",
453 "lde"
454};
455
8429abe0
RW
456enum socket_type {
457 LDP_SOCKET_DISC,
458 LDP_SOCKET_EDISC,
459 LDP_SOCKET_SESSION
460};
461
462enum hello_type {
463 HELLO_LINK,
464 HELLO_TARGETED
465};
466
467struct ldpd_af_conf {
468 uint16_t keepalive;
eac6e3f0
RW
469 uint16_t lhello_holdtime;
470 uint16_t lhello_interval;
8429abe0
RW
471 uint16_t thello_holdtime;
472 uint16_t thello_interval;
473 union ldpd_addr trans_addr;
45a8eba9
RW
474 char acl_thello_accept_from[ACL_NAMSIZ];
475 char acl_label_allocate_for[ACL_NAMSIZ];
476 char acl_label_advertise_to[ACL_NAMSIZ];
477 char acl_label_advertise_for[ACL_NAMSIZ];
478 char acl_label_expnull_for[ACL_NAMSIZ];
479 char acl_label_accept_from[ACL_NAMSIZ];
480 char acl_label_accept_for[ACL_NAMSIZ];
8429abe0
RW
481 int flags;
482};
483#define F_LDPD_AF_ENABLED 0x0001
484#define F_LDPD_AF_THELLO_ACCEPT 0x0002
485#define F_LDPD_AF_EXPNULL 0x0004
486#define F_LDPD_AF_NO_GTSM 0x0008
45a8eba9 487#define F_LDPD_AF_ALLOCHOSTONLY 0x0010
8429abe0
RW
488
489struct ldpd_conf {
490 struct in_addr rtr_id;
491 struct ldpd_af_conf ipv4;
492 struct ldpd_af_conf ipv6;
7d3d7491 493 struct iface_head iface_tree;
7989cdba 494 struct tnbr_head tnbr_tree;
76c4abd1 495 struct nbrp_head nbrp_tree;
90d7e7bd 496 struct l2vpn_head l2vpn_tree;
eac6e3f0
RW
497 uint16_t lhello_holdtime;
498 uint16_t lhello_interval;
499 uint16_t thello_holdtime;
500 uint16_t thello_interval;
8429abe0
RW
501 uint16_t trans_pref;
502 int flags;
4af8997d 503 QOBJ_FIELDS
8429abe0 504};
4af8997d 505DECLARE_QOBJ_TYPE(ldpd_conf)
8429abe0
RW
506#define F_LDPD_NO_FIB_UPDATE 0x0001
507#define F_LDPD_DS_CISCO_INTEROP 0x0002
eac6e3f0 508#define F_LDPD_ENABLED 0x0004
8429abe0
RW
509
510struct ldpd_af_global {
eac6e3f0
RW
511 struct thread *disc_ev;
512 struct thread *edisc_ev;
8429abe0
RW
513 int ldp_disc_socket;
514 int ldp_edisc_socket;
515 int ldp_session_socket;
516};
517
518struct ldpd_global {
519 int cmd_opts;
eac6e3f0 520 struct in_addr rtr_id;
8429abe0
RW
521 struct ldpd_af_global ipv4;
522 struct ldpd_af_global ipv6;
523 uint32_t conf_seqnum;
524 int pfkeysock;
525 struct if_addr_head addr_list;
057d48bd 526 struct global_adj_head adj_tree;
8429abe0
RW
527 struct in_addr mcast_addr_v4;
528 struct in6_addr mcast_addr_v6;
529 TAILQ_HEAD(, pending_conn) pending_conns;
530};
531
532/* kroute */
533struct kroute {
534 int af;
535 union ldpd_addr prefix;
536 uint8_t prefixlen;
537 union ldpd_addr nexthop;
538 uint32_t local_label;
539 uint32_t remote_label;
540 unsigned short ifindex;
541 uint8_t priority;
542 uint16_t flags;
543};
544
545struct kpw {
546 unsigned short ifindex;
547 int pw_type;
548 int af;
549 union ldpd_addr nexthop;
550 uint32_t local_label;
551 uint32_t remote_label;
552 uint8_t flags;
553};
554
555struct kaddr {
9cf67225 556 char ifname[IF_NAMESIZE];
8429abe0
RW
557 unsigned short ifindex;
558 int af;
559 union ldpd_addr addr;
560 uint8_t prefixlen;
561 union ldpd_addr dstbrd;
562};
563
564struct kif {
565 char ifname[IF_NAMESIZE];
566 unsigned short ifindex;
567 int flags;
988ded8d 568 int operative;
26519d8c 569 uint8_t mac[ETHER_ADDR_LEN];
8429abe0 570 int mtu;
8429abe0
RW
571};
572
45a8eba9
RW
573struct acl_check {
574 char acl[ACL_NAMSIZ];
575 int af;
576 union ldpd_addr addr;
577 uint8_t prefixlen;
578};
579
8429abe0
RW
580/* control data structures */
581struct ctl_iface {
582 int af;
583 char name[IF_NAMESIZE];
584 unsigned int ifindex;
585 int state;
8429abe0 586 enum iface_type type;
8429abe0
RW
587 uint16_t hello_holdtime;
588 uint16_t hello_interval;
589 time_t uptime;
590 uint16_t adj_cnt;
591};
592
eac6e3f0
RW
593struct ctl_disc_if {
594 char name[IF_NAMESIZE];
595 int active_v4;
596 int active_v6;
597 int no_adj;
598};
599
600struct ctl_disc_tnbr {
601 int af;
602 union ldpd_addr addr;
603 int no_adj;
604};
605
8429abe0
RW
606struct ctl_adj {
607 int af;
608 struct in_addr id;
609 enum hello_type type;
610 char ifname[IF_NAMESIZE];
611 union ldpd_addr src_addr;
612 uint16_t holdtime;
0f7b5df9 613 uint16_t holdtime_remaining;
8429abe0 614 union ldpd_addr trans_addr;
0f7b5df9 615 int ds_tlv;
8429abe0
RW
616};
617
618struct ctl_nbr {
619 int af;
620 struct in_addr id;
621 union ldpd_addr laddr;
eac6e3f0 622 in_port_t lport;
8429abe0 623 union ldpd_addr raddr;
eac6e3f0 624 in_port_t rport;
0f7b5df9 625 enum auth_method auth_method;
eac6e3f0 626 uint16_t holdtime;
8429abe0
RW
627 time_t uptime;
628 int nbr_state;
0f7b5df9 629 struct ldp_stats stats;
99cfc17f 630 int flags;
8429abe0
RW
631};
632
633struct ctl_rt {
634 int af;
635 union ldpd_addr prefix;
636 uint8_t prefixlen;
637 struct in_addr nexthop; /* lsr-id */
638 uint32_t local_label;
639 uint32_t remote_label;
640 uint8_t flags;
641 uint8_t in_use;
0f7b5df9 642 int no_downstream;
8429abe0
RW
643};
644
645struct ctl_pw {
646 uint16_t type;
eac6e3f0 647 char l2vpn_name[L2VPN_NAME_LEN];
8429abe0
RW
648 char ifname[IF_NAMESIZE];
649 uint32_t pwid;
650 struct in_addr lsr_id;
651 uint32_t local_label;
652 uint32_t local_gid;
653 uint16_t local_ifmtu;
eac6e3f0 654 uint8_t local_cword;
8429abe0
RW
655 uint32_t remote_label;
656 uint32_t remote_gid;
657 uint16_t remote_ifmtu;
eac6e3f0 658 uint8_t remote_cword;
8429abe0
RW
659 uint32_t status;
660};
661
56b8a8d2 662extern struct ldpd_conf *ldpd_conf, *vty_conf;
8429abe0 663extern struct ldpd_global global;
274f5abf 664extern struct ldpd_init init;
8429abe0
RW
665
666/* parse.y */
667struct ldpd_conf *parse_config(char *);
668int cmdline_symset(char *);
669
670/* kroute.c */
8429abe0
RW
671void kif_redistribute(const char *);
672int kr_change(struct kroute *);
673int kr_delete(struct kroute *);
8429abe0
RW
674int kmpw_set(struct kpw *);
675int kmpw_unset(struct kpw *);
676
677/* util.c */
678uint8_t mask2prefixlen(in_addr_t);
679uint8_t mask2prefixlen6(struct sockaddr_in6 *);
680in_addr_t prefixlen2mask(uint8_t);
681struct in6_addr *prefixlen2mask6(uint8_t);
682void ldp_applymask(int, union ldpd_addr *,
683 const union ldpd_addr *, int);
684int ldp_addrcmp(int, const union ldpd_addr *,
685 const union ldpd_addr *);
686int ldp_addrisset(int, const union ldpd_addr *);
687int ldp_prefixcmp(int, const union ldpd_addr *,
688 const union ldpd_addr *, uint8_t);
689int bad_addr_v4(struct in_addr);
690int bad_addr_v6(struct in6_addr *);
691int bad_addr(int, union ldpd_addr *);
692void embedscope(struct sockaddr_in6 *);
693void recoverscope(struct sockaddr_in6 *);
694void addscope(struct sockaddr_in6 *, uint32_t);
695void clearscope(struct in6_addr *);
696struct sockaddr *addr2sa(int af, union ldpd_addr *, uint16_t);
eac6e3f0
RW
697void sa2addr(struct sockaddr *, int *, union ldpd_addr *,
698 in_port_t *);
699socklen_t sockaddr_len(struct sockaddr *);
8429abe0
RW
700
701/* ldpd.c */
eac6e3f0 702int ldp_write_handler(struct thread *);
8429abe0
RW
703void main_imsg_compose_ldpe(int, pid_t, void *, uint16_t);
704void main_imsg_compose_lde(int, pid_t, void *, uint16_t);
eac6e3f0
RW
705int main_imsg_compose_both(enum imsg_type, void *,
706 uint16_t);
8429abe0 707void imsg_event_add(struct imsgev *);
eac6e3f0
RW
708int imsg_compose_event(struct imsgev *, uint16_t, uint32_t,
709 pid_t, int, void *, uint16_t);
8429abe0
RW
710void evbuf_enqueue(struct evbuf *, struct ibuf *);
711void evbuf_event_add(struct evbuf *);
eac6e3f0
RW
712void evbuf_init(struct evbuf *, int,
713 int (*)(struct thread *), void *);
8429abe0 714void evbuf_clear(struct evbuf *);
45a8eba9
RW
715int ldp_acl_request(struct imsgev *, char *, int,
716 union ldpd_addr *, uint8_t);
717void ldp_acl_reply(struct imsgev *, struct acl_check *);
8429abe0
RW
718struct ldpd_af_conf *ldp_af_conf_get(struct ldpd_conf *, int);
719struct ldpd_af_global *ldp_af_global_get(struct ldpd_global *, int);
720int ldp_is_dual_stack(struct ldpd_conf *);
eac6e3f0 721in_addr_t ldp_rtr_id_get(struct ldpd_conf *);
e4a82008 722int ldp_config_apply(struct vty *, struct ldpd_conf *);
eac6e3f0 723void ldp_clear_config(struct ldpd_conf *);
8429abe0
RW
724void merge_config(struct ldpd_conf *, struct ldpd_conf *);
725struct ldpd_conf *config_new_empty(void);
726void config_clear(struct ldpd_conf *);
727
bbee85d2
RW
728/* ldp_vty_conf.c */
729/* NOTE: the parameters' names should be preserved because of codegen */
7d3d7491 730struct iface *iface_new_api(struct ldpd_conf *conf,
bbee85d2 731 const char *name);
7d3d7491
RW
732void iface_del_api(struct ldpd_conf *conf,
733 struct iface *iface);
7989cdba 734struct tnbr *tnbr_new_api(struct ldpd_conf *conf, int af,
bbee85d2 735 union ldpd_addr *addr);
7989cdba 736void tnbr_del_api(struct ldpd_conf *conf, struct tnbr *tnbr);
76c4abd1 737struct nbr_params *nbrp_new_api(struct ldpd_conf *conf,
bbee85d2 738 struct in_addr lsr_id);
76c4abd1
RW
739void nbrp_del_api(struct ldpd_conf *conf,
740 struct nbr_params *nbrp);
90d7e7bd
RW
741struct l2vpn *l2vpn_new_api(struct ldpd_conf *conf, const char *name);
742void l2vpn_del_api(struct ldpd_conf *conf,
743 struct l2vpn *l2vpn);
bbee85d2
RW
744struct l2vpn_if *l2vpn_if_new_api(struct ldpd_conf *conf,
745 struct l2vpn *l2vpn, const char *ifname);
029c1958
RW
746void l2vpn_if_del_api(struct l2vpn *l2vpn,
747 struct l2vpn_if *lif);
bbee85d2
RW
748struct l2vpn_pw *l2vpn_pw_new_api(struct ldpd_conf *conf,
749 struct l2vpn *l2vpn, const char *ifname);
20bacaeb
RW
750void l2vpn_pw_del_api(struct l2vpn *l2vpn,
751 struct l2vpn_pw *pw);
bbee85d2 752
8429abe0
RW
753/* socket.c */
754int ldp_create_socket(int, enum socket_type);
eac6e3f0
RW
755void sock_set_nonblock(int);
756void sock_set_cloexec(int);
8429abe0
RW
757void sock_set_recvbuf(int);
758int sock_set_reuse(int, int);
759int sock_set_bindany(int, int);
eac6e3f0 760int sock_set_md5sig(int, int, union ldpd_addr *, const char *);
8429abe0 761int sock_set_ipv4_tos(int, int);
eac6e3f0
RW
762int sock_set_ipv4_pktinfo(int, int);
763int sock_set_ipv4_recvdstaddr(int, int);
8429abe0
RW
764int sock_set_ipv4_recvif(int, int);
765int sock_set_ipv4_minttl(int, int);
766int sock_set_ipv4_ucast_ttl(int fd, int);
767int sock_set_ipv4_mcast_ttl(int, uint8_t);
768int sock_set_ipv4_mcast(struct iface *);
769int sock_set_ipv4_mcast_loop(int);
770int sock_set_ipv6_dscp(int, int);
771int sock_set_ipv6_pktinfo(int, int);
772int sock_set_ipv6_minhopcount(int, int);
773int sock_set_ipv6_ucast_hops(int, int);
774int sock_set_ipv6_mcast_hops(int, int);
775int sock_set_ipv6_mcast(struct iface *);
776int sock_set_ipv6_mcast_loop(int);
777
fa68f9da
RW
778/* logmsg.h */
779struct in6_addr;
780union ldpd_addr;
781struct hello_source;
782struct fec;
783
784const char *log_sockaddr(void *);
785const char *log_in6addr(const struct in6_addr *);
786const char *log_in6addr_scope(const struct in6_addr *, unsigned int);
787const char *log_addr(int, const union ldpd_addr *);
788char *log_label(uint32_t);
789const char *log_time(time_t);
790char *log_hello_src(const struct hello_source *);
791const char *log_map(const struct map *);
792const char *log_fec(const struct fec *);
793const char *af_name(int);
794const char *socket_name(int);
795const char *nbr_state_name(int);
796const char *if_state_name(int);
797const char *if_type_name(enum iface_type);
798const char *msg_name(uint16_t);
799const char *status_code_name(uint32_t);
800const char *pw_type_name(uint16_t);
801
eac6e3f0
RW
802/* quagga */
803extern struct thread_master *master;
372b8bd3 804extern char ctl_sock_path[MAXPATHLEN];
eac6e3f0
RW
805
806/* ldp_zebra.c */
64dffe25
RW
807void ldp_zebra_init(struct thread_master *);
808void ldp_zebra_destroy(void);
eac6e3f0
RW
809
810/* compatibility */
811#ifndef __OpenBSD__
812#define __IPV6_ADDR_MC_SCOPE(a) ((a)->s6_addr[1] & 0x0f)
813#define __IPV6_ADDR_SCOPE_INTFACELOCAL 0x01
814#define IN6_IS_ADDR_MC_INTFACELOCAL(a) \
815 (IN6_IS_ADDR_MULTICAST(a) && \
816 (__IPV6_ADDR_MC_SCOPE(a) == __IPV6_ADDR_SCOPE_INTFACELOCAL))
817#endif
8429abe0
RW
818
819#endif /* _LDPD_H_ */