Blame view

include/linux/genl_magic_struct.h 7.58 KB
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  #ifndef GENL_MAGIC_STRUCT_H
  #define GENL_MAGIC_STRUCT_H
  
  #ifndef GENL_MAGIC_FAMILY
  # error "you need to define GENL_MAGIC_FAMILY before inclusion"
  #endif
  
  #ifndef GENL_MAGIC_VERSION
  # error "you need to define GENL_MAGIC_VERSION before inclusion"
  #endif
  
  #ifndef GENL_MAGIC_INCLUDE_FILE
  # error "you need to define GENL_MAGIC_INCLUDE_FILE before inclusion"
  #endif
  
  #include <linux/genetlink.h>
  #include <linux/types.h>
  
  #define CONCAT__(a,b)	a ## b
  #define CONCAT_(a,b)	CONCAT__(a,b)
  
  extern int CONCAT_(GENL_MAGIC_FAMILY, _genl_register)(void);
  extern void CONCAT_(GENL_MAGIC_FAMILY, _genl_unregister)(void);
  
  /*
   * Extension of genl attribute validation policies			{{{2
   */
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
28
29
30
31
  /*
   * @DRBD_GENLA_F_MANDATORY: By default, netlink ignores attributes it does not
   * know about.  This flag can be set in nlattr->nla_type to indicate that this
   * attribute must not be ignored.
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
32
   *
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
33
34
35
36
37
38
39
40
   * We check and remove this flag in drbd_nla_check_mandatory() before
   * validating the attribute types and lengths via nla_parse_nested().
   */
  #define DRBD_GENLA_F_MANDATORY (1 << 14)
  
  /*
   * Flags specific to drbd and not visible at the netlink layer, used in
   * <struct>_from_attrs and <struct>_to_skb:
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
41
   *
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
42
43
   * @DRBD_F_REQUIRED: Attribute is required; a request without this attribute is
   * invalid.
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
44
   *
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
45
46
   * @DRBD_F_SENSITIVE: Attribute includes sensitive information and must not be
   * included in unpriviledged get requests or broadcasts.
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
47
   *
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
48
49
   * @DRBD_F_INVARIANT: Attribute is set when an object is initially created, but
   * cannot subsequently be changed.
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
50
   */
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
51
52
53
  #define DRBD_F_REQUIRED (1 << 0)
  #define DRBD_F_SENSITIVE (1 << 1)
  #define DRBD_F_INVARIANT (1 << 2)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
54

5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
55
  #define __nla_type(x)	((__u16)((x) & NLA_TYPE_MASK & ~DRBD_GENLA_F_MANDATORY))
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
56
57
58
59
60
61
62
  
  /*									}}}1
   * MAGIC
   * multi-include macro expansion magic starts here
   */
  
  /* MAGIC helpers							{{{2 */
1dee3f59a   Nicolas Dichtel   block/drbd: align...
63
64
65
66
  static inline int nla_put_u64_0pad(struct sk_buff *skb, int attrtype, u64 value)
  {
  	return nla_put_64bit(skb, attrtype, sizeof(u64), &value, 0);
  }
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
67
68
  /* possible field types */
  #define __flg_field(attr_nr, attr_flag, name) \
a5d8e1fb9   Andreas Gruenbacher   drbd: Convert boo...
69
  	__field(attr_nr, attr_flag, name, NLA_U8, char, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
70
  			nla_get_u8, nla_put_u8, false)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
71
72
  #define __u8_field(attr_nr, attr_flag, name)	\
  	__field(attr_nr, attr_flag, name, NLA_U8, unsigned char, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
73
  			nla_get_u8, nla_put_u8, false)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
74
75
  #define __u16_field(attr_nr, attr_flag, name)	\
  	__field(attr_nr, attr_flag, name, NLA_U16, __u16, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
76
  			nla_get_u16, nla_put_u16, false)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
