Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 1 | /* |
| 2 | * General overview: |
| 3 | * full generic netlink message: |
| 4 | * |nlmsghdr|genlmsghdr|<payload> |
| 5 | * |
| 6 | * payload: |
| 7 | * |optional fixed size family header|<sequence of netlink attributes> |
| 8 | * |
| 9 | * sequence of netlink attributes: |
| 10 | * I chose to have all "top level" attributes NLA_NESTED, |
| 11 | * corresponding to some real struct. |
| 12 | * So we have a sequence of |tla, len|<nested nla sequence> |
| 13 | * |
| 14 | * nested nla sequence: |
| 15 | * may be empty, or contain a sequence of netlink attributes |
| 16 | * representing the struct fields. |
| 17 | * |
| 18 | * The tag number of any field (regardless of containing struct) |
| 19 | * will be available as T_ ## field_name, |
| 20 | * so you cannot have the same field name in two differnt structs. |
| 21 | * |
| 22 | * The tag numbers themselves are per struct, though, |
| 23 | * so should always begin at 1 (not 0, that is the special "NLA_UNSPEC" type, |
| 24 | * which we won't use here). |
| 25 | * The tag numbers are used as index in the respective nla_policy array. |
| 26 | * |
| 27 | * GENL_struct(tag_name, tag_number, struct name, struct fields) - struct and policy |
| 28 | * genl_magic_struct.h |
| 29 | * generates the struct declaration, |
| 30 | * generates an entry in the tla enum, |
| 31 | * genl_magic_func.h |
| 32 | * generates an entry in the static tla policy |
| 33 | * with .type = NLA_NESTED |
| 34 | * generates the static <struct_name>_nl_policy definition, |
| 35 | * and static conversion functions |
| 36 | * |
| 37 | * genl_magic_func.h |
| 38 | * |
| 39 | * GENL_mc_group(group) |
| 40 | * genl_magic_struct.h |
| 41 | * does nothing |
| 42 | * genl_magic_func.h |
| 43 | * defines and registers the mcast group, |
| 44 | * and provides a send helper |
| 45 | * |
| 46 | * GENL_notification(op_name, op_num, mcast_group, tla list) |
| 47 | * These are notifications to userspace. |
| 48 | * |
| 49 | * genl_magic_struct.h |
| 50 | * generates an entry in the genl_ops enum, |
| 51 | * genl_magic_func.h |
| 52 | * does nothing |
| 53 | * |
| 54 | * mcast group: the name of the mcast group this notification should be |
| 55 | * expected on |
| 56 | * tla list: the list of expected top level attributes, |
| 57 | * for documentation and sanity checking. |
| 58 | * |
| 59 | * GENL_op(op_name, op_num, flags and handler, tla list) - "genl operations" |
| 60 | * These are requests from userspace. |
| 61 | * |
| 62 | * _op and _notification share the same "number space", |
| 63 | * op_nr will be assigned to "genlmsghdr->cmd" |
| 64 | * |
| 65 | * genl_magic_struct.h |
| 66 | * generates an entry in the genl_ops enum, |
| 67 | * genl_magic_func.h |
| 68 | * generates an entry in the static genl_ops array, |
| 69 | * and static register/unregister functions to |
| 70 | * genl_register_family_with_ops(). |
| 71 | * |
| 72 | * flags and handler: |
| 73 | * GENL_op_init( .doit = x, .dumpit = y, .flags = something) |
| 74 | * GENL_doit(x) => .dumpit = NULL, .flags = GENL_ADMIN_PERM |
| 75 | * tla list: the list of expected top level attributes, |
| 76 | * for documentation and sanity checking. |
| 77 | */ |
| 78 | |
| 79 | /* |
| 80 | * STRUCTS |
| 81 | */ |
| 82 | |
| 83 | /* this is sent kernel -> userland on various error conditions, and contains |
| 84 | * informational textual info, which is supposedly human readable. |
| 85 | * The computer relevant return code is in the drbd_genlmsghdr. |
| 86 | */ |
| 87 | GENL_struct(DRBD_NLA_CFG_REPLY, 1, drbd_cfg_reply, |
| 88 | /* "arbitrary" size strings, nla_policy.len = 0 */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 89 | __str_field(1, DRBD_GENLA_F_MANDATORY, info_text, 0) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 90 | ) |
| 91 | |
| 92 | /* Configuration requests typically need a context to operate on. |
| 93 | * Possible keys are device minor (fits in the drbd_genlmsghdr), |
| 94 | * the replication link (aka connection) name, |
| 95 | * and/or the replication group (aka resource) name, |
| 96 | * and the volume id within the resource. */ |
| 97 | GENL_struct(DRBD_NLA_CFG_CONTEXT, 2, drbd_cfg_context, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 98 | __u32_field(1, DRBD_GENLA_F_MANDATORY, ctx_volume) |
Andreas Gruenbacher | 7c3063c | 2011-06-09 17:52:12 +0200 | [diff] [blame] | 99 | __str_field(2, DRBD_GENLA_F_MANDATORY, ctx_resource_name, 128) |
Andreas Gruenbacher | 089c075 | 2011-06-14 18:28:09 +0200 | [diff] [blame] | 100 | __bin_field(3, DRBD_GENLA_F_MANDATORY, ctx_my_addr, 128) |
| 101 | __bin_field(4, DRBD_GENLA_F_MANDATORY, ctx_peer_addr, 128) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 102 | ) |
| 103 | |
| 104 | GENL_struct(DRBD_NLA_DISK_CONF, 3, disk_conf, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 105 | __str_field(1, DRBD_F_REQUIRED | DRBD_F_INVARIANT, backing_dev, 128) |
| 106 | __str_field(2, DRBD_F_REQUIRED | DRBD_F_INVARIANT, meta_dev, 128) |
| 107 | __s32_field(3, DRBD_F_REQUIRED | DRBD_F_INVARIANT, meta_dev_idx) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 108 | |
| 109 | /* use the resize command to try and change the disk_size */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 110 | __u64_field(4, DRBD_GENLA_F_MANDATORY | DRBD_F_INVARIANT, disk_size) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 111 | /* we could change the max_bio_bvecs, |
| 112 | * but it won't propagate through the stack */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 113 | __u32_field(5, DRBD_GENLA_F_MANDATORY | DRBD_F_INVARIANT, max_bio_bvecs) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 114 | |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 115 | __u32_field_def(6, DRBD_GENLA_F_MANDATORY, on_io_error, DRBD_ON_IO_ERROR_DEF) |
| 116 | __u32_field_def(7, DRBD_GENLA_F_MANDATORY, fencing, DRBD_FENCING_DEF) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 117 | |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 118 | __u32_field_def(8, DRBD_GENLA_F_MANDATORY, resync_rate, DRBD_RESYNC_RATE_DEF) |
| 119 | __s32_field_def(9, DRBD_GENLA_F_MANDATORY, resync_after, DRBD_MINOR_NUMBER_DEF) |
| 120 | __u32_field_def(10, DRBD_GENLA_F_MANDATORY, al_extents, DRBD_AL_EXTENTS_DEF) |
| 121 | __u32_field_def(11, DRBD_GENLA_F_MANDATORY, c_plan_ahead, DRBD_C_PLAN_AHEAD_DEF) |
| 122 | __u32_field_def(12, DRBD_GENLA_F_MANDATORY, c_delay_target, DRBD_C_DELAY_TARGET_DEF) |
| 123 | __u32_field_def(13, DRBD_GENLA_F_MANDATORY, c_fill_target, DRBD_C_FILL_TARGET_DEF) |
| 124 | __u32_field_def(14, DRBD_GENLA_F_MANDATORY, c_max_rate, DRBD_C_MAX_RATE_DEF) |
| 125 | __u32_field_def(15, DRBD_GENLA_F_MANDATORY, c_min_rate, DRBD_C_MIN_RATE_DEF) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 126 | |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 127 | __flg_field_def(16, DRBD_GENLA_F_MANDATORY, disk_barrier, DRBD_DISK_BARRIER_DEF) |
| 128 | __flg_field_def(17, DRBD_GENLA_F_MANDATORY, disk_flushes, DRBD_DISK_FLUSHES_DEF) |
| 129 | __flg_field_def(18, DRBD_GENLA_F_MANDATORY, disk_drain, DRBD_DISK_DRAIN_DEF) |
| 130 | __flg_field_def(19, DRBD_GENLA_F_MANDATORY, md_flushes, DRBD_MD_FLUSHES_DEF) |
Philipp Reisner | cdfda63 | 2011-07-05 15:38:59 +0200 | [diff] [blame] | 131 | __u32_field_def(20, DRBD_GENLA_F_MANDATORY, disk_timeout, DRBD_DISK_TIMEOUT_DEF) |
Philipp Reisner | 380207d | 2011-11-11 12:31:20 +0100 | [diff] [blame] | 132 | __u32_field_def(21, 0 /* OPTIONAL */, read_balancing, DRBD_READ_BALANCING_DEF) |
Philipp Reisner | 9a51ab1 | 2012-02-20 21:53:28 +0100 | [diff] [blame] | 133 | /* 9: __u32_field_def(22, DRBD_GENLA_F_MANDATORY, unplug_watermark, DRBD_UNPLUG_WATERMARK_DEF) */ |
| 134 | __flg_field_def(23, 0 /* OPTIONAL */, al_updates, DRBD_AL_UPDATES_DEF) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 135 | ) |
| 136 | |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 137 | GENL_struct(DRBD_NLA_RESOURCE_OPTS, 4, res_opts, |
Andreas Gruenbacher | f44d043 | 2011-07-22 13:53:19 +0200 | [diff] [blame] | 138 | __str_field_def(1, DRBD_GENLA_F_MANDATORY, cpu_mask, DRBD_CPU_MASK_SIZE) |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 139 | __u32_field_def(2, DRBD_GENLA_F_MANDATORY, on_no_data, DRBD_ON_NO_DATA_DEF) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 140 | ) |
| 141 | |
| 142 | GENL_struct(DRBD_NLA_NET_CONF, 5, net_conf, |
Andreas Gruenbacher | 089c075 | 2011-06-14 18:28:09 +0200 | [diff] [blame] | 143 | __str_field_def(1, DRBD_GENLA_F_MANDATORY | DRBD_F_SENSITIVE, |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 144 | shared_secret, SHARED_SECRET_MAX) |
Andreas Gruenbacher | 089c075 | 2011-06-14 18:28:09 +0200 | [diff] [blame] | 145 | __str_field_def(2, DRBD_GENLA_F_MANDATORY, cram_hmac_alg, SHARED_SECRET_MAX) |
| 146 | __str_field_def(3, DRBD_GENLA_F_MANDATORY, integrity_alg, SHARED_SECRET_MAX) |
| 147 | __str_field_def(4, DRBD_GENLA_F_MANDATORY, verify_alg, SHARED_SECRET_MAX) |
| 148 | __str_field_def(5, DRBD_GENLA_F_MANDATORY, csums_alg, SHARED_SECRET_MAX) |
| 149 | __u32_field_def(6, DRBD_GENLA_F_MANDATORY, wire_protocol, DRBD_PROTOCOL_DEF) |
| 150 | __u32_field_def(7, DRBD_GENLA_F_MANDATORY, connect_int, DRBD_CONNECT_INT_DEF) |
| 151 | __u32_field_def(8, DRBD_GENLA_F_MANDATORY, timeout, DRBD_TIMEOUT_DEF) |
| 152 | __u32_field_def(9, DRBD_GENLA_F_MANDATORY, ping_int, DRBD_PING_INT_DEF) |
| 153 | __u32_field_def(10, DRBD_GENLA_F_MANDATORY, ping_timeo, DRBD_PING_TIMEO_DEF) |
| 154 | __u32_field_def(11, DRBD_GENLA_F_MANDATORY, sndbuf_size, DRBD_SNDBUF_SIZE_DEF) |
| 155 | __u32_field_def(12, DRBD_GENLA_F_MANDATORY, rcvbuf_size, DRBD_RCVBUF_SIZE_DEF) |
| 156 | __u32_field_def(13, DRBD_GENLA_F_MANDATORY, ko_count, DRBD_KO_COUNT_DEF) |
| 157 | __u32_field_def(14, DRBD_GENLA_F_MANDATORY, max_buffers, DRBD_MAX_BUFFERS_DEF) |
| 158 | __u32_field_def(15, DRBD_GENLA_F_MANDATORY, max_epoch_size, DRBD_MAX_EPOCH_SIZE_DEF) |
| 159 | __u32_field_def(16, DRBD_GENLA_F_MANDATORY, unplug_watermark, DRBD_UNPLUG_WATERMARK_DEF) |
| 160 | __u32_field_def(17, DRBD_GENLA_F_MANDATORY, after_sb_0p, DRBD_AFTER_SB_0P_DEF) |
| 161 | __u32_field_def(18, DRBD_GENLA_F_MANDATORY, after_sb_1p, DRBD_AFTER_SB_1P_DEF) |
| 162 | __u32_field_def(19, DRBD_GENLA_F_MANDATORY, after_sb_2p, DRBD_AFTER_SB_2P_DEF) |
| 163 | __u32_field_def(20, DRBD_GENLA_F_MANDATORY, rr_conflict, DRBD_RR_CONFLICT_DEF) |
| 164 | __u32_field_def(21, DRBD_GENLA_F_MANDATORY, on_congestion, DRBD_ON_CONGESTION_DEF) |
| 165 | __u32_field_def(22, DRBD_GENLA_F_MANDATORY, cong_fill, DRBD_CONG_FILL_DEF) |
| 166 | __u32_field_def(23, DRBD_GENLA_F_MANDATORY, cong_extents, DRBD_CONG_EXTENTS_DEF) |
| 167 | __flg_field_def(24, DRBD_GENLA_F_MANDATORY, two_primaries, DRBD_ALLOW_TWO_PRIMARIES_DEF) |
| 168 | __flg_field(25, DRBD_GENLA_F_MANDATORY | DRBD_F_INVARIANT, discard_my_data) |
| 169 | __flg_field_def(26, DRBD_GENLA_F_MANDATORY, tcp_cork, DRBD_TCP_CORK_DEF) |
| 170 | __flg_field_def(27, DRBD_GENLA_F_MANDATORY, always_asbp, DRBD_ALWAYS_ASBP_DEF) |
Andreas Gruenbacher | 6dff290 | 2011-06-28 14:18:12 +0200 | [diff] [blame] | 171 | __flg_field(28, DRBD_GENLA_F_MANDATORY | DRBD_F_INVARIANT, tentative) |
Andreas Gruenbacher | 089c075 | 2011-06-14 18:28:09 +0200 | [diff] [blame] | 172 | __flg_field_def(29, DRBD_GENLA_F_MANDATORY, use_rle, DRBD_USE_RLE_DEF) |
Philipp Reisner | 9a51ab1 | 2012-02-20 21:53:28 +0100 | [diff] [blame] | 173 | /* 9: __u32_field_def(30, DRBD_GENLA_F_MANDATORY, fencing_policy, DRBD_FENCING_DEF) */ |
Lars Ellenberg | aaaba34 | 2014-03-18 12:30:09 +0100 | [diff] [blame] | 174 | /* 9: __str_field_def(31, DRBD_GENLA_F_MANDATORY, name, SHARED_SECRET_MAX) */ |
| 175 | /* 9: __u32_field(32, DRBD_F_REQUIRED | DRBD_F_INVARIANT, peer_node_id) */ |
| 176 | __flg_field_def(33, 0 /* OPTIONAL */, csums_after_crash_only, DRBD_CSUMS_AFTER_CRASH_ONLY_DEF) |
Philipp Reisner | 5d0b17f | 2014-03-18 14:24:35 +0100 | [diff] [blame] | 177 | __u32_field_def(34, 0 /* OPTIONAL */, sock_check_timeo, DRBD_SOCKET_CHECK_TIMEO_DEF) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 178 | ) |
| 179 | |
| 180 | GENL_struct(DRBD_NLA_SET_ROLE_PARMS, 6, set_role_parms, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 181 | __flg_field(1, DRBD_GENLA_F_MANDATORY, assume_uptodate) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 182 | ) |
| 183 | |
| 184 | GENL_struct(DRBD_NLA_RESIZE_PARMS, 7, resize_parms, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 185 | __u64_field(1, DRBD_GENLA_F_MANDATORY, resize_size) |
| 186 | __flg_field(2, DRBD_GENLA_F_MANDATORY, resize_force) |
| 187 | __flg_field(3, DRBD_GENLA_F_MANDATORY, no_resync) |
Philipp Reisner | d752b26 | 2013-06-25 16:50:08 +0200 | [diff] [blame] | 188 | __u32_field_def(4, 0 /* OPTIONAL */, al_stripes, DRBD_AL_STRIPES_DEF) |
| 189 | __u32_field_def(5, 0 /* OPTIONAL */, al_stripe_size, DRBD_AL_STRIPE_SIZE_DEF) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 190 | ) |
| 191 | |
| 192 | GENL_struct(DRBD_NLA_STATE_INFO, 8, state_info, |
| 193 | /* the reason of the broadcast, |
| 194 | * if this is an event triggered broadcast. */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 195 | __u32_field(1, DRBD_GENLA_F_MANDATORY, sib_reason) |
| 196 | __u32_field(2, DRBD_F_REQUIRED, current_state) |
| 197 | __u64_field(3, DRBD_GENLA_F_MANDATORY, capacity) |
| 198 | __u64_field(4, DRBD_GENLA_F_MANDATORY, ed_uuid) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 199 | |
| 200 | /* These are for broadcast from after state change work. |
| 201 | * prev_state and new_state are from the moment the state change took |
| 202 | * place, new_state is not neccessarily the same as current_state, |
| 203 | * there may have been more state changes since. Which will be |
| 204 | * broadcasted soon, in their respective after state change work. */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 205 | __u32_field(5, DRBD_GENLA_F_MANDATORY, prev_state) |
| 206 | __u32_field(6, DRBD_GENLA_F_MANDATORY, new_state) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 207 | |
| 208 | /* if we have a local disk: */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 209 | __bin_field(7, DRBD_GENLA_F_MANDATORY, uuids, (UI_SIZE*sizeof(__u64))) |
| 210 | __u32_field(8, DRBD_GENLA_F_MANDATORY, disk_flags) |
| 211 | __u64_field(9, DRBD_GENLA_F_MANDATORY, bits_total) |
| 212 | __u64_field(10, DRBD_GENLA_F_MANDATORY, bits_oos) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 213 | /* and in case resync or online verify is active */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 214 | __u64_field(11, DRBD_GENLA_F_MANDATORY, bits_rs_total) |
| 215 | __u64_field(12, DRBD_GENLA_F_MANDATORY, bits_rs_failed) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 216 | |
| 217 | /* for pre and post notifications of helper execution */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 218 | __str_field(13, DRBD_GENLA_F_MANDATORY, helper, 32) |
| 219 | __u32_field(14, DRBD_GENLA_F_MANDATORY, helper_exit_code) |
Philipp Marek | 3174f8c | 2012-03-03 21:04:30 +0100 | [diff] [blame] | 220 | |
| 221 | __u64_field(15, 0, send_cnt) |
| 222 | __u64_field(16, 0, recv_cnt) |
| 223 | __u64_field(17, 0, read_cnt) |
| 224 | __u64_field(18, 0, writ_cnt) |
| 225 | __u64_field(19, 0, al_writ_cnt) |
| 226 | __u64_field(20, 0, bm_writ_cnt) |
| 227 | __u32_field(21, 0, ap_bio_cnt) |
| 228 | __u32_field(22, 0, ap_pending_cnt) |
| 229 | __u32_field(23, 0, rs_pending_cnt) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 230 | ) |
| 231 | |
| 232 | GENL_struct(DRBD_NLA_START_OV_PARMS, 9, start_ov_parms, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 233 | __u64_field(1, DRBD_GENLA_F_MANDATORY, ov_start_sector) |
Lars Ellenberg | 58ffa58 | 2012-07-26 14:09:49 +0200 | [diff] [blame] | 234 | __u64_field(2, DRBD_GENLA_F_MANDATORY, ov_stop_sector) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 235 | ) |
| 236 | |
| 237 | GENL_struct(DRBD_NLA_NEW_C_UUID_PARMS, 10, new_c_uuid_parms, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 238 | __flg_field(1, DRBD_GENLA_F_MANDATORY, clear_bm) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 239 | ) |
| 240 | |
| 241 | GENL_struct(DRBD_NLA_TIMEOUT_PARMS, 11, timeout_parms, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 242 | __u32_field(1, DRBD_F_REQUIRED, timeout_type) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 243 | ) |
| 244 | |
| 245 | GENL_struct(DRBD_NLA_DISCONNECT_PARMS, 12, disconnect_parms, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 246 | __flg_field(1, DRBD_GENLA_F_MANDATORY, force_disconnect) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 247 | ) |
| 248 | |
Philipp Reisner | cdfda63 | 2011-07-05 15:38:59 +0200 | [diff] [blame] | 249 | GENL_struct(DRBD_NLA_DETACH_PARMS, 13, detach_parms, |
| 250 | __flg_field(1, DRBD_GENLA_F_MANDATORY, force_detach) |
| 251 | ) |
| 252 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 253 | /* |
| 254 | * Notifications and commands (genlmsghdr->cmd) |
| 255 | */ |
| 256 | GENL_mc_group(events) |
| 257 | |
| 258 | /* kernel -> userspace announcement of changes */ |
| 259 | GENL_notification( |
| 260 | DRBD_EVENT, 1, events, |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 261 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 262 | GENL_tla_expected(DRBD_NLA_STATE_INFO, DRBD_F_REQUIRED) |
| 263 | GENL_tla_expected(DRBD_NLA_NET_CONF, DRBD_GENLA_F_MANDATORY) |
| 264 | GENL_tla_expected(DRBD_NLA_DISK_CONF, DRBD_GENLA_F_MANDATORY) |
| 265 | GENL_tla_expected(DRBD_NLA_SYNCER_CONF, DRBD_GENLA_F_MANDATORY) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 266 | ) |
| 267 | |
| 268 | /* query kernel for specific or all info */ |
| 269 | GENL_op( |
| 270 | DRBD_ADM_GET_STATUS, 2, |
| 271 | GENL_op_init( |
| 272 | .doit = drbd_adm_get_status, |
| 273 | .dumpit = drbd_adm_get_status_all, |
| 274 | /* anyone may ask for the status, |
| 275 | * it is broadcasted anyways */ |
| 276 | ), |
| 277 | /* To select the object .doit. |
| 278 | * Or a subset of objects in .dumpit. */ |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 279 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_GENLA_F_MANDATORY) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 280 | ) |
| 281 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 282 | /* add DRBD minor devices as volumes to resources */ |
Andreas Gruenbacher | 05a10ec | 2011-06-07 22:54:17 +0200 | [diff] [blame] | 283 | GENL_op(DRBD_ADM_NEW_MINOR, 5, GENL_doit(drbd_adm_new_minor), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 284 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Andreas Gruenbacher | 05a10ec | 2011-06-07 22:54:17 +0200 | [diff] [blame] | 285 | GENL_op(DRBD_ADM_DEL_MINOR, 6, GENL_doit(drbd_adm_del_minor), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 286 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 287 | |
Andreas Gruenbacher | 789c1b6 | 2011-06-06 16:16:44 +0200 | [diff] [blame] | 288 | /* add or delete resources */ |
| 289 | GENL_op(DRBD_ADM_NEW_RESOURCE, 7, GENL_doit(drbd_adm_new_resource), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 290 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Andreas Gruenbacher | 789c1b6 | 2011-06-06 16:16:44 +0200 | [diff] [blame] | 291 | GENL_op(DRBD_ADM_DEL_RESOURCE, 8, GENL_doit(drbd_adm_del_resource), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 292 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 293 | |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 294 | GENL_op(DRBD_ADM_RESOURCE_OPTS, 9, |
| 295 | GENL_doit(drbd_adm_resource_opts), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 296 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 297 | GENL_tla_expected(DRBD_NLA_RESOURCE_OPTS, DRBD_GENLA_F_MANDATORY) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 298 | ) |
| 299 | |
| 300 | GENL_op( |
| 301 | DRBD_ADM_CONNECT, 10, |
| 302 | GENL_doit(drbd_adm_connect), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 303 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 304 | GENL_tla_expected(DRBD_NLA_NET_CONF, DRBD_F_REQUIRED) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 305 | ) |
| 306 | |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 307 | GENL_op( |
| 308 | DRBD_ADM_CHG_NET_OPTS, 29, |
| 309 | GENL_doit(drbd_adm_net_opts), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 310 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 311 | GENL_tla_expected(DRBD_NLA_NET_CONF, DRBD_F_REQUIRED) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 312 | ) |
| 313 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 314 | GENL_op(DRBD_ADM_DISCONNECT, 11, GENL_doit(drbd_adm_disconnect), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 315 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 316 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 317 | GENL_op(DRBD_ADM_ATTACH, 12, |
| 318 | GENL_doit(drbd_adm_attach), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 319 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 320 | GENL_tla_expected(DRBD_NLA_DISK_CONF, DRBD_F_REQUIRED) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 321 | ) |
| 322 | |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 323 | GENL_op(DRBD_ADM_CHG_DISK_OPTS, 28, |
| 324 | GENL_doit(drbd_adm_disk_opts), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 325 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 326 | GENL_tla_expected(DRBD_NLA_DISK_OPTS, DRBD_F_REQUIRED) |
Lars Ellenberg | f399002 | 2011-03-23 14:31:09 +0100 | [diff] [blame] | 327 | ) |
| 328 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 329 | GENL_op( |
| 330 | DRBD_ADM_RESIZE, 13, |
| 331 | GENL_doit(drbd_adm_resize), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 332 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 333 | GENL_tla_expected(DRBD_NLA_RESIZE_PARMS, DRBD_GENLA_F_MANDATORY) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 334 | ) |
| 335 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 336 | GENL_op( |
| 337 | DRBD_ADM_PRIMARY, 14, |
| 338 | GENL_doit(drbd_adm_set_role), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 339 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 340 | GENL_tla_expected(DRBD_NLA_SET_ROLE_PARMS, DRBD_F_REQUIRED) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 341 | ) |
| 342 | |
| 343 | GENL_op( |
| 344 | DRBD_ADM_SECONDARY, 15, |
| 345 | GENL_doit(drbd_adm_set_role), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 346 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 347 | GENL_tla_expected(DRBD_NLA_SET_ROLE_PARMS, DRBD_F_REQUIRED) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 348 | ) |
| 349 | |
| 350 | GENL_op( |
| 351 | DRBD_ADM_NEW_C_UUID, 16, |
| 352 | GENL_doit(drbd_adm_new_c_uuid), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 353 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 354 | GENL_tla_expected(DRBD_NLA_NEW_C_UUID_PARMS, DRBD_GENLA_F_MANDATORY) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 355 | ) |
| 356 | |
| 357 | GENL_op( |
| 358 | DRBD_ADM_START_OV, 17, |
| 359 | GENL_doit(drbd_adm_start_ov), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 360 | GENL_tla_expected(DRBD_NLA_START_OV_PARMS, DRBD_GENLA_F_MANDATORY) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 361 | ) |
| 362 | |
| 363 | GENL_op(DRBD_ADM_DETACH, 18, GENL_doit(drbd_adm_detach), |
Philipp Reisner | cdfda63 | 2011-07-05 15:38:59 +0200 | [diff] [blame] | 364 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED) |
| 365 | GENL_tla_expected(DRBD_NLA_DETACH_PARMS, DRBD_GENLA_F_MANDATORY)) |
| 366 | |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 367 | GENL_op(DRBD_ADM_INVALIDATE, 19, GENL_doit(drbd_adm_invalidate), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 368 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 369 | GENL_op(DRBD_ADM_INVAL_PEER, 20, GENL_doit(drbd_adm_invalidate_peer), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 370 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 371 | GENL_op(DRBD_ADM_PAUSE_SYNC, 21, GENL_doit(drbd_adm_pause_sync), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 372 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 373 | GENL_op(DRBD_ADM_RESUME_SYNC, 22, GENL_doit(drbd_adm_resume_sync), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 374 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 375 | GENL_op(DRBD_ADM_SUSPEND_IO, 23, GENL_doit(drbd_adm_suspend_io), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 376 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 377 | GENL_op(DRBD_ADM_RESUME_IO, 24, GENL_doit(drbd_adm_resume_io), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 378 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 379 | GENL_op(DRBD_ADM_OUTDATE, 25, GENL_doit(drbd_adm_outdate), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 380 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | ec2c35a | 2011-03-07 10:20:08 +0100 | [diff] [blame] | 381 | GENL_op(DRBD_ADM_GET_TIMEOUT_TYPE, 26, GENL_doit(drbd_adm_get_timeout_type), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 382 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |
Lars Ellenberg | 85f75dd7 | 2011-03-15 16:26:37 +0100 | [diff] [blame] | 383 | GENL_op(DRBD_ADM_DOWN, 27, GENL_doit(drbd_adm_down), |
Andreas Gruenbacher | 5f93592 | 2011-05-19 17:39:28 +0200 | [diff] [blame] | 384 | GENL_tla_expected(DRBD_NLA_CFG_CONTEXT, DRBD_F_REQUIRED)) |