]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-network/lldp-neighbor.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / libsystemd-network / lldp-neighbor.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
34437b4f
LP
2#pragma once
3
34437b4f
LP
4#include <inttypes.h>
5#include <stdbool.h>
6#include <sys/types.h>
7
8#include "sd-lldp.h"
9
10#include "hash-funcs.h"
11#include "lldp-internal.h"
12#include "time-util.h"
13
14typedef struct LLDPNeighborID {
15 /* The spec calls this an "MSAP identifier" */
16 void *chassis_id;
17 size_t chassis_id_size;
18
19 void *port_id;
20 size_t port_id_size;
21} LLDPNeighborID;
22
23struct sd_lldp_neighbor {
24 /* Neighbor objects stay around as long as they are linked into an "sd_lldp" object or n_ref > 0. */
25 sd_lldp *lldp;
26 unsigned n_ref;
27
16fed825
LP
28 triple_timestamp timestamp;
29
34437b4f
LP
30 usec_t until;
31 unsigned prioq_idx;
32
33 struct ether_addr source_address;
34 struct ether_addr destination_address;
35
36 LLDPNeighborID id;
37
38 /* The raw packet size. The data is appended to the object, accessible via LLDP_NEIGHBOR_RAW() */
39 size_t raw_size;
40
41 /* The current read index for the iterative TLV interface */
42 size_t rindex;
43
44 /* And a couple of fields parsed out. */
45 bool has_ttl:1;
46 bool has_capabilities:1;
47 bool has_port_vlan_id:1;
48
49 uint16_t ttl;
50
51 uint16_t system_capabilities;
52 uint16_t enabled_capabilities;
53
54 char *port_description;
55 char *system_name;
56 char *system_description;
57
58 uint16_t port_vlan_id;
59
60 char *chassis_id_as_string;
61 char *port_id_as_string;
62};
63
64static inline void *LLDP_NEIGHBOR_RAW(const sd_lldp_neighbor *n) {
65 return (uint8_t*) n + ALIGN(sizeof(sd_lldp_neighbor));
66}
67
f137029b 68static inline uint8_t LLDP_NEIGHBOR_TLV_TYPE(const sd_lldp_neighbor *n) {
34437b4f
LP
69 return ((uint8_t*) LLDP_NEIGHBOR_RAW(n))[n->rindex] >> 1;
70}
71
f137029b 72static inline size_t LLDP_NEIGHBOR_TLV_LENGTH(const sd_lldp_neighbor *n) {
34437b4f
LP
73 uint8_t *p;
74
75 p = (uint8_t*) LLDP_NEIGHBOR_RAW(n) + n->rindex;
76 return p[1] + (((size_t) (p[0] & 1)) << 8);
77}
78
f137029b 79static inline void* LLDP_NEIGHBOR_TLV_DATA(const sd_lldp_neighbor *n) {
34437b4f
LP
80 return ((uint8_t*) LLDP_NEIGHBOR_RAW(n)) + n->rindex + 2;
81}
82
8276855e 83extern const struct hash_ops lldp_neighbor_hash_ops;
dc5f9c6f 84int lldp_neighbor_id_compare_func(const LLDPNeighborID *x, const LLDPNeighborID *y);
34437b4f
LP
85int lldp_neighbor_prioq_compare_func(const void *a, const void *b);
86
87sd_lldp_neighbor *lldp_neighbor_unlink(sd_lldp_neighbor *n);
88sd_lldp_neighbor *lldp_neighbor_new(size_t raw_size);
89int lldp_neighbor_parse(sd_lldp_neighbor *n);
90void lldp_neighbor_start_ttl(sd_lldp_neighbor *n);
91bool lldp_neighbor_equal(const sd_lldp_neighbor *a, const sd_lldp_neighbor *b);