blob: d0d6fdc22698315307c2f726b4f2df105a63189b [file] [log] [blame]
Lars Ellenbergec2c35a2011-03-07 10:20:08 +01001#ifndef GENL_MAGIC_STRUCT_H
2#define GENL_MAGIC_STRUCT_H
3
4#ifndef GENL_MAGIC_FAMILY
5# error "you need to define GENL_MAGIC_FAMILY before inclusion"
6#endif
7
8#ifndef GENL_MAGIC_VERSION
9# error "you need to define GENL_MAGIC_VERSION before inclusion"
10#endif
11
12#ifndef GENL_MAGIC_INCLUDE_FILE
13# error "you need to define GENL_MAGIC_INCLUDE_FILE before inclusion"
14#endif
15
16#include <linux/genetlink.h>
17#include <linux/types.h>
18
19#define CONCAT__(a,b) a ## b
20#define CONCAT_(a,b) CONCAT__(a,b)
21
22extern int CONCAT_(GENL_MAGIC_FAMILY, _genl_register)(void);
23extern void CONCAT_(GENL_MAGIC_FAMILY, _genl_unregister)(void);
24
25/*
26 * Extension of genl attribute validation policies {{{2
27 */
28
Andreas Gruenbacher5f935922011-05-19 17:39:28 +020029/*
30 * @DRBD_GENLA_F_MANDATORY: By default, netlink ignores attributes it does not
31 * know about. This flag can be set in nlattr->nla_type to indicate that this
32 * attribute must not be ignored.
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010033 *
Andreas Gruenbacher5f935922011-05-19 17:39:28 +020034 * We check and remove this flag in drbd_nla_check_mandatory() before
35 * validating the attribute types and lengths via nla_parse_nested().
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010036 */
Andreas Gruenbacher5f935922011-05-19 17:39:28 +020037#define DRBD_GENLA_F_MANDATORY (1 << 14)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010038
Andreas Gruenbacher5f935922011-05-19 17:39:28 +020039/*
40 * Flags specific to drbd and not visible at the netlink layer, used in
41 * <struct>_from_attrs and <struct>_to_skb:
42 *
43 * @DRBD_F_REQUIRED: Attribute is required; a request without this attribute is
44 * invalid.
45 *
46 * @DRBD_F_SENSITIVE: Attribute includes sensitive information and must not be
47 * included in unpriviledged get requests or broadcasts.
48 *
49 * @DRBD_F_INVARIANT: Attribute is set when an object is initially created, but
50 * cannot subsequently be changed.
51 */
52#define DRBD_F_REQUIRED (1 << 0)
53#define DRBD_F_SENSITIVE (1 << 1)
54#define DRBD_F_INVARIANT (1 << 2)
Lars Ellenbergf3990022011-03-23 14:31:09 +010055
Andreas Gruenbacher5f935922011-05-19 17:39:28 +020056#define __nla_type(x) ((__u16)((x) & NLA_TYPE_MASK & ~DRBD_GENLA_F_MANDATORY))
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010057
58/* }}}1
59 * MAGIC
60 * multi-include macro expansion magic starts here
61 */
62
63/* MAGIC helpers {{{2 */
64
Nicolas Dichtel1dee3f52016-05-09 11:40:20 +020065static inline int nla_put_u64_0pad(struct sk_buff *skb, int attrtype, u64 value)
66{
67 return nla_put_64bit(skb, attrtype, sizeof(u64), &value, 0);
68}
69
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010070/* possible field types */
71#define __flg_field(attr_nr, attr_flag, name) \
Andreas Gruenbachera5d8e1f2011-05-04 16:06:51 +020072 __field(attr_nr, attr_flag, name, NLA_U8, char, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020073 nla_get_u8, nla_put_u8, false)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010074#define __u8_field(attr_nr, attr_flag, name) \
75 __field(attr_nr, attr_flag, name, NLA_U8, unsigned char, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020076 nla_get_u8, nla_put_u8, false)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010077#define __u16_field(attr_nr, attr_flag, name) \
78 __field(attr_nr, attr_flag, name, NLA_U16, __u16, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020079 nla_get_u16, nla_put_u16, false)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010080#define __u32_field(attr_nr, attr_flag, name) \
81 __field(attr_nr, attr_flag, name, NLA_U32, __u32, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020082 nla_get_u32, nla_put_u32, false)
Lars Ellenberg563e4cf2011-05-04 10:33:52 +020083#define __s32_field(attr_nr, attr_flag, name) \
84 __field(attr_nr, attr_flag, name, NLA_U32, __s32, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020085 nla_get_u32, nla_put_u32, true)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010086#define __u64_field(attr_nr, attr_flag, name) \
87 __field(attr_nr, attr_flag, name, NLA_U64, __u64, \
Nicolas Dichtel1dee3f52016-05-09 11:40:20 +020088 nla_get_u64, nla_put_u64_0pad, false)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010089#define __str_field(attr_nr, attr_flag, name, maxlen) \
90 __array(attr_nr, attr_flag, name, NLA_NUL_STRING, char, maxlen, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020091 nla_strlcpy, nla_put, false)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010092#define __bin_field(attr_nr, attr_flag, name, maxlen) \
93 __array(attr_nr, attr_flag, name, NLA_BINARY, char, maxlen, \
Andreas Gruenbacher26ec9282012-07-11 20:36:03 +020094 nla_memcpy, nla_put, false)
Lars Ellenbergec2c35a2011-03-07 10:20:08 +010095
Andreas Gruenbacherb966b5d2011-05-03 14:56:09 +020096/* fields with default values */
97#define __flg_field_def(attr_nr, attr_flag, name, default) \
98 __flg_field(attr_nr, attr_flag, name)
99#define __u32_field_def(attr_nr, attr_flag, name, default) \
100 __u32_field(attr_nr, attr_flag, name)
Andreas Gruenbacher3a45abd2011-05-12 12:02:54 +0200101#define __s32_field_def(attr_nr, attr_flag, name, default) \
102 __s32_field(attr_nr, attr_flag, name)
Andreas Gruenbacherb966b5d2011-05-03 14:56:09 +0200103#define __str_field_def(attr_nr, attr_flag, name, maxlen) \
104 __str_field(attr_nr, attr_flag, name, maxlen)
105
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100106#define GENL_op_init(args...) args
107#define GENL_doit(handler) \
108 .doit = handler, \
109 .flags = GENL_ADMIN_PERM,
110#define GENL_dumpit(handler) \
111 .dumpit = handler, \
112 .flags = GENL_ADMIN_PERM,
113
114/* }}}1
115 * Magic: define the enum symbols for genl_ops
116 * Magic: define the enum symbols for top level attributes
117 * Magic: define the enum symbols for nested attributes
118 * {{{2
119 */
120
121#undef GENL_struct
122#define GENL_struct(tag_name, tag_number, s_name, s_fields)
123
124#undef GENL_mc_group
125#define GENL_mc_group(group)
126
127#undef GENL_notification
128#define GENL_notification(op_name, op_num, mcast_group, tla_list) \
129 op_name = op_num,
130
131#undef GENL_op
132#define GENL_op(op_name, op_num, handler, tla_list) \
133 op_name = op_num,
134
135enum {
136#include GENL_MAGIC_INCLUDE_FILE
137};
138
139#undef GENL_notification
140#define GENL_notification(op_name, op_num, mcast_group, tla_list)
141
142#undef GENL_op
143#define GENL_op(op_name, op_num, handler, attr_list)
144
145#undef GENL_struct
146#define GENL_struct(tag_name, tag_number, s_name, s_fields) \
147 tag_name = tag_number,
148
149enum {
150#include GENL_MAGIC_INCLUDE_FILE
151};
152
153#undef GENL_struct
154#define GENL_struct(tag_name, tag_number, s_name, s_fields) \
155enum { \
156 s_fields \
157};
158
159#undef __field
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200160#define __field(attr_nr, attr_flag, name, nla_type, type, \
161 __get, __put, __is_signed) \
Andreas Gruenbacher5f935922011-05-19 17:39:28 +0200162 T_ ## name = (__u16)(attr_nr | ((attr_flag) & DRBD_GENLA_F_MANDATORY)),
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100163
164#undef __array
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200165#define __array(attr_nr, attr_flag, name, nla_type, type, \
166 maxlen, __get, __put, __is_signed) \
Andreas Gruenbacher5f935922011-05-19 17:39:28 +0200167 T_ ## name = (__u16)(attr_nr | ((attr_flag) & DRBD_GENLA_F_MANDATORY)),
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100168
169#include GENL_MAGIC_INCLUDE_FILE
170
171/* }}}1
172 * Magic: compile time assert unique numbers for operations
173 * Magic: -"- unique numbers for top level attributes
174 * Magic: -"- unique numbers for nested attributes
175 * {{{2
176 */
177
178#undef GENL_struct
179#define GENL_struct(tag_name, tag_number, s_name, s_fields)
180
181#undef GENL_op
182#define GENL_op(op_name, op_num, handler, attr_list) \
183 case op_name:
184
185#undef GENL_notification
186#define GENL_notification(op_name, op_num, mcast_group, tla_list) \
187 case op_name:
188
189static inline void ct_assert_unique_operations(void)
190{
191 switch (0) {
192#include GENL_MAGIC_INCLUDE_FILE
Nathan Chancellorc9fd3742018-12-20 17:23:43 +0100193 case 0:
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100194 ;
195 }
196}
197
198#undef GENL_op
199#define GENL_op(op_name, op_num, handler, attr_list)
200
201#undef GENL_notification
202#define GENL_notification(op_name, op_num, mcast_group, tla_list)
203
204#undef GENL_struct
205#define GENL_struct(tag_name, tag_number, s_name, s_fields) \
206 case tag_number:
207
208static inline void ct_assert_unique_top_level_attributes(void)
209{
210 switch (0) {
211#include GENL_MAGIC_INCLUDE_FILE
Nathan Chancellorc9fd3742018-12-20 17:23:43 +0100212 case 0:
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100213 ;
214 }
215}
216
217#undef GENL_struct
218#define GENL_struct(tag_name, tag_number, s_name, s_fields) \
219static inline void ct_assert_unique_ ## s_name ## _attributes(void) \
220{ \
221 switch (0) { \
Nathan Chancellorc9fd3742018-12-20 17:23:43 +0100222 s_fields \
223 case 0: \
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100224 ; \
225 } \
226}
227
228#undef __field
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200229#define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put, \
230 __is_signed) \
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100231 case attr_nr:
232
233#undef __array
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200234#define __array(attr_nr, attr_flag, name, nla_type, type, maxlen, \
235 __get, __put, __is_signed) \
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100236 case attr_nr:
237
238#include GENL_MAGIC_INCLUDE_FILE
239
240/* }}}1
241 * Magic: declare structs
242 * struct <name> {
243 * fields
244 * };
245 * {{{2
246 */
247
248#undef GENL_struct
249#define GENL_struct(tag_name, tag_number, s_name, s_fields) \
250struct s_name { s_fields };
251
252#undef __field
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200253#define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put, \
254 __is_signed) \
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100255 type name;
256
257#undef __array
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200258#define __array(attr_nr, attr_flag, name, nla_type, type, maxlen, \
259 __get, __put, __is_signed) \
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100260 type name[maxlen]; \
261 __u32 name ## _len;
262
263#include GENL_MAGIC_INCLUDE_FILE
264
Andreas Gruenbacher509100e2011-05-17 13:29:46 +0200265#undef GENL_struct
266#define GENL_struct(tag_name, tag_number, s_name, s_fields) \
267enum { \
268 s_fields \
269};
270
271#undef __field
272#define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put, \
273 is_signed) \
274 F_ ## name ## _IS_SIGNED = is_signed,
275
276#undef __array
277#define __array(attr_nr, attr_flag, name, nla_type, type, maxlen, \
278 __get, __put, is_signed) \
279 F_ ## name ## _IS_SIGNED = is_signed,
280
281#include GENL_MAGIC_INCLUDE_FILE
282
Lars Ellenbergec2c35a2011-03-07 10:20:08 +0100283/* }}}1 */
284#endif /* GENL_MAGIC_STRUCT_H */
285/* vim: set foldmethod=marker nofoldenable : */