77
78
  #define __u32_field(attr_nr, attr_flag, name)	\
  	__field(attr_nr, attr_flag, name, NLA_U32, __u32, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
79
  			nla_get_u32, nla_put_u32, false)
563e4cf25   Lars Ellenberg   drbd: Introduce _...
80
81
  #define __s32_field(attr_nr, attr_flag, name)	\
  	__field(attr_nr, attr_flag, name, NLA_U32, __s32, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
82
  			nla_get_u32, nla_put_u32, true)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
83
84
  #define __u64_field(attr_nr, attr_flag, name)	\
  	__field(attr_nr, attr_flag, name, NLA_U64, __u64, \
1dee3f59a   Nicolas Dichtel   block/drbd: align...
85
  			nla_get_u64, nla_put_u64_0pad, false)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
86
87
  #define __str_field(attr_nr, attr_flag, name, maxlen) \
  	__array(attr_nr, attr_flag, name, NLA_NUL_STRING, char, maxlen, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
88
  			nla_strlcpy, nla_put, false)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
89
90
  #define __bin_field(attr_nr, attr_flag, name, maxlen) \
  	__array(attr_nr, attr_flag, name, NLA_BINARY, char, maxlen, \
26ec92871   Andreas Gruenbacher   drbd: Stop using ...
91
  			nla_memcpy, nla_put, false)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
92

b966b5dd8   Andreas Gruenbacher   drbd: Generate th...
93
94
95
96
97
  /* fields with default values */
  #define __flg_field_def(attr_nr, attr_flag, name, default) \
  	__flg_field(attr_nr, attr_flag, name)
  #define __u32_field_def(attr_nr, attr_flag, name, default) \
  	__u32_field(attr_nr, attr_flag, name)
3a45abd57   Andreas Gruenbacher   drbd: Convert res...
98
99
  #define __s32_field_def(attr_nr, attr_flag, name, default) \
  	__s32_field(attr_nr, attr_flag, name)
b966b5dd8   Andreas Gruenbacher   drbd: Generate th...
100
101
  #define __str_field_def(attr_nr, attr_flag, name, maxlen) \
  	__str_field(attr_nr, attr_flag, name, maxlen)
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
  #define GENL_op_init(args...)	args
  #define GENL_doit(handler)		\
  	.doit = handler,		\
  	.flags = GENL_ADMIN_PERM,
  #define GENL_dumpit(handler)		\
  	.dumpit = handler,		\
  	.flags = GENL_ADMIN_PERM,
  
  /*									}}}1
   * Magic: define the enum symbols for genl_ops
   * Magic: define the enum symbols for top level attributes
   * Magic: define the enum symbols for nested attributes
   *									{{{2
   */
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)
  
  #undef GENL_mc_group
  #define GENL_mc_group(group)
  
  #undef GENL_notification
  #define GENL_notification(op_name, op_num, mcast_group, tla_list)	\
  	op_name = op_num,
  
  #undef GENL_op
  #define GENL_op(op_name, op_num, handler, tla_list)			\
  	op_name = op_num,
  
  enum {
  #include GENL_MAGIC_INCLUDE_FILE
  };
  
  #undef GENL_notification
  #define GENL_notification(op_name, op_num, mcast_group, tla_list)
  
  #undef GENL_op
  #define GENL_op(op_name, op_num, handler, attr_list)
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields) \
  		tag_name = tag_number,
  
  enum {
  #include GENL_MAGIC_INCLUDE_FILE
  };
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)	\
  enum {								\
  	s_fields						\
  };
  
  #undef __field
509100e60   Andreas Gruenbacher   drbd: Output sign...
156
157
  #define __field(attr_nr, attr_flag, name, nla_type, type,	\
  		__get, __put, __is_signed)			\
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
158
  	T_ ## name = (__u16)(attr_nr | ((attr_flag) & DRBD_GENLA_F_MANDATORY)),
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
159
160
  
  #undef __array
