]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-netlink/netlink-types.h
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / libsystemd / sd-netlink / netlink-types.h
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 #pragma once
3
4 /***
5 This file is part of systemd.
6
7 Copyright 2014 Tom Gundersen <teg@jklm.no>
8
9 systemd is free software; you can redistribute it and/or modify it
10 under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 2.1 of the License, or
12 (at your option) any later version.
13
14 systemd is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Lesser General Public License for more details.
18
19 You should have received a copy of the GNU Lesser General Public License
20 along with systemd; If not, see <http://www.gnu.org/licenses/>.
21 ***/
22
23 #include "macro.h"
24
25 enum {
26 NETLINK_TYPE_UNSPEC,
27 NETLINK_TYPE_U8, /* NLA_U8 */
28 NETLINK_TYPE_U16, /* NLA_U16 */
29 NETLINK_TYPE_U32, /* NLA_U32 */
30 NETLINK_TYPE_U64, /* NLA_U64 */
31 NETLINK_TYPE_STRING, /* NLA_STRING */
32 NETLINK_TYPE_FLAG, /* NLA_FLAG */
33 NETLINK_TYPE_IN_ADDR,
34 NETLINK_TYPE_ETHER_ADDR,
35 NETLINK_TYPE_CACHE_INFO,
36 NETLINK_TYPE_NESTED, /* NLA_NESTED */
37 NETLINK_TYPE_UNION,
38 };
39
40 typedef enum NLMatchType {
41 NL_MATCH_SIBLING,
42 NL_MATCH_PROTOCOL,
43 } NLMatchType;
44
45 typedef struct NLTypeSystemUnion NLTypeSystemUnion;
46 typedef struct NLTypeSystem NLTypeSystem;
47 typedef struct NLType NLType;
48
49 struct NLTypeSystemUnion {
50 int num;
51 NLMatchType match_type;
52 uint16_t match;
53 int (*lookup)(const char *);
54 const NLTypeSystem *type_systems;
55 };
56
57 extern const NLTypeSystem type_system_root;
58
59 uint16_t type_get_type(const NLType *type);
60 size_t type_get_size(const NLType *type);
61 void type_get_type_system(const NLType *type, const NLTypeSystem **ret);
62 void type_get_type_system_union(const NLType *type, const NLTypeSystemUnion **ret);
63
64 uint16_t type_system_get_count(const NLTypeSystem *type_system);
65 int type_system_get_type(const NLTypeSystem *type_system, const NLType **ret, uint16_t type);
66 int type_system_get_type_system(const NLTypeSystem *type_system, const NLTypeSystem **ret, uint16_t type);
67 int type_system_get_type_system_union(const NLTypeSystem *type_system, const NLTypeSystemUnion **ret, uint16_t type);
68 int type_system_union_get_type_system(const NLTypeSystemUnion *type_system_union, const NLTypeSystem **ret, const char *key);
69 int type_system_union_protocol_get_type_system(const NLTypeSystemUnion *type_system_union, const NLTypeSystem **ret, uint16_t protocol);
70
71 typedef enum NLUnionLinkInfoData {
72 NL_UNION_LINK_INFO_DATA_BOND,
73 NL_UNION_LINK_INFO_DATA_BRIDGE,
74 NL_UNION_LINK_INFO_DATA_VLAN,
75 NL_UNION_LINK_INFO_DATA_VETH,
76 NL_UNION_LINK_INFO_DATA_DUMMY,
77 NL_UNION_LINK_INFO_DATA_MACVLAN,
78 NL_UNION_LINK_INFO_DATA_MACVTAP,
79 NL_UNION_LINK_INFO_DATA_IPVLAN,
80 NL_UNION_LINK_INFO_DATA_VXLAN,
81 NL_UNION_LINK_INFO_DATA_IPIP_TUNNEL,
82 NL_UNION_LINK_INFO_DATA_IPGRE_TUNNEL,
83 NL_UNION_LINK_INFO_DATA_IPGRETAP_TUNNEL,
84 NL_UNION_LINK_INFO_DATA_IP6GRE_TUNNEL,
85 NL_UNION_LINK_INFO_DATA_IP6GRETAP_TUNNEL,
86 NL_UNION_LINK_INFO_DATA_SIT_TUNNEL,
87 NL_UNION_LINK_INFO_DATA_VTI_TUNNEL,
88 NL_UNION_LINK_INFO_DATA_VTI6_TUNNEL,
89 NL_UNION_LINK_INFO_DATA_IP6TNL_TUNNEL,
90 NL_UNION_LINK_INFO_DATA_VRF,
91 NL_UNION_LINK_INFO_DATA_VCAN,
92 NL_UNION_LINK_INFO_DATA_GENEVE,
93 _NL_UNION_LINK_INFO_DATA_MAX,
94 _NL_UNION_LINK_INFO_DATA_INVALID = -1
95 } NLUnionLinkInfoData;
96
97 const char *nl_union_link_info_data_to_string(NLUnionLinkInfoData p) _const_;
98 NLUnionLinkInfoData nl_union_link_info_data_from_string(const char *p) _pure_;