0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
0015
0016 #include <linux/module.h>
0017 #include <linux/drbd.h>
0018 #include <linux/in.h>
0019 #include <linux/fs.h>
0020 #include <linux/file.h>
0021 #include <linux/slab.h>
0022 #include <linux/blkpg.h>
0023 #include <linux/cpumask.h>
0024 #include "drbd_int.h"
0025 #include "drbd_protocol.h"
0026 #include "drbd_req.h"
0027 #include "drbd_state_change.h"
0028 #include <asm/unaligned.h>
0029 #include <linux/drbd_limits.h>
0030 #include <linux/kthread.h>
0031
0032 #include <net/genetlink.h>
0033
0034
0035
0036
0037
0038 int drbd_adm_new_minor(struct sk_buff *skb, struct genl_info *info);
0039 int drbd_adm_del_minor(struct sk_buff *skb, struct genl_info *info);
0040
0041 int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info);
0042 int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info);
0043 int drbd_adm_down(struct sk_buff *skb, struct genl_info *info);
0044
0045 int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info);
0046 int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info);
0047 int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info);
0048 int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info);
0049 int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info);
0050 int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info);
0051 int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info);
0052 int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info);
0053 int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info);
0054 int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info);
0055 int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info);
0056 int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info);
0057 int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info);
0058 int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info);
0059 int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info);
0060 int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info);
0061 int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info);
0062 int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info);
0063 int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info);
0064 int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info);
0065
0066 int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb);
0067 int drbd_adm_dump_resources(struct sk_buff *skb, struct netlink_callback *cb);
0068 int drbd_adm_dump_devices(struct sk_buff *skb, struct netlink_callback *cb);
0069 int drbd_adm_dump_devices_done(struct netlink_callback *cb);
0070 int drbd_adm_dump_connections(struct sk_buff *skb, struct netlink_callback *cb);
0071 int drbd_adm_dump_connections_done(struct netlink_callback *cb);
0072 int drbd_adm_dump_peer_devices(struct sk_buff *skb, struct netlink_callback *cb);
0073 int drbd_adm_dump_peer_devices_done(struct netlink_callback *cb);
0074 int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb);
0075
0076 #include <linux/drbd_genl_api.h>
0077 #include "drbd_nla.h"
0078 #include <linux/genl_magic_func.h>
0079
0080 static atomic_t drbd_genl_seq = ATOMIC_INIT(2);
0081 static atomic_t notify_genl_seq = ATOMIC_INIT(2);
0082
0083 DEFINE_MUTEX(notification_mutex);
0084
0085
0086 static char *drbd_m_holder = "Hands off! this is DRBD's meta data device.";
0087
0088 static void drbd_adm_send_reply(struct sk_buff *skb, struct genl_info *info)
0089 {
0090 genlmsg_end(skb, genlmsg_data(nlmsg_data(nlmsg_hdr(skb))));
0091 if (genlmsg_reply(skb, info))
0092 pr_err("error sending genl reply\n");
0093 }
0094
0095
0096
0097 static int drbd_msg_put_info(struct sk_buff *skb, const char *info)
0098 {
0099 struct nlattr *nla;
0100 int err = -EMSGSIZE;
0101
0102 if (!info || !info[0])
0103 return 0;
0104
0105 nla = nla_nest_start_noflag(skb, DRBD_NLA_CFG_REPLY);
0106 if (!nla)
0107 return err;
0108
0109 err = nla_put_string(skb, T_info_text, info);
0110 if (err) {
0111 nla_nest_cancel(skb, nla);
0112 return err;
0113 } else
0114 nla_nest_end(skb, nla);
0115 return 0;
0116 }
0117
0118 __printf(2, 3)
0119 static int drbd_msg_sprintf_info(struct sk_buff *skb, const char *fmt, ...)
0120 {
0121 va_list args;
0122 struct nlattr *nla, *txt;
0123 int err = -EMSGSIZE;
0124 int len;
0125
0126 nla = nla_nest_start_noflag(skb, DRBD_NLA_CFG_REPLY);
0127 if (!nla)
0128 return err;
0129
0130 txt = nla_reserve(skb, T_info_text, 256);
0131 if (!txt) {
0132 nla_nest_cancel(skb, nla);
0133 return err;
0134 }
0135 va_start(args, fmt);
0136 len = vscnprintf(nla_data(txt), 256, fmt, args);
0137 va_end(args);
0138
0139
0140 txt->nla_len = nla_attr_size(len+1);
0141 nlmsg_trim(skb, (char*)txt + NLA_ALIGN(txt->nla_len));
0142 nla_nest_end(skb, nla);
0143
0144 return 0;
0145 }
0146
0147
0148
0149
0150
0151
0152
0153
0154
0155
0156 #define DRBD_ADM_NEED_MINOR 1
0157 #define DRBD_ADM_NEED_RESOURCE 2
0158 #define DRBD_ADM_NEED_CONNECTION 4
0159 static int drbd_adm_prepare(struct drbd_config_context *adm_ctx,
0160 struct sk_buff *skb, struct genl_info *info, unsigned flags)
0161 {
0162 struct drbd_genlmsghdr *d_in = info->userhdr;
0163 const u8 cmd = info->genlhdr->cmd;
0164 int err;
0165
0166 memset(adm_ctx, 0, sizeof(*adm_ctx));
0167
0168
0169 if (cmd != DRBD_ADM_GET_STATUS && !capable(CAP_NET_ADMIN))
0170 return -EPERM;
0171
0172 adm_ctx->reply_skb = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
0173 if (!adm_ctx->reply_skb) {
0174 err = -ENOMEM;
0175 goto fail;
0176 }
0177
0178 adm_ctx->reply_dh = genlmsg_put_reply(adm_ctx->reply_skb,
0179 info, &drbd_genl_family, 0, cmd);
0180
0181
0182 if (!adm_ctx->reply_dh) {
0183 err = -ENOMEM;
0184 goto fail;
0185 }
0186
0187 adm_ctx->reply_dh->minor = d_in->minor;
0188 adm_ctx->reply_dh->ret_code = NO_ERROR;
0189
0190 adm_ctx->volume = VOLUME_UNSPECIFIED;
0191 if (info->attrs[DRBD_NLA_CFG_CONTEXT]) {
0192 struct nlattr *nla;
0193
0194 err = drbd_cfg_context_from_attrs(NULL, info);
0195 if (err)
0196 goto fail;
0197
0198
0199
0200 err = nla_put_nohdr(adm_ctx->reply_skb,
0201 info->attrs[DRBD_NLA_CFG_CONTEXT]->nla_len,
0202 info->attrs[DRBD_NLA_CFG_CONTEXT]);
0203 if (err)
0204 goto fail;
0205
0206
0207 nla = nested_attr_tb[__nla_type(T_ctx_volume)];
0208 if (nla)
0209 adm_ctx->volume = nla_get_u32(nla);
0210 nla = nested_attr_tb[__nla_type(T_ctx_resource_name)];
0211 if (nla)
0212 adm_ctx->resource_name = nla_data(nla);
0213 adm_ctx->my_addr = nested_attr_tb[__nla_type(T_ctx_my_addr)];
0214 adm_ctx->peer_addr = nested_attr_tb[__nla_type(T_ctx_peer_addr)];
0215 if ((adm_ctx->my_addr &&
0216 nla_len(adm_ctx->my_addr) > sizeof(adm_ctx->connection->my_addr)) ||
0217 (adm_ctx->peer_addr &&
0218 nla_len(adm_ctx->peer_addr) > sizeof(adm_ctx->connection->peer_addr))) {
0219 err = -EINVAL;
0220 goto fail;
0221 }
0222 }
0223
0224 adm_ctx->minor = d_in->minor;
0225 adm_ctx->device = minor_to_device(d_in->minor);
0226
0227
0228
0229
0230 if (adm_ctx->device)
0231 kref_get(&adm_ctx->device->kref);
0232
0233 if (adm_ctx->resource_name) {
0234 adm_ctx->resource = drbd_find_resource(adm_ctx->resource_name);
0235 }
0236
0237 if (!adm_ctx->device && (flags & DRBD_ADM_NEED_MINOR)) {
0238 drbd_msg_put_info(adm_ctx->reply_skb, "unknown minor");
0239 return ERR_MINOR_INVALID;
0240 }
0241 if (!adm_ctx->resource && (flags & DRBD_ADM_NEED_RESOURCE)) {
0242 drbd_msg_put_info(adm_ctx->reply_skb, "unknown resource");
0243 if (adm_ctx->resource_name)
0244 return ERR_RES_NOT_KNOWN;
0245 return ERR_INVALID_REQUEST;
0246 }
0247
0248 if (flags & DRBD_ADM_NEED_CONNECTION) {
0249 if (adm_ctx->resource) {
0250 drbd_msg_put_info(adm_ctx->reply_skb, "no resource name expected");
0251 return ERR_INVALID_REQUEST;
0252 }
0253 if (adm_ctx->device) {
0254 drbd_msg_put_info(adm_ctx->reply_skb, "no minor number expected");
0255 return ERR_INVALID_REQUEST;
0256 }
0257 if (adm_ctx->my_addr && adm_ctx->peer_addr)
0258 adm_ctx->connection = conn_get_by_addrs(nla_data(adm_ctx->my_addr),
0259 nla_len(adm_ctx->my_addr),
0260 nla_data(adm_ctx->peer_addr),
0261 nla_len(adm_ctx->peer_addr));
0262 if (!adm_ctx->connection) {
0263 drbd_msg_put_info(adm_ctx->reply_skb, "unknown connection");
0264 return ERR_INVALID_REQUEST;
0265 }
0266 }
0267
0268
0269 if (adm_ctx->device && adm_ctx->resource &&
0270 adm_ctx->device->resource != adm_ctx->resource) {
0271 pr_warn("request: minor=%u, resource=%s; but that minor belongs to resource %s\n",
0272 adm_ctx->minor, adm_ctx->resource->name,
0273 adm_ctx->device->resource->name);
0274 drbd_msg_put_info(adm_ctx->reply_skb, "minor exists in different resource");
0275 return ERR_INVALID_REQUEST;
0276 }
0277 if (adm_ctx->device &&
0278 adm_ctx->volume != VOLUME_UNSPECIFIED &&
0279 adm_ctx->volume != adm_ctx->device->vnr) {
0280 pr_warn("request: minor=%u, volume=%u; but that minor is volume %u in %s\n",
0281 adm_ctx->minor, adm_ctx->volume,
0282 adm_ctx->device->vnr, adm_ctx->device->resource->name);
0283 drbd_msg_put_info(adm_ctx->reply_skb, "minor exists as different volume");
0284 return ERR_INVALID_REQUEST;
0285 }
0286
0287
0288 if (!adm_ctx->resource) {
0289 adm_ctx->resource = adm_ctx->device ? adm_ctx->device->resource
0290 : adm_ctx->connection ? adm_ctx->connection->resource : NULL;
0291 if (adm_ctx->resource)
0292 kref_get(&adm_ctx->resource->kref);
0293 }
0294
0295 return NO_ERROR;
0296
0297 fail:
0298 nlmsg_free(adm_ctx->reply_skb);
0299 adm_ctx->reply_skb = NULL;
0300 return err;
0301 }
0302
0303 static int drbd_adm_finish(struct drbd_config_context *adm_ctx,
0304 struct genl_info *info, int retcode)
0305 {
0306 if (adm_ctx->device) {
0307 kref_put(&adm_ctx->device->kref, drbd_destroy_device);
0308 adm_ctx->device = NULL;
0309 }
0310 if (adm_ctx->connection) {
0311 kref_put(&adm_ctx->connection->kref, &drbd_destroy_connection);
0312 adm_ctx->connection = NULL;
0313 }
0314 if (adm_ctx->resource) {
0315 kref_put(&adm_ctx->resource->kref, drbd_destroy_resource);
0316 adm_ctx->resource = NULL;
0317 }
0318
0319 if (!adm_ctx->reply_skb)
0320 return -ENOMEM;
0321
0322 adm_ctx->reply_dh->ret_code = retcode;
0323 drbd_adm_send_reply(adm_ctx->reply_skb, info);
0324 return 0;
0325 }
0326
0327 static void setup_khelper_env(struct drbd_connection *connection, char **envp)
0328 {
0329 char *afs;
0330
0331
0332 if (connection->my_addr_len == 0 || connection->peer_addr_len == 0)
0333 return;
0334
0335 switch (((struct sockaddr *)&connection->peer_addr)->sa_family) {
0336 case AF_INET6:
0337 afs = "ipv6";
0338 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI6",
0339 &((struct sockaddr_in6 *)&connection->peer_addr)->sin6_addr);
0340 break;
0341 case AF_INET:
0342 afs = "ipv4";
0343 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
0344 &((struct sockaddr_in *)&connection->peer_addr)->sin_addr);
0345 break;
0346 default:
0347 afs = "ssocks";
0348 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
0349 &((struct sockaddr_in *)&connection->peer_addr)->sin_addr);
0350 }
0351 snprintf(envp[3], 20, "DRBD_PEER_AF=%s", afs);
0352 }
0353
0354 int drbd_khelper(struct drbd_device *device, char *cmd)
0355 {
0356 char *envp[] = { "HOME=/",
0357 "TERM=linux",
0358 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
0359 (char[20]) { },
0360 (char[60]) { },
0361 NULL };
0362 char mb[14];
0363 char *argv[] = {drbd_usermode_helper, cmd, mb, NULL };
0364 struct drbd_connection *connection = first_peer_device(device)->connection;
0365 struct sib_info sib;
0366 int ret;
0367
0368 if (current == connection->worker.task)
0369 set_bit(CALLBACK_PENDING, &connection->flags);
0370
0371 snprintf(mb, 14, "minor-%d", device_to_minor(device));
0372 setup_khelper_env(connection, envp);
0373
0374
0375
0376 drbd_md_sync(device);
0377
0378 drbd_info(device, "helper command: %s %s %s\n", drbd_usermode_helper, cmd, mb);
0379 sib.sib_reason = SIB_HELPER_PRE;
0380 sib.helper_name = cmd;
0381 drbd_bcast_event(device, &sib);
0382 notify_helper(NOTIFY_CALL, device, connection, cmd, 0);
0383 ret = call_usermodehelper(drbd_usermode_helper, argv, envp, UMH_WAIT_PROC);
0384 if (ret)
0385 drbd_warn(device, "helper command: %s %s %s exit code %u (0x%x)\n",
0386 drbd_usermode_helper, cmd, mb,
0387 (ret >> 8) & 0xff, ret);
0388 else
0389 drbd_info(device, "helper command: %s %s %s exit code %u (0x%x)\n",
0390 drbd_usermode_helper, cmd, mb,
0391 (ret >> 8) & 0xff, ret);
0392 sib.sib_reason = SIB_HELPER_POST;
0393 sib.helper_exit_code = ret;
0394 drbd_bcast_event(device, &sib);
0395 notify_helper(NOTIFY_RESPONSE, device, connection, cmd, ret);
0396
0397 if (current == connection->worker.task)
0398 clear_bit(CALLBACK_PENDING, &connection->flags);
0399
0400 if (ret < 0)
0401 ret = 0;
0402
0403 return ret;
0404 }
0405
0406 enum drbd_peer_state conn_khelper(struct drbd_connection *connection, char *cmd)
0407 {
0408 char *envp[] = { "HOME=/",
0409 "TERM=linux",
0410 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
0411 (char[20]) { },
0412 (char[60]) { },
0413 NULL };
0414 char *resource_name = connection->resource->name;
0415 char *argv[] = {drbd_usermode_helper, cmd, resource_name, NULL };
0416 int ret;
0417
0418 setup_khelper_env(connection, envp);
0419 conn_md_sync(connection);
0420
0421 drbd_info(connection, "helper command: %s %s %s\n", drbd_usermode_helper, cmd, resource_name);
0422
0423 notify_helper(NOTIFY_CALL, NULL, connection, cmd, 0);
0424
0425 ret = call_usermodehelper(drbd_usermode_helper, argv, envp, UMH_WAIT_PROC);
0426 if (ret)
0427 drbd_warn(connection, "helper command: %s %s %s exit code %u (0x%x)\n",
0428 drbd_usermode_helper, cmd, resource_name,
0429 (ret >> 8) & 0xff, ret);
0430 else
0431 drbd_info(connection, "helper command: %s %s %s exit code %u (0x%x)\n",
0432 drbd_usermode_helper, cmd, resource_name,
0433 (ret >> 8) & 0xff, ret);
0434
0435 notify_helper(NOTIFY_RESPONSE, NULL, connection, cmd, ret);
0436
0437 if (ret < 0)
0438 ret = 0;
0439
0440 return ret;
0441 }
0442
0443 static enum drbd_fencing_p highest_fencing_policy(struct drbd_connection *connection)
0444 {
0445 enum drbd_fencing_p fp = FP_NOT_AVAIL;
0446 struct drbd_peer_device *peer_device;
0447 int vnr;
0448
0449 rcu_read_lock();
0450 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
0451 struct drbd_device *device = peer_device->device;
0452 if (get_ldev_if_state(device, D_CONSISTENT)) {
0453 struct disk_conf *disk_conf =
0454 rcu_dereference(peer_device->device->ldev->disk_conf);
0455 fp = max_t(enum drbd_fencing_p, fp, disk_conf->fencing);
0456 put_ldev(device);
0457 }
0458 }
0459 rcu_read_unlock();
0460
0461 return fp;
0462 }
0463
0464 static bool resource_is_supended(struct drbd_resource *resource)
0465 {
0466 return resource->susp || resource->susp_fen || resource->susp_nod;
0467 }
0468
0469 bool conn_try_outdate_peer(struct drbd_connection *connection)
0470 {
0471 struct drbd_resource * const resource = connection->resource;
0472 unsigned int connect_cnt;
0473 union drbd_state mask = { };
0474 union drbd_state val = { };
0475 enum drbd_fencing_p fp;
0476 char *ex_to_string;
0477 int r;
0478
0479 spin_lock_irq(&resource->req_lock);
0480 if (connection->cstate >= C_WF_REPORT_PARAMS) {
0481 drbd_err(connection, "Expected cstate < C_WF_REPORT_PARAMS\n");
0482 spin_unlock_irq(&resource->req_lock);
0483 return false;
0484 }
0485
0486 connect_cnt = connection->connect_cnt;
0487 spin_unlock_irq(&resource->req_lock);
0488
0489 fp = highest_fencing_policy(connection);
0490 switch (fp) {
0491 case FP_NOT_AVAIL:
0492 drbd_warn(connection, "Not fencing peer, I'm not even Consistent myself.\n");
0493 spin_lock_irq(&resource->req_lock);
0494 if (connection->cstate < C_WF_REPORT_PARAMS) {
0495 _conn_request_state(connection,
0496 (union drbd_state) { { .susp_fen = 1 } },
0497 (union drbd_state) { { .susp_fen = 0 } },
0498 CS_VERBOSE | CS_HARD | CS_DC_SUSP);
0499
0500
0501
0502 if (!resource_is_supended(resource))
0503 _tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
0504 }
0505
0506
0507
0508
0509
0510
0511 spin_unlock_irq(&resource->req_lock);
0512 return false;
0513
0514 case FP_DONT_CARE:
0515 return true;
0516 default: ;
0517 }
0518
0519 r = conn_khelper(connection, "fence-peer");
0520
0521 switch ((r>>8) & 0xff) {
0522 case P_INCONSISTENT:
0523 ex_to_string = "peer is inconsistent or worse";
0524 mask.pdsk = D_MASK;
0525 val.pdsk = D_INCONSISTENT;
0526 break;
0527 case P_OUTDATED:
0528 ex_to_string = "peer was fenced";
0529 mask.pdsk = D_MASK;
0530 val.pdsk = D_OUTDATED;
0531 break;
0532 case P_DOWN:
0533 if (conn_highest_disk(connection) == D_UP_TO_DATE) {
0534
0535 ex_to_string = "peer is unreachable, assumed to be dead";
0536 mask.pdsk = D_MASK;
0537 val.pdsk = D_OUTDATED;
0538 } else {
0539 ex_to_string = "peer unreachable, doing nothing since disk != UpToDate";
0540 }
0541 break;
0542 case P_PRIMARY:
0543
0544
0545 ex_to_string = "peer is active";
0546 drbd_warn(connection, "Peer is primary, outdating myself.\n");
0547 mask.disk = D_MASK;
0548 val.disk = D_OUTDATED;
0549 break;
0550 case P_FENCING:
0551
0552
0553 if (fp != FP_STONITH)
0554 drbd_err(connection, "fence-peer() = 7 && fencing != Stonith !!!\n");
0555 ex_to_string = "peer was stonithed";
0556 mask.pdsk = D_MASK;
0557 val.pdsk = D_OUTDATED;
0558 break;
0559 default:
0560
0561 drbd_err(connection, "fence-peer helper broken, returned %d\n", (r>>8)&0xff);
0562 return false;
0563 }
0564
0565 drbd_info(connection, "fence-peer helper returned %d (%s)\n",
0566 (r>>8) & 0xff, ex_to_string);
0567
0568
0569
0570
0571
0572 spin_lock_irq(&resource->req_lock);
0573 if (connection->cstate < C_WF_REPORT_PARAMS && !test_bit(STATE_SENT, &connection->flags)) {
0574 if (connection->connect_cnt != connect_cnt)
0575
0576
0577 drbd_info(connection, "Ignoring fence-peer exit code\n");
0578 else
0579 _conn_request_state(connection, mask, val, CS_VERBOSE);
0580 }
0581 spin_unlock_irq(&resource->req_lock);
0582
0583 return conn_highest_pdsk(connection) <= D_OUTDATED;
0584 }
0585
0586 static int _try_outdate_peer_async(void *data)
0587 {
0588 struct drbd_connection *connection = (struct drbd_connection *)data;
0589
0590 conn_try_outdate_peer(connection);
0591
0592 kref_put(&connection->kref, drbd_destroy_connection);
0593 return 0;
0594 }
0595
0596 void conn_try_outdate_peer_async(struct drbd_connection *connection)
0597 {
0598 struct task_struct *opa;
0599
0600 kref_get(&connection->kref);
0601
0602
0603
0604
0605
0606 flush_signals(current);
0607 opa = kthread_run(_try_outdate_peer_async, connection, "drbd_async_h");
0608 if (IS_ERR(opa)) {
0609 drbd_err(connection, "out of mem, failed to invoke fence-peer helper\n");
0610 kref_put(&connection->kref, drbd_destroy_connection);
0611 }
0612 }
0613
0614 enum drbd_state_rv
0615 drbd_set_role(struct drbd_device *const device, enum drbd_role new_role, int force)
0616 {
0617 struct drbd_peer_device *const peer_device = first_peer_device(device);
0618 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
0619 const int max_tries = 4;
0620 enum drbd_state_rv rv = SS_UNKNOWN_ERROR;
0621 struct net_conf *nc;
0622 int try = 0;
0623 int forced = 0;
0624 union drbd_state mask, val;
0625
0626 if (new_role == R_PRIMARY) {
0627 struct drbd_connection *connection;
0628
0629
0630
0631 rcu_read_lock();
0632 for_each_connection(connection, device->resource)
0633 request_ping(connection);
0634 rcu_read_unlock();
0635 }
0636
0637 mutex_lock(device->state_mutex);
0638
0639 mask.i = 0; mask.role = R_MASK;
0640 val.i = 0; val.role = new_role;
0641
0642 while (try++ < max_tries) {
0643 rv = _drbd_request_state_holding_state_mutex(device, mask, val, CS_WAIT_COMPLETE);
0644
0645
0646
0647 if (rv == SS_CW_FAILED_BY_PEER && mask.pdsk != 0) {
0648 val.pdsk = 0;
0649 mask.pdsk = 0;
0650 continue;
0651 }
0652
0653 if (rv == SS_NO_UP_TO_DATE_DISK && force &&
0654 (device->state.disk < D_UP_TO_DATE &&
0655 device->state.disk >= D_INCONSISTENT)) {
0656 mask.disk = D_MASK;
0657 val.disk = D_UP_TO_DATE;
0658 forced = 1;
0659 continue;
0660 }
0661
0662 if (rv == SS_NO_UP_TO_DATE_DISK &&
0663 device->state.disk == D_CONSISTENT && mask.pdsk == 0) {
0664 D_ASSERT(device, device->state.pdsk == D_UNKNOWN);
0665
0666 if (conn_try_outdate_peer(connection)) {
0667 val.disk = D_UP_TO_DATE;
0668 mask.disk = D_MASK;
0669 }
0670 continue;
0671 }
0672
0673 if (rv == SS_NOTHING_TO_DO)
0674 goto out;
0675 if (rv == SS_PRIMARY_NOP && mask.pdsk == 0) {
0676 if (!conn_try_outdate_peer(connection) && force) {
0677 drbd_warn(device, "Forced into split brain situation!\n");
0678 mask.pdsk = D_MASK;
0679 val.pdsk = D_OUTDATED;
0680
0681 }
0682 continue;
0683 }
0684 if (rv == SS_TWO_PRIMARIES) {
0685
0686
0687 if (try < max_tries) {
0688 int timeo;
0689 try = max_tries - 1;
0690 rcu_read_lock();
0691 nc = rcu_dereference(connection->net_conf);
0692 timeo = nc ? (nc->ping_timeo + 1) * HZ / 10 : 1;
0693 rcu_read_unlock();
0694 schedule_timeout_interruptible(timeo);
0695 }
0696 continue;
0697 }
0698 if (rv < SS_SUCCESS) {
0699 rv = _drbd_request_state(device, mask, val,
0700 CS_VERBOSE + CS_WAIT_COMPLETE);
0701 if (rv < SS_SUCCESS)
0702 goto out;
0703 }
0704 break;
0705 }
0706
0707 if (rv < SS_SUCCESS)
0708 goto out;
0709
0710 if (forced)
0711 drbd_warn(device, "Forced to consider local data as UpToDate!\n");
0712
0713
0714 wait_event(device->misc_wait, atomic_read(&device->ap_pending_cnt) == 0);
0715
0716
0717
0718 if (new_role == R_SECONDARY) {
0719 if (get_ldev(device)) {
0720 device->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
0721 put_ldev(device);
0722 }
0723 } else {
0724 mutex_lock(&device->resource->conf_update);
0725 nc = connection->net_conf;
0726 if (nc)
0727 nc->discard_my_data = 0;
0728 mutex_unlock(&device->resource->conf_update);
0729
0730 if (get_ldev(device)) {
0731 if (((device->state.conn < C_CONNECTED ||
0732 device->state.pdsk <= D_FAILED)
0733 && device->ldev->md.uuid[UI_BITMAP] == 0) || forced)
0734 drbd_uuid_new_current(device);
0735
0736 device->ldev->md.uuid[UI_CURRENT] |= (u64)1;
0737 put_ldev(device);
0738 }
0739 }
0740
0741
0742
0743
0744 if (device->state.conn >= C_WF_REPORT_PARAMS) {
0745
0746 if (forced)
0747 drbd_send_uuids(peer_device);
0748 drbd_send_current_state(peer_device);
0749 }
0750
0751 drbd_md_sync(device);
0752 set_disk_ro(device->vdisk, new_role == R_SECONDARY);
0753 kobject_uevent(&disk_to_dev(device->vdisk)->kobj, KOBJ_CHANGE);
0754 out:
0755 mutex_unlock(device->state_mutex);
0756 return rv;
0757 }
0758
0759 static const char *from_attrs_err_to_txt(int err)
0760 {
0761 return err == -ENOMSG ? "required attribute missing" :
0762 err == -EOPNOTSUPP ? "unknown mandatory attribute" :
0763 err == -EEXIST ? "can not change invariant setting" :
0764 "invalid attribute value";
0765 }
0766
0767 int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info)
0768 {
0769 struct drbd_config_context adm_ctx;
0770 struct set_role_parms parms;
0771 int err;
0772 enum drbd_ret_code retcode;
0773 enum drbd_state_rv rv;
0774
0775 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
0776 if (!adm_ctx.reply_skb)
0777 return retcode;
0778 if (retcode != NO_ERROR)
0779 goto out;
0780
0781 memset(&parms, 0, sizeof(parms));
0782 if (info->attrs[DRBD_NLA_SET_ROLE_PARMS]) {
0783 err = set_role_parms_from_attrs(&parms, info);
0784 if (err) {
0785 retcode = ERR_MANDATORY_TAG;
0786 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
0787 goto out;
0788 }
0789 }
0790 genl_unlock();
0791 mutex_lock(&adm_ctx.resource->adm_mutex);
0792
0793 if (info->genlhdr->cmd == DRBD_ADM_PRIMARY)
0794 rv = drbd_set_role(adm_ctx.device, R_PRIMARY, parms.assume_uptodate);
0795 else
0796 rv = drbd_set_role(adm_ctx.device, R_SECONDARY, 0);
0797
0798 mutex_unlock(&adm_ctx.resource->adm_mutex);
0799 genl_lock();
0800 drbd_adm_finish(&adm_ctx, info, rv);
0801 return 0;
0802 out:
0803 drbd_adm_finish(&adm_ctx, info, retcode);
0804 return 0;
0805 }
0806
0807
0808
0809
0810
0811
0812
0813
0814
0815
0816
0817
0818
0819
0820
0821
0822
0823
0824
0825
0826
0827
0828 static void drbd_md_set_sector_offsets(struct drbd_device *device,
0829 struct drbd_backing_dev *bdev)
0830 {
0831 sector_t md_size_sect = 0;
0832 unsigned int al_size_sect = bdev->md.al_size_4k * 8;
0833
0834 bdev->md.md_offset = drbd_md_ss(bdev);
0835
0836 switch (bdev->md.meta_dev_idx) {
0837 default:
0838
0839 bdev->md.md_size_sect = MD_128MB_SECT;
0840 bdev->md.al_offset = MD_4kB_SECT;
0841 bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
0842 break;
0843 case DRBD_MD_INDEX_FLEX_EXT:
0844
0845 bdev->md.md_size_sect = drbd_get_capacity(bdev->md_bdev);
0846 bdev->md.al_offset = MD_4kB_SECT;
0847 bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
0848 break;
0849 case DRBD_MD_INDEX_INTERNAL:
0850 case DRBD_MD_INDEX_FLEX_INT:
0851
0852 bdev->md.al_offset = -al_size_sect;
0853
0854 md_size_sect = drbd_get_capacity(bdev->backing_bdev);
0855 md_size_sect = ALIGN(md_size_sect, BM_SECT_PER_EXT);
0856 md_size_sect = BM_SECT_TO_EXT(md_size_sect);
0857 md_size_sect = ALIGN(md_size_sect, 8);
0858
0859
0860
0861 md_size_sect += MD_4kB_SECT + al_size_sect;
0862
0863 bdev->md.md_size_sect = md_size_sect;
0864
0865 bdev->md.bm_offset = -md_size_sect + MD_4kB_SECT;
0866 break;
0867 }
0868 }
0869
0870
0871 char *ppsize(char *buf, unsigned long long size)
0872 {
0873
0874
0875 static char units[] = { 'K', 'M', 'G', 'T', 'P', 'E' };
0876 int base = 0;
0877 while (size >= 10000 && base < sizeof(units)-1) {
0878
0879 size = (size >> 10) + !!(size & (1<<9));
0880 base++;
0881 }
0882 sprintf(buf, "%u %cB", (unsigned)size, units[base]);
0883
0884 return buf;
0885 }
0886
0887
0888
0889
0890
0891
0892
0893
0894
0895
0896
0897
0898
0899
0900
0901
0902
0903
0904
0905
0906
0907
0908 void drbd_suspend_io(struct drbd_device *device)
0909 {
0910 atomic_inc(&device->suspend_cnt);
0911 if (drbd_suspended(device))
0912 return;
0913 wait_event(device->misc_wait, !atomic_read(&device->ap_bio_cnt));
0914 }
0915
0916 void drbd_resume_io(struct drbd_device *device)
0917 {
0918 if (atomic_dec_and_test(&device->suspend_cnt))
0919 wake_up(&device->misc_wait);
0920 }
0921
0922
0923
0924
0925
0926
0927
0928
0929 enum determine_dev_size
0930 drbd_determine_dev_size(struct drbd_device *device, enum dds_flags flags, struct resize_parms *rs) __must_hold(local)
0931 {
0932 struct md_offsets_and_sizes {
0933 u64 last_agreed_sect;
0934 u64 md_offset;
0935 s32 al_offset;
0936 s32 bm_offset;
0937 u32 md_size_sect;
0938
0939 u32 al_stripes;
0940 u32 al_stripe_size_4k;
0941 } prev;
0942 sector_t u_size, size;
0943 struct drbd_md *md = &device->ldev->md;
0944 void *buffer;
0945
0946 int md_moved, la_size_changed;
0947 enum determine_dev_size rv = DS_UNCHANGED;
0948
0949
0950
0951
0952
0953
0954
0955
0956
0957 drbd_suspend_io(device);
0958 buffer = drbd_md_get_buffer(device, __func__);
0959 if (!buffer) {
0960 drbd_resume_io(device);
0961 return DS_ERROR;
0962 }
0963
0964
0965 prev.last_agreed_sect = md->la_size_sect;
0966 prev.md_offset = md->md_offset;
0967 prev.al_offset = md->al_offset;
0968 prev.bm_offset = md->bm_offset;
0969 prev.md_size_sect = md->md_size_sect;
0970 prev.al_stripes = md->al_stripes;
0971 prev.al_stripe_size_4k = md->al_stripe_size_4k;
0972
0973 if (rs) {
0974
0975 md->al_stripes = rs->al_stripes;
0976 md->al_stripe_size_4k = rs->al_stripe_size / 4;
0977 md->al_size_4k = (u64)rs->al_stripes * rs->al_stripe_size / 4;
0978 }
0979
0980 drbd_md_set_sector_offsets(device, device->ldev);
0981
0982 rcu_read_lock();
0983 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
0984 rcu_read_unlock();
0985 size = drbd_new_dev_size(device, device->ldev, u_size, flags & DDSF_FORCED);
0986
0987 if (size < prev.last_agreed_sect) {
0988 if (rs && u_size == 0) {
0989
0990
0991 drbd_warn(device, "Implicit shrink not allowed. "
0992 "Use --size=%llus for explicit shrink.\n",
0993 (unsigned long long)size);
0994 rv = DS_ERROR_SHRINK;
0995 }
0996 if (u_size > size)
0997 rv = DS_ERROR_SPACE_MD;
0998 if (rv != DS_UNCHANGED)
0999 goto err_out;
1000 }
1001
1002 if (get_capacity(device->vdisk) != size ||
1003 drbd_bm_capacity(device) != size) {
1004 int err;
1005 err = drbd_bm_resize(device, size, !(flags & DDSF_NO_RESYNC));
1006 if (unlikely(err)) {
1007
1008 size = drbd_bm_capacity(device);
1009 if (size == 0) {
1010 drbd_err(device, "OUT OF MEMORY! "
1011 "Could not allocate bitmap!\n");
1012 } else {
1013 drbd_err(device, "BM resizing failed. "
1014 "Leaving size unchanged\n");
1015 }
1016 rv = DS_ERROR;
1017 }
1018
1019 drbd_set_my_capacity(device, size);
1020 md->la_size_sect = size;
1021 }
1022 if (rv <= DS_ERROR)
1023 goto err_out;
1024
1025 la_size_changed = (prev.last_agreed_sect != md->la_size_sect);
1026
1027 md_moved = prev.md_offset != md->md_offset
1028 || prev.md_size_sect != md->md_size_sect;
1029
1030 if (la_size_changed || md_moved || rs) {
1031 u32 prev_flags;
1032
1033
1034
1035
1036 del_timer(&device->md_sync_timer);
1037
1038
1039
1040
1041
1042 wait_event(device->al_wait, lc_try_lock_for_transaction(device->act_log));
1043
1044
1045 prev_flags = md->flags;
1046 md->flags |= MDF_FULL_SYNC | MDF_AL_DISABLED;
1047 drbd_md_write(device, buffer);
1048
1049 drbd_al_initialize(device, buffer);
1050
1051 drbd_info(device, "Writing the whole bitmap, %s\n",
1052 la_size_changed && md_moved ? "size changed and md moved" :
1053 la_size_changed ? "size changed" : "md moved");
1054
1055 drbd_bitmap_io(device, md_moved ? &drbd_bm_write_all : &drbd_bm_write,
1056 "size changed", BM_LOCKED_MASK);
1057
1058
1059
1060 md->flags = prev_flags;
1061 drbd_md_write(device, buffer);
1062
1063 if (rs)
1064 drbd_info(device, "Changed AL layout to al-stripes = %d, al-stripe-size-kB = %d\n",
1065 md->al_stripes, md->al_stripe_size_4k * 4);
1066 }
1067
1068 if (size > prev.last_agreed_sect)
1069 rv = prev.last_agreed_sect ? DS_GREW : DS_GREW_FROM_ZERO;
1070 if (size < prev.last_agreed_sect)
1071 rv = DS_SHRUNK;
1072
1073 if (0) {
1074 err_out:
1075
1076 md->la_size_sect = prev.last_agreed_sect;
1077 md->md_offset = prev.md_offset;
1078 md->al_offset = prev.al_offset;
1079 md->bm_offset = prev.bm_offset;
1080 md->md_size_sect = prev.md_size_sect;
1081 md->al_stripes = prev.al_stripes;
1082 md->al_stripe_size_4k = prev.al_stripe_size_4k;
1083 md->al_size_4k = (u64)prev.al_stripes * prev.al_stripe_size_4k;
1084 }
1085 lc_unlock(device->act_log);
1086 wake_up(&device->al_wait);
1087 drbd_md_put_buffer(device);
1088 drbd_resume_io(device);
1089
1090 return rv;
1091 }
1092
1093 sector_t
1094 drbd_new_dev_size(struct drbd_device *device, struct drbd_backing_dev *bdev,
1095 sector_t u_size, int assume_peer_has_space)
1096 {
1097 sector_t p_size = device->p_size;
1098 sector_t la_size_sect = bdev->md.la_size_sect;
1099 sector_t m_size;
1100 sector_t size = 0;
1101
1102 m_size = drbd_get_max_capacity(bdev);
1103
1104 if (device->state.conn < C_CONNECTED && assume_peer_has_space) {
1105 drbd_warn(device, "Resize while not connected was forced by the user!\n");
1106 p_size = m_size;
1107 }
1108
1109 if (p_size && m_size) {
1110 size = min_t(sector_t, p_size, m_size);
1111 } else {
1112 if (la_size_sect) {
1113 size = la_size_sect;
1114 if (m_size && m_size < size)
1115 size = m_size;
1116 if (p_size && p_size < size)
1117 size = p_size;
1118 } else {
1119 if (m_size)
1120 size = m_size;
1121 if (p_size)
1122 size = p_size;
1123 }
1124 }
1125
1126 if (size == 0)
1127 drbd_err(device, "Both nodes diskless!\n");
1128
1129 if (u_size) {
1130 if (u_size > size)
1131 drbd_err(device, "Requested disk size is too big (%lu > %lu)\n",
1132 (unsigned long)u_size>>1, (unsigned long)size>>1);
1133 else
1134 size = u_size;
1135 }
1136
1137 return size;
1138 }
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148 static int drbd_check_al_size(struct drbd_device *device, struct disk_conf *dc)
1149 {
1150 struct lru_cache *n, *t;
1151 struct lc_element *e;
1152 unsigned int in_use;
1153 int i;
1154
1155 if (device->act_log &&
1156 device->act_log->nr_elements == dc->al_extents)
1157 return 0;
1158
1159 in_use = 0;
1160 t = device->act_log;
1161 n = lc_create("act_log", drbd_al_ext_cache, AL_UPDATES_PER_TRANSACTION,
1162 dc->al_extents, sizeof(struct lc_element), 0);
1163
1164 if (n == NULL) {
1165 drbd_err(device, "Cannot allocate act_log lru!\n");
1166 return -ENOMEM;
1167 }
1168 spin_lock_irq(&device->al_lock);
1169 if (t) {
1170 for (i = 0; i < t->nr_elements; i++) {
1171 e = lc_element_by_index(t, i);
1172 if (e->refcnt)
1173 drbd_err(device, "refcnt(%d)==%d\n",
1174 e->lc_number, e->refcnt);
1175 in_use += e->refcnt;
1176 }
1177 }
1178 if (!in_use)
1179 device->act_log = n;
1180 spin_unlock_irq(&device->al_lock);
1181 if (in_use) {
1182 drbd_err(device, "Activity log still in use!\n");
1183 lc_destroy(n);
1184 return -EBUSY;
1185 } else {
1186 lc_destroy(t);
1187 }
1188 drbd_md_mark_dirty(device);
1189 return 0;
1190 }
1191
1192 static void blk_queue_discard_granularity(struct request_queue *q, unsigned int granularity)
1193 {
1194 q->limits.discard_granularity = granularity;
1195 }
1196
1197 static unsigned int drbd_max_discard_sectors(struct drbd_connection *connection)
1198 {
1199
1200
1201 if (connection->agreed_features & DRBD_FF_WSAME)
1202 return DRBD_MAX_BBIO_SECTORS;
1203
1204 return AL_EXTENT_SIZE >> 9;
1205 }
1206
1207 static void decide_on_discard_support(struct drbd_device *device,
1208 struct drbd_backing_dev *bdev)
1209 {
1210 struct drbd_connection *connection =
1211 first_peer_device(device)->connection;
1212 struct request_queue *q = device->rq_queue;
1213
1214 if (bdev && !bdev_max_discard_sectors(bdev->backing_bdev))
1215 goto not_supported;
1216
1217 if (connection->cstate >= C_CONNECTED &&
1218 !(connection->agreed_features & DRBD_FF_TRIM)) {
1219 drbd_info(connection,
1220 "peer DRBD too old, does not support TRIM: disabling discards\n");
1221 goto not_supported;
1222 }
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232 blk_queue_discard_granularity(q, 512);
1233 q->limits.max_discard_sectors = drbd_max_discard_sectors(connection);
1234 q->limits.max_write_zeroes_sectors =
1235 drbd_max_discard_sectors(connection);
1236 return;
1237
1238 not_supported:
1239 blk_queue_discard_granularity(q, 0);
1240 q->limits.max_discard_sectors = 0;
1241 q->limits.max_write_zeroes_sectors = 0;
1242 }
1243
1244 static void fixup_write_zeroes(struct drbd_device *device, struct request_queue *q)
1245 {
1246
1247
1248
1249
1250 struct drbd_connection *connection = first_peer_device(device)->connection;
1251
1252
1253 if (connection->agreed_features & DRBD_FF_WZEROES)
1254 q->limits.max_write_zeroes_sectors = DRBD_MAX_BBIO_SECTORS;
1255 else
1256 q->limits.max_write_zeroes_sectors = 0;
1257 }
1258
1259 static void drbd_setup_queue_param(struct drbd_device *device, struct drbd_backing_dev *bdev,
1260 unsigned int max_bio_size, struct o_qlim *o)
1261 {
1262 struct request_queue * const q = device->rq_queue;
1263 unsigned int max_hw_sectors = max_bio_size >> 9;
1264 unsigned int max_segments = 0;
1265 struct request_queue *b = NULL;
1266 struct disk_conf *dc;
1267
1268 if (bdev) {
1269 b = bdev->backing_bdev->bd_disk->queue;
1270
1271 max_hw_sectors = min(queue_max_hw_sectors(b), max_bio_size >> 9);
1272 rcu_read_lock();
1273 dc = rcu_dereference(device->ldev->disk_conf);
1274 max_segments = dc->max_bio_bvecs;
1275 rcu_read_unlock();
1276
1277 blk_set_stacking_limits(&q->limits);
1278 }
1279
1280 blk_queue_max_hw_sectors(q, max_hw_sectors);
1281
1282 blk_queue_max_segments(q, max_segments ? max_segments : BLK_MAX_SEGMENTS);
1283 blk_queue_segment_boundary(q, PAGE_SIZE-1);
1284 decide_on_discard_support(device, bdev);
1285
1286 if (b) {
1287 blk_stack_limits(&q->limits, &b->limits, 0);
1288 disk_update_readahead(device->vdisk);
1289 }
1290 fixup_write_zeroes(device, q);
1291 }
1292
1293 void drbd_reconsider_queue_parameters(struct drbd_device *device, struct drbd_backing_dev *bdev, struct o_qlim *o)
1294 {
1295 unsigned int now, new, local, peer;
1296
1297 now = queue_max_hw_sectors(device->rq_queue) << 9;
1298 local = device->local_max_bio_size;
1299 peer = device->peer_max_bio_size;
1300
1301 if (bdev) {
1302 local = queue_max_hw_sectors(bdev->backing_bdev->bd_disk->queue) << 9;
1303 device->local_max_bio_size = local;
1304 }
1305 local = min(local, DRBD_MAX_BIO_SIZE);
1306
1307
1308
1309
1310 if (device->state.conn >= C_WF_REPORT_PARAMS) {
1311 if (first_peer_device(device)->connection->agreed_pro_version < 94)
1312 peer = min(device->peer_max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1313
1314 else if (first_peer_device(device)->connection->agreed_pro_version == 94)
1315 peer = DRBD_MAX_SIZE_H80_PACKET;
1316 else if (first_peer_device(device)->connection->agreed_pro_version < 100)
1317 peer = DRBD_MAX_BIO_SIZE_P95;
1318 else
1319 peer = DRBD_MAX_BIO_SIZE;
1320
1321
1322
1323
1324
1325 if (peer > device->peer_max_bio_size)
1326 device->peer_max_bio_size = peer;
1327 }
1328 new = min(local, peer);
1329
1330 if (device->state.role == R_PRIMARY && new < now)
1331 drbd_err(device, "ASSERT FAILED new < now; (%u < %u)\n", new, now);
1332
1333 if (new != now)
1334 drbd_info(device, "max BIO size = %u\n", new);
1335
1336 drbd_setup_queue_param(device, bdev, new, o);
1337 }
1338
1339
1340 static void conn_reconfig_start(struct drbd_connection *connection)
1341 {
1342 drbd_thread_start(&connection->worker);
1343 drbd_flush_workqueue(&connection->sender_work);
1344 }
1345
1346
1347 static void conn_reconfig_done(struct drbd_connection *connection)
1348 {
1349 bool stop_threads;
1350 spin_lock_irq(&connection->resource->req_lock);
1351 stop_threads = conn_all_vols_unconf(connection) &&
1352 connection->cstate == C_STANDALONE;
1353 spin_unlock_irq(&connection->resource->req_lock);
1354 if (stop_threads) {
1355
1356
1357 drbd_thread_stop(&connection->receiver);
1358 drbd_thread_stop(&connection->worker);
1359 }
1360 }
1361
1362
1363 static void drbd_suspend_al(struct drbd_device *device)
1364 {
1365 int s = 0;
1366
1367 if (!lc_try_lock(device->act_log)) {
1368 drbd_warn(device, "Failed to lock al in drbd_suspend_al()\n");
1369 return;
1370 }
1371
1372 drbd_al_shrink(device);
1373 spin_lock_irq(&device->resource->req_lock);
1374 if (device->state.conn < C_CONNECTED)
1375 s = !test_and_set_bit(AL_SUSPENDED, &device->flags);
1376 spin_unlock_irq(&device->resource->req_lock);
1377 lc_unlock(device->act_log);
1378
1379 if (s)
1380 drbd_info(device, "Suspended AL updates\n");
1381 }
1382
1383
1384 static bool should_set_defaults(struct genl_info *info)
1385 {
1386 unsigned flags = ((struct drbd_genlmsghdr*)info->userhdr)->flags;
1387 return 0 != (flags & DRBD_GENL_F_SET_DEFAULTS);
1388 }
1389
1390 static unsigned int drbd_al_extents_max(struct drbd_backing_dev *bdev)
1391 {
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405 const unsigned int max_al_nr = DRBD_AL_EXTENTS_MAX;
1406 const unsigned int sufficient_on_disk =
1407 (max_al_nr + AL_CONTEXT_PER_TRANSACTION -1)
1408 /AL_CONTEXT_PER_TRANSACTION;
1409
1410 unsigned int al_size_4k = bdev->md.al_size_4k;
1411
1412 if (al_size_4k > sufficient_on_disk)
1413 return max_al_nr;
1414
1415 return (al_size_4k - 1) * AL_CONTEXT_PER_TRANSACTION;
1416 }
1417
1418 static bool write_ordering_changed(struct disk_conf *a, struct disk_conf *b)
1419 {
1420 return a->disk_barrier != b->disk_barrier ||
1421 a->disk_flushes != b->disk_flushes ||
1422 a->disk_drain != b->disk_drain;
1423 }
1424
1425 static void sanitize_disk_conf(struct drbd_device *device, struct disk_conf *disk_conf,
1426 struct drbd_backing_dev *nbc)
1427 {
1428 struct block_device *bdev = nbc->backing_bdev;
1429
1430 if (disk_conf->al_extents < DRBD_AL_EXTENTS_MIN)
1431 disk_conf->al_extents = DRBD_AL_EXTENTS_MIN;
1432 if (disk_conf->al_extents > drbd_al_extents_max(nbc))
1433 disk_conf->al_extents = drbd_al_extents_max(nbc);
1434
1435 if (!bdev_max_discard_sectors(bdev)) {
1436 if (disk_conf->rs_discard_granularity) {
1437 disk_conf->rs_discard_granularity = 0;
1438 drbd_info(device, "rs_discard_granularity feature disabled\n");
1439 }
1440 }
1441
1442 if (disk_conf->rs_discard_granularity) {
1443 int orig_value = disk_conf->rs_discard_granularity;
1444 sector_t discard_size = bdev_max_discard_sectors(bdev) << 9;
1445 unsigned int discard_granularity = bdev_discard_granularity(bdev);
1446 int remainder;
1447
1448 if (discard_granularity > disk_conf->rs_discard_granularity)
1449 disk_conf->rs_discard_granularity = discard_granularity;
1450
1451 remainder = disk_conf->rs_discard_granularity %
1452 discard_granularity;
1453 disk_conf->rs_discard_granularity += remainder;
1454
1455 if (disk_conf->rs_discard_granularity > discard_size)
1456 disk_conf->rs_discard_granularity = discard_size;
1457
1458 if (disk_conf->rs_discard_granularity != orig_value)
1459 drbd_info(device, "rs_discard_granularity changed to %d\n",
1460 disk_conf->rs_discard_granularity);
1461 }
1462 }
1463
1464 static int disk_opts_check_al_size(struct drbd_device *device, struct disk_conf *dc)
1465 {
1466 int err = -EBUSY;
1467
1468 if (device->act_log &&
1469 device->act_log->nr_elements == dc->al_extents)
1470 return 0;
1471
1472 drbd_suspend_io(device);
1473
1474
1475 if (atomic_read(&device->ap_bio_cnt))
1476 goto out;
1477
1478 wait_event(device->al_wait, lc_try_lock(device->act_log));
1479 drbd_al_shrink(device);
1480 err = drbd_check_al_size(device, dc);
1481 lc_unlock(device->act_log);
1482 wake_up(&device->al_wait);
1483 out:
1484 drbd_resume_io(device);
1485 return err;
1486 }
1487
1488 int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info)
1489 {
1490 struct drbd_config_context adm_ctx;
1491 enum drbd_ret_code retcode;
1492 struct drbd_device *device;
1493 struct disk_conf *new_disk_conf, *old_disk_conf;
1494 struct fifo_buffer *old_plan = NULL, *new_plan = NULL;
1495 int err;
1496 unsigned int fifo_size;
1497
1498 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
1499 if (!adm_ctx.reply_skb)
1500 return retcode;
1501 if (retcode != NO_ERROR)
1502 goto finish;
1503
1504 device = adm_ctx.device;
1505 mutex_lock(&adm_ctx.resource->adm_mutex);
1506
1507
1508
1509 if (!get_ldev(device)) {
1510 retcode = ERR_NO_DISK;
1511 goto out;
1512 }
1513
1514 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
1515 if (!new_disk_conf) {
1516 retcode = ERR_NOMEM;
1517 goto fail;
1518 }
1519
1520 mutex_lock(&device->resource->conf_update);
1521 old_disk_conf = device->ldev->disk_conf;
1522 *new_disk_conf = *old_disk_conf;
1523 if (should_set_defaults(info))
1524 set_disk_conf_defaults(new_disk_conf);
1525
1526 err = disk_conf_from_attrs_for_change(new_disk_conf, info);
1527 if (err && err != -ENOMSG) {
1528 retcode = ERR_MANDATORY_TAG;
1529 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
1530 goto fail_unlock;
1531 }
1532
1533 if (!expect(new_disk_conf->resync_rate >= 1))
1534 new_disk_conf->resync_rate = 1;
1535
1536 sanitize_disk_conf(device, new_disk_conf, device->ldev);
1537
1538 if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1539 new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1540
1541 fifo_size = (new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ;
1542 if (fifo_size != device->rs_plan_s->size) {
1543 new_plan = fifo_alloc(fifo_size);
1544 if (!new_plan) {
1545 drbd_err(device, "kmalloc of fifo_buffer failed");
1546 retcode = ERR_NOMEM;
1547 goto fail_unlock;
1548 }
1549 }
1550
1551 err = disk_opts_check_al_size(device, new_disk_conf);
1552 if (err) {
1553
1554
1555 drbd_msg_put_info(adm_ctx.reply_skb,
1556 "Try again without changing current al-extents setting");
1557 retcode = ERR_NOMEM;
1558 goto fail_unlock;
1559 }
1560
1561 lock_all_resources();
1562 retcode = drbd_resync_after_valid(device, new_disk_conf->resync_after);
1563 if (retcode == NO_ERROR) {
1564 rcu_assign_pointer(device->ldev->disk_conf, new_disk_conf);
1565 drbd_resync_after_changed(device);
1566 }
1567 unlock_all_resources();
1568
1569 if (retcode != NO_ERROR)
1570 goto fail_unlock;
1571
1572 if (new_plan) {
1573 old_plan = device->rs_plan_s;
1574 rcu_assign_pointer(device->rs_plan_s, new_plan);
1575 }
1576
1577 mutex_unlock(&device->resource->conf_update);
1578
1579 if (new_disk_conf->al_updates)
1580 device->ldev->md.flags &= ~MDF_AL_DISABLED;
1581 else
1582 device->ldev->md.flags |= MDF_AL_DISABLED;
1583
1584 if (new_disk_conf->md_flushes)
1585 clear_bit(MD_NO_FUA, &device->flags);
1586 else
1587 set_bit(MD_NO_FUA, &device->flags);
1588
1589 if (write_ordering_changed(old_disk_conf, new_disk_conf))
1590 drbd_bump_write_ordering(device->resource, NULL, WO_BDEV_FLUSH);
1591
1592 if (old_disk_conf->discard_zeroes_if_aligned !=
1593 new_disk_conf->discard_zeroes_if_aligned)
1594 drbd_reconsider_queue_parameters(device, device->ldev, NULL);
1595
1596 drbd_md_sync(device);
1597
1598 if (device->state.conn >= C_CONNECTED) {
1599 struct drbd_peer_device *peer_device;
1600
1601 for_each_peer_device(peer_device, device)
1602 drbd_send_sync_param(peer_device);
1603 }
1604
1605 kvfree_rcu(old_disk_conf);
1606 kfree(old_plan);
1607 mod_timer(&device->request_timer, jiffies + HZ);
1608 goto success;
1609
1610 fail_unlock:
1611 mutex_unlock(&device->resource->conf_update);
1612 fail:
1613 kfree(new_disk_conf);
1614 kfree(new_plan);
1615 success:
1616 put_ldev(device);
1617 out:
1618 mutex_unlock(&adm_ctx.resource->adm_mutex);
1619 finish:
1620 drbd_adm_finish(&adm_ctx, info, retcode);
1621 return 0;
1622 }
1623
1624 static struct block_device *open_backing_dev(struct drbd_device *device,
1625 const char *bdev_path, void *claim_ptr, bool do_bd_link)
1626 {
1627 struct block_device *bdev;
1628 int err = 0;
1629
1630 bdev = blkdev_get_by_path(bdev_path,
1631 FMODE_READ | FMODE_WRITE | FMODE_EXCL, claim_ptr);
1632 if (IS_ERR(bdev)) {
1633 drbd_err(device, "open(\"%s\") failed with %ld\n",
1634 bdev_path, PTR_ERR(bdev));
1635 return bdev;
1636 }
1637
1638 if (!do_bd_link)
1639 return bdev;
1640
1641 err = bd_link_disk_holder(bdev, device->vdisk);
1642 if (err) {
1643 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1644 drbd_err(device, "bd_link_disk_holder(\"%s\", ...) failed with %d\n",
1645 bdev_path, err);
1646 bdev = ERR_PTR(err);
1647 }
1648 return bdev;
1649 }
1650
1651 static int open_backing_devices(struct drbd_device *device,
1652 struct disk_conf *new_disk_conf,
1653 struct drbd_backing_dev *nbc)
1654 {
1655 struct block_device *bdev;
1656
1657 bdev = open_backing_dev(device, new_disk_conf->backing_dev, device, true);
1658 if (IS_ERR(bdev))
1659 return ERR_OPEN_DISK;
1660 nbc->backing_bdev = bdev;
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670 bdev = open_backing_dev(device, new_disk_conf->meta_dev,
1671
1672
1673 (new_disk_conf->meta_dev_idx < 0) ? (void*)device : (void*)drbd_m_holder,
1674
1675
1676 (new_disk_conf->meta_dev_idx != DRBD_MD_INDEX_FLEX_INT &&
1677 new_disk_conf->meta_dev_idx != DRBD_MD_INDEX_INTERNAL));
1678 if (IS_ERR(bdev))
1679 return ERR_OPEN_MD_DISK;
1680 nbc->md_bdev = bdev;
1681 return NO_ERROR;
1682 }
1683
1684 static void close_backing_dev(struct drbd_device *device, struct block_device *bdev,
1685 bool do_bd_unlink)
1686 {
1687 if (!bdev)
1688 return;
1689 if (do_bd_unlink)
1690 bd_unlink_disk_holder(bdev, device->vdisk);
1691 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1692 }
1693
1694 void drbd_backing_dev_free(struct drbd_device *device, struct drbd_backing_dev *ldev)
1695 {
1696 if (ldev == NULL)
1697 return;
1698
1699 close_backing_dev(device, ldev->md_bdev, ldev->md_bdev != ldev->backing_bdev);
1700 close_backing_dev(device, ldev->backing_bdev, true);
1701
1702 kfree(ldev->disk_conf);
1703 kfree(ldev);
1704 }
1705
1706 int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
1707 {
1708 struct drbd_config_context adm_ctx;
1709 struct drbd_device *device;
1710 struct drbd_peer_device *peer_device;
1711 struct drbd_connection *connection;
1712 int err;
1713 enum drbd_ret_code retcode;
1714 enum determine_dev_size dd;
1715 sector_t max_possible_sectors;
1716 sector_t min_md_device_sectors;
1717 struct drbd_backing_dev *nbc = NULL;
1718 struct disk_conf *new_disk_conf = NULL;
1719 struct lru_cache *resync_lru = NULL;
1720 struct fifo_buffer *new_plan = NULL;
1721 union drbd_state ns, os;
1722 enum drbd_state_rv rv;
1723 struct net_conf *nc;
1724
1725 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
1726 if (!adm_ctx.reply_skb)
1727 return retcode;
1728 if (retcode != NO_ERROR)
1729 goto finish;
1730
1731 device = adm_ctx.device;
1732 mutex_lock(&adm_ctx.resource->adm_mutex);
1733 peer_device = first_peer_device(device);
1734 connection = peer_device->connection;
1735 conn_reconfig_start(connection);
1736
1737
1738 if (device->state.disk > D_DISKLESS) {
1739 retcode = ERR_DISK_CONFIGURED;
1740 goto fail;
1741 }
1742
1743
1744
1745
1746 wait_event(device->misc_wait, !test_bit(GOING_DISKLESS, &device->flags));
1747
1748
1749 clear_bit(FORCE_DETACH, &device->flags);
1750 clear_bit(WAS_IO_ERROR, &device->flags);
1751 clear_bit(WAS_READ_ERROR, &device->flags);
1752
1753
1754 device->rs_total = 0;
1755 device->rs_failed = 0;
1756 atomic_set(&device->rs_pending_cnt, 0);
1757
1758
1759 nbc = kzalloc(sizeof(struct drbd_backing_dev), GFP_KERNEL);
1760 if (!nbc) {
1761 retcode = ERR_NOMEM;
1762 goto fail;
1763 }
1764 spin_lock_init(&nbc->md.uuid_lock);
1765
1766 new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
1767 if (!new_disk_conf) {
1768 retcode = ERR_NOMEM;
1769 goto fail;
1770 }
1771 nbc->disk_conf = new_disk_conf;
1772
1773 set_disk_conf_defaults(new_disk_conf);
1774 err = disk_conf_from_attrs(new_disk_conf, info);
1775 if (err) {
1776 retcode = ERR_MANDATORY_TAG;
1777 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
1778 goto fail;
1779 }
1780
1781 if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1782 new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1783
1784 new_plan = fifo_alloc((new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ);
1785 if (!new_plan) {
1786 retcode = ERR_NOMEM;
1787 goto fail;
1788 }
1789
1790 if (new_disk_conf->meta_dev_idx < DRBD_MD_INDEX_FLEX_INT) {
1791 retcode = ERR_MD_IDX_INVALID;
1792 goto fail;
1793 }
1794
1795 rcu_read_lock();
1796 nc = rcu_dereference(connection->net_conf);
1797 if (nc) {
1798 if (new_disk_conf->fencing == FP_STONITH && nc->wire_protocol == DRBD_PROT_A) {
1799 rcu_read_unlock();
1800 retcode = ERR_STONITH_AND_PROT_A;
1801 goto fail;
1802 }
1803 }
1804 rcu_read_unlock();
1805
1806 retcode = open_backing_devices(device, new_disk_conf, nbc);
1807 if (retcode != NO_ERROR)
1808 goto fail;
1809
1810 if ((nbc->backing_bdev == nbc->md_bdev) !=
1811 (new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
1812 new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)) {
1813 retcode = ERR_MD_IDX_INVALID;
1814 goto fail;
1815 }
1816
1817 resync_lru = lc_create("resync", drbd_bm_ext_cache,
1818 1, 61, sizeof(struct bm_extent),
1819 offsetof(struct bm_extent, lce));
1820 if (!resync_lru) {
1821 retcode = ERR_NOMEM;
1822 goto fail;
1823 }
1824
1825
1826
1827 retcode = drbd_md_read(device, nbc);
1828 if (retcode != NO_ERROR)
1829 goto fail;
1830
1831 sanitize_disk_conf(device, new_disk_conf, nbc);
1832
1833 if (drbd_get_max_capacity(nbc) < new_disk_conf->disk_size) {
1834 drbd_err(device, "max capacity %llu smaller than disk size %llu\n",
1835 (unsigned long long) drbd_get_max_capacity(nbc),
1836 (unsigned long long) new_disk_conf->disk_size);
1837 retcode = ERR_DISK_TOO_SMALL;
1838 goto fail;
1839 }
1840
1841 if (new_disk_conf->meta_dev_idx < 0) {
1842 max_possible_sectors = DRBD_MAX_SECTORS_FLEX;
1843
1844 min_md_device_sectors = (2<<10);
1845 } else {
1846 max_possible_sectors = DRBD_MAX_SECTORS;
1847 min_md_device_sectors = MD_128MB_SECT * (new_disk_conf->meta_dev_idx + 1);
1848 }
1849
1850 if (drbd_get_capacity(nbc->md_bdev) < min_md_device_sectors) {
1851 retcode = ERR_MD_DISK_TOO_SMALL;
1852 drbd_warn(device, "refusing attach: md-device too small, "
1853 "at least %llu sectors needed for this meta-disk type\n",
1854 (unsigned long long) min_md_device_sectors);
1855 goto fail;
1856 }
1857
1858
1859
1860 if (drbd_get_max_capacity(nbc) < get_capacity(device->vdisk)) {
1861 retcode = ERR_DISK_TOO_SMALL;
1862 goto fail;
1863 }
1864
1865 nbc->known_size = drbd_get_capacity(nbc->backing_bdev);
1866
1867 if (nbc->known_size > max_possible_sectors) {
1868 drbd_warn(device, "==> truncating very big lower level device "
1869 "to currently maximum possible %llu sectors <==\n",
1870 (unsigned long long) max_possible_sectors);
1871 if (new_disk_conf->meta_dev_idx >= 0)
1872 drbd_warn(device, "==>> using internal or flexible "
1873 "meta data may help <<==\n");
1874 }
1875
1876 drbd_suspend_io(device);
1877
1878
1879
1880
1881
1882
1883
1884 wait_event(device->misc_wait, !atomic_read(&device->ap_pending_cnt) || drbd_suspended(device));
1885
1886 drbd_flush_workqueue(&connection->sender_work);
1887
1888 rv = _drbd_request_state(device, NS(disk, D_ATTACHING), CS_VERBOSE);
1889 retcode = (enum drbd_ret_code)rv;
1890 drbd_resume_io(device);
1891 if (rv < SS_SUCCESS)
1892 goto fail;
1893
1894 if (!get_ldev_if_state(device, D_ATTACHING))
1895 goto force_diskless;
1896
1897 if (!device->bitmap) {
1898 if (drbd_bm_init(device)) {
1899 retcode = ERR_NOMEM;
1900 goto force_diskless_dec;
1901 }
1902 }
1903
1904 if (device->state.pdsk != D_UP_TO_DATE && device->ed_uuid &&
1905 (device->state.role == R_PRIMARY || device->state.peer == R_PRIMARY) &&
1906 (device->ed_uuid & ~((u64)1)) != (nbc->md.uuid[UI_CURRENT] & ~((u64)1))) {
1907 drbd_err(device, "Can only attach to data with current UUID=%016llX\n",
1908 (unsigned long long)device->ed_uuid);
1909 retcode = ERR_DATA_NOT_CURRENT;
1910 goto force_diskless_dec;
1911 }
1912
1913
1914 if (drbd_check_al_size(device, new_disk_conf)) {
1915 retcode = ERR_NOMEM;
1916 goto force_diskless_dec;
1917 }
1918
1919
1920 {
1921 unsigned long long nsz = drbd_new_dev_size(device, nbc, nbc->disk_conf->disk_size, 0);
1922 unsigned long long eff = nbc->md.la_size_sect;
1923 if (drbd_md_test_flag(nbc, MDF_CONSISTENT) && nsz < eff) {
1924 if (nsz == nbc->disk_conf->disk_size) {
1925 drbd_warn(device, "truncating a consistent device during attach (%llu < %llu)\n", nsz, eff);
1926 } else {
1927 drbd_warn(device, "refusing to truncate a consistent device (%llu < %llu)\n", nsz, eff);
1928 drbd_msg_sprintf_info(adm_ctx.reply_skb,
1929 "To-be-attached device has last effective > current size, and is consistent\n"
1930 "(%llu > %llu sectors). Refusing to attach.", eff, nsz);
1931 retcode = ERR_IMPLICIT_SHRINK;
1932 goto force_diskless_dec;
1933 }
1934 }
1935 }
1936
1937 lock_all_resources();
1938 retcode = drbd_resync_after_valid(device, new_disk_conf->resync_after);
1939 if (retcode != NO_ERROR) {
1940 unlock_all_resources();
1941 goto force_diskless_dec;
1942 }
1943
1944
1945
1946 if (new_disk_conf->md_flushes)
1947 clear_bit(MD_NO_FUA, &device->flags);
1948 else
1949 set_bit(MD_NO_FUA, &device->flags);
1950
1951
1952
1953
1954
1955 D_ASSERT(device, device->ldev == NULL);
1956 device->ldev = nbc;
1957 device->resync = resync_lru;
1958 device->rs_plan_s = new_plan;
1959 nbc = NULL;
1960 resync_lru = NULL;
1961 new_disk_conf = NULL;
1962 new_plan = NULL;
1963
1964 drbd_resync_after_changed(device);
1965 drbd_bump_write_ordering(device->resource, device->ldev, WO_BDEV_FLUSH);
1966 unlock_all_resources();
1967
1968 if (drbd_md_test_flag(device->ldev, MDF_CRASHED_PRIMARY))
1969 set_bit(CRASHED_PRIMARY, &device->flags);
1970 else
1971 clear_bit(CRASHED_PRIMARY, &device->flags);
1972
1973 if (drbd_md_test_flag(device->ldev, MDF_PRIMARY_IND) &&
1974 !(device->state.role == R_PRIMARY && device->resource->susp_nod))
1975 set_bit(CRASHED_PRIMARY, &device->flags);
1976
1977 device->send_cnt = 0;
1978 device->recv_cnt = 0;
1979 device->read_cnt = 0;
1980 device->writ_cnt = 0;
1981
1982 drbd_reconsider_queue_parameters(device, device->ldev, NULL);
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998 clear_bit(USE_DEGR_WFC_T, &device->flags);
1999 if (device->state.role != R_PRIMARY &&
2000 drbd_md_test_flag(device->ldev, MDF_PRIMARY_IND) &&
2001 !drbd_md_test_flag(device->ldev, MDF_CONNECTED_IND))
2002 set_bit(USE_DEGR_WFC_T, &device->flags);
2003
2004 dd = drbd_determine_dev_size(device, 0, NULL);
2005 if (dd <= DS_ERROR) {
2006 retcode = ERR_NOMEM_BITMAP;
2007 goto force_diskless_dec;
2008 } else if (dd == DS_GREW)
2009 set_bit(RESYNC_AFTER_NEG, &device->flags);
2010
2011 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC) ||
2012 (test_bit(CRASHED_PRIMARY, &device->flags) &&
2013 drbd_md_test_flag(device->ldev, MDF_AL_DISABLED))) {
2014 drbd_info(device, "Assuming that all blocks are out of sync "
2015 "(aka FullSync)\n");
2016 if (drbd_bitmap_io(device, &drbd_bmio_set_n_write,
2017 "set_n_write from attaching", BM_LOCKED_MASK)) {
2018 retcode = ERR_IO_MD_DISK;
2019 goto force_diskless_dec;
2020 }
2021 } else {
2022 if (drbd_bitmap_io(device, &drbd_bm_read,
2023 "read from attaching", BM_LOCKED_MASK)) {
2024 retcode = ERR_IO_MD_DISK;
2025 goto force_diskless_dec;
2026 }
2027 }
2028
2029 if (_drbd_bm_total_weight(device) == drbd_bm_bits(device))
2030 drbd_suspend_al(device);
2031
2032 spin_lock_irq(&device->resource->req_lock);
2033 os = drbd_read_state(device);
2034 ns = os;
2035
2036
2037
2038
2039
2040 if (drbd_md_test_flag(device->ldev, MDF_CONSISTENT)) {
2041 if (drbd_md_test_flag(device->ldev, MDF_WAS_UP_TO_DATE))
2042 ns.disk = D_CONSISTENT;
2043 else
2044 ns.disk = D_OUTDATED;
2045 } else {
2046 ns.disk = D_INCONSISTENT;
2047 }
2048
2049 if (drbd_md_test_flag(device->ldev, MDF_PEER_OUT_DATED))
2050 ns.pdsk = D_OUTDATED;
2051
2052 rcu_read_lock();
2053 if (ns.disk == D_CONSISTENT &&
2054 (ns.pdsk == D_OUTDATED || rcu_dereference(device->ldev->disk_conf)->fencing == FP_DONT_CARE))
2055 ns.disk = D_UP_TO_DATE;
2056
2057
2058
2059
2060
2061
2062 if (rcu_dereference(device->ldev->disk_conf)->al_updates)
2063 device->ldev->md.flags &= ~MDF_AL_DISABLED;
2064 else
2065 device->ldev->md.flags |= MDF_AL_DISABLED;
2066
2067 rcu_read_unlock();
2068
2069
2070
2071 if (device->state.conn == C_CONNECTED) {
2072 device->new_state_tmp.i = ns.i;
2073 ns.i = os.i;
2074 ns.disk = D_NEGOTIATING;
2075
2076
2077
2078
2079 kfree(device->p_uuid);
2080 device->p_uuid = NULL;
2081 }
2082
2083 rv = _drbd_set_state(device, ns, CS_VERBOSE, NULL);
2084 spin_unlock_irq(&device->resource->req_lock);
2085
2086 if (rv < SS_SUCCESS)
2087 goto force_diskless_dec;
2088
2089 mod_timer(&device->request_timer, jiffies + HZ);
2090
2091 if (device->state.role == R_PRIMARY)
2092 device->ldev->md.uuid[UI_CURRENT] |= (u64)1;
2093 else
2094 device->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
2095
2096 drbd_md_mark_dirty(device);
2097 drbd_md_sync(device);
2098
2099 kobject_uevent(&disk_to_dev(device->vdisk)->kobj, KOBJ_CHANGE);
2100 put_ldev(device);
2101 conn_reconfig_done(connection);
2102 mutex_unlock(&adm_ctx.resource->adm_mutex);
2103 drbd_adm_finish(&adm_ctx, info, retcode);
2104 return 0;
2105
2106 force_diskless_dec:
2107 put_ldev(device);
2108 force_diskless:
2109 drbd_force_state(device, NS(disk, D_DISKLESS));
2110 drbd_md_sync(device);
2111 fail:
2112 conn_reconfig_done(connection);
2113 if (nbc) {
2114 close_backing_dev(device, nbc->md_bdev, nbc->md_bdev != nbc->backing_bdev);
2115 close_backing_dev(device, nbc->backing_bdev, true);
2116 kfree(nbc);
2117 }
2118 kfree(new_disk_conf);
2119 lc_destroy(resync_lru);
2120 kfree(new_plan);
2121 mutex_unlock(&adm_ctx.resource->adm_mutex);
2122 finish:
2123 drbd_adm_finish(&adm_ctx, info, retcode);
2124 return 0;
2125 }
2126
2127 static int adm_detach(struct drbd_device *device, int force)
2128 {
2129 if (force) {
2130 set_bit(FORCE_DETACH, &device->flags);
2131 drbd_force_state(device, NS(disk, D_FAILED));
2132 return SS_SUCCESS;
2133 }
2134
2135 return drbd_request_detach_interruptible(device);
2136 }
2137
2138
2139
2140
2141
2142
2143 int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info)
2144 {
2145 struct drbd_config_context adm_ctx;
2146 enum drbd_ret_code retcode;
2147 struct detach_parms parms = { };
2148 int err;
2149
2150 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
2151 if (!adm_ctx.reply_skb)
2152 return retcode;
2153 if (retcode != NO_ERROR)
2154 goto out;
2155
2156 if (info->attrs[DRBD_NLA_DETACH_PARMS]) {
2157 err = detach_parms_from_attrs(&parms, info);
2158 if (err) {
2159 retcode = ERR_MANDATORY_TAG;
2160 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2161 goto out;
2162 }
2163 }
2164
2165 mutex_lock(&adm_ctx.resource->adm_mutex);
2166 retcode = adm_detach(adm_ctx.device, parms.force_detach);
2167 mutex_unlock(&adm_ctx.resource->adm_mutex);
2168 out:
2169 drbd_adm_finish(&adm_ctx, info, retcode);
2170 return 0;
2171 }
2172
2173 static bool conn_resync_running(struct drbd_connection *connection)
2174 {
2175 struct drbd_peer_device *peer_device;
2176 bool rv = false;
2177 int vnr;
2178
2179 rcu_read_lock();
2180 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2181 struct drbd_device *device = peer_device->device;
2182 if (device->state.conn == C_SYNC_SOURCE ||
2183 device->state.conn == C_SYNC_TARGET ||
2184 device->state.conn == C_PAUSED_SYNC_S ||
2185 device->state.conn == C_PAUSED_SYNC_T) {
2186 rv = true;
2187 break;
2188 }
2189 }
2190 rcu_read_unlock();
2191
2192 return rv;
2193 }
2194
2195 static bool conn_ov_running(struct drbd_connection *connection)
2196 {
2197 struct drbd_peer_device *peer_device;
2198 bool rv = false;
2199 int vnr;
2200
2201 rcu_read_lock();
2202 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2203 struct drbd_device *device = peer_device->device;
2204 if (device->state.conn == C_VERIFY_S ||
2205 device->state.conn == C_VERIFY_T) {
2206 rv = true;
2207 break;
2208 }
2209 }
2210 rcu_read_unlock();
2211
2212 return rv;
2213 }
2214
2215 static enum drbd_ret_code
2216 _check_net_options(struct drbd_connection *connection, struct net_conf *old_net_conf, struct net_conf *new_net_conf)
2217 {
2218 struct drbd_peer_device *peer_device;
2219 int i;
2220
2221 if (old_net_conf && connection->cstate == C_WF_REPORT_PARAMS && connection->agreed_pro_version < 100) {
2222 if (new_net_conf->wire_protocol != old_net_conf->wire_protocol)
2223 return ERR_NEED_APV_100;
2224
2225 if (new_net_conf->two_primaries != old_net_conf->two_primaries)
2226 return ERR_NEED_APV_100;
2227
2228 if (strcmp(new_net_conf->integrity_alg, old_net_conf->integrity_alg))
2229 return ERR_NEED_APV_100;
2230 }
2231
2232 if (!new_net_conf->two_primaries &&
2233 conn_highest_role(connection) == R_PRIMARY &&
2234 conn_highest_peer(connection) == R_PRIMARY)
2235 return ERR_NEED_ALLOW_TWO_PRI;
2236
2237 if (new_net_conf->two_primaries &&
2238 (new_net_conf->wire_protocol != DRBD_PROT_C))
2239 return ERR_NOT_PROTO_C;
2240
2241 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2242 struct drbd_device *device = peer_device->device;
2243 if (get_ldev(device)) {
2244 enum drbd_fencing_p fp = rcu_dereference(device->ldev->disk_conf)->fencing;
2245 put_ldev(device);
2246 if (new_net_conf->wire_protocol == DRBD_PROT_A && fp == FP_STONITH)
2247 return ERR_STONITH_AND_PROT_A;
2248 }
2249 if (device->state.role == R_PRIMARY && new_net_conf->discard_my_data)
2250 return ERR_DISCARD_IMPOSSIBLE;
2251 }
2252
2253 if (new_net_conf->on_congestion != OC_BLOCK && new_net_conf->wire_protocol != DRBD_PROT_A)
2254 return ERR_CONG_NOT_PROTO_A;
2255
2256 return NO_ERROR;
2257 }
2258
2259 static enum drbd_ret_code
2260 check_net_options(struct drbd_connection *connection, struct net_conf *new_net_conf)
2261 {
2262 enum drbd_ret_code rv;
2263 struct drbd_peer_device *peer_device;
2264 int i;
2265
2266 rcu_read_lock();
2267 rv = _check_net_options(connection, rcu_dereference(connection->net_conf), new_net_conf);
2268 rcu_read_unlock();
2269
2270
2271 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2272 struct drbd_device *device = peer_device->device;
2273 if (!device->bitmap) {
2274 if (drbd_bm_init(device))
2275 return ERR_NOMEM;
2276 }
2277 }
2278
2279 return rv;
2280 }
2281
2282 struct crypto {
2283 struct crypto_shash *verify_tfm;
2284 struct crypto_shash *csums_tfm;
2285 struct crypto_shash *cram_hmac_tfm;
2286 struct crypto_shash *integrity_tfm;
2287 };
2288
2289 static int
2290 alloc_shash(struct crypto_shash **tfm, char *tfm_name, int err_alg)
2291 {
2292 if (!tfm_name[0])
2293 return NO_ERROR;
2294
2295 *tfm = crypto_alloc_shash(tfm_name, 0, 0);
2296 if (IS_ERR(*tfm)) {
2297 *tfm = NULL;
2298 return err_alg;
2299 }
2300
2301 return NO_ERROR;
2302 }
2303
2304 static enum drbd_ret_code
2305 alloc_crypto(struct crypto *crypto, struct net_conf *new_net_conf)
2306 {
2307 char hmac_name[CRYPTO_MAX_ALG_NAME];
2308 enum drbd_ret_code rv;
2309
2310 rv = alloc_shash(&crypto->csums_tfm, new_net_conf->csums_alg,
2311 ERR_CSUMS_ALG);
2312 if (rv != NO_ERROR)
2313 return rv;
2314 rv = alloc_shash(&crypto->verify_tfm, new_net_conf->verify_alg,
2315 ERR_VERIFY_ALG);
2316 if (rv != NO_ERROR)
2317 return rv;
2318 rv = alloc_shash(&crypto->integrity_tfm, new_net_conf->integrity_alg,
2319 ERR_INTEGRITY_ALG);
2320 if (rv != NO_ERROR)
2321 return rv;
2322 if (new_net_conf->cram_hmac_alg[0] != 0) {
2323 snprintf(hmac_name, CRYPTO_MAX_ALG_NAME, "hmac(%s)",
2324 new_net_conf->cram_hmac_alg);
2325
2326 rv = alloc_shash(&crypto->cram_hmac_tfm, hmac_name,
2327 ERR_AUTH_ALG);
2328 }
2329
2330 return rv;
2331 }
2332
2333 static void free_crypto(struct crypto *crypto)
2334 {
2335 crypto_free_shash(crypto->cram_hmac_tfm);
2336 crypto_free_shash(crypto->integrity_tfm);
2337 crypto_free_shash(crypto->csums_tfm);
2338 crypto_free_shash(crypto->verify_tfm);
2339 }
2340
2341 int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info)
2342 {
2343 struct drbd_config_context adm_ctx;
2344 enum drbd_ret_code retcode;
2345 struct drbd_connection *connection;
2346 struct net_conf *old_net_conf, *new_net_conf = NULL;
2347 int err;
2348 int ovr;
2349 int rsr;
2350 struct crypto crypto = { };
2351
2352 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_CONNECTION);
2353 if (!adm_ctx.reply_skb)
2354 return retcode;
2355 if (retcode != NO_ERROR)
2356 goto finish;
2357
2358 connection = adm_ctx.connection;
2359 mutex_lock(&adm_ctx.resource->adm_mutex);
2360
2361 new_net_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
2362 if (!new_net_conf) {
2363 retcode = ERR_NOMEM;
2364 goto out;
2365 }
2366
2367 conn_reconfig_start(connection);
2368
2369 mutex_lock(&connection->data.mutex);
2370 mutex_lock(&connection->resource->conf_update);
2371 old_net_conf = connection->net_conf;
2372
2373 if (!old_net_conf) {
2374 drbd_msg_put_info(adm_ctx.reply_skb, "net conf missing, try connect");
2375 retcode = ERR_INVALID_REQUEST;
2376 goto fail;
2377 }
2378
2379 *new_net_conf = *old_net_conf;
2380 if (should_set_defaults(info))
2381 set_net_conf_defaults(new_net_conf);
2382
2383 err = net_conf_from_attrs_for_change(new_net_conf, info);
2384 if (err && err != -ENOMSG) {
2385 retcode = ERR_MANDATORY_TAG;
2386 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2387 goto fail;
2388 }
2389
2390 retcode = check_net_options(connection, new_net_conf);
2391 if (retcode != NO_ERROR)
2392 goto fail;
2393
2394
2395 rsr = conn_resync_running(connection);
2396 if (rsr && strcmp(new_net_conf->csums_alg, old_net_conf->csums_alg)) {
2397 retcode = ERR_CSUMS_RESYNC_RUNNING;
2398 goto fail;
2399 }
2400
2401
2402 ovr = conn_ov_running(connection);
2403 if (ovr && strcmp(new_net_conf->verify_alg, old_net_conf->verify_alg)) {
2404 retcode = ERR_VERIFY_RUNNING;
2405 goto fail;
2406 }
2407
2408 retcode = alloc_crypto(&crypto, new_net_conf);
2409 if (retcode != NO_ERROR)
2410 goto fail;
2411
2412 rcu_assign_pointer(connection->net_conf, new_net_conf);
2413
2414 if (!rsr) {
2415 crypto_free_shash(connection->csums_tfm);
2416 connection->csums_tfm = crypto.csums_tfm;
2417 crypto.csums_tfm = NULL;
2418 }
2419 if (!ovr) {
2420 crypto_free_shash(connection->verify_tfm);
2421 connection->verify_tfm = crypto.verify_tfm;
2422 crypto.verify_tfm = NULL;
2423 }
2424
2425 crypto_free_shash(connection->integrity_tfm);
2426 connection->integrity_tfm = crypto.integrity_tfm;
2427 if (connection->cstate >= C_WF_REPORT_PARAMS && connection->agreed_pro_version >= 100)
2428
2429 __drbd_send_protocol(connection, P_PROTOCOL_UPDATE);
2430
2431 crypto_free_shash(connection->cram_hmac_tfm);
2432 connection->cram_hmac_tfm = crypto.cram_hmac_tfm;
2433
2434 mutex_unlock(&connection->resource->conf_update);
2435 mutex_unlock(&connection->data.mutex);
2436 kvfree_rcu(old_net_conf);
2437
2438 if (connection->cstate >= C_WF_REPORT_PARAMS) {
2439 struct drbd_peer_device *peer_device;
2440 int vnr;
2441
2442 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
2443 drbd_send_sync_param(peer_device);
2444 }
2445
2446 goto done;
2447
2448 fail:
2449 mutex_unlock(&connection->resource->conf_update);
2450 mutex_unlock(&connection->data.mutex);
2451 free_crypto(&crypto);
2452 kfree(new_net_conf);
2453 done:
2454 conn_reconfig_done(connection);
2455 out:
2456 mutex_unlock(&adm_ctx.resource->adm_mutex);
2457 finish:
2458 drbd_adm_finish(&adm_ctx, info, retcode);
2459 return 0;
2460 }
2461
2462 static void connection_to_info(struct connection_info *info,
2463 struct drbd_connection *connection)
2464 {
2465 info->conn_connection_state = connection->cstate;
2466 info->conn_role = conn_highest_peer(connection);
2467 }
2468
2469 static void peer_device_to_info(struct peer_device_info *info,
2470 struct drbd_peer_device *peer_device)
2471 {
2472 struct drbd_device *device = peer_device->device;
2473
2474 info->peer_repl_state =
2475 max_t(enum drbd_conns, C_WF_REPORT_PARAMS, device->state.conn);
2476 info->peer_disk_state = device->state.pdsk;
2477 info->peer_resync_susp_user = device->state.user_isp;
2478 info->peer_resync_susp_peer = device->state.peer_isp;
2479 info->peer_resync_susp_dependency = device->state.aftr_isp;
2480 }
2481
2482 int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
2483 {
2484 struct connection_info connection_info;
2485 enum drbd_notification_type flags;
2486 unsigned int peer_devices = 0;
2487 struct drbd_config_context adm_ctx;
2488 struct drbd_peer_device *peer_device;
2489 struct net_conf *old_net_conf, *new_net_conf = NULL;
2490 struct crypto crypto = { };
2491 struct drbd_resource *resource;
2492 struct drbd_connection *connection;
2493 enum drbd_ret_code retcode;
2494 enum drbd_state_rv rv;
2495 int i;
2496 int err;
2497
2498 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
2499
2500 if (!adm_ctx.reply_skb)
2501 return retcode;
2502 if (retcode != NO_ERROR)
2503 goto out;
2504 if (!(adm_ctx.my_addr && adm_ctx.peer_addr)) {
2505 drbd_msg_put_info(adm_ctx.reply_skb, "connection endpoint(s) missing");
2506 retcode = ERR_INVALID_REQUEST;
2507 goto out;
2508 }
2509
2510
2511
2512
2513 for_each_resource(resource, &drbd_resources) {
2514 for_each_connection(connection, resource) {
2515 if (nla_len(adm_ctx.my_addr) == connection->my_addr_len &&
2516 !memcmp(nla_data(adm_ctx.my_addr), &connection->my_addr,
2517 connection->my_addr_len)) {
2518 retcode = ERR_LOCAL_ADDR;
2519 goto out;
2520 }
2521
2522 if (nla_len(adm_ctx.peer_addr) == connection->peer_addr_len &&
2523 !memcmp(nla_data(adm_ctx.peer_addr), &connection->peer_addr,
2524 connection->peer_addr_len)) {
2525 retcode = ERR_PEER_ADDR;
2526 goto out;
2527 }
2528 }
2529 }
2530
2531 mutex_lock(&adm_ctx.resource->adm_mutex);
2532 connection = first_connection(adm_ctx.resource);
2533 conn_reconfig_start(connection);
2534
2535 if (connection->cstate > C_STANDALONE) {
2536 retcode = ERR_NET_CONFIGURED;
2537 goto fail;
2538 }
2539
2540
2541 new_net_conf = kzalloc(sizeof(*new_net_conf), GFP_KERNEL);
2542 if (!new_net_conf) {
2543 retcode = ERR_NOMEM;
2544 goto fail;
2545 }
2546
2547 set_net_conf_defaults(new_net_conf);
2548
2549 err = net_conf_from_attrs(new_net_conf, info);
2550 if (err && err != -ENOMSG) {
2551 retcode = ERR_MANDATORY_TAG;
2552 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2553 goto fail;
2554 }
2555
2556 retcode = check_net_options(connection, new_net_conf);
2557 if (retcode != NO_ERROR)
2558 goto fail;
2559
2560 retcode = alloc_crypto(&crypto, new_net_conf);
2561 if (retcode != NO_ERROR)
2562 goto fail;
2563
2564 ((char *)new_net_conf->shared_secret)[SHARED_SECRET_MAX-1] = 0;
2565
2566 drbd_flush_workqueue(&connection->sender_work);
2567
2568 mutex_lock(&adm_ctx.resource->conf_update);
2569 old_net_conf = connection->net_conf;
2570 if (old_net_conf) {
2571 retcode = ERR_NET_CONFIGURED;
2572 mutex_unlock(&adm_ctx.resource->conf_update);
2573 goto fail;
2574 }
2575 rcu_assign_pointer(connection->net_conf, new_net_conf);
2576
2577 conn_free_crypto(connection);
2578 connection->cram_hmac_tfm = crypto.cram_hmac_tfm;
2579 connection->integrity_tfm = crypto.integrity_tfm;
2580 connection->csums_tfm = crypto.csums_tfm;
2581 connection->verify_tfm = crypto.verify_tfm;
2582
2583 connection->my_addr_len = nla_len(adm_ctx.my_addr);
2584 memcpy(&connection->my_addr, nla_data(adm_ctx.my_addr), connection->my_addr_len);
2585 connection->peer_addr_len = nla_len(adm_ctx.peer_addr);
2586 memcpy(&connection->peer_addr, nla_data(adm_ctx.peer_addr), connection->peer_addr_len);
2587
2588 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2589 peer_devices++;
2590 }
2591
2592 connection_to_info(&connection_info, connection);
2593 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
2594 mutex_lock(¬ification_mutex);
2595 notify_connection_state(NULL, 0, connection, &connection_info, NOTIFY_CREATE | flags);
2596 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2597 struct peer_device_info peer_device_info;
2598
2599 peer_device_to_info(&peer_device_info, peer_device);
2600 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
2601 notify_peer_device_state(NULL, 0, peer_device, &peer_device_info, NOTIFY_CREATE | flags);
2602 }
2603 mutex_unlock(¬ification_mutex);
2604 mutex_unlock(&adm_ctx.resource->conf_update);
2605
2606 rcu_read_lock();
2607 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2608 struct drbd_device *device = peer_device->device;
2609 device->send_cnt = 0;
2610 device->recv_cnt = 0;
2611 }
2612 rcu_read_unlock();
2613
2614 rv = conn_request_state(connection, NS(conn, C_UNCONNECTED), CS_VERBOSE);
2615
2616 conn_reconfig_done(connection);
2617 mutex_unlock(&adm_ctx.resource->adm_mutex);
2618 drbd_adm_finish(&adm_ctx, info, rv);
2619 return 0;
2620
2621 fail:
2622 free_crypto(&crypto);
2623 kfree(new_net_conf);
2624
2625 conn_reconfig_done(connection);
2626 mutex_unlock(&adm_ctx.resource->adm_mutex);
2627 out:
2628 drbd_adm_finish(&adm_ctx, info, retcode);
2629 return 0;
2630 }
2631
2632 static enum drbd_state_rv conn_try_disconnect(struct drbd_connection *connection, bool force)
2633 {
2634 enum drbd_conns cstate;
2635 enum drbd_state_rv rv;
2636
2637 repeat:
2638 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING),
2639 force ? CS_HARD : 0);
2640
2641 switch (rv) {
2642 case SS_NOTHING_TO_DO:
2643 break;
2644 case SS_ALREADY_STANDALONE:
2645 return SS_SUCCESS;
2646 case SS_PRIMARY_NOP:
2647
2648 rv = conn_request_state(connection, NS2(conn, C_DISCONNECTING, pdsk, D_OUTDATED), 0);
2649
2650 if (rv == SS_OUTDATE_WO_CONN)
2651 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING), CS_VERBOSE);
2652
2653 break;
2654 case SS_CW_FAILED_BY_PEER:
2655 spin_lock_irq(&connection->resource->req_lock);
2656 cstate = connection->cstate;
2657 spin_unlock_irq(&connection->resource->req_lock);
2658 if (cstate <= C_WF_CONNECTION)
2659 goto repeat;
2660
2661 rv = conn_request_state(connection, NS2(conn, C_DISCONNECTING,
2662 disk, D_OUTDATED), 0);
2663 if (rv == SS_IS_DISKLESS || rv == SS_LOWER_THAN_OUTDATED) {
2664 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING),
2665 CS_HARD);
2666 }
2667 break;
2668 default:;
2669
2670 }
2671
2672 if (rv >= SS_SUCCESS) {
2673 enum drbd_state_rv rv2;
2674
2675
2676
2677
2678 drbd_thread_stop(&connection->receiver);
2679
2680
2681
2682
2683
2684
2685
2686 rv2 = conn_request_state(connection, NS(conn, C_STANDALONE),
2687 CS_VERBOSE | CS_HARD);
2688 if (rv2 < SS_SUCCESS)
2689 drbd_err(connection,
2690 "unexpected rv2=%d in conn_try_disconnect()\n",
2691 rv2);
2692
2693
2694 }
2695 return rv;
2696 }
2697
2698 int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info)
2699 {
2700 struct drbd_config_context adm_ctx;
2701 struct disconnect_parms parms;
2702 struct drbd_connection *connection;
2703 enum drbd_state_rv rv;
2704 enum drbd_ret_code retcode;
2705 int err;
2706
2707 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_CONNECTION);
2708 if (!adm_ctx.reply_skb)
2709 return retcode;
2710 if (retcode != NO_ERROR)
2711 goto fail;
2712
2713 connection = adm_ctx.connection;
2714 memset(&parms, 0, sizeof(parms));
2715 if (info->attrs[DRBD_NLA_DISCONNECT_PARMS]) {
2716 err = disconnect_parms_from_attrs(&parms, info);
2717 if (err) {
2718 retcode = ERR_MANDATORY_TAG;
2719 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2720 goto fail;
2721 }
2722 }
2723
2724 mutex_lock(&adm_ctx.resource->adm_mutex);
2725 rv = conn_try_disconnect(connection, parms.force_disconnect);
2726 mutex_unlock(&adm_ctx.resource->adm_mutex);
2727 if (rv < SS_SUCCESS) {
2728 drbd_adm_finish(&adm_ctx, info, rv);
2729 return 0;
2730 }
2731 retcode = NO_ERROR;
2732 fail:
2733 drbd_adm_finish(&adm_ctx, info, retcode);
2734 return 0;
2735 }
2736
2737 void resync_after_online_grow(struct drbd_device *device)
2738 {
2739 int iass;
2740
2741 drbd_info(device, "Resync of new storage after online grow\n");
2742 if (device->state.role != device->state.peer)
2743 iass = (device->state.role == R_PRIMARY);
2744 else
2745 iass = test_bit(RESOLVE_CONFLICTS, &first_peer_device(device)->connection->flags);
2746
2747 if (iass)
2748 drbd_start_resync(device, C_SYNC_SOURCE);
2749 else
2750 _drbd_request_state(device, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE + CS_SERIALIZE);
2751 }
2752
2753 int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info)
2754 {
2755 struct drbd_config_context adm_ctx;
2756 struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
2757 struct resize_parms rs;
2758 struct drbd_device *device;
2759 enum drbd_ret_code retcode;
2760 enum determine_dev_size dd;
2761 bool change_al_layout = false;
2762 enum dds_flags ddsf;
2763 sector_t u_size;
2764 int err;
2765
2766 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
2767 if (!adm_ctx.reply_skb)
2768 return retcode;
2769 if (retcode != NO_ERROR)
2770 goto finish;
2771
2772 mutex_lock(&adm_ctx.resource->adm_mutex);
2773 device = adm_ctx.device;
2774 if (!get_ldev(device)) {
2775 retcode = ERR_NO_DISK;
2776 goto fail;
2777 }
2778
2779 memset(&rs, 0, sizeof(struct resize_parms));
2780 rs.al_stripes = device->ldev->md.al_stripes;
2781 rs.al_stripe_size = device->ldev->md.al_stripe_size_4k * 4;
2782 if (info->attrs[DRBD_NLA_RESIZE_PARMS]) {
2783 err = resize_parms_from_attrs(&rs, info);
2784 if (err) {
2785 retcode = ERR_MANDATORY_TAG;
2786 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2787 goto fail_ldev;
2788 }
2789 }
2790
2791 if (device->state.conn > C_CONNECTED) {
2792 retcode = ERR_RESIZE_RESYNC;
2793 goto fail_ldev;
2794 }
2795
2796 if (device->state.role == R_SECONDARY &&
2797 device->state.peer == R_SECONDARY) {
2798 retcode = ERR_NO_PRIMARY;
2799 goto fail_ldev;
2800 }
2801
2802 if (rs.no_resync && first_peer_device(device)->connection->agreed_pro_version < 93) {
2803 retcode = ERR_NEED_APV_93;
2804 goto fail_ldev;
2805 }
2806
2807 rcu_read_lock();
2808 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
2809 rcu_read_unlock();
2810 if (u_size != (sector_t)rs.resize_size) {
2811 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
2812 if (!new_disk_conf) {
2813 retcode = ERR_NOMEM;
2814 goto fail_ldev;
2815 }
2816 }
2817
2818 if (device->ldev->md.al_stripes != rs.al_stripes ||
2819 device->ldev->md.al_stripe_size_4k != rs.al_stripe_size / 4) {
2820 u32 al_size_k = rs.al_stripes * rs.al_stripe_size;
2821
2822 if (al_size_k > (16 * 1024 * 1024)) {
2823 retcode = ERR_MD_LAYOUT_TOO_BIG;
2824 goto fail_ldev;
2825 }
2826
2827 if (al_size_k < MD_32kB_SECT/2) {
2828 retcode = ERR_MD_LAYOUT_TOO_SMALL;
2829 goto fail_ldev;
2830 }
2831
2832 if (device->state.conn != C_CONNECTED && !rs.resize_force) {
2833 retcode = ERR_MD_LAYOUT_CONNECTED;
2834 goto fail_ldev;
2835 }
2836
2837 change_al_layout = true;
2838 }
2839
2840 if (device->ldev->known_size != drbd_get_capacity(device->ldev->backing_bdev))
2841 device->ldev->known_size = drbd_get_capacity(device->ldev->backing_bdev);
2842
2843 if (new_disk_conf) {
2844 mutex_lock(&device->resource->conf_update);
2845 old_disk_conf = device->ldev->disk_conf;
2846 *new_disk_conf = *old_disk_conf;
2847 new_disk_conf->disk_size = (sector_t)rs.resize_size;
2848 rcu_assign_pointer(device->ldev->disk_conf, new_disk_conf);
2849 mutex_unlock(&device->resource->conf_update);
2850 kvfree_rcu(old_disk_conf);
2851 new_disk_conf = NULL;
2852 }
2853
2854 ddsf = (rs.resize_force ? DDSF_FORCED : 0) | (rs.no_resync ? DDSF_NO_RESYNC : 0);
2855 dd = drbd_determine_dev_size(device, ddsf, change_al_layout ? &rs : NULL);
2856 drbd_md_sync(device);
2857 put_ldev(device);
2858 if (dd == DS_ERROR) {
2859 retcode = ERR_NOMEM_BITMAP;
2860 goto fail;
2861 } else if (dd == DS_ERROR_SPACE_MD) {
2862 retcode = ERR_MD_LAYOUT_NO_FIT;
2863 goto fail;
2864 } else if (dd == DS_ERROR_SHRINK) {
2865 retcode = ERR_IMPLICIT_SHRINK;
2866 goto fail;
2867 }
2868
2869 if (device->state.conn == C_CONNECTED) {
2870 if (dd == DS_GREW)
2871 set_bit(RESIZE_PENDING, &device->flags);
2872
2873 drbd_send_uuids(first_peer_device(device));
2874 drbd_send_sizes(first_peer_device(device), 1, ddsf);
2875 }
2876
2877 fail:
2878 mutex_unlock(&adm_ctx.resource->adm_mutex);
2879 finish:
2880 drbd_adm_finish(&adm_ctx, info, retcode);
2881 return 0;
2882
2883 fail_ldev:
2884 put_ldev(device);
2885 kfree(new_disk_conf);
2886 goto fail;
2887 }
2888
2889 int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info)
2890 {
2891 struct drbd_config_context adm_ctx;
2892 enum drbd_ret_code retcode;
2893 struct res_opts res_opts;
2894 int err;
2895
2896 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
2897 if (!adm_ctx.reply_skb)
2898 return retcode;
2899 if (retcode != NO_ERROR)
2900 goto fail;
2901
2902 res_opts = adm_ctx.resource->res_opts;
2903 if (should_set_defaults(info))
2904 set_res_opts_defaults(&res_opts);
2905
2906 err = res_opts_from_attrs(&res_opts, info);
2907 if (err && err != -ENOMSG) {
2908 retcode = ERR_MANDATORY_TAG;
2909 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2910 goto fail;
2911 }
2912
2913 mutex_lock(&adm_ctx.resource->adm_mutex);
2914 err = set_resource_options(adm_ctx.resource, &res_opts);
2915 if (err) {
2916 retcode = ERR_INVALID_REQUEST;
2917 if (err == -ENOMEM)
2918 retcode = ERR_NOMEM;
2919 }
2920 mutex_unlock(&adm_ctx.resource->adm_mutex);
2921
2922 fail:
2923 drbd_adm_finish(&adm_ctx, info, retcode);
2924 return 0;
2925 }
2926
2927 int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info)
2928 {
2929 struct drbd_config_context adm_ctx;
2930 struct drbd_device *device;
2931 int retcode;
2932
2933 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
2934 if (!adm_ctx.reply_skb)
2935 return retcode;
2936 if (retcode != NO_ERROR)
2937 goto out;
2938
2939 device = adm_ctx.device;
2940 if (!get_ldev(device)) {
2941 retcode = ERR_NO_DISK;
2942 goto out;
2943 }
2944
2945 mutex_lock(&adm_ctx.resource->adm_mutex);
2946
2947
2948
2949
2950 drbd_suspend_io(device);
2951 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
2952 drbd_flush_workqueue(&first_peer_device(device)->connection->sender_work);
2953
2954
2955
2956
2957
2958 if (device->state.conn == C_STANDALONE && device->state.role == R_SECONDARY) {
2959 retcode = drbd_request_state(device, NS(disk, D_INCONSISTENT));
2960 if (retcode >= SS_SUCCESS) {
2961 if (drbd_bitmap_io(device, &drbd_bmio_set_n_write,
2962 "set_n_write from invalidate", BM_LOCKED_MASK))
2963 retcode = ERR_IO_MD_DISK;
2964 }
2965 } else
2966 retcode = drbd_request_state(device, NS(conn, C_STARTING_SYNC_T));
2967 drbd_resume_io(device);
2968 mutex_unlock(&adm_ctx.resource->adm_mutex);
2969 put_ldev(device);
2970 out:
2971 drbd_adm_finish(&adm_ctx, info, retcode);
2972 return 0;
2973 }
2974
2975 static int drbd_adm_simple_request_state(struct sk_buff *skb, struct genl_info *info,
2976 union drbd_state mask, union drbd_state val)
2977 {
2978 struct drbd_config_context adm_ctx;
2979 enum drbd_ret_code retcode;
2980
2981 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
2982 if (!adm_ctx.reply_skb)
2983 return retcode;
2984 if (retcode != NO_ERROR)
2985 goto out;
2986
2987 mutex_lock(&adm_ctx.resource->adm_mutex);
2988 retcode = drbd_request_state(adm_ctx.device, mask, val);
2989 mutex_unlock(&adm_ctx.resource->adm_mutex);
2990 out:
2991 drbd_adm_finish(&adm_ctx, info, retcode);
2992 return 0;
2993 }
2994
2995 static int drbd_bmio_set_susp_al(struct drbd_device *device) __must_hold(local)
2996 {
2997 int rv;
2998
2999 rv = drbd_bmio_set_n_write(device);
3000 drbd_suspend_al(device);
3001 return rv;
3002 }
3003
3004 int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info)
3005 {
3006 struct drbd_config_context adm_ctx;
3007 int retcode;
3008 struct drbd_device *device;
3009
3010 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3011 if (!adm_ctx.reply_skb)
3012 return retcode;
3013 if (retcode != NO_ERROR)
3014 goto out;
3015
3016 device = adm_ctx.device;
3017 if (!get_ldev(device)) {
3018 retcode = ERR_NO_DISK;
3019 goto out;
3020 }
3021
3022 mutex_lock(&adm_ctx.resource->adm_mutex);
3023
3024
3025
3026
3027 drbd_suspend_io(device);
3028 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
3029 drbd_flush_workqueue(&first_peer_device(device)->connection->sender_work);
3030
3031
3032
3033
3034
3035 if (device->state.conn == C_STANDALONE && device->state.role == R_PRIMARY) {
3036
3037
3038 retcode = drbd_request_state(device, NS(pdsk, D_INCONSISTENT));
3039 if (retcode >= SS_SUCCESS) {
3040 if (drbd_bitmap_io(device, &drbd_bmio_set_susp_al,
3041 "set_n_write from invalidate_peer",
3042 BM_LOCKED_SET_ALLOWED))
3043 retcode = ERR_IO_MD_DISK;
3044 }
3045 } else
3046 retcode = drbd_request_state(device, NS(conn, C_STARTING_SYNC_S));
3047 drbd_resume_io(device);
3048 mutex_unlock(&adm_ctx.resource->adm_mutex);
3049 put_ldev(device);
3050 out:
3051 drbd_adm_finish(&adm_ctx, info, retcode);
3052 return 0;
3053 }
3054
3055 int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info)
3056 {
3057 struct drbd_config_context adm_ctx;
3058 enum drbd_ret_code retcode;
3059
3060 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3061 if (!adm_ctx.reply_skb)
3062 return retcode;
3063 if (retcode != NO_ERROR)
3064 goto out;
3065
3066 mutex_lock(&adm_ctx.resource->adm_mutex);
3067 if (drbd_request_state(adm_ctx.device, NS(user_isp, 1)) == SS_NOTHING_TO_DO)
3068 retcode = ERR_PAUSE_IS_SET;
3069 mutex_unlock(&adm_ctx.resource->adm_mutex);
3070 out:
3071 drbd_adm_finish(&adm_ctx, info, retcode);
3072 return 0;
3073 }
3074
3075 int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info)
3076 {
3077 struct drbd_config_context adm_ctx;
3078 union drbd_dev_state s;
3079 enum drbd_ret_code retcode;
3080
3081 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3082 if (!adm_ctx.reply_skb)
3083 return retcode;
3084 if (retcode != NO_ERROR)
3085 goto out;
3086
3087 mutex_lock(&adm_ctx.resource->adm_mutex);
3088 if (drbd_request_state(adm_ctx.device, NS(user_isp, 0)) == SS_NOTHING_TO_DO) {
3089 s = adm_ctx.device->state;
3090 if (s.conn == C_PAUSED_SYNC_S || s.conn == C_PAUSED_SYNC_T) {
3091 retcode = s.aftr_isp ? ERR_PIC_AFTER_DEP :
3092 s.peer_isp ? ERR_PIC_PEER_DEP : ERR_PAUSE_IS_CLEAR;
3093 } else {
3094 retcode = ERR_PAUSE_IS_CLEAR;
3095 }
3096 }
3097 mutex_unlock(&adm_ctx.resource->adm_mutex);
3098 out:
3099 drbd_adm_finish(&adm_ctx, info, retcode);
3100 return 0;
3101 }
3102
3103 int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info)
3104 {
3105 return drbd_adm_simple_request_state(skb, info, NS(susp, 1));
3106 }
3107
3108 int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info)
3109 {
3110 struct drbd_config_context adm_ctx;
3111 struct drbd_device *device;
3112 int retcode;
3113
3114 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3115 if (!adm_ctx.reply_skb)
3116 return retcode;
3117 if (retcode != NO_ERROR)
3118 goto out;
3119
3120 mutex_lock(&adm_ctx.resource->adm_mutex);
3121 device = adm_ctx.device;
3122 if (test_bit(NEW_CUR_UUID, &device->flags)) {
3123 if (get_ldev_if_state(device, D_ATTACHING)) {
3124 drbd_uuid_new_current(device);
3125 put_ldev(device);
3126 } else {
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142 u64 val;
3143 get_random_bytes(&val, sizeof(u64));
3144 drbd_set_ed_uuid(device, val);
3145 drbd_warn(device, "Resumed without access to data; please tear down before attempting to re-configure.\n");
3146 }
3147 clear_bit(NEW_CUR_UUID, &device->flags);
3148 }
3149 drbd_suspend_io(device);
3150 retcode = drbd_request_state(device, NS3(susp, 0, susp_nod, 0, susp_fen, 0));
3151 if (retcode == SS_SUCCESS) {
3152 if (device->state.conn < C_CONNECTED)
3153 tl_clear(first_peer_device(device)->connection);
3154 if (device->state.disk == D_DISKLESS || device->state.disk == D_FAILED)
3155 tl_restart(first_peer_device(device)->connection, FAIL_FROZEN_DISK_IO);
3156 }
3157 drbd_resume_io(device);
3158 mutex_unlock(&adm_ctx.resource->adm_mutex);
3159 out:
3160 drbd_adm_finish(&adm_ctx, info, retcode);
3161 return 0;
3162 }
3163
3164 int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info)
3165 {
3166 return drbd_adm_simple_request_state(skb, info, NS(disk, D_OUTDATED));
3167 }
3168
3169 static int nla_put_drbd_cfg_context(struct sk_buff *skb,
3170 struct drbd_resource *resource,
3171 struct drbd_connection *connection,
3172 struct drbd_device *device)
3173 {
3174 struct nlattr *nla;
3175 nla = nla_nest_start_noflag(skb, DRBD_NLA_CFG_CONTEXT);
3176 if (!nla)
3177 goto nla_put_failure;
3178 if (device &&
3179 nla_put_u32(skb, T_ctx_volume, device->vnr))
3180 goto nla_put_failure;
3181 if (nla_put_string(skb, T_ctx_resource_name, resource->name))
3182 goto nla_put_failure;
3183 if (connection) {
3184 if (connection->my_addr_len &&
3185 nla_put(skb, T_ctx_my_addr, connection->my_addr_len, &connection->my_addr))
3186 goto nla_put_failure;
3187 if (connection->peer_addr_len &&
3188 nla_put(skb, T_ctx_peer_addr, connection->peer_addr_len, &connection->peer_addr))
3189 goto nla_put_failure;
3190 }
3191 nla_nest_end(skb, nla);
3192 return 0;
3193
3194 nla_put_failure:
3195 if (nla)
3196 nla_nest_cancel(skb, nla);
3197 return -EMSGSIZE;
3198 }
3199
3200
3201
3202
3203
3204
3205 static struct nlattr *find_cfg_context_attr(const struct nlmsghdr *nlh, int attr)
3206 {
3207 const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
3208 const int maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
3209 struct nlattr *nla;
3210
3211 nla = nla_find(nlmsg_attrdata(nlh, hdrlen), nlmsg_attrlen(nlh, hdrlen),
3212 DRBD_NLA_CFG_CONTEXT);
3213 if (!nla)
3214 return NULL;
3215 return drbd_nla_find_nested(maxtype, nla, __nla_type(attr));
3216 }
3217
3218 static void resource_to_info(struct resource_info *, struct drbd_resource *);
3219
3220 int drbd_adm_dump_resources(struct sk_buff *skb, struct netlink_callback *cb)
3221 {
3222 struct drbd_genlmsghdr *dh;
3223 struct drbd_resource *resource;
3224 struct resource_info resource_info;
3225 struct resource_statistics resource_statistics;
3226 int err;
3227
3228 rcu_read_lock();
3229 if (cb->args[0]) {
3230 for_each_resource_rcu(resource, &drbd_resources)
3231 if (resource == (struct drbd_resource *)cb->args[0])
3232 goto found_resource;
3233 err = 0;
3234 goto out;
3235 }
3236 resource = list_entry(&drbd_resources,
3237 struct drbd_resource, resources);
3238
3239 found_resource:
3240 list_for_each_entry_continue_rcu(resource, &drbd_resources, resources) {
3241 goto put_result;
3242 }
3243 err = 0;
3244 goto out;
3245
3246 put_result:
3247 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3248 cb->nlh->nlmsg_seq, &drbd_genl_family,
3249 NLM_F_MULTI, DRBD_ADM_GET_RESOURCES);
3250 err = -ENOMEM;
3251 if (!dh)
3252 goto out;
3253 dh->minor = -1U;
3254 dh->ret_code = NO_ERROR;
3255 err = nla_put_drbd_cfg_context(skb, resource, NULL, NULL);
3256 if (err)
3257 goto out;
3258 err = res_opts_to_skb(skb, &resource->res_opts, !capable(CAP_SYS_ADMIN));
3259 if (err)
3260 goto out;
3261 resource_to_info(&resource_info, resource);
3262 err = resource_info_to_skb(skb, &resource_info, !capable(CAP_SYS_ADMIN));
3263 if (err)
3264 goto out;
3265 resource_statistics.res_stat_write_ordering = resource->write_ordering;
3266 err = resource_statistics_to_skb(skb, &resource_statistics, !capable(CAP_SYS_ADMIN));
3267 if (err)
3268 goto out;
3269 cb->args[0] = (long)resource;
3270 genlmsg_end(skb, dh);
3271 err = 0;
3272
3273 out:
3274 rcu_read_unlock();
3275 if (err)
3276 return err;
3277 return skb->len;
3278 }
3279
3280 static void device_to_statistics(struct device_statistics *s,
3281 struct drbd_device *device)
3282 {
3283 memset(s, 0, sizeof(*s));
3284 s->dev_upper_blocked = !may_inc_ap_bio(device);
3285 if (get_ldev(device)) {
3286 struct drbd_md *md = &device->ldev->md;
3287 u64 *history_uuids = (u64 *)s->history_uuids;
3288 int n;
3289
3290 spin_lock_irq(&md->uuid_lock);
3291 s->dev_current_uuid = md->uuid[UI_CURRENT];
3292 BUILD_BUG_ON(sizeof(s->history_uuids) < UI_HISTORY_END - UI_HISTORY_START + 1);
3293 for (n = 0; n < UI_HISTORY_END - UI_HISTORY_START + 1; n++)
3294 history_uuids[n] = md->uuid[UI_HISTORY_START + n];
3295 for (; n < HISTORY_UUIDS; n++)
3296 history_uuids[n] = 0;
3297 s->history_uuids_len = HISTORY_UUIDS;
3298 spin_unlock_irq(&md->uuid_lock);
3299
3300 s->dev_disk_flags = md->flags;
3301 put_ldev(device);
3302 }
3303 s->dev_size = get_capacity(device->vdisk);
3304 s->dev_read = device->read_cnt;
3305 s->dev_write = device->writ_cnt;
3306 s->dev_al_writes = device->al_writ_cnt;
3307 s->dev_bm_writes = device->bm_writ_cnt;
3308 s->dev_upper_pending = atomic_read(&device->ap_bio_cnt);
3309 s->dev_lower_pending = atomic_read(&device->local_cnt);
3310 s->dev_al_suspended = test_bit(AL_SUSPENDED, &device->flags);
3311 s->dev_exposed_data_uuid = device->ed_uuid;
3312 }
3313
3314 static int put_resource_in_arg0(struct netlink_callback *cb, int holder_nr)
3315 {
3316 if (cb->args[0]) {
3317 struct drbd_resource *resource =
3318 (struct drbd_resource *)cb->args[0];
3319 kref_put(&resource->kref, drbd_destroy_resource);
3320 }
3321
3322 return 0;
3323 }
3324
3325 int drbd_adm_dump_devices_done(struct netlink_callback *cb) {
3326 return put_resource_in_arg0(cb, 7);
3327 }
3328
3329 static void device_to_info(struct device_info *, struct drbd_device *);
3330
3331 int drbd_adm_dump_devices(struct sk_buff *skb, struct netlink_callback *cb)
3332 {
3333 struct nlattr *resource_filter;
3334 struct drbd_resource *resource;
3335 struct drbd_device *device;
3336 int minor, err, retcode;
3337 struct drbd_genlmsghdr *dh;
3338 struct device_info device_info;
3339 struct device_statistics device_statistics;
3340 struct idr *idr_to_search;
3341
3342 resource = (struct drbd_resource *)cb->args[0];
3343 if (!cb->args[0] && !cb->args[1]) {
3344 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3345 if (resource_filter) {
3346 retcode = ERR_RES_NOT_KNOWN;
3347 resource = drbd_find_resource(nla_data(resource_filter));
3348 if (!resource)
3349 goto put_result;
3350 cb->args[0] = (long)resource;
3351 }
3352 }
3353
3354 rcu_read_lock();
3355 minor = cb->args[1];
3356 idr_to_search = resource ? &resource->devices : &drbd_devices;
3357 device = idr_get_next(idr_to_search, &minor);
3358 if (!device) {
3359 err = 0;
3360 goto out;
3361 }
3362 idr_for_each_entry_continue(idr_to_search, device, minor) {
3363 retcode = NO_ERROR;
3364 goto put_result;
3365 }
3366 err = 0;
3367 goto out;
3368
3369 put_result:
3370 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3371 cb->nlh->nlmsg_seq, &drbd_genl_family,
3372 NLM_F_MULTI, DRBD_ADM_GET_DEVICES);
3373 err = -ENOMEM;
3374 if (!dh)
3375 goto out;
3376 dh->ret_code = retcode;
3377 dh->minor = -1U;
3378 if (retcode == NO_ERROR) {
3379 dh->minor = device->minor;
3380 err = nla_put_drbd_cfg_context(skb, device->resource, NULL, device);
3381 if (err)
3382 goto out;
3383 if (get_ldev(device)) {
3384 struct disk_conf *disk_conf =
3385 rcu_dereference(device->ldev->disk_conf);
3386
3387 err = disk_conf_to_skb(skb, disk_conf, !capable(CAP_SYS_ADMIN));
3388 put_ldev(device);
3389 if (err)
3390 goto out;
3391 }
3392 device_to_info(&device_info, device);
3393 err = device_info_to_skb(skb, &device_info, !capable(CAP_SYS_ADMIN));
3394 if (err)
3395 goto out;
3396
3397 device_to_statistics(&device_statistics, device);
3398 err = device_statistics_to_skb(skb, &device_statistics, !capable(CAP_SYS_ADMIN));
3399 if (err)
3400 goto out;
3401 cb->args[1] = minor + 1;
3402 }
3403 genlmsg_end(skb, dh);
3404 err = 0;
3405
3406 out:
3407 rcu_read_unlock();
3408 if (err)
3409 return err;
3410 return skb->len;
3411 }
3412
3413 int drbd_adm_dump_connections_done(struct netlink_callback *cb)
3414 {
3415 return put_resource_in_arg0(cb, 6);
3416 }
3417
3418 enum { SINGLE_RESOURCE, ITERATE_RESOURCES };
3419
3420 int drbd_adm_dump_connections(struct sk_buff *skb, struct netlink_callback *cb)
3421 {
3422 struct nlattr *resource_filter;
3423 struct drbd_resource *resource = NULL, *next_resource;
3424 struct drbd_connection *connection;
3425 int err = 0, retcode;
3426 struct drbd_genlmsghdr *dh;
3427 struct connection_info connection_info;
3428 struct connection_statistics connection_statistics;
3429
3430 rcu_read_lock();
3431 resource = (struct drbd_resource *)cb->args[0];
3432 if (!cb->args[0]) {
3433 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3434 if (resource_filter) {
3435 retcode = ERR_RES_NOT_KNOWN;
3436 resource = drbd_find_resource(nla_data(resource_filter));
3437 if (!resource)
3438 goto put_result;
3439 cb->args[0] = (long)resource;
3440 cb->args[1] = SINGLE_RESOURCE;
3441 }
3442 }
3443 if (!resource) {
3444 if (list_empty(&drbd_resources))
3445 goto out;
3446 resource = list_first_entry(&drbd_resources, struct drbd_resource, resources);
3447 kref_get(&resource->kref);
3448 cb->args[0] = (long)resource;
3449 cb->args[1] = ITERATE_RESOURCES;
3450 }
3451
3452 next_resource:
3453 rcu_read_unlock();
3454 mutex_lock(&resource->conf_update);
3455 rcu_read_lock();
3456 if (cb->args[2]) {
3457 for_each_connection_rcu(connection, resource)
3458 if (connection == (struct drbd_connection *)cb->args[2])
3459 goto found_connection;
3460
3461 goto no_more_connections;
3462 }
3463 connection = list_entry(&resource->connections, struct drbd_connection, connections);
3464
3465 found_connection:
3466 list_for_each_entry_continue_rcu(connection, &resource->connections, connections) {
3467 if (!has_net_conf(connection))
3468 continue;
3469 retcode = NO_ERROR;
3470 goto put_result;
3471 }
3472
3473 no_more_connections:
3474 if (cb->args[1] == ITERATE_RESOURCES) {
3475 for_each_resource_rcu(next_resource, &drbd_resources) {
3476 if (next_resource == resource)
3477 goto found_resource;
3478 }
3479
3480 }
3481 goto out;
3482
3483 found_resource:
3484 list_for_each_entry_continue_rcu(next_resource, &drbd_resources, resources) {
3485 mutex_unlock(&resource->conf_update);
3486 kref_put(&resource->kref, drbd_destroy_resource);
3487 resource = next_resource;
3488 kref_get(&resource->kref);
3489 cb->args[0] = (long)resource;
3490 cb->args[2] = 0;
3491 goto next_resource;
3492 }
3493 goto out;
3494
3495 put_result:
3496 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3497 cb->nlh->nlmsg_seq, &drbd_genl_family,
3498 NLM_F_MULTI, DRBD_ADM_GET_CONNECTIONS);
3499 err = -ENOMEM;
3500 if (!dh)
3501 goto out;
3502 dh->ret_code = retcode;
3503 dh->minor = -1U;
3504 if (retcode == NO_ERROR) {
3505 struct net_conf *net_conf;
3506
3507 err = nla_put_drbd_cfg_context(skb, resource, connection, NULL);
3508 if (err)
3509 goto out;
3510 net_conf = rcu_dereference(connection->net_conf);
3511 if (net_conf) {
3512 err = net_conf_to_skb(skb, net_conf, !capable(CAP_SYS_ADMIN));
3513 if (err)
3514 goto out;
3515 }
3516 connection_to_info(&connection_info, connection);
3517 err = connection_info_to_skb(skb, &connection_info, !capable(CAP_SYS_ADMIN));
3518 if (err)
3519 goto out;
3520 connection_statistics.conn_congested = test_bit(NET_CONGESTED, &connection->flags);
3521 err = connection_statistics_to_skb(skb, &connection_statistics, !capable(CAP_SYS_ADMIN));
3522 if (err)
3523 goto out;
3524 cb->args[2] = (long)connection;
3525 }
3526 genlmsg_end(skb, dh);
3527 err = 0;
3528
3529 out:
3530 rcu_read_unlock();
3531 if (resource)
3532 mutex_unlock(&resource->conf_update);
3533 if (err)
3534 return err;
3535 return skb->len;
3536 }
3537
3538 enum mdf_peer_flag {
3539 MDF_PEER_CONNECTED = 1 << 0,
3540 MDF_PEER_OUTDATED = 1 << 1,
3541 MDF_PEER_FENCING = 1 << 2,
3542 MDF_PEER_FULL_SYNC = 1 << 3,
3543 };
3544
3545 static void peer_device_to_statistics(struct peer_device_statistics *s,
3546 struct drbd_peer_device *peer_device)
3547 {
3548 struct drbd_device *device = peer_device->device;
3549
3550 memset(s, 0, sizeof(*s));
3551 s->peer_dev_received = device->recv_cnt;
3552 s->peer_dev_sent = device->send_cnt;
3553 s->peer_dev_pending = atomic_read(&device->ap_pending_cnt) +
3554 atomic_read(&device->rs_pending_cnt);
3555 s->peer_dev_unacked = atomic_read(&device->unacked_cnt);
3556 s->peer_dev_out_of_sync = drbd_bm_total_weight(device) << (BM_BLOCK_SHIFT - 9);
3557 s->peer_dev_resync_failed = device->rs_failed << (BM_BLOCK_SHIFT - 9);
3558 if (get_ldev(device)) {
3559 struct drbd_md *md = &device->ldev->md;
3560
3561 spin_lock_irq(&md->uuid_lock);
3562 s->peer_dev_bitmap_uuid = md->uuid[UI_BITMAP];
3563 spin_unlock_irq(&md->uuid_lock);
3564 s->peer_dev_flags =
3565 (drbd_md_test_flag(device->ldev, MDF_CONNECTED_IND) ?
3566 MDF_PEER_CONNECTED : 0) +
3567 (drbd_md_test_flag(device->ldev, MDF_CONSISTENT) &&
3568 !drbd_md_test_flag(device->ldev, MDF_WAS_UP_TO_DATE) ?
3569 MDF_PEER_OUTDATED : 0) +
3570
3571 (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC) ?
3572 MDF_PEER_FULL_SYNC : 0);
3573 put_ldev(device);
3574 }
3575 }
3576
3577 int drbd_adm_dump_peer_devices_done(struct netlink_callback *cb)
3578 {
3579 return put_resource_in_arg0(cb, 9);
3580 }
3581
3582 int drbd_adm_dump_peer_devices(struct sk_buff *skb, struct netlink_callback *cb)
3583 {
3584 struct nlattr *resource_filter;
3585 struct drbd_resource *resource;
3586 struct drbd_device *device;
3587 struct drbd_peer_device *peer_device = NULL;
3588 int minor, err, retcode;
3589 struct drbd_genlmsghdr *dh;
3590 struct idr *idr_to_search;
3591
3592 resource = (struct drbd_resource *)cb->args[0];
3593 if (!cb->args[0] && !cb->args[1]) {
3594 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3595 if (resource_filter) {
3596 retcode = ERR_RES_NOT_KNOWN;
3597 resource = drbd_find_resource(nla_data(resource_filter));
3598 if (!resource)
3599 goto put_result;
3600 }
3601 cb->args[0] = (long)resource;
3602 }
3603
3604 rcu_read_lock();
3605 minor = cb->args[1];
3606 idr_to_search = resource ? &resource->devices : &drbd_devices;
3607 device = idr_find(idr_to_search, minor);
3608 if (!device) {
3609 next_device:
3610 minor++;
3611 cb->args[2] = 0;
3612 device = idr_get_next(idr_to_search, &minor);
3613 if (!device) {
3614 err = 0;
3615 goto out;
3616 }
3617 }
3618 if (cb->args[2]) {
3619 for_each_peer_device(peer_device, device)
3620 if (peer_device == (struct drbd_peer_device *)cb->args[2])
3621 goto found_peer_device;
3622
3623 goto next_device;
3624 }
3625
3626 peer_device = list_entry(&device->peer_devices, struct drbd_peer_device, peer_devices);
3627
3628 found_peer_device:
3629 list_for_each_entry_continue_rcu(peer_device, &device->peer_devices, peer_devices) {
3630 if (!has_net_conf(peer_device->connection))
3631 continue;
3632 retcode = NO_ERROR;
3633 goto put_result;
3634 }
3635 goto next_device;
3636
3637 put_result:
3638 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3639 cb->nlh->nlmsg_seq, &drbd_genl_family,
3640 NLM_F_MULTI, DRBD_ADM_GET_PEER_DEVICES);
3641 err = -ENOMEM;
3642 if (!dh)
3643 goto out;
3644 dh->ret_code = retcode;
3645 dh->minor = -1U;
3646 if (retcode == NO_ERROR) {
3647 struct peer_device_info peer_device_info;
3648 struct peer_device_statistics peer_device_statistics;
3649
3650 dh->minor = minor;
3651 err = nla_put_drbd_cfg_context(skb, device->resource, peer_device->connection, device);
3652 if (err)
3653 goto out;
3654 peer_device_to_info(&peer_device_info, peer_device);
3655 err = peer_device_info_to_skb(skb, &peer_device_info, !capable(CAP_SYS_ADMIN));
3656 if (err)
3657 goto out;
3658 peer_device_to_statistics(&peer_device_statistics, peer_device);
3659 err = peer_device_statistics_to_skb(skb, &peer_device_statistics, !capable(CAP_SYS_ADMIN));
3660 if (err)
3661 goto out;
3662 cb->args[1] = minor;
3663 cb->args[2] = (long)peer_device;
3664 }
3665 genlmsg_end(skb, dh);
3666 err = 0;
3667
3668 out:
3669 rcu_read_unlock();
3670 if (err)
3671 return err;
3672 return skb->len;
3673 }
3674
3675
3676
3677 static struct drbd_connection *the_only_connection(struct drbd_resource *resource)
3678 {
3679 struct list_head *connections = &resource->connections;
3680
3681 if (list_empty(connections) || connections->next->next != connections)
3682 return NULL;
3683 return list_first_entry(&resource->connections, struct drbd_connection, connections);
3684 }
3685
3686 static int nla_put_status_info(struct sk_buff *skb, struct drbd_device *device,
3687 const struct sib_info *sib)
3688 {
3689 struct drbd_resource *resource = device->resource;
3690 struct state_info *si = NULL;
3691 struct nlattr *nla;
3692 int got_ldev;
3693 int err = 0;
3694 int exclude_sensitive;
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707 exclude_sensitive = sib || !capable(CAP_SYS_ADMIN);
3708
3709 got_ldev = get_ldev(device);
3710
3711
3712
3713 if (nla_put_drbd_cfg_context(skb, resource, the_only_connection(resource), device))
3714 goto nla_put_failure;
3715
3716 if (res_opts_to_skb(skb, &device->resource->res_opts, exclude_sensitive))
3717 goto nla_put_failure;
3718
3719 rcu_read_lock();
3720 if (got_ldev) {
3721 struct disk_conf *disk_conf;
3722
3723 disk_conf = rcu_dereference(device->ldev->disk_conf);
3724 err = disk_conf_to_skb(skb, disk_conf, exclude_sensitive);
3725 }
3726 if (!err) {
3727 struct net_conf *nc;
3728
3729 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
3730 if (nc)
3731 err = net_conf_to_skb(skb, nc, exclude_sensitive);
3732 }
3733 rcu_read_unlock();
3734 if (err)
3735 goto nla_put_failure;
3736
3737 nla = nla_nest_start_noflag(skb, DRBD_NLA_STATE_INFO);
3738 if (!nla)
3739 goto nla_put_failure;
3740 if (nla_put_u32(skb, T_sib_reason, sib ? sib->sib_reason : SIB_GET_STATUS_REPLY) ||
3741 nla_put_u32(skb, T_current_state, device->state.i) ||
3742 nla_put_u64_0pad(skb, T_ed_uuid, device->ed_uuid) ||
3743 nla_put_u64_0pad(skb, T_capacity, get_capacity(device->vdisk)) ||
3744 nla_put_u64_0pad(skb, T_send_cnt, device->send_cnt) ||
3745 nla_put_u64_0pad(skb, T_recv_cnt, device->recv_cnt) ||
3746 nla_put_u64_0pad(skb, T_read_cnt, device->read_cnt) ||
3747 nla_put_u64_0pad(skb, T_writ_cnt, device->writ_cnt) ||
3748 nla_put_u64_0pad(skb, T_al_writ_cnt, device->al_writ_cnt) ||
3749 nla_put_u64_0pad(skb, T_bm_writ_cnt, device->bm_writ_cnt) ||
3750 nla_put_u32(skb, T_ap_bio_cnt, atomic_read(&device->ap_bio_cnt)) ||
3751 nla_put_u32(skb, T_ap_pending_cnt, atomic_read(&device->ap_pending_cnt)) ||
3752 nla_put_u32(skb, T_rs_pending_cnt, atomic_read(&device->rs_pending_cnt)))
3753 goto nla_put_failure;
3754
3755 if (got_ldev) {
3756 int err;
3757
3758 spin_lock_irq(&device->ldev->md.uuid_lock);
3759 err = nla_put(skb, T_uuids, sizeof(si->uuids), device->ldev->md.uuid);
3760 spin_unlock_irq(&device->ldev->md.uuid_lock);
3761
3762 if (err)
3763 goto nla_put_failure;
3764
3765 if (nla_put_u32(skb, T_disk_flags, device->ldev->md.flags) ||
3766 nla_put_u64_0pad(skb, T_bits_total, drbd_bm_bits(device)) ||
3767 nla_put_u64_0pad(skb, T_bits_oos,
3768 drbd_bm_total_weight(device)))
3769 goto nla_put_failure;
3770 if (C_SYNC_SOURCE <= device->state.conn &&
3771 C_PAUSED_SYNC_T >= device->state.conn) {
3772 if (nla_put_u64_0pad(skb, T_bits_rs_total,
3773 device->rs_total) ||
3774 nla_put_u64_0pad(skb, T_bits_rs_failed,
3775 device->rs_failed))
3776 goto nla_put_failure;
3777 }
3778 }
3779
3780 if (sib) {
3781 switch(sib->sib_reason) {
3782 case SIB_SYNC_PROGRESS:
3783 case SIB_GET_STATUS_REPLY:
3784 break;
3785 case SIB_STATE_CHANGE:
3786 if (nla_put_u32(skb, T_prev_state, sib->os.i) ||
3787 nla_put_u32(skb, T_new_state, sib->ns.i))
3788 goto nla_put_failure;
3789 break;
3790 case SIB_HELPER_POST:
3791 if (nla_put_u32(skb, T_helper_exit_code,
3792 sib->helper_exit_code))
3793 goto nla_put_failure;
3794 fallthrough;
3795 case SIB_HELPER_PRE:
3796 if (nla_put_string(skb, T_helper, sib->helper_name))
3797 goto nla_put_failure;
3798 break;
3799 }
3800 }
3801 nla_nest_end(skb, nla);
3802
3803 if (0)
3804 nla_put_failure:
3805 err = -EMSGSIZE;
3806 if (got_ldev)
3807 put_ldev(device);
3808 return err;
3809 }
3810
3811 int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info)
3812 {
3813 struct drbd_config_context adm_ctx;
3814 enum drbd_ret_code retcode;
3815 int err;
3816
3817 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3818 if (!adm_ctx.reply_skb)
3819 return retcode;
3820 if (retcode != NO_ERROR)
3821 goto out;
3822
3823 err = nla_put_status_info(adm_ctx.reply_skb, adm_ctx.device, NULL);
3824 if (err) {
3825 nlmsg_free(adm_ctx.reply_skb);
3826 return err;
3827 }
3828 out:
3829 drbd_adm_finish(&adm_ctx, info, retcode);
3830 return 0;
3831 }
3832
3833 static int get_one_status(struct sk_buff *skb, struct netlink_callback *cb)
3834 {
3835 struct drbd_device *device;
3836 struct drbd_genlmsghdr *dh;
3837 struct drbd_resource *pos = (struct drbd_resource *)cb->args[0];
3838 struct drbd_resource *resource = NULL;
3839 struct drbd_resource *tmp;
3840 unsigned volume = cb->args[1];
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864 rcu_read_lock();
3865
3866 for_each_resource_rcu(tmp, &drbd_resources) {
3867 if (pos == NULL) {
3868
3869 pos = tmp;
3870 resource = pos;
3871 break;
3872 }
3873 if (tmp == pos) {
3874 resource = pos;
3875 break;
3876 }
3877 }
3878 if (resource) {
3879 next_resource:
3880 device = idr_get_next(&resource->devices, &volume);
3881 if (!device) {
3882
3883
3884 pos = list_entry_rcu(resource->resources.next,
3885 struct drbd_resource, resources);
3886
3887 if (volume != 0) {
3888
3889
3890
3891 if (&pos->resources == &drbd_resources || cb->args[2])
3892 goto out;
3893 volume = 0;
3894 resource = pos;
3895 goto next_resource;
3896 }
3897 }
3898
3899 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3900 cb->nlh->nlmsg_seq, &drbd_genl_family,
3901 NLM_F_MULTI, DRBD_ADM_GET_STATUS);
3902 if (!dh)
3903 goto out;
3904
3905 if (!device) {
3906
3907
3908
3909 struct drbd_connection *connection;
3910
3911 dh->minor = -1U;
3912 dh->ret_code = NO_ERROR;
3913 connection = the_only_connection(resource);
3914 if (nla_put_drbd_cfg_context(skb, resource, connection, NULL))
3915 goto cancel;
3916 if (connection) {
3917 struct net_conf *nc;
3918
3919 nc = rcu_dereference(connection->net_conf);
3920 if (nc && net_conf_to_skb(skb, nc, 1) != 0)
3921 goto cancel;
3922 }
3923 goto done;
3924 }
3925
3926 D_ASSERT(device, device->vnr == volume);
3927 D_ASSERT(device, device->resource == resource);
3928
3929 dh->minor = device_to_minor(device);
3930 dh->ret_code = NO_ERROR;
3931
3932 if (nla_put_status_info(skb, device, NULL)) {
3933 cancel:
3934 genlmsg_cancel(skb, dh);
3935 goto out;
3936 }
3937 done:
3938 genlmsg_end(skb, dh);
3939 }
3940
3941 out:
3942 rcu_read_unlock();
3943
3944 cb->args[0] = (long)pos;
3945 cb->args[1] = (pos == resource) ? volume + 1 : 0;
3946
3947
3948
3949 return skb->len;
3950 }
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962 int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb)
3963 {
3964 const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
3965 struct nlattr *nla;
3966 const char *resource_name;
3967 struct drbd_resource *resource;
3968 int maxtype;
3969
3970
3971 if (cb->args[0]) {
3972
3973
3974 if (cb->args[2] && cb->args[2] != cb->args[0])
3975 return 0;
3976 goto dump;
3977 }
3978
3979
3980
3981 nla = nla_find(nlmsg_attrdata(cb->nlh, hdrlen),
3982 nlmsg_attrlen(cb->nlh, hdrlen),
3983 DRBD_NLA_CFG_CONTEXT);
3984
3985
3986 if (!nla)
3987 goto dump;
3988 maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
3989 nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name));
3990 if (IS_ERR(nla))
3991 return PTR_ERR(nla);
3992
3993 if (!nla)
3994 return -EINVAL;
3995 resource_name = nla_data(nla);
3996 if (!*resource_name)
3997 return -ENODEV;
3998 resource = drbd_find_resource(resource_name);
3999 if (!resource)
4000 return -ENODEV;
4001
4002 kref_put(&resource->kref, drbd_destroy_resource);
4003
4004
4005
4006 cb->args[0] = (long)resource;
4007
4008 cb->args[2] = (long)resource;
4009
4010 dump:
4011 return get_one_status(skb, cb);
4012 }
4013
4014 int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info)
4015 {
4016 struct drbd_config_context adm_ctx;
4017 enum drbd_ret_code retcode;
4018 struct timeout_parms tp;
4019 int err;
4020
4021 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4022 if (!adm_ctx.reply_skb)
4023 return retcode;
4024 if (retcode != NO_ERROR)
4025 goto out;
4026
4027 tp.timeout_type =
4028 adm_ctx.device->state.pdsk == D_OUTDATED ? UT_PEER_OUTDATED :
4029 test_bit(USE_DEGR_WFC_T, &adm_ctx.device->flags) ? UT_DEGRADED :
4030 UT_DEFAULT;
4031
4032 err = timeout_parms_to_priv_skb(adm_ctx.reply_skb, &tp);
4033 if (err) {
4034 nlmsg_free(adm_ctx.reply_skb);
4035 return err;
4036 }
4037 out:
4038 drbd_adm_finish(&adm_ctx, info, retcode);
4039 return 0;
4040 }
4041
4042 int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info)
4043 {
4044 struct drbd_config_context adm_ctx;
4045 struct drbd_device *device;
4046 enum drbd_ret_code retcode;
4047 struct start_ov_parms parms;
4048
4049 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4050 if (!adm_ctx.reply_skb)
4051 return retcode;
4052 if (retcode != NO_ERROR)
4053 goto out;
4054
4055 device = adm_ctx.device;
4056
4057
4058 parms.ov_start_sector = device->ov_start_sector;
4059 parms.ov_stop_sector = ULLONG_MAX;
4060 if (info->attrs[DRBD_NLA_START_OV_PARMS]) {
4061 int err = start_ov_parms_from_attrs(&parms, info);
4062 if (err) {
4063 retcode = ERR_MANDATORY_TAG;
4064 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
4065 goto out;
4066 }
4067 }
4068 mutex_lock(&adm_ctx.resource->adm_mutex);
4069
4070
4071 device->ov_start_sector = parms.ov_start_sector & ~(BM_SECT_PER_BIT-1);
4072 device->ov_stop_sector = parms.ov_stop_sector;
4073
4074
4075
4076 drbd_suspend_io(device);
4077 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
4078 retcode = drbd_request_state(device, NS(conn, C_VERIFY_S));
4079 drbd_resume_io(device);
4080
4081 mutex_unlock(&adm_ctx.resource->adm_mutex);
4082 out:
4083 drbd_adm_finish(&adm_ctx, info, retcode);
4084 return 0;
4085 }
4086
4087
4088 int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info)
4089 {
4090 struct drbd_config_context adm_ctx;
4091 struct drbd_device *device;
4092 enum drbd_ret_code retcode;
4093 int skip_initial_sync = 0;
4094 int err;
4095 struct new_c_uuid_parms args;
4096
4097 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4098 if (!adm_ctx.reply_skb)
4099 return retcode;
4100 if (retcode != NO_ERROR)
4101 goto out_nolock;
4102
4103 device = adm_ctx.device;
4104 memset(&args, 0, sizeof(args));
4105 if (info->attrs[DRBD_NLA_NEW_C_UUID_PARMS]) {
4106 err = new_c_uuid_parms_from_attrs(&args, info);
4107 if (err) {
4108 retcode = ERR_MANDATORY_TAG;
4109 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
4110 goto out_nolock;
4111 }
4112 }
4113
4114 mutex_lock(&adm_ctx.resource->adm_mutex);
4115 mutex_lock(device->state_mutex);
4116
4117 if (!get_ldev(device)) {
4118 retcode = ERR_NO_DISK;
4119 goto out;
4120 }
4121
4122
4123 if (device->state.conn == C_CONNECTED &&
4124 first_peer_device(device)->connection->agreed_pro_version >= 90 &&
4125 device->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED && args.clear_bm) {
4126 drbd_info(device, "Preparing to skip initial sync\n");
4127 skip_initial_sync = 1;
4128 } else if (device->state.conn != C_STANDALONE) {
4129 retcode = ERR_CONNECTED;
4130 goto out_dec;
4131 }
4132
4133 drbd_uuid_set(device, UI_BITMAP, 0);
4134 drbd_uuid_new_current(device);
4135
4136 if (args.clear_bm) {
4137 err = drbd_bitmap_io(device, &drbd_bmio_clear_n_write,
4138 "clear_n_write from new_c_uuid", BM_LOCKED_MASK);
4139 if (err) {
4140 drbd_err(device, "Writing bitmap failed with %d\n", err);
4141 retcode = ERR_IO_MD_DISK;
4142 }
4143 if (skip_initial_sync) {
4144 drbd_send_uuids_skip_initial_sync(first_peer_device(device));
4145 _drbd_uuid_set(device, UI_BITMAP, 0);
4146 drbd_print_uuids(device, "cleared bitmap UUID");
4147 spin_lock_irq(&device->resource->req_lock);
4148 _drbd_set_state(_NS2(device, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
4149 CS_VERBOSE, NULL);
4150 spin_unlock_irq(&device->resource->req_lock);
4151 }
4152 }
4153
4154 drbd_md_sync(device);
4155 out_dec:
4156 put_ldev(device);
4157 out:
4158 mutex_unlock(device->state_mutex);
4159 mutex_unlock(&adm_ctx.resource->adm_mutex);
4160 out_nolock:
4161 drbd_adm_finish(&adm_ctx, info, retcode);
4162 return 0;
4163 }
4164
4165 static enum drbd_ret_code
4166 drbd_check_resource_name(struct drbd_config_context *adm_ctx)
4167 {
4168 const char *name = adm_ctx->resource_name;
4169 if (!name || !name[0]) {
4170 drbd_msg_put_info(adm_ctx->reply_skb, "resource name missing");
4171 return ERR_MANDATORY_TAG;
4172 }
4173
4174
4175 if (strchr(name, '/')) {
4176 drbd_msg_put_info(adm_ctx->reply_skb, "invalid resource name");
4177 return ERR_INVALID_REQUEST;
4178 }
4179 return NO_ERROR;
4180 }
4181
4182 static void resource_to_info(struct resource_info *info,
4183 struct drbd_resource *resource)
4184 {
4185 info->res_role = conn_highest_role(first_connection(resource));
4186 info->res_susp = resource->susp;
4187 info->res_susp_nod = resource->susp_nod;
4188 info->res_susp_fen = resource->susp_fen;
4189 }
4190
4191 int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info)
4192 {
4193 struct drbd_connection *connection;
4194 struct drbd_config_context adm_ctx;
4195 enum drbd_ret_code retcode;
4196 struct res_opts res_opts;
4197 int err;
4198
4199 retcode = drbd_adm_prepare(&adm_ctx, skb, info, 0);
4200 if (!adm_ctx.reply_skb)
4201 return retcode;
4202 if (retcode != NO_ERROR)
4203 goto out;
4204
4205 set_res_opts_defaults(&res_opts);
4206 err = res_opts_from_attrs(&res_opts, info);
4207 if (err && err != -ENOMSG) {
4208 retcode = ERR_MANDATORY_TAG;
4209 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
4210 goto out;
4211 }
4212
4213 retcode = drbd_check_resource_name(&adm_ctx);
4214 if (retcode != NO_ERROR)
4215 goto out;
4216
4217 if (adm_ctx.resource) {
4218 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL) {
4219 retcode = ERR_INVALID_REQUEST;
4220 drbd_msg_put_info(adm_ctx.reply_skb, "resource exists");
4221 }
4222
4223 goto out;
4224 }
4225
4226
4227 mutex_lock(&resources_mutex);
4228 connection = conn_create(adm_ctx.resource_name, &res_opts);
4229 mutex_unlock(&resources_mutex);
4230
4231 if (connection) {
4232 struct resource_info resource_info;
4233
4234 mutex_lock(¬ification_mutex);
4235 resource_to_info(&resource_info, connection->resource);
4236 notify_resource_state(NULL, 0, connection->resource,
4237 &resource_info, NOTIFY_CREATE);
4238 mutex_unlock(¬ification_mutex);
4239 } else
4240 retcode = ERR_NOMEM;
4241
4242 out:
4243 drbd_adm_finish(&adm_ctx, info, retcode);
4244 return 0;
4245 }
4246
4247 static void device_to_info(struct device_info *info,
4248 struct drbd_device *device)
4249 {
4250 info->dev_disk_state = device->state.disk;
4251 }
4252
4253
4254 int drbd_adm_new_minor(struct sk_buff *skb, struct genl_info *info)
4255 {
4256 struct drbd_config_context adm_ctx;
4257 struct drbd_genlmsghdr *dh = info->userhdr;
4258 enum drbd_ret_code retcode;
4259
4260 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
4261 if (!adm_ctx.reply_skb)
4262 return retcode;
4263 if (retcode != NO_ERROR)
4264 goto out;
4265
4266 if (dh->minor > MINORMASK) {
4267 drbd_msg_put_info(adm_ctx.reply_skb, "requested minor out of range");
4268 retcode = ERR_INVALID_REQUEST;
4269 goto out;
4270 }
4271 if (adm_ctx.volume > DRBD_VOLUME_MAX) {
4272 drbd_msg_put_info(adm_ctx.reply_skb, "requested volume id out of range");
4273 retcode = ERR_INVALID_REQUEST;
4274 goto out;
4275 }
4276
4277
4278
4279 if (adm_ctx.device) {
4280 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
4281 retcode = ERR_MINOR_OR_VOLUME_EXISTS;
4282
4283 goto out;
4284 }
4285
4286 mutex_lock(&adm_ctx.resource->adm_mutex);
4287 retcode = drbd_create_device(&adm_ctx, dh->minor);
4288 if (retcode == NO_ERROR) {
4289 struct drbd_device *device;
4290 struct drbd_peer_device *peer_device;
4291 struct device_info info;
4292 unsigned int peer_devices = 0;
4293 enum drbd_notification_type flags;
4294
4295 device = minor_to_device(dh->minor);
4296 for_each_peer_device(peer_device, device) {
4297 if (!has_net_conf(peer_device->connection))
4298 continue;
4299 peer_devices++;
4300 }
4301
4302 device_to_info(&info, device);
4303 mutex_lock(¬ification_mutex);
4304 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
4305 notify_device_state(NULL, 0, device, &info, NOTIFY_CREATE | flags);
4306 for_each_peer_device(peer_device, device) {
4307 struct peer_device_info peer_device_info;
4308
4309 if (!has_net_conf(peer_device->connection))
4310 continue;
4311 peer_device_to_info(&peer_device_info, peer_device);
4312 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
4313 notify_peer_device_state(NULL, 0, peer_device, &peer_device_info,
4314 NOTIFY_CREATE | flags);
4315 }
4316 mutex_unlock(¬ification_mutex);
4317 }
4318 mutex_unlock(&adm_ctx.resource->adm_mutex);
4319 out:
4320 drbd_adm_finish(&adm_ctx, info, retcode);
4321 return 0;
4322 }
4323
4324 static enum drbd_ret_code adm_del_minor(struct drbd_device *device)
4325 {
4326 struct drbd_peer_device *peer_device;
4327
4328 if (device->state.disk == D_DISKLESS &&
4329
4330
4331
4332 device->state.role == R_SECONDARY) {
4333 struct drbd_connection *connection =
4334 first_connection(device->resource);
4335
4336 _drbd_request_state(device, NS(conn, C_WF_REPORT_PARAMS),
4337 CS_VERBOSE + CS_WAIT_COMPLETE);
4338
4339
4340
4341
4342 if (get_t_state(&connection->worker) == RUNNING)
4343 drbd_flush_workqueue(&connection->sender_work);
4344
4345 mutex_lock(¬ification_mutex);
4346 for_each_peer_device(peer_device, device) {
4347 if (!has_net_conf(peer_device->connection))
4348 continue;
4349 notify_peer_device_state(NULL, 0, peer_device, NULL,
4350 NOTIFY_DESTROY | NOTIFY_CONTINUES);
4351 }
4352 notify_device_state(NULL, 0, device, NULL, NOTIFY_DESTROY);
4353 mutex_unlock(¬ification_mutex);
4354
4355 drbd_delete_device(device);
4356 return NO_ERROR;
4357 } else
4358 return ERR_MINOR_CONFIGURED;
4359 }
4360
4361 int drbd_adm_del_minor(struct sk_buff *skb, struct genl_info *info)
4362 {
4363 struct drbd_config_context adm_ctx;
4364 enum drbd_ret_code retcode;
4365
4366 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4367 if (!adm_ctx.reply_skb)
4368 return retcode;
4369 if (retcode != NO_ERROR)
4370 goto out;
4371
4372 mutex_lock(&adm_ctx.resource->adm_mutex);
4373 retcode = adm_del_minor(adm_ctx.device);
4374 mutex_unlock(&adm_ctx.resource->adm_mutex);
4375 out:
4376 drbd_adm_finish(&adm_ctx, info, retcode);
4377 return 0;
4378 }
4379
4380 static int adm_del_resource(struct drbd_resource *resource)
4381 {
4382 struct drbd_connection *connection;
4383
4384 for_each_connection(connection, resource) {
4385 if (connection->cstate > C_STANDALONE)
4386 return ERR_NET_CONFIGURED;
4387 }
4388 if (!idr_is_empty(&resource->devices))
4389 return ERR_RES_IN_USE;
4390
4391
4392
4393
4394 mutex_lock(¬ification_mutex);
4395 notify_resource_state(NULL, 0, resource, NULL, NOTIFY_DESTROY);
4396 mutex_unlock(¬ification_mutex);
4397
4398 mutex_lock(&resources_mutex);
4399 list_del_rcu(&resource->resources);
4400 mutex_unlock(&resources_mutex);
4401
4402
4403 list_for_each_entry(connection, &resource->connections, connections)
4404 drbd_thread_stop(&connection->worker);
4405 synchronize_rcu();
4406 drbd_free_resource(resource);
4407 return NO_ERROR;
4408 }
4409
4410 int drbd_adm_down(struct sk_buff *skb, struct genl_info *info)
4411 {
4412 struct drbd_config_context adm_ctx;
4413 struct drbd_resource *resource;
4414 struct drbd_connection *connection;
4415 struct drbd_device *device;
4416 int retcode;
4417 unsigned i;
4418
4419 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
4420 if (!adm_ctx.reply_skb)
4421 return retcode;
4422 if (retcode != NO_ERROR)
4423 goto finish;
4424
4425 resource = adm_ctx.resource;
4426 mutex_lock(&resource->adm_mutex);
4427
4428 for_each_connection(connection, resource) {
4429 struct drbd_peer_device *peer_device;
4430
4431 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
4432 retcode = drbd_set_role(peer_device->device, R_SECONDARY, 0);
4433 if (retcode < SS_SUCCESS) {
4434 drbd_msg_put_info(adm_ctx.reply_skb, "failed to demote");
4435 goto out;
4436 }
4437 }
4438
4439 retcode = conn_try_disconnect(connection, 0);
4440 if (retcode < SS_SUCCESS) {
4441 drbd_msg_put_info(adm_ctx.reply_skb, "failed to disconnect");
4442 goto out;
4443 }
4444 }
4445
4446
4447 idr_for_each_entry(&resource->devices, device, i) {
4448 retcode = adm_detach(device, 0);
4449 if (retcode < SS_SUCCESS || retcode > NO_ERROR) {
4450 drbd_msg_put_info(adm_ctx.reply_skb, "failed to detach");
4451 goto out;
4452 }
4453 }
4454
4455
4456 idr_for_each_entry(&resource->devices, device, i) {
4457 retcode = adm_del_minor(device);
4458 if (retcode != NO_ERROR) {
4459
4460 drbd_msg_put_info(adm_ctx.reply_skb, "failed to delete volume");
4461 goto out;
4462 }
4463 }
4464
4465 retcode = adm_del_resource(resource);
4466 out:
4467 mutex_unlock(&resource->adm_mutex);
4468 finish:
4469 drbd_adm_finish(&adm_ctx, info, retcode);
4470 return 0;
4471 }
4472
4473 int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info)
4474 {
4475 struct drbd_config_context adm_ctx;
4476 struct drbd_resource *resource;
4477 enum drbd_ret_code retcode;
4478
4479 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
4480 if (!adm_ctx.reply_skb)
4481 return retcode;
4482 if (retcode != NO_ERROR)
4483 goto finish;
4484 resource = adm_ctx.resource;
4485
4486 mutex_lock(&resource->adm_mutex);
4487 retcode = adm_del_resource(resource);
4488 mutex_unlock(&resource->adm_mutex);
4489 finish:
4490 drbd_adm_finish(&adm_ctx, info, retcode);
4491 return 0;
4492 }
4493
4494 void drbd_bcast_event(struct drbd_device *device, const struct sib_info *sib)
4495 {
4496 struct sk_buff *msg;
4497 struct drbd_genlmsghdr *d_out;
4498 unsigned seq;
4499 int err = -ENOMEM;
4500
4501 seq = atomic_inc_return(&drbd_genl_seq);
4502 msg = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4503 if (!msg)
4504 goto failed;
4505
4506 err = -EMSGSIZE;
4507 d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT);
4508 if (!d_out)
4509 goto nla_put_failure;
4510 d_out->minor = device_to_minor(device);
4511 d_out->ret_code = NO_ERROR;
4512
4513 if (nla_put_status_info(msg, device, sib))
4514 goto nla_put_failure;
4515 genlmsg_end(msg, d_out);
4516 err = drbd_genl_multicast_events(msg, GFP_NOWAIT);
4517
4518 if (err && err != -ESRCH)
4519 goto failed;
4520
4521 return;
4522
4523 nla_put_failure:
4524 nlmsg_free(msg);
4525 failed:
4526 drbd_err(device, "Error %d while broadcasting event. "
4527 "Event seq:%u sib_reason:%u\n",
4528 err, seq, sib->sib_reason);
4529 }
4530
4531 static int nla_put_notification_header(struct sk_buff *msg,
4532 enum drbd_notification_type type)
4533 {
4534 struct drbd_notification_header nh = {
4535 .nh_type = type,
4536 };
4537
4538 return drbd_notification_header_to_skb(msg, &nh, true);
4539 }
4540
4541 int notify_resource_state(struct sk_buff *skb,
4542 unsigned int seq,
4543 struct drbd_resource *resource,
4544 struct resource_info *resource_info,
4545 enum drbd_notification_type type)
4546 {
4547 struct resource_statistics resource_statistics;
4548 struct drbd_genlmsghdr *dh;
4549 bool multicast = false;
4550 int err;
4551
4552 if (!skb) {
4553 seq = atomic_inc_return(¬ify_genl_seq);
4554 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4555 err = -ENOMEM;
4556 if (!skb)
4557 goto failed;
4558 multicast = true;
4559 }
4560
4561 err = -EMSGSIZE;
4562 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_RESOURCE_STATE);
4563 if (!dh)
4564 goto nla_put_failure;
4565 dh->minor = -1U;
4566 dh->ret_code = NO_ERROR;
4567 if (nla_put_drbd_cfg_context(skb, resource, NULL, NULL) ||
4568 nla_put_notification_header(skb, type) ||
4569 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4570 resource_info_to_skb(skb, resource_info, true)))
4571 goto nla_put_failure;
4572 resource_statistics.res_stat_write_ordering = resource->write_ordering;
4573 err = resource_statistics_to_skb(skb, &resource_statistics, !capable(CAP_SYS_ADMIN));
4574 if (err)
4575 goto nla_put_failure;
4576 genlmsg_end(skb, dh);
4577 if (multicast) {
4578 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4579
4580 if (err && err != -ESRCH)
4581 goto failed;
4582 }
4583 return 0;
4584
4585 nla_put_failure:
4586 nlmsg_free(skb);
4587 failed:
4588 drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
4589 err, seq);
4590 return err;
4591 }
4592
4593 int notify_device_state(struct sk_buff *skb,
4594 unsigned int seq,
4595 struct drbd_device *device,
4596 struct device_info *device_info,
4597 enum drbd_notification_type type)
4598 {
4599 struct device_statistics device_statistics;
4600 struct drbd_genlmsghdr *dh;
4601 bool multicast = false;
4602 int err;
4603
4604 if (!skb) {
4605 seq = atomic_inc_return(¬ify_genl_seq);
4606 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4607 err = -ENOMEM;
4608 if (!skb)
4609 goto failed;
4610 multicast = true;
4611 }
4612
4613 err = -EMSGSIZE;
4614 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_DEVICE_STATE);
4615 if (!dh)
4616 goto nla_put_failure;
4617 dh->minor = device->minor;
4618 dh->ret_code = NO_ERROR;
4619 if (nla_put_drbd_cfg_context(skb, device->resource, NULL, device) ||
4620 nla_put_notification_header(skb, type) ||
4621 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4622 device_info_to_skb(skb, device_info, true)))
4623 goto nla_put_failure;
4624 device_to_statistics(&device_statistics, device);
4625 device_statistics_to_skb(skb, &device_statistics, !capable(CAP_SYS_ADMIN));
4626 genlmsg_end(skb, dh);
4627 if (multicast) {
4628 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4629
4630 if (err && err != -ESRCH)
4631 goto failed;
4632 }
4633 return 0;
4634
4635 nla_put_failure:
4636 nlmsg_free(skb);
4637 failed:
4638 drbd_err(device, "Error %d while broadcasting event. Event seq:%u\n",
4639 err, seq);
4640 return err;
4641 }
4642
4643 int notify_connection_state(struct sk_buff *skb,
4644 unsigned int seq,
4645 struct drbd_connection *connection,
4646 struct connection_info *connection_info,
4647 enum drbd_notification_type type)
4648 {
4649 struct connection_statistics connection_statistics;
4650 struct drbd_genlmsghdr *dh;
4651 bool multicast = false;
4652 int err;
4653
4654 if (!skb) {
4655 seq = atomic_inc_return(¬ify_genl_seq);
4656 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4657 err = -ENOMEM;
4658 if (!skb)
4659 goto failed;
4660 multicast = true;
4661 }
4662
4663 err = -EMSGSIZE;
4664 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_CONNECTION_STATE);
4665 if (!dh)
4666 goto nla_put_failure;
4667 dh->minor = -1U;
4668 dh->ret_code = NO_ERROR;
4669 if (nla_put_drbd_cfg_context(skb, connection->resource, connection, NULL) ||
4670 nla_put_notification_header(skb, type) ||
4671 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4672 connection_info_to_skb(skb, connection_info, true)))
4673 goto nla_put_failure;
4674 connection_statistics.conn_congested = test_bit(NET_CONGESTED, &connection->flags);
4675 connection_statistics_to_skb(skb, &connection_statistics, !capable(CAP_SYS_ADMIN));
4676 genlmsg_end(skb, dh);
4677 if (multicast) {
4678 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4679
4680 if (err && err != -ESRCH)
4681 goto failed;
4682 }
4683 return 0;
4684
4685 nla_put_failure:
4686 nlmsg_free(skb);
4687 failed:
4688 drbd_err(connection, "Error %d while broadcasting event. Event seq:%u\n",
4689 err, seq);
4690 return err;
4691 }
4692
4693 int notify_peer_device_state(struct sk_buff *skb,
4694 unsigned int seq,
4695 struct drbd_peer_device *peer_device,
4696 struct peer_device_info *peer_device_info,
4697 enum drbd_notification_type type)
4698 {
4699 struct peer_device_statistics peer_device_statistics;
4700 struct drbd_resource *resource = peer_device->device->resource;
4701 struct drbd_genlmsghdr *dh;
4702 bool multicast = false;
4703 int err;
4704
4705 if (!skb) {
4706 seq = atomic_inc_return(¬ify_genl_seq);
4707 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4708 err = -ENOMEM;
4709 if (!skb)
4710 goto failed;
4711 multicast = true;
4712 }
4713
4714 err = -EMSGSIZE;
4715 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_PEER_DEVICE_STATE);
4716 if (!dh)
4717 goto nla_put_failure;
4718 dh->minor = -1U;
4719 dh->ret_code = NO_ERROR;
4720 if (nla_put_drbd_cfg_context(skb, resource, peer_device->connection, peer_device->device) ||
4721 nla_put_notification_header(skb, type) ||
4722 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4723 peer_device_info_to_skb(skb, peer_device_info, true)))
4724 goto nla_put_failure;
4725 peer_device_to_statistics(&peer_device_statistics, peer_device);
4726 peer_device_statistics_to_skb(skb, &peer_device_statistics, !capable(CAP_SYS_ADMIN));
4727 genlmsg_end(skb, dh);
4728 if (multicast) {
4729 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4730
4731 if (err && err != -ESRCH)
4732 goto failed;
4733 }
4734 return 0;
4735
4736 nla_put_failure:
4737 nlmsg_free(skb);
4738 failed:
4739 drbd_err(peer_device, "Error %d while broadcasting event. Event seq:%u\n",
4740 err, seq);
4741 return err;
4742 }
4743
4744 void notify_helper(enum drbd_notification_type type,
4745 struct drbd_device *device, struct drbd_connection *connection,
4746 const char *name, int status)
4747 {
4748 struct drbd_resource *resource = device ? device->resource : connection->resource;
4749 struct drbd_helper_info helper_info;
4750 unsigned int seq = atomic_inc_return(¬ify_genl_seq);
4751 struct sk_buff *skb = NULL;
4752 struct drbd_genlmsghdr *dh;
4753 int err;
4754
4755 strlcpy(helper_info.helper_name, name, sizeof(helper_info.helper_name));
4756 helper_info.helper_name_len = min(strlen(name), sizeof(helper_info.helper_name));
4757 helper_info.helper_status = status;
4758
4759 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4760 err = -ENOMEM;
4761 if (!skb)
4762 goto fail;
4763
4764 err = -EMSGSIZE;
4765 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_HELPER);
4766 if (!dh)
4767 goto fail;
4768 dh->minor = device ? device->minor : -1;
4769 dh->ret_code = NO_ERROR;
4770 mutex_lock(¬ification_mutex);
4771 if (nla_put_drbd_cfg_context(skb, resource, connection, device) ||
4772 nla_put_notification_header(skb, type) ||
4773 drbd_helper_info_to_skb(skb, &helper_info, true))
4774 goto unlock_fail;
4775 genlmsg_end(skb, dh);
4776 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4777 skb = NULL;
4778
4779 if (err && err != -ESRCH)
4780 goto unlock_fail;
4781 mutex_unlock(¬ification_mutex);
4782 return;
4783
4784 unlock_fail:
4785 mutex_unlock(¬ification_mutex);
4786 fail:
4787 nlmsg_free(skb);
4788 drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
4789 err, seq);
4790 }
4791
4792 static int notify_initial_state_done(struct sk_buff *skb, unsigned int seq)
4793 {
4794 struct drbd_genlmsghdr *dh;
4795 int err;
4796
4797 err = -EMSGSIZE;
4798 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_INITIAL_STATE_DONE);
4799 if (!dh)
4800 goto nla_put_failure;
4801 dh->minor = -1U;
4802 dh->ret_code = NO_ERROR;
4803 if (nla_put_notification_header(skb, NOTIFY_EXISTS))
4804 goto nla_put_failure;
4805 genlmsg_end(skb, dh);
4806 return 0;
4807
4808 nla_put_failure:
4809 nlmsg_free(skb);
4810 pr_err("Error %d sending event. Event seq:%u\n", err, seq);
4811 return err;
4812 }
4813
4814 static void free_state_changes(struct list_head *list)
4815 {
4816 while (!list_empty(list)) {
4817 struct drbd_state_change *state_change =
4818 list_first_entry(list, struct drbd_state_change, list);
4819 list_del(&state_change->list);
4820 forget_state_change(state_change);
4821 }
4822 }
4823
4824 static unsigned int notifications_for_state_change(struct drbd_state_change *state_change)
4825 {
4826 return 1 +
4827 state_change->n_connections +
4828 state_change->n_devices +
4829 state_change->n_devices * state_change->n_connections;
4830 }
4831
4832 static int get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
4833 {
4834 struct drbd_state_change *state_change = (struct drbd_state_change *)cb->args[0];
4835 unsigned int seq = cb->args[2];
4836 unsigned int n;
4837 enum drbd_notification_type flags = 0;
4838 int err = 0;
4839
4840
4841
4842
4843
4844
4845 cb->args[5]--;
4846 if (cb->args[5] == 1) {
4847 err = notify_initial_state_done(skb, seq);
4848 goto out;
4849 }
4850 n = cb->args[4]++;
4851 if (cb->args[4] < cb->args[3])
4852 flags |= NOTIFY_CONTINUES;
4853 if (n < 1) {
4854 err = notify_resource_state_change(skb, seq, state_change->resource,
4855 NOTIFY_EXISTS | flags);
4856 goto next;
4857 }
4858 n--;
4859 if (n < state_change->n_connections) {
4860 err = notify_connection_state_change(skb, seq, &state_change->connections[n],
4861 NOTIFY_EXISTS | flags);
4862 goto next;
4863 }
4864 n -= state_change->n_connections;
4865 if (n < state_change->n_devices) {
4866 err = notify_device_state_change(skb, seq, &state_change->devices[n],
4867 NOTIFY_EXISTS | flags);
4868 goto next;
4869 }
4870 n -= state_change->n_devices;
4871 if (n < state_change->n_devices * state_change->n_connections) {
4872 err = notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n],
4873 NOTIFY_EXISTS | flags);
4874 goto next;
4875 }
4876
4877 next:
4878 if (cb->args[4] == cb->args[3]) {
4879 struct drbd_state_change *next_state_change =
4880 list_entry(state_change->list.next,
4881 struct drbd_state_change, list);
4882 cb->args[0] = (long)next_state_change;
4883 cb->args[3] = notifications_for_state_change(next_state_change);
4884 cb->args[4] = 0;
4885 }
4886 out:
4887 if (err)
4888 return err;
4889 else
4890 return skb->len;
4891 }
4892
4893 int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
4894 {
4895 struct drbd_resource *resource;
4896 LIST_HEAD(head);
4897
4898 if (cb->args[5] >= 1) {
4899 if (cb->args[5] > 1)
4900 return get_initial_state(skb, cb);
4901 if (cb->args[0]) {
4902 struct drbd_state_change *state_change =
4903 (struct drbd_state_change *)cb->args[0];
4904
4905
4906 list_add(&head, &state_change->list);
4907 free_state_changes(&head);
4908 }
4909 return 0;
4910 }
4911
4912 cb->args[5] = 2;
4913 mutex_lock(&resources_mutex);
4914 for_each_resource(resource, &drbd_resources) {
4915 struct drbd_state_change *state_change;
4916
4917 state_change = remember_old_state(resource, GFP_KERNEL);
4918 if (!state_change) {
4919 if (!list_empty(&head))
4920 free_state_changes(&head);
4921 mutex_unlock(&resources_mutex);
4922 return -ENOMEM;
4923 }
4924 copy_old_to_new_state_change(state_change);
4925 list_add_tail(&state_change->list, &head);
4926 cb->args[5] += notifications_for_state_change(state_change);
4927 }
4928 mutex_unlock(&resources_mutex);
4929
4930 if (!list_empty(&head)) {
4931 struct drbd_state_change *state_change =
4932 list_entry(head.next, struct drbd_state_change, list);
4933 cb->args[0] = (long)state_change;
4934 cb->args[3] = notifications_for_state_change(state_change);
4935 list_del(&head);
4936 }
4937
4938 cb->args[2] = cb->nlh->nlmsg_seq;
4939 return get_initial_state(skb, cb);
4940 }