chiark / gitweb /
sd-netlink: turn 'max' into 'count' to support empty type-systems
[elogind.git] / src / libsystemd / sd-netlink / netlink-types.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2014 Tom Gundersen <teg@jklm.no>
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 enum {
25         NETLINK_TYPE_UNSPEC,
26         NETLINK_TYPE_META,
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_IN_ADDR,
33         NETLINK_TYPE_ETHER_ADDR,
34         NETLINK_TYPE_CACHE_INFO,
35         NETLINK_TYPE_NESTED,                    /* NLA_NESTED */
36         NETLINK_TYPE_UNION,
37 };
38
39 typedef enum NLMatchType {
40         NL_MATCH_SIBLING,
41         NL_MATCH_PROTOCOL,
42 } NLMatchType;
43
44 typedef struct NLTypeSystemUnion NLTypeSystemUnion;
45 typedef struct NLTypeSystem NLTypeSystem;
46 typedef struct NLType NLType;
47
48 struct NLTypeSystemUnion {
49         int num;
50         NLMatchType match_type;
51         uint16_t match;
52         int (*lookup)(const char *);
53         const NLTypeSystem *type_systems;
54 };
55
56 uint16_t type_get_type(const NLType *type);
57 size_t type_get_size(const NLType *type);
58 void type_get_type_system(const NLType *type, const NLTypeSystem **ret);
59 void type_get_type_system_union(const NLType *type, const NLTypeSystemUnion **ret);
60
61 uint16_t type_system_get_count(const NLTypeSystem *type_system);
62 int type_system_get_type(const NLTypeSystem *type_system, const NLType **ret, uint16_t type);
63 int type_system_get_type_system(const NLTypeSystem *type_system, const NLTypeSystem **ret, uint16_t type);
64 int type_system_get_type_system_union(const NLTypeSystem *type_system, const NLTypeSystemUnion **ret, uint16_t type);
65 int type_system_union_get_type_system(const NLTypeSystemUnion *type_system_union, const NLTypeSystem **ret, const char *key);
66 int type_system_union_protocol_get_type_system(const NLTypeSystemUnion *type_system_union, const NLTypeSystem **ret, uint16_t protocol);
67
68 typedef enum NLUnionLinkInfoData {
69         NL_UNION_LINK_INFO_DATA_BOND,
70         NL_UNION_LINK_INFO_DATA_BRIDGE,
71         NL_UNION_LINK_INFO_DATA_VLAN,
72         NL_UNION_LINK_INFO_DATA_VETH,
73         NL_UNION_LINK_INFO_DATA_DUMMY,
74         NL_UNION_LINK_INFO_DATA_MACVLAN,
75         NL_UNION_LINK_INFO_DATA_IPVLAN,
76         NL_UNION_LINK_INFO_DATA_VXLAN,
77         NL_UNION_LINK_INFO_DATA_IPIP_TUNNEL,
78         NL_UNION_LINK_INFO_DATA_IPGRE_TUNNEL,
79         NL_UNION_LINK_INFO_DATA_IPGRETAP_TUNNEL,
80         NL_UNION_LINK_INFO_DATA_IP6GRE_TUNNEL,
81         NL_UNION_LINK_INFO_DATA_IP6GRETAP_TUNNEL,
82         NL_UNION_LINK_INFO_DATA_SIT_TUNNEL,
83         NL_UNION_LINK_INFO_DATA_VTI_TUNNEL,
84         NL_UNION_LINK_INFO_DATA_VTI6_TUNNEL,
85         NL_UNION_LINK_INFO_DATA_IP6TNL_TUNNEL,
86         _NL_UNION_LINK_INFO_DATA_MAX,
87         _NL_UNION_LINK_INFO_DATA_INVALID = -1
88 } NLUnionLinkInfoData;
89
90 const char *nl_union_link_info_data_to_string(NLUnionLinkInfoData p) _const_;
91 NLUnionLinkInfoData nl_union_link_info_data_from_string(const char *p) _pure_;
92
93 /* Maximum ARP IP target defined in kernel */
94 #define BOND_MAX_ARP_TARGETS    16
95
96 typedef enum BondArpTargets {
97         BOND_ARP_TARGETS_0,
98         BOND_ARP_TARGETS_1,
99         BOND_ARP_TARGETS_2,
100         BOND_ARP_TARGETS_3,
101         BOND_ARP_TARGETS_4,
102         BOND_ARP_TARGETS_5,
103         BOND_ARP_TARGETS_6,
104         BOND_ARP_TARGETS_7,
105         BOND_ARP_TARGETS_8,
106         BOND_ARP_TARGETS_9,
107         BOND_ARP_TARGETS_10,
108         BOND_ARP_TARGETS_11,
109         BOND_ARP_TARGETS_12,
110         BOND_ARP_TARGETS_13,
111         BOND_ARP_TARGETS_14,
112         BOND_ARP_TARGETS_MAX = BOND_MAX_ARP_TARGETS,
113 } BondArpTargets;