509100e60   Andreas Gruenbacher   drbd: Output sign...
161
162
  #define __array(attr_nr, attr_flag, name, nla_type, type,	\
  		maxlen, __get, __put, __is_signed)		\
5f9359201   Andreas Gruenbacher   drbd: Make drbd's...
163
  	T_ ## name = (__u16)(attr_nr | ((attr_flag) & DRBD_GENLA_F_MANDATORY)),
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
  
  #include GENL_MAGIC_INCLUDE_FILE
  
  /*									}}}1
   * Magic: compile time assert unique numbers for operations
   * Magic: -"- unique numbers for top level attributes
   * Magic: -"- unique numbers for nested attributes
   *									{{{2
   */
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)
  
  #undef GENL_op
  #define GENL_op(op_name, op_num, handler, attr_list)	\
  	case op_name:
  
  #undef GENL_notification
  #define GENL_notification(op_name, op_num, mcast_group, tla_list)	\
  	case op_name:
  
  static inline void ct_assert_unique_operations(void)
  {
  	switch (0) {
  #include GENL_MAGIC_INCLUDE_FILE
  		;
  	}
  }
  
  #undef GENL_op
  #define GENL_op(op_name, op_num, handler, attr_list)
  
  #undef GENL_notification
  #define GENL_notification(op_name, op_num, mcast_group, tla_list)
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)		\
  		case tag_number:
  
  static inline void ct_assert_unique_top_level_attributes(void)
  {
  	switch (0) {
  #include GENL_MAGIC_INCLUDE_FILE
  		;
  	}
  }
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)		\
  static inline void ct_assert_unique_ ## s_name ## _attributes(void)	\
  {									\
  	switch (0) {							\
  		s_fields						\
  			;						\
  	}								\
  }
  
  #undef __field
509100e60   Andreas Gruenbacher   drbd: Output sign...
222
223
  #define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put,	\
  		__is_signed)						\
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
224
225
226
  	case attr_nr:
  
  #undef __array
509100e60   Andreas Gruenbacher   drbd: Output sign...
227
228
  #define __array(attr_nr, attr_flag, name, nla_type, type, maxlen,	\
  		__get, __put, __is_signed)				\
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
  	case attr_nr:
  
  #include GENL_MAGIC_INCLUDE_FILE
  
  /*									}}}1
   * Magic: declare structs
   * struct <name> {
   *	fields
   * };
   *									{{{2
   */
  
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)		\
  struct s_name { s_fields };
  
  #undef __field
509100e60   Andreas Gruenbacher   drbd: Output sign...
246
247
  #define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put,	\
  		__is_signed)						\
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
248
249
250
  	type name;
  
  #undef __array
509100e60   Andreas Gruenbacher   drbd: Output sign...
251
252
  #define __array(attr_nr, attr_flag, name, nla_type, type, maxlen,	\
  		__get, __put, __is_signed)				\
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
253
254
255
256
  	type name[maxlen];	\
  	__u32 name ## _len;
  
  #include GENL_MAGIC_INCLUDE_FILE
509100e60   Andreas Gruenbacher   drbd: Output sign...
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
  #undef GENL_struct
  #define GENL_struct(tag_name, tag_number, s_name, s_fields)		\
  enum {									\
  	s_fields							\
  };
  
  #undef __field
  #define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put,	\
  		is_signed)						\
  	F_ ## name ## _IS_SIGNED = is_signed,
  
  #undef __array
  #define __array(attr_nr, attr_flag, name, nla_type, type, maxlen,	\
  		__get, __put, is_signed)				\
  	F_ ## name ## _IS_SIGNED = is_signed,
  
  #include GENL_MAGIC_INCLUDE_FILE
ec2c35ac1   Lars Ellenberg   drbd: prepare the...
274
275
276
  /* }}}1 */
  #endif /* GENL_MAGIC_STRUCT_H */
  /* vim: set foldmethod=marker nofoldenable : */