]> git.ipfire.org Git - thirdparty/lldpd.git/blame - src/daemon/lldpd.h
priv: always request CAP_FOWNER
[thirdparty/lldpd.git] / src / daemon / lldpd.h
CommitLineData
4b292b55
VB
1/* -*- mode: c; c-file-style: "openbsd" -*- */
2/*
3 * Copyright (c) 2008 Vincent Bernat <bernat@luffy.cx>
4 *
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
17
18#ifndef _LLDPD_H
19#define _LLDPD_H
20
21#if HAVE_CONFIG_H
22# include <config.h>
23#endif
24
25#ifdef HAVE_VALGRIND_VALGRIND_H
26# include <valgrind/valgrind.h>
27#else
28# define RUNNING_ON_VALGRIND 0
29#endif
30
4b292b55
VB
31#include <stdlib.h>
32#include <stddef.h>
33#include <string.h>
34#include <sys/queue.h>
e12c2365 35#include <sys/types.h>
690b944c 36#include <netinet/if_ether.h>
4b292b55 37#include <netinet/in.h>
4b292b55
VB
38#include <sys/un.h>
39
40#include "lldp-tlv.h"
41#if defined (ENABLE_CDP) || defined (ENABLE_FDP)
9e2db64f 42# include "protocols/cdp.h"
4b292b55
VB
43#endif
44#ifdef ENABLE_SONMP
9e2db64f 45# include "protocols/sonmp.h"
4b292b55
VB
46#endif
47#ifdef ENABLE_EDP
9e2db64f 48# include "protocols/edp.h"
4b292b55
VB
49#endif
50
4c98fe72
VB
51
52
4b292b55
VB
53#include "../compat/compat.h"
54#include "../marshal.h"
55#include "../log.h"
56#include "../ctl.h"
57#include "../lldpd-structs.h"
58
59/* We don't want to import event2/event.h. We only need those as
60 opaque structs. */
61struct event;
62struct event_base;
63
64#define SYSFS_CLASS_NET "/sys/class/net/"
65#define SYSFS_CLASS_DMI "/sys/class/dmi/id/"
8843f168 66#define LLDPD_TX_INTERVAL 30
c10302a3 67#define LLDPD_TX_HOLD 4
68#define LLDPD_TTL LLDPD_TX_INTERVAL * LLDPD_TX_HOLD
4b292b55 69#define LLDPD_TX_MSGDELAY 1
86bc2873 70#define LLDPD_MAX_NEIGHBORS 32
b9de0ca6 71#define LLDPD_FAST_TX_INTERVAL 1
72#define LLDPD_FAST_INIT 4
4b292b55
VB
73
74#define USING_AGENTX_SUBAGENT_MODULE 1
75
76#define PROTO_SEND_SIG struct lldpd *, struct lldpd_hardware *
77#define PROTO_DECODE_SIG struct lldpd *, char *, int, struct lldpd_hardware *, struct lldpd_chassis **, struct lldpd_port **
78#define PROTO_GUESS_SIG char *, int
79
3d596bbe
VB
80#define ALIGNED_CAST(TYPE, ATTR) ((TYPE) (void *) (ATTR))
81
4b292b55
VB
82struct protocol {
83 int mode; /* > 0 mode identifier (unique per protocol) */
84 int enabled; /* Is this protocol enabled? */
85 char *name; /* Name of protocol */
86 char arg; /* Argument to enable this protocol */
87 int(*send)(PROTO_SEND_SIG); /* How to send a frame */
88 int(*decode)(PROTO_DECODE_SIG); /* How to decode a frame */
89 int(*guess)(PROTO_GUESS_SIG); /* Can be NULL, use MAC address in this case */
a98ed042
VB
90 u_int8_t mac1[ETHER_ADDR_LEN]; /* Destination MAC address used by this protocol */
91 u_int8_t mac2[ETHER_ADDR_LEN]; /* Destination MAC address used by this protocol */
92 u_int8_t mac3[ETHER_ADDR_LEN]; /* Destination MAC address used by this protocol */
4b292b55
VB
93};
94
4b292b55
VB
95#define SMART_HIDDEN(port) (port->p_hidden_in)
96
13181ede 97struct lldpd;
4b292b55 98
4b292b55
VB
99/* lldpd.c */
100struct lldpd_hardware *lldpd_get_hardware(struct lldpd *,
32945d6a 101 char *, int);
e12c2365 102struct lldpd_hardware *lldpd_alloc_hardware(struct lldpd *, char *, int);
4b292b55
VB
103void lldpd_hardware_cleanup(struct lldpd*, struct lldpd_hardware *);
104struct lldpd_mgmt *lldpd_alloc_mgmt(int family, void *addr, size_t addrsize, u_int32_t iface);
105void lldpd_recv(struct lldpd *, struct lldpd_hardware *, int);
579bedd5 106void lldpd_send(struct lldpd_hardware *);
4b292b55 107void lldpd_loop(struct lldpd *);
1e0d651f 108int lldpd_main(int, char **, char **);
0484f180 109void lldpd_update_localports(struct lldpd *);
e6f64ed9 110void lldpd_update_localchassis(struct lldpd *);
3333d2a8 111void lldpd_cleanup(struct lldpd *);
0484f180 112
579bedd5
VB
113/* frame.c */
114u_int16_t frame_checksum(const u_int8_t *, int, int);
4b292b55
VB
115
116/* event.c */
117void levent_loop(struct lldpd *);
f144d837 118void levent_shutdown(struct lldpd *);
4b292b55
VB
119void levent_hardware_init(struct lldpd_hardware *);
120void levent_hardware_add_fd(struct lldpd_hardware *, int);
121void levent_hardware_release(struct lldpd_hardware *);
4e90a9e0 122void levent_ctl_notify(char *, int, struct lldpd_port *);
47287a61 123void levent_send_now(struct lldpd *);
e681c859 124void levent_update_now(struct lldpd *);
aa313f2a 125int levent_iface_subscribe(struct lldpd *, int);
579bedd5 126void levent_schedule_pdu(struct lldpd_hardware *);
3333d2a8 127void levent_schedule_cleanup(struct lldpd *);
bec75f84 128int levent_make_socket_nonblocking(int);
327b1d62 129int levent_make_socket_blocking(int);
4b292b55
VB
130
131/* lldp.c */
e770b720 132int lldp_send_shutdown(PROTO_SEND_SIG);
4b292b55
VB
133int lldp_send(PROTO_SEND_SIG);
134int lldp_decode(PROTO_DECODE_SIG);
135
136/* cdp.c */
137#ifdef ENABLE_CDP
138int cdpv1_send(PROTO_SEND_SIG);
139int cdpv2_send(PROTO_SEND_SIG);
140int cdpv1_guess(PROTO_GUESS_SIG);
141int cdpv2_guess(PROTO_GUESS_SIG);
142#endif
143#if defined (ENABLE_CDP) || defined (ENABLE_FDP)
144int cdp_decode(PROTO_DECODE_SIG);
145#endif
146#ifdef ENABLE_FDP
147int fdp_send(PROTO_SEND_SIG);
148#endif
149
150#ifdef ENABLE_SONMP
151/* sonmp.c */
152int sonmp_send(PROTO_SEND_SIG);
153int sonmp_decode(PROTO_DECODE_SIG);
154#endif
155
156#ifdef ENABLE_EDP
157/* edp.c */
158int edp_send(PROTO_SEND_SIG);
159int edp_decode(PROTO_DECODE_SIG);
160#endif
161
4b292b55
VB
162/* dmi.c */
163#ifdef ENABLE_LLDPMED
4b292b55
VB
164char *dmi_hw(void);
165char *dmi_fw(void);
166char *dmi_sn(void);
167char *dmi_manuf(void);
168char *dmi_model(void);
169char *dmi_asset(void);
170#endif
4b292b55 171
25de85a4 172#ifdef USE_SNMP
4b292b55
VB
173/* agent.c */
174void agent_shutdown(void);
83d4b776 175void agent_init(struct lldpd *, const char *);
25de85a4
VB
176void agent_notify(struct lldpd_hardware *, int, struct lldpd_port *);
177#endif
4b292b55 178
71a7dbb3 179#ifdef ENABLE_PRIVSEP
4b292b55
VB
180/* agent_priv.c */
181void agent_priv_register_domain(void);
06b24ddc 182const char *agent_default_agentx_socket(void);
71a7dbb3 183#endif
4b292b55
VB
184
185/* client.c */
e0478a46
VB
186int
187client_handle_client(struct lldpd *cfg,
188 ssize_t(*send)(void *, int, void *, size_t),
189 void *,
4e90a9e0
VB
190 enum hmsg_type type, void *buffer, size_t n,
191 int*);
4b292b55
VB
192
193/* priv.c */
83577a2b 194void priv_init(const char*, int, uid_t, gid_t);
71a7dbb3 195void priv_wait(void);
0262adbb 196void priv_ctl_cleanup(const char *ctlname);
1fa7d39f 197char *priv_gethostname(void);
e12c2365 198#ifdef HOST_OS_LINUX
70c9cb05 199int priv_open(char*);
4ea0565e 200void asroot_open(void);
e12c2365 201#endif
e735a319 202int priv_iface_init(int, char *);
4ea0565e 203int asroot_iface_init_os(int, char *, int *);
a98ed042 204int priv_iface_multicast(const char *, const u_int8_t *, int);
47820fc4
VB
205int priv_iface_description(const char *, const char *);
206int asroot_iface_description_os(const char *, const char *);
f84199dd
VB
207int priv_iface_promisc(const char*);
208int asroot_iface_promisc_os(const char *);
4b292b55
VB
209int priv_snmp_socket(struct sockaddr_un *);
210
065732ca 211enum priv_cmd {
4ea0565e
VB
212 PRIV_PING,
213 PRIV_DELETE_CTL_SOCKET,
214 PRIV_GET_HOSTNAME,
215 PRIV_OPEN,
4ea0565e
VB
216 PRIV_IFACE_INIT,
217 PRIV_IFACE_MULTICAST,
47820fc4 218 PRIV_IFACE_DESCRIPTION,
f84199dd 219 PRIV_IFACE_PROMISC,
4ea0565e 220 PRIV_SNMP_SOCKET,
065732ca 221};
4ea0565e 222
00e40dba 223/* priv-seccomp.c */
71a7dbb3 224#if defined USE_SECCOMP && defined ENABLE_PRIVSEP
00e40dba
VB
225int priv_seccomp_init(int, int);
226#endif
4ea0565e
VB
227
228/* privsep_io.c */
d2a289bb
VB
229enum priv_context {
230 PRIV_PRIVILEGED,
231 PRIV_UNPRIVILEGED
232};
233int may_read(enum priv_context, void *, size_t);
234void must_read(enum priv_context, void *, size_t);
235void must_write(enum priv_context, const void *, size_t);
236void priv_privileged_fd(int);
237void priv_unprivileged_fd(int);
327b1d62 238int priv_fd(enum priv_context);
d2a289bb
VB
239int receive_fd(enum priv_context);
240void send_fd(enum priv_context, int);
4b292b55 241
e12c2365 242/* interfaces-*.c */
e12c2365 243
adbb6e54
VB
244/* BPF filter to get revelant information from interfaces */
245/* LLDP: "ether proto 0x88cc and ether dst 01:80:c2:00:00:0e" */
246/* FDP: "ether dst 01:e0:52:cc:cc:cc" */
247/* CDP: "ether dst 01:00:0c:cc:cc:cc" */
248/* SONMP: "ether dst 01:00:81:00:01:00" */
249/* EDP: "ether dst 00:e0:2b:00:00:00" */
250/* For optimization purpose, we first check if the first bit of the
251 first byte is 1. if not, this can only be an EDP packet:
252
253 tcpdump -dd "(ether[0] & 1 = 1 and
a98ed042
VB
254 ((ether proto 0x88cc and (ether dst 01:80:c2:00:00:0e or
255 ether dst 01:80:c2:00:00:03 or
256 ether dst 01:80:c2:00:00:00)) or
adbb6e54
VB
257 (ether dst 01:e0:52:cc:cc:cc) or
258 (ether dst 01:00:0c:cc:cc:cc) or
259 (ether dst 01:00:81:00:01:00))) or
260 (ether dst 00:e0:2b:00:00:00)"
261*/
262
263#define LLDPD_FILTER_F \
264 { 0x30, 0, 0, 0x00000000 }, \
265 { 0x54, 0, 0, 0x00000001 }, \
a98ed042 266 { 0x15, 0, 16, 0x00000001 }, \
adbb6e54 267 { 0x28, 0, 0, 0x0000000c }, \
a98ed042 268 { 0x15, 0, 6, 0x000088cc }, \
adbb6e54 269 { 0x20, 0, 0, 0x00000002 }, \
a98ed042
VB
270 { 0x15, 2, 0, 0xc200000e }, \
271 { 0x15, 1, 0, 0xc2000003 }, \
272 { 0x15, 0, 2, 0xc2000000 }, \
adbb6e54
VB
273 { 0x28, 0, 0, 0x00000000 }, \
274 { 0x15, 12, 13, 0x00000180 }, \
275 { 0x20, 0, 0, 0x00000002 }, \
276 { 0x15, 0, 2, 0x52cccccc }, \
277 { 0x28, 0, 0, 0x00000000 }, \
278 { 0x15, 8, 9, 0x000001e0 }, \
279 { 0x15, 1, 0, 0x0ccccccc }, \
280 { 0x15, 0, 2, 0x81000100 }, \
281 { 0x28, 0, 0, 0x00000000 }, \
282 { 0x15, 4, 5, 0x00000100 }, \
283 { 0x20, 0, 0, 0x00000002 }, \
284 { 0x15, 0, 3, 0x2b000000 }, \
285 { 0x28, 0, 0, 0x00000000 }, \
286 { 0x15, 0, 1, 0x000000e0 }, \
a98ed042
VB
287 { 0x6, 0, 0, 0x00040000 }, \
288 { 0x6, 0, 0, 0x00000000 }
adbb6e54
VB
289
290/* This function is responsible to refresh information about interfaces. It is
291 * OS specific but should be present for each OS. It can use the functions in
292 * `interfaces.c` as helper by providing a list of OS-independent interface
293 * devices. */
294void interfaces_update(struct lldpd *);
adbb6e54
VB
295
296/* interfaces.c */
297/* An interface cannot be both physical and (bridge or bond or vlan) */
298#define IFACE_PHYSICAL_T (1 << 0) /* Physical interface */
299#define IFACE_BRIDGE_T (1 << 1) /* Bridge interface */
300#define IFACE_BOND_T (1 << 2) /* Bond interface */
301#define IFACE_VLAN_T (1 << 3) /* VLAN interface */
302#define IFACE_WIRELESS_T (1 << 4) /* Wireless interface */
303struct interfaces_device {
304 TAILQ_ENTRY(interfaces_device) next;
0fa2254b 305 int ignore; /* Ignore this interface */
e12c2365
VB
306 int index; /* Index */
307 char *name; /* Name */
308 char *alias; /* Alias */
e12c2365 309 char *address; /* MAC address */
adbb6e54
VB
310 char *driver; /* Driver (for whitelisting purpose) */
311 int flags; /* Flags (IFF_*) */
312 int mtu; /* MTU */
313 int type; /* Type (see IFACE_*_T) */
314 int vlanid; /* If a VLAN, what is the VLAN ID? */
315 struct interfaces_device *lower; /* Lower interface (for a VLAN for example) */
316 struct interfaces_device *upper; /* Upper interface (for a bridge or a bond) */
317
318 /* The following are OS specific. Should be static (no free function) */
319#ifdef HOST_OS_LINUX
320 int lower_idx; /* Index to lower interface */
321 int upper_idx; /* Index to upper interface */
adbb6e54 322#endif
e12c2365 323};
adbb6e54
VB
324struct interfaces_address {
325 TAILQ_ENTRY(interfaces_address) next;
326 int index; /* Index */
327 int flags; /* Flags */
e12c2365 328 struct sockaddr_storage address; /* Address */
adbb6e54
VB
329
330 /* The following are OS specific. */
331 /* Nothing yet. */
e12c2365 332};
adbb6e54
VB
333TAILQ_HEAD(interfaces_device_list, interfaces_device);
334TAILQ_HEAD(interfaces_address_list, interfaces_address);
335void interfaces_free_device(struct interfaces_device *);
336void interfaces_free_address(struct interfaces_address *);
337void interfaces_free_devices(struct interfaces_device_list *);
338void interfaces_free_addresses(struct interfaces_address_list *);
339struct interfaces_device* interfaces_indextointerface(
340 struct interfaces_device_list *,
341 int);
342struct interfaces_device* interfaces_nametointerface(
343 struct interfaces_device_list *,
344 const char *);
345
f84199dd
VB
346void interfaces_helper_promisc(struct lldpd *,
347 struct lldpd_hardware *);
adbb6e54
VB
348void interfaces_helper_whitelist(struct lldpd *,
349 struct interfaces_device_list *);
350void interfaces_helper_chassis(struct lldpd *,
351 struct interfaces_device_list *);
bdfe4193
VB
352void interfaces_helper_add_hardware(struct lldpd *,
353 struct lldpd_hardware *);
adbb6e54 354void interfaces_helper_physical(struct lldpd *,
88bc404f 355 struct interfaces_device_list *,
22e8cd65 356 struct lldpd_ops *,
88bc404f 357 int(*init)(struct lldpd *, struct lldpd_hardware *));
8fbd3195
ST
358void interfaces_helper_port_name_desc(struct lldpd *,
359 struct lldpd_hardware *,
adbb6e54
VB
360 struct interfaces_device *);
361void interfaces_helper_mgmt(struct lldpd *,
362 struct interfaces_address_list *);
363#ifdef ENABLE_DOT1
364void interfaces_helper_vlan(struct lldpd *,
365 struct interfaces_device_list *);
366#endif
5347914e
VB
367int interfaces_send_helper(struct lldpd *,
368 struct lldpd_hardware *, char *, size_t);
adbb6e54
VB
369
370void interfaces_setup_multicast(struct lldpd *, const char *, int);
c3e340b6 371int interfaces_routing_enabled(struct lldpd *);
13181ede 372void interfaces_cleanup(struct lldpd *);
adbb6e54
VB
373
374#ifdef HOST_OS_LINUX
375/* netlink.c */
13181ede
VB
376struct interfaces_device_list *netlink_get_interfaces(struct lldpd *);
377struct interfaces_address_list *netlink_get_addresses(struct lldpd *);
378void netlink_cleanup(struct lldpd *);
379struct lldpd_netlink;
e12c2365
VB
380#endif
381
c3e340b6
VB
382#ifndef HOST_OS_LINUX
383int ifbpf_phys_init(struct lldpd *, struct lldpd_hardware *);
384#endif
385
d5e69431
VB
386/* pattern.c */
387int pattern_match(char *, char *, int);
388
13181ede
VB
389struct lldpd {
390 int g_sock;
391 struct event_base *g_base;
392#ifdef USE_SNMP
393#endif
394
395 struct lldpd_config g_config;
396
397 struct protocol *g_protocols;
398 int g_lastrid;
399 struct event *g_main_loop;
400 struct event *g_cleanup_timer;
401#ifdef USE_SNMP
402 int g_snmp;
403 struct event *g_snmp_timeout;
404 void *g_snmp_fds;
405 const char *g_snmp_agentx;
406#endif /* USE_SNMP */
407
408 /* Unix socket handling */
409 const char *g_ctlname;
410 int g_ctl;
411 struct event *g_iface_event; /* Triggered when there is an interface change */
412 struct event *g_iface_timer_event; /* Triggered one second after last interface change */
413 void(*g_iface_cb)(struct lldpd *); /* Called when there is an interface change */
414
415 char *g_lsb_release;
416
417#ifdef HOST_OS_LINUX
418 struct lldpd_netlink *g_netlink;
419#endif
420
9da663f7 421 struct lldpd_port *g_default_local_port;
13181ede
VB
422#define LOCAL_CHASSIS(cfg) ((struct lldpd_chassis *)(TAILQ_FIRST(&cfg->g_chassis)))
423 TAILQ_HEAD(, lldpd_chassis) g_chassis;
424 TAILQ_HEAD(, lldpd_hardware) g_hardware;
425};
426
4b292b55 427#endif /* _LLDPD_H */