Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 2 | #ifndef GENL_MAGIC_STRUCT_H |
| 3 | #define GENL_MAGIC_STRUCT_H |
| 4 | |
| 5 | #ifndef GENL_MAGIC_FAMILY |
| 6 | # error "you need to define GENL_MAGIC_FAMILY before inclusion" |
| 7 | #endif |
| 8 | |
| 9 | #ifndef GENL_MAGIC_VERSION |
| 10 | # error "you need to define GENL_MAGIC_VERSION before inclusion" |
| 11 | #endif |
| 12 | |
| 13 | #ifndef GENL_MAGIC_INCLUDE_FILE |
| 14 | # error "you need to define GENL_MAGIC_INCLUDE_FILE before inclusion" |
| 15 | #endif |
| 16 | |
| 17 | #include <linux/genetlink.h> |
| 18 | #include <linux/types.h> |
| 19 | |
| 20 | #define CONCAT__(a,b) a ## b |
| 21 | #define CONCAT_(a,b) CONCAT__(a,b) |
| 22 | |
| 23 | extern int CONCAT_(GENL_MAGIC_FAMILY, _genl_register)(void); |
| 24 | extern void CONCAT_(GENL_MAGIC_FAMILY, _genl_unregister)(void); |
| 25 | |
| 26 | /* |
| 27 | * Extension of genl attribute validation policies {{{2 |
| 28 | */ |
| 29 | |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 30 | /* |
| 31 | * @DRBD_GENLA_F_MANDATORY: By default, netlink ignores attributes it does not |
| 32 | * know about. This flag can be set in nlattr->nla_type to indicate that this |
| 33 | * attribute must not be ignored. |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 34 | * |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 35 | * We check and remove this flag in drbd_nla_check_mandatory() before |
| 36 | * validating the attribute types and lengths via nla_parse_nested(). |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 37 | */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 38 | #define DRBD_GENLA_F_MANDATORY (1 << 14) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 39 | |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 40 | /* |
| 41 | * Flags specific to drbd and not visible at the netlink layer, used in |
| 42 | * <struct>_from_attrs and <struct>_to_skb: |
| 43 | * |
| 44 | * @DRBD_F_REQUIRED: Attribute is required; a request without this attribute is |
| 45 | * invalid. |
| 46 | * |
| 47 | * @DRBD_F_SENSITIVE: Attribute includes sensitive information and must not be |
| 48 | * included in unpriviledged get requests or broadcasts. |
| 49 | * |
| 50 | * @DRBD_F_INVARIANT: Attribute is set when an object is initially created, but |
| 51 | * cannot subsequently be changed. |
| 52 | */ |
| 53 | #define DRBD_F_REQUIRED (1 << 0) |
| 54 | #define DRBD_F_SENSITIVE (1 << 1) |
| 55 | #define DRBD_F_INVARIANT (1 << 2) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 56 | |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 57 | #define __nla_type(x) ((__u16)((x) & NLA_TYPE_MASK & ~DRBD_GENLA_F_MANDATORY)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 58 | |
| 59 | /* }}}1 |
| 60 | * MAGIC |
| 61 | * multi-include macro expansion magic starts here |
| 62 | */ |
| 63 | |
| 64 | /* MAGIC helpers {{{2 */ |
| 65 | |
Nicolas Dichtel | 1dee3f5 | 2016-05-09 11:40:20 +0200 | [diff] [blame] | 66 | static inline int nla_put_u64_0pad(struct sk_buff *skb, int attrtype, u64 value) |
| 67 | { |
| 68 | return nla_put_64bit(skb, attrtype, sizeof(u64), &value, 0); |
| 69 | } |
| 70 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 71 | /* possible field types */ |
| 72 | #define __flg_field(attr_nr, attr_flag, name) \ |
Andreas Gruenbacher | a5d8e1f | 2011-05-04 16:06:51 +0200 | [diff] [blame] | 73 | __field(attr_nr, attr_flag, name, NLA_U8, char, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 74 | nla_get_u8, nla_put_u8, false) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 75 | #define __u8_field(attr_nr, attr_flag, name) \ |
| 76 | __field(attr_nr, attr_flag, name, NLA_U8, unsigned char, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 77 | nla_get_u8, nla_put_u8, false) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 78 | #define __u16_field(attr_nr, attr_flag, name) \ |
| 79 | __field(attr_nr, attr_flag, name, NLA_U16, __u16, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 80 | nla_get_u16, nla_put_u16, false) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 81 | #define __u32_field(attr_nr, attr_flag, name) \ |
| 82 | __field(attr_nr, attr_flag, name, NLA_U32, __u32, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 83 | nla_get_u32, nla_put_u32, false) |
Lars Ellenberg | 563e4cf | 2011-05-04 10:33:52 +0200 | [diff] [blame] | 84 | #define __s32_field(attr_nr, attr_flag, name) \ |
| 85 | __field(attr_nr, attr_flag, name, NLA_U32, __s32, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 86 | nla_get_u32, nla_put_u32, true) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 87 | #define __u64_field(attr_nr, attr_flag, name) \ |
| 88 | __field(attr_nr, attr_flag, name, NLA_U64, __u64, \ |
Nicolas Dichtel | 1dee3f5 | 2016-05-09 11:40:20 +0200 | [diff] [blame] | 89 | nla_get_u64, nla_put_u64_0pad, false) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 90 | #define __str_field(attr_nr, attr_flag, name, maxlen) \ |
| 91 | __array(attr_nr, attr_flag, name, NLA_NUL_STRING, char, maxlen, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 92 | nla_strlcpy, nla_put, false) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 93 | #define __bin_field(attr_nr, attr_flag, name, maxlen) \ |
| 94 | __array(attr_nr, attr_flag, name, NLA_BINARY, char, maxlen, \ |
Andreas Gruenbacher | 26ec928 | 2012-07-11 20:36:03 +0200 | [diff] [blame] | 95 | nla_memcpy, nla_put, false) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 96 | |
Andreas Gruenbacher | b966b5d | 2011-05-03 14:56:09 +0200 | [diff] [blame] | 97 | /* fields with default values */ |
| 98 | #define __flg_field_def(attr_nr, attr_flag, name, default) \ |
| 99 | __flg_field(attr_nr, attr_flag, name) |
| 100 | #define __u32_field_def(attr_nr, attr_flag, name, default) \ |
| 101 | __u32_field(attr_nr, attr_flag, name) |
Andreas Gruenbacher | 3a45abd | 2011-05-12 12:02:54 +0200 | [diff] [blame] | 102 | #define __s32_field_def(attr_nr, attr_flag, name, default) \ |
| 103 | __s32_field(attr_nr, attr_flag, name) |
Andreas Gruenbacher | b966b5d | 2011-05-03 14:56:09 +0200 | [diff] [blame] | 104 | #define __str_field_def(attr_nr, attr_flag, name, maxlen) \ |
| 105 | __str_field(attr_nr, attr_flag, name, maxlen) |
| 106 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 107 | #define GENL_op_init(args...) args |
| 108 | #define GENL_doit(handler) \ |
| 109 | .doit = handler, \ |
| 110 | .flags = GENL_ADMIN_PERM, |
| 111 | #define GENL_dumpit(handler) \ |
| 112 | .dumpit = handler, \ |
| 113 | .flags = GENL_ADMIN_PERM, |
| 114 | |
| 115 | /* }}}1 |
| 116 | * Magic: define the enum symbols for genl_ops |
| 117 | * Magic: define the enum symbols for top level attributes |
| 118 | * Magic: define the enum symbols for nested attributes |
| 119 | * {{{2 |
| 120 | */ |
| 121 | |
| 122 | #undef GENL_struct |
| 123 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) |
| 124 | |
| 125 | #undef GENL_mc_group |
| 126 | #define GENL_mc_group(group) |
| 127 | |
| 128 | #undef GENL_notification |
| 129 | #define GENL_notification(op_name, op_num, mcast_group, tla_list) \ |
| 130 | op_name = op_num, |
| 131 | |
| 132 | #undef GENL_op |
| 133 | #define GENL_op(op_name, op_num, handler, tla_list) \ |
| 134 | op_name = op_num, |
| 135 | |
| 136 | enum { |
| 137 | #include GENL_MAGIC_INCLUDE_FILE |
| 138 | }; |
| 139 | |
| 140 | #undef GENL_notification |
| 141 | #define GENL_notification(op_name, op_num, mcast_group, tla_list) |
| 142 | |
| 143 | #undef GENL_op |
| 144 | #define GENL_op(op_name, op_num, handler, attr_list) |
| 145 | |
| 146 | #undef GENL_struct |
| 147 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) \ |
| 148 | tag_name = tag_number, |
| 149 | |
| 150 | enum { |
| 151 | #include GENL_MAGIC_INCLUDE_FILE |
| 152 | }; |
| 153 | |
| 154 | #undef GENL_struct |
| 155 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) \ |
| 156 | enum { \ |
| 157 | s_fields \ |
| 158 | }; |
| 159 | |
| 160 | #undef __field |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 161 | #define __field(attr_nr, attr_flag, name, nla_type, type, \ |
| 162 | __get, __put, __is_signed) \ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 163 | T_ ## name = (__u16)(attr_nr | ((attr_flag) & DRBD_GENLA_F_MANDATORY)), |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 164 | |
| 165 | #undef __array |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 166 | #define __array(attr_nr, attr_flag, name, nla_type, type, \ |
| 167 | maxlen, __get, __put, __is_signed) \ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 168 | T_ ## name = (__u16)(attr_nr | ((attr_flag) & DRBD_GENLA_F_MANDATORY)), |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 169 | |
| 170 | #include GENL_MAGIC_INCLUDE_FILE |
| 171 | |
| 172 | /* }}}1 |
| 173 | * Magic: compile time assert unique numbers for operations |
| 174 | * Magic: -"- unique numbers for top level attributes |
| 175 | * Magic: -"- unique numbers for nested attributes |
| 176 | * {{{2 |
| 177 | */ |
| 178 | |
| 179 | #undef GENL_struct |
| 180 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) |
| 181 | |
| 182 | #undef GENL_op |
| 183 | #define GENL_op(op_name, op_num, handler, attr_list) \ |
| 184 | case op_name: |
| 185 | |
| 186 | #undef GENL_notification |
| 187 | #define GENL_notification(op_name, op_num, mcast_group, tla_list) \ |
| 188 | case op_name: |
| 189 | |
| 190 | static inline void ct_assert_unique_operations(void) |
| 191 | { |
| 192 | switch (0) { |
| 193 | #include GENL_MAGIC_INCLUDE_FILE |
| 194 | ; |
| 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 | |
| 208 | static inline void ct_assert_unique_top_level_attributes(void) |
| 209 | { |
| 210 | switch (0) { |
| 211 | #include GENL_MAGIC_INCLUDE_FILE |
| 212 | ; |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | #undef GENL_struct |
| 217 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) \ |
| 218 | static inline void ct_assert_unique_ ## s_name ## _attributes(void) \ |
| 219 | { \ |
| 220 | switch (0) { \ |
| 221 | s_fields \ |
| 222 | ; \ |
| 223 | } \ |
| 224 | } |
| 225 | |
| 226 | #undef __field |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 227 | #define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put, \ |
| 228 | __is_signed) \ |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 229 | case attr_nr: |
| 230 | |
| 231 | #undef __array |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 232 | #define __array(attr_nr, attr_flag, name, nla_type, type, maxlen, \ |
| 233 | __get, __put, __is_signed) \ |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 234 | case attr_nr: |
| 235 | |
| 236 | #include GENL_MAGIC_INCLUDE_FILE |
| 237 | |
| 238 | /* }}}1 |
| 239 | * Magic: declare structs |
| 240 | * struct <name> { |
| 241 | * fields |
| 242 | * }; |
| 243 | * {{{2 |
| 244 | */ |
| 245 | |
| 246 | #undef GENL_struct |
| 247 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) \ |
| 248 | struct s_name { s_fields }; |
| 249 | |
| 250 | #undef __field |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 251 | #define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put, \ |
| 252 | __is_signed) \ |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 253 | type name; |
| 254 | |
| 255 | #undef __array |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 256 | #define __array(attr_nr, attr_flag, name, nla_type, type, maxlen, \ |
| 257 | __get, __put, __is_signed) \ |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 258 | type name[maxlen]; \ |
| 259 | __u32 name ## _len; |
| 260 | |
| 261 | #include GENL_MAGIC_INCLUDE_FILE |
| 262 | |
Andreas Gruenbacher | 509100e | 2011-05-17 13:29:46 +0200 | [diff] [blame] | 263 | #undef GENL_struct |
| 264 | #define GENL_struct(tag_name, tag_number, s_name, s_fields) \ |
| 265 | enum { \ |
| 266 | s_fields \ |
| 267 | }; |
| 268 | |
| 269 | #undef __field |
| 270 | #define __field(attr_nr, attr_flag, name, nla_type, type, __get, __put, \ |
| 271 | is_signed) \ |
| 272 | F_ ## name ## _IS_SIGNED = is_signed, |
| 273 | |
| 274 | #undef __array |
| 275 | #define __array(attr_nr, attr_flag, name, nla_type, type, maxlen, \ |
| 276 | __get, __put, is_signed) \ |
| 277 | F_ ## name ## _IS_SIGNED = is_signed, |
| 278 | |
| 279 | #include GENL_MAGIC_INCLUDE_FILE |
| 280 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 281 | /* }}}1 */ |
| 282 | #endif /* GENL_MAGIC_STRUCT_H */ |
| 283 | /* vim: set foldmethod=marker nofoldenable : */ |