1
2
3
4
5
6
7
8
9
10
11
12
13
14#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
16#include <linux/module.h>
17#include <linux/drbd.h>
18#include <linux/in.h>
19#include <linux/fs.h>
20#include <linux/file.h>
21#include <linux/slab.h>
22#include <linux/blkpg.h>
23#include <linux/cpumask.h>
24#include "drbd_int.h"
25#include "drbd_protocol.h"
26#include "drbd_req.h"
27#include "drbd_state_change.h"
28#include <asm/unaligned.h>
29#include <linux/drbd_limits.h>
30#include <linux/kthread.h>
31
32#include <net/genetlink.h>
33
34
35
36
37
38int drbd_adm_new_minor(struct sk_buff *skb, struct genl_info *info);
39int drbd_adm_del_minor(struct sk_buff *skb, struct genl_info *info);
40
41int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info);
42int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info);
43int drbd_adm_down(struct sk_buff *skb, struct genl_info *info);
44
45int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info);
46int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info);
47int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info);
48int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info);
49int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info);
50int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info);
51int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info);
52int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info);
53int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info);
54int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info);
55int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info);
56int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info);
57int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info);
58int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info);
59int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info);
60int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info);
61int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info);
62int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info);
63int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info);
64int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info);
65
66int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb);
67int drbd_adm_dump_resources(struct sk_buff *skb, struct netlink_callback *cb);
68int drbd_adm_dump_devices(struct sk_buff *skb, struct netlink_callback *cb);
69int drbd_adm_dump_devices_done(struct netlink_callback *cb);
70int drbd_adm_dump_connections(struct sk_buff *skb, struct netlink_callback *cb);
71int drbd_adm_dump_connections_done(struct netlink_callback *cb);
72int drbd_adm_dump_peer_devices(struct sk_buff *skb, struct netlink_callback *cb);
73int drbd_adm_dump_peer_devices_done(struct netlink_callback *cb);
74int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb);
75
76#include <linux/drbd_genl_api.h>
77#include "drbd_nla.h"
78#include <linux/genl_magic_func.h>
79
80static atomic_t drbd_genl_seq = ATOMIC_INIT(2);
81static atomic_t notify_genl_seq = ATOMIC_INIT(2);
82
83DEFINE_MUTEX(notification_mutex);
84
85
86static char *drbd_m_holder = "Hands off! this is DRBD's meta data device.";
87
88static void drbd_adm_send_reply(struct sk_buff *skb, struct genl_info *info)
89{
90 genlmsg_end(skb, genlmsg_data(nlmsg_data(nlmsg_hdr(skb))));
91 if (genlmsg_reply(skb, info))
92 pr_err("error sending genl reply\n");
93}
94
95
96
97static int drbd_msg_put_info(struct sk_buff *skb, const char *info)
98{
99 struct nlattr *nla;
100 int err = -EMSGSIZE;
101
102 if (!info || !info[0])
103 return 0;
104
105 nla = nla_nest_start_noflag(skb, DRBD_NLA_CFG_REPLY);
106 if (!nla)
107 return err;
108
109 err = nla_put_string(skb, T_info_text, info);
110 if (err) {
111 nla_nest_cancel(skb, nla);
112 return err;
113 } else
114 nla_nest_end(skb, nla);
115 return 0;
116}
117
118__printf(2, 3)
119static int drbd_msg_sprintf_info(struct sk_buff *skb, const char *fmt, ...)
120{
121 va_list args;
122 struct nlattr *nla, *txt;
123 int err = -EMSGSIZE;
124 int len;
125
126 nla = nla_nest_start_noflag(skb, DRBD_NLA_CFG_REPLY);
127 if (!nla)
128 return err;
129
130 txt = nla_reserve(skb, T_info_text, 256);
131 if (!txt) {
132 nla_nest_cancel(skb, nla);
133 return err;
134 }
135 va_start(args, fmt);
136 len = vscnprintf(nla_data(txt), 256, fmt, args);
137 va_end(args);
138
139
140 txt->nla_len = nla_attr_size(len+1);
141 nlmsg_trim(skb, (char*)txt + NLA_ALIGN(txt->nla_len));
142 nla_nest_end(skb, nla);
143
144 return 0;
145}
146
147
148
149
150
151
152
153
154
155
156#define DRBD_ADM_NEED_MINOR 1
157#define DRBD_ADM_NEED_RESOURCE 2
158#define DRBD_ADM_NEED_CONNECTION 4
159static int drbd_adm_prepare(struct drbd_config_context *adm_ctx,
160 struct sk_buff *skb, struct genl_info *info, unsigned flags)
161{
162 struct drbd_genlmsghdr *d_in = info->userhdr;
163 const u8 cmd = info->genlhdr->cmd;
164 int err;
165
166 memset(adm_ctx, 0, sizeof(*adm_ctx));
167
168
169 if (cmd != DRBD_ADM_GET_STATUS && !capable(CAP_NET_ADMIN))
170 return -EPERM;
171
172 adm_ctx->reply_skb = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
173 if (!adm_ctx->reply_skb) {
174 err = -ENOMEM;
175 goto fail;
176 }
177
178 adm_ctx->reply_dh = genlmsg_put_reply(adm_ctx->reply_skb,
179 info, &drbd_genl_family, 0, cmd);
180
181
182 if (!adm_ctx->reply_dh) {
183 err = -ENOMEM;
184 goto fail;
185 }
186
187 adm_ctx->reply_dh->minor = d_in->minor;
188 adm_ctx->reply_dh->ret_code = NO_ERROR;
189
190 adm_ctx->volume = VOLUME_UNSPECIFIED;
191 if (info->attrs[DRBD_NLA_CFG_CONTEXT]) {
192 struct nlattr *nla;
193
194 err = drbd_cfg_context_from_attrs(NULL, info);
195 if (err)
196 goto fail;
197
198
199
200 err = nla_put_nohdr(adm_ctx->reply_skb,
201 info->attrs[DRBD_NLA_CFG_CONTEXT]->nla_len,
202 info->attrs[DRBD_NLA_CFG_CONTEXT]);
203 if (err)
204 goto fail;
205
206
207 nla = nested_attr_tb[__nla_type(T_ctx_volume)];
208 if (nla)
209 adm_ctx->volume = nla_get_u32(nla);
210 nla = nested_attr_tb[__nla_type(T_ctx_resource_name)];
211 if (nla)
212 adm_ctx->resource_name = nla_data(nla);
213 adm_ctx->my_addr = nested_attr_tb[__nla_type(T_ctx_my_addr)];
214 adm_ctx->peer_addr = nested_attr_tb[__nla_type(T_ctx_peer_addr)];
215 if ((adm_ctx->my_addr &&
216 nla_len(adm_ctx->my_addr) > sizeof(adm_ctx->connection->my_addr)) ||
217 (adm_ctx->peer_addr &&
218 nla_len(adm_ctx->peer_addr) > sizeof(adm_ctx->connection->peer_addr))) {
219 err = -EINVAL;
220 goto fail;
221 }
222 }
223
224 adm_ctx->minor = d_in->minor;
225 adm_ctx->device = minor_to_device(d_in->minor);
226
227
228
229
230 if (adm_ctx->device)
231 kref_get(&adm_ctx->device->kref);
232
233 if (adm_ctx->resource_name) {
234 adm_ctx->resource = drbd_find_resource(adm_ctx->resource_name);
235 }
236
237 if (!adm_ctx->device && (flags & DRBD_ADM_NEED_MINOR)) {
238 drbd_msg_put_info(adm_ctx->reply_skb, "unknown minor");
239 return ERR_MINOR_INVALID;
240 }
241 if (!adm_ctx->resource && (flags & DRBD_ADM_NEED_RESOURCE)) {
242 drbd_msg_put_info(adm_ctx->reply_skb, "unknown resource");
243 if (adm_ctx->resource_name)
244 return ERR_RES_NOT_KNOWN;
245 return ERR_INVALID_REQUEST;
246 }
247
248 if (flags & DRBD_ADM_NEED_CONNECTION) {
249 if (adm_ctx->resource) {
250 drbd_msg_put_info(adm_ctx->reply_skb, "no resource name expected");
251 return ERR_INVALID_REQUEST;
252 }
253 if (adm_ctx->device) {
254 drbd_msg_put_info(adm_ctx->reply_skb, "no minor number expected");
255 return ERR_INVALID_REQUEST;
256 }
257 if (adm_ctx->my_addr && adm_ctx->peer_addr)
258 adm_ctx->connection = conn_get_by_addrs(nla_data(adm_ctx->my_addr),
259 nla_len(adm_ctx->my_addr),
260 nla_data(adm_ctx->peer_addr),
261 nla_len(adm_ctx->peer_addr));
262 if (!adm_ctx->connection) {
263 drbd_msg_put_info(adm_ctx->reply_skb, "unknown connection");
264 return ERR_INVALID_REQUEST;
265 }
266 }
267
268
269 if (adm_ctx->device && adm_ctx->resource &&
270 adm_ctx->device->resource != adm_ctx->resource) {
271 pr_warn("request: minor=%u, resource=%s; but that minor belongs to resource %s\n",
272 adm_ctx->minor, adm_ctx->resource->name,
273 adm_ctx->device->resource->name);
274 drbd_msg_put_info(adm_ctx->reply_skb, "minor exists in different resource");
275 return ERR_INVALID_REQUEST;
276 }
277 if (adm_ctx->device &&
278 adm_ctx->volume != VOLUME_UNSPECIFIED &&
279 adm_ctx->volume != adm_ctx->device->vnr) {
280 pr_warn("request: minor=%u, volume=%u; but that minor is volume %u in %s\n",
281 adm_ctx->minor, adm_ctx->volume,
282 adm_ctx->device->vnr, adm_ctx->device->resource->name);
283 drbd_msg_put_info(adm_ctx->reply_skb, "minor exists as different volume");
284 return ERR_INVALID_REQUEST;
285 }
286
287
288 if (!adm_ctx->resource) {
289 adm_ctx->resource = adm_ctx->device ? adm_ctx->device->resource
290 : adm_ctx->connection ? adm_ctx->connection->resource : NULL;
291 if (adm_ctx->resource)
292 kref_get(&adm_ctx->resource->kref);
293 }
294
295 return NO_ERROR;
296
297fail:
298 nlmsg_free(adm_ctx->reply_skb);
299 adm_ctx->reply_skb = NULL;
300 return err;
301}
302
303static int drbd_adm_finish(struct drbd_config_context *adm_ctx,
304 struct genl_info *info, int retcode)
305{
306 if (adm_ctx->device) {
307 kref_put(&adm_ctx->device->kref, drbd_destroy_device);
308 adm_ctx->device = NULL;
309 }
310 if (adm_ctx->connection) {
311 kref_put(&adm_ctx->connection->kref, &drbd_destroy_connection);
312 adm_ctx->connection = NULL;
313 }
314 if (adm_ctx->resource) {
315 kref_put(&adm_ctx->resource->kref, drbd_destroy_resource);
316 adm_ctx->resource = NULL;
317 }
318
319 if (!adm_ctx->reply_skb)
320 return -ENOMEM;
321
322 adm_ctx->reply_dh->ret_code = retcode;
323 drbd_adm_send_reply(adm_ctx->reply_skb, info);
324 return 0;
325}
326
327static void setup_khelper_env(struct drbd_connection *connection, char **envp)
328{
329 char *afs;
330
331
332 if (connection->my_addr_len == 0 || connection->peer_addr_len == 0)
333 return;
334
335 switch (((struct sockaddr *)&connection->peer_addr)->sa_family) {
336 case AF_INET6:
337 afs = "ipv6";
338 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI6",
339 &((struct sockaddr_in6 *)&connection->peer_addr)->sin6_addr);
340 break;
341 case AF_INET:
342 afs = "ipv4";
343 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
344 &((struct sockaddr_in *)&connection->peer_addr)->sin_addr);
345 break;
346 default:
347 afs = "ssocks";
348 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
349 &((struct sockaddr_in *)&connection->peer_addr)->sin_addr);
350 }
351 snprintf(envp[3], 20, "DRBD_PEER_AF=%s", afs);
352}
353
354int drbd_khelper(struct drbd_device *device, char *cmd)
355{
356 char *envp[] = { "HOME=/",
357 "TERM=linux",
358 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
359 (char[20]) { },
360 (char[60]) { },
361 NULL };
362 char mb[14];
363 char *argv[] = {drbd_usermode_helper, cmd, mb, NULL };
364 struct drbd_connection *connection = first_peer_device(device)->connection;
365 struct sib_info sib;
366 int ret;
367
368 if (current == connection->worker.task)
369 set_bit(CALLBACK_PENDING, &connection->flags);
370
371 snprintf(mb, 14, "minor-%d", device_to_minor(device));
372 setup_khelper_env(connection, envp);
373
374
375
376 drbd_md_sync(device);
377
378 drbd_info(device, "helper command: %s %s %s\n", drbd_usermode_helper, cmd, mb);
379 sib.sib_reason = SIB_HELPER_PRE;
380 sib.helper_name = cmd;
381 drbd_bcast_event(device, &sib);
382 notify_helper(NOTIFY_CALL, device, connection, cmd, 0);
383 ret = call_usermodehelper(drbd_usermode_helper, argv, envp, UMH_WAIT_PROC);
384 if (ret)
385 drbd_warn(device, "helper command: %s %s %s exit code %u (0x%x)\n",
386 drbd_usermode_helper, cmd, mb,
387 (ret >> 8) & 0xff, ret);
388 else
389 drbd_info(device, "helper command: %s %s %s exit code %u (0x%x)\n",
390 drbd_usermode_helper, cmd, mb,
391 (ret >> 8) & 0xff, ret);
392 sib.sib_reason = SIB_HELPER_POST;
393 sib.helper_exit_code = ret;
394 drbd_bcast_event(device, &sib);
395 notify_helper(NOTIFY_RESPONSE, device, connection, cmd, ret);
396
397 if (current == connection->worker.task)
398 clear_bit(CALLBACK_PENDING, &connection->flags);
399
400 if (ret < 0)
401 ret = 0;
402
403 return ret;
404}
405
406enum drbd_peer_state conn_khelper(struct drbd_connection *connection, char *cmd)
407{
408 char *envp[] = { "HOME=/",
409 "TERM=linux",
410 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
411 (char[20]) { },
412 (char[60]) { },
413 NULL };
414 char *resource_name = connection->resource->name;
415 char *argv[] = {drbd_usermode_helper, cmd, resource_name, NULL };
416 int ret;
417
418 setup_khelper_env(connection, envp);
419 conn_md_sync(connection);
420
421 drbd_info(connection, "helper command: %s %s %s\n", drbd_usermode_helper, cmd, resource_name);
422
423 notify_helper(NOTIFY_CALL, NULL, connection, cmd, 0);
424
425 ret = call_usermodehelper(drbd_usermode_helper, argv, envp, UMH_WAIT_PROC);
426 if (ret)
427 drbd_warn(connection, "helper command: %s %s %s exit code %u (0x%x)\n",
428 drbd_usermode_helper, cmd, resource_name,
429 (ret >> 8) & 0xff, ret);
430 else
431 drbd_info(connection, "helper command: %s %s %s exit code %u (0x%x)\n",
432 drbd_usermode_helper, cmd, resource_name,
433 (ret >> 8) & 0xff, ret);
434
435 notify_helper(NOTIFY_RESPONSE, NULL, connection, cmd, ret);
436
437 if (ret < 0)
438 ret = 0;
439
440 return ret;
441}
442
443static enum drbd_fencing_p highest_fencing_policy(struct drbd_connection *connection)
444{
445 enum drbd_fencing_p fp = FP_NOT_AVAIL;
446 struct drbd_peer_device *peer_device;
447 int vnr;
448
449 rcu_read_lock();
450 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
451 struct drbd_device *device = peer_device->device;
452 if (get_ldev_if_state(device, D_CONSISTENT)) {
453 struct disk_conf *disk_conf =
454 rcu_dereference(peer_device->device->ldev->disk_conf);
455 fp = max_t(enum drbd_fencing_p, fp, disk_conf->fencing);
456 put_ldev(device);
457 }
458 }
459 rcu_read_unlock();
460
461 return fp;
462}
463
464static bool resource_is_supended(struct drbd_resource *resource)
465{
466 return resource->susp || resource->susp_fen || resource->susp_nod;
467}
468
469bool conn_try_outdate_peer(struct drbd_connection *connection)
470{
471 struct drbd_resource * const resource = connection->resource;
472 unsigned int connect_cnt;
473 union drbd_state mask = { };
474 union drbd_state val = { };
475 enum drbd_fencing_p fp;
476 char *ex_to_string;
477 int r;
478
479 spin_lock_irq(&resource->req_lock);
480 if (connection->cstate >= C_WF_REPORT_PARAMS) {
481 drbd_err(connection, "Expected cstate < C_WF_REPORT_PARAMS\n");
482 spin_unlock_irq(&resource->req_lock);
483 return false;
484 }
485
486 connect_cnt = connection->connect_cnt;
487 spin_unlock_irq(&resource->req_lock);
488
489 fp = highest_fencing_policy(connection);
490 switch (fp) {
491 case FP_NOT_AVAIL:
492 drbd_warn(connection, "Not fencing peer, I'm not even Consistent myself.\n");
493 spin_lock_irq(&resource->req_lock);
494 if (connection->cstate < C_WF_REPORT_PARAMS) {
495 _conn_request_state(connection,
496 (union drbd_state) { { .susp_fen = 1 } },
497 (union drbd_state) { { .susp_fen = 0 } },
498 CS_VERBOSE | CS_HARD | CS_DC_SUSP);
499
500
501
502 if (!resource_is_supended(resource))
503 _tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
504 }
505
506
507
508
509
510
511 spin_unlock_irq(&resource->req_lock);
512 return false;
513
514 case FP_DONT_CARE:
515 return true;
516 default: ;
517 }
518
519 r = conn_khelper(connection, "fence-peer");
520
521 switch ((r>>8) & 0xff) {
522 case P_INCONSISTENT:
523 ex_to_string = "peer is inconsistent or worse";
524 mask.pdsk = D_MASK;
525 val.pdsk = D_INCONSISTENT;
526 break;
527 case P_OUTDATED:
528 ex_to_string = "peer was fenced";
529 mask.pdsk = D_MASK;
530 val.pdsk = D_OUTDATED;
531 break;
532 case P_DOWN:
533 if (conn_highest_disk(connection) == D_UP_TO_DATE) {
534
535 ex_to_string = "peer is unreachable, assumed to be dead";
536 mask.pdsk = D_MASK;
537 val.pdsk = D_OUTDATED;
538 } else {
539 ex_to_string = "peer unreachable, doing nothing since disk != UpToDate";
540 }
541 break;
542 case P_PRIMARY:
543
544
545 ex_to_string = "peer is active";
546 drbd_warn(connection, "Peer is primary, outdating myself.\n");
547 mask.disk = D_MASK;
548 val.disk = D_OUTDATED;
549 break;
550 case P_FENCING:
551
552
553 if (fp != FP_STONITH)
554 drbd_err(connection, "fence-peer() = 7 && fencing != Stonith !!!\n");
555 ex_to_string = "peer was stonithed";
556 mask.pdsk = D_MASK;
557 val.pdsk = D_OUTDATED;
558 break;
559 default:
560
561 drbd_err(connection, "fence-peer helper broken, returned %d\n", (r>>8)&0xff);
562 return false;
563 }
564
565 drbd_info(connection, "fence-peer helper returned %d (%s)\n",
566 (r>>8) & 0xff, ex_to_string);
567
568
569
570
571
572 spin_lock_irq(&resource->req_lock);
573 if (connection->cstate < C_WF_REPORT_PARAMS && !test_bit(STATE_SENT, &connection->flags)) {
574 if (connection->connect_cnt != connect_cnt)
575
576
577 drbd_info(connection, "Ignoring fence-peer exit code\n");
578 else
579 _conn_request_state(connection, mask, val, CS_VERBOSE);
580 }
581 spin_unlock_irq(&resource->req_lock);
582
583 return conn_highest_pdsk(connection) <= D_OUTDATED;
584}
585
586static int _try_outdate_peer_async(void *data)
587{
588 struct drbd_connection *connection = (struct drbd_connection *)data;
589
590 conn_try_outdate_peer(connection);
591
592 kref_put(&connection->kref, drbd_destroy_connection);
593 return 0;
594}
595
596void conn_try_outdate_peer_async(struct drbd_connection *connection)
597{
598 struct task_struct *opa;
599
600 kref_get(&connection->kref);
601
602
603
604
605
606 flush_signals(current);
607 opa = kthread_run(_try_outdate_peer_async, connection, "drbd_async_h");
608 if (IS_ERR(opa)) {
609 drbd_err(connection, "out of mem, failed to invoke fence-peer helper\n");
610 kref_put(&connection->kref, drbd_destroy_connection);
611 }
612}
613
614enum drbd_state_rv
615drbd_set_role(struct drbd_device *const device, enum drbd_role new_role, int force)
616{
617 struct drbd_peer_device *const peer_device = first_peer_device(device);
618 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
619 const int max_tries = 4;
620 enum drbd_state_rv rv = SS_UNKNOWN_ERROR;
621 struct net_conf *nc;
622 int try = 0;
623 int forced = 0;
624 union drbd_state mask, val;
625
626 if (new_role == R_PRIMARY) {
627 struct drbd_connection *connection;
628
629
630
631 rcu_read_lock();
632 for_each_connection(connection, device->resource)
633 request_ping(connection);
634 rcu_read_unlock();
635 }
636
637 mutex_lock(device->state_mutex);
638
639 mask.i = 0; mask.role = R_MASK;
640 val.i = 0; val.role = new_role;
641
642 while (try++ < max_tries) {
643 rv = _drbd_request_state_holding_state_mutex(device, mask, val, CS_WAIT_COMPLETE);
644
645
646
647 if (rv == SS_CW_FAILED_BY_PEER && mask.pdsk != 0) {
648 val.pdsk = 0;
649 mask.pdsk = 0;
650 continue;
651 }
652
653 if (rv == SS_NO_UP_TO_DATE_DISK && force &&
654 (device->state.disk < D_UP_TO_DATE &&
655 device->state.disk >= D_INCONSISTENT)) {
656 mask.disk = D_MASK;
657 val.disk = D_UP_TO_DATE;
658 forced = 1;
659 continue;
660 }
661
662 if (rv == SS_NO_UP_TO_DATE_DISK &&
663 device->state.disk == D_CONSISTENT && mask.pdsk == 0) {
664 D_ASSERT(device, device->state.pdsk == D_UNKNOWN);
665
666 if (conn_try_outdate_peer(connection)) {
667 val.disk = D_UP_TO_DATE;
668 mask.disk = D_MASK;
669 }
670 continue;
671 }
672
673 if (rv == SS_NOTHING_TO_DO)
674 goto out;
675 if (rv == SS_PRIMARY_NOP && mask.pdsk == 0) {
676 if (!conn_try_outdate_peer(connection) && force) {
677 drbd_warn(device, "Forced into split brain situation!\n");
678 mask.pdsk = D_MASK;
679 val.pdsk = D_OUTDATED;
680
681 }
682 continue;
683 }
684 if (rv == SS_TWO_PRIMARIES) {
685
686
687 if (try < max_tries) {
688 int timeo;
689 try = max_tries - 1;
690 rcu_read_lock();
691 nc = rcu_dereference(connection->net_conf);
692 timeo = nc ? (nc->ping_timeo + 1) * HZ / 10 : 1;
693 rcu_read_unlock();
694 schedule_timeout_interruptible(timeo);
695 }
696 continue;
697 }
698 if (rv < SS_SUCCESS) {
699 rv = _drbd_request_state(device, mask, val,
700 CS_VERBOSE + CS_WAIT_COMPLETE);
701 if (rv < SS_SUCCESS)
702 goto out;
703 }
704 break;
705 }
706
707 if (rv < SS_SUCCESS)
708 goto out;
709
710 if (forced)
711 drbd_warn(device, "Forced to consider local data as UpToDate!\n");
712
713
714 wait_event(device->misc_wait, atomic_read(&device->ap_pending_cnt) == 0);
715
716
717
718 if (new_role == R_SECONDARY) {
719 if (get_ldev(device)) {
720 device->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
721 put_ldev(device);
722 }
723 } else {
724 mutex_lock(&device->resource->conf_update);
725 nc = connection->net_conf;
726 if (nc)
727 nc->discard_my_data = 0;
728 mutex_unlock(&device->resource->conf_update);
729
730 if (get_ldev(device)) {
731 if (((device->state.conn < C_CONNECTED ||
732 device->state.pdsk <= D_FAILED)
733 && device->ldev->md.uuid[UI_BITMAP] == 0) || forced)
734 drbd_uuid_new_current(device);
735
736 device->ldev->md.uuid[UI_CURRENT] |= (u64)1;
737 put_ldev(device);
738 }
739 }
740
741
742
743
744 if (device->state.conn >= C_WF_REPORT_PARAMS) {
745
746 if (forced)
747 drbd_send_uuids(peer_device);
748 drbd_send_current_state(peer_device);
749 }
750
751 drbd_md_sync(device);
752 set_disk_ro(device->vdisk, new_role == R_SECONDARY);
753 kobject_uevent(&disk_to_dev(device->vdisk)->kobj, KOBJ_CHANGE);
754out:
755 mutex_unlock(device->state_mutex);
756 return rv;
757}
758
759static const char *from_attrs_err_to_txt(int err)
760{
761 return err == -ENOMSG ? "required attribute missing" :
762 err == -EOPNOTSUPP ? "unknown mandatory attribute" :
763 err == -EEXIST ? "can not change invariant setting" :
764 "invalid attribute value";
765}
766
767int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info)
768{
769 struct drbd_config_context adm_ctx;
770 struct set_role_parms parms;
771 int err;
772 enum drbd_ret_code retcode;
773
774 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
775 if (!adm_ctx.reply_skb)
776 return retcode;
777 if (retcode != NO_ERROR)
778 goto out;
779
780 memset(&parms, 0, sizeof(parms));
781 if (info->attrs[DRBD_NLA_SET_ROLE_PARMS]) {
782 err = set_role_parms_from_attrs(&parms, info);
783 if (err) {
784 retcode = ERR_MANDATORY_TAG;
785 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
786 goto out;
787 }
788 }
789 genl_unlock();
790 mutex_lock(&adm_ctx.resource->adm_mutex);
791
792 if (info->genlhdr->cmd == DRBD_ADM_PRIMARY)
793 retcode = drbd_set_role(adm_ctx.device, R_PRIMARY, parms.assume_uptodate);
794 else
795 retcode = drbd_set_role(adm_ctx.device, R_SECONDARY, 0);
796
797 mutex_unlock(&adm_ctx.resource->adm_mutex);
798 genl_lock();
799out:
800 drbd_adm_finish(&adm_ctx, info, retcode);
801 return 0;
802}
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825static void drbd_md_set_sector_offsets(struct drbd_device *device,
826 struct drbd_backing_dev *bdev)
827{
828 sector_t md_size_sect = 0;
829 unsigned int al_size_sect = bdev->md.al_size_4k * 8;
830
831 bdev->md.md_offset = drbd_md_ss(bdev);
832
833 switch (bdev->md.meta_dev_idx) {
834 default:
835
836 bdev->md.md_size_sect = MD_128MB_SECT;
837 bdev->md.al_offset = MD_4kB_SECT;
838 bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
839 break;
840 case DRBD_MD_INDEX_FLEX_EXT:
841
842 bdev->md.md_size_sect = drbd_get_capacity(bdev->md_bdev);
843 bdev->md.al_offset = MD_4kB_SECT;
844 bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
845 break;
846 case DRBD_MD_INDEX_INTERNAL:
847 case DRBD_MD_INDEX_FLEX_INT:
848
849 bdev->md.al_offset = -al_size_sect;
850
851 md_size_sect = drbd_get_capacity(bdev->backing_bdev);
852 md_size_sect = ALIGN(md_size_sect, BM_SECT_PER_EXT);
853 md_size_sect = BM_SECT_TO_EXT(md_size_sect);
854 md_size_sect = ALIGN(md_size_sect, 8);
855
856
857
858 md_size_sect += MD_4kB_SECT + al_size_sect;
859
860 bdev->md.md_size_sect = md_size_sect;
861
862 bdev->md.bm_offset = -md_size_sect + MD_4kB_SECT;
863 break;
864 }
865}
866
867
868char *ppsize(char *buf, unsigned long long size)
869{
870
871
872 static char units[] = { 'K', 'M', 'G', 'T', 'P', 'E' };
873 int base = 0;
874 while (size >= 10000 && base < sizeof(units)-1) {
875
876 size = (size >> 10) + !!(size & (1<<9));
877 base++;
878 }
879 sprintf(buf, "%u %cB", (unsigned)size, units[base]);
880
881 return buf;
882}
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905void drbd_suspend_io(struct drbd_device *device)
906{
907 atomic_inc(&device->suspend_cnt);
908 if (drbd_suspended(device))
909 return;
910 wait_event(device->misc_wait, !atomic_read(&device->ap_bio_cnt));
911}
912
913void drbd_resume_io(struct drbd_device *device)
914{
915 if (atomic_dec_and_test(&device->suspend_cnt))
916 wake_up(&device->misc_wait);
917}
918
919
920
921
922
923
924
925
926enum determine_dev_size
927drbd_determine_dev_size(struct drbd_device *device, enum dds_flags flags, struct resize_parms *rs) __must_hold(local)
928{
929 struct md_offsets_and_sizes {
930 u64 last_agreed_sect;
931 u64 md_offset;
932 s32 al_offset;
933 s32 bm_offset;
934 u32 md_size_sect;
935
936 u32 al_stripes;
937 u32 al_stripe_size_4k;
938 } prev;
939 sector_t u_size, size;
940 struct drbd_md *md = &device->ldev->md;
941 void *buffer;
942
943 int md_moved, la_size_changed;
944 enum determine_dev_size rv = DS_UNCHANGED;
945
946
947
948
949
950
951
952
953
954 drbd_suspend_io(device);
955 buffer = drbd_md_get_buffer(device, __func__);
956 if (!buffer) {
957 drbd_resume_io(device);
958 return DS_ERROR;
959 }
960
961
962 prev.last_agreed_sect = md->la_size_sect;
963 prev.md_offset = md->md_offset;
964 prev.al_offset = md->al_offset;
965 prev.bm_offset = md->bm_offset;
966 prev.md_size_sect = md->md_size_sect;
967 prev.al_stripes = md->al_stripes;
968 prev.al_stripe_size_4k = md->al_stripe_size_4k;
969
970 if (rs) {
971
972 md->al_stripes = rs->al_stripes;
973 md->al_stripe_size_4k = rs->al_stripe_size / 4;
974 md->al_size_4k = (u64)rs->al_stripes * rs->al_stripe_size / 4;
975 }
976
977 drbd_md_set_sector_offsets(device, device->ldev);
978
979 rcu_read_lock();
980 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
981 rcu_read_unlock();
982 size = drbd_new_dev_size(device, device->ldev, u_size, flags & DDSF_FORCED);
983
984 if (size < prev.last_agreed_sect) {
985 if (rs && u_size == 0) {
986
987
988 drbd_warn(device, "Implicit shrink not allowed. "
989 "Use --size=%llus for explicit shrink.\n",
990 (unsigned long long)size);
991 rv = DS_ERROR_SHRINK;
992 }
993 if (u_size > size)
994 rv = DS_ERROR_SPACE_MD;
995 if (rv != DS_UNCHANGED)
996 goto err_out;
997 }
998
999 if (get_capacity(device->vdisk) != size ||
1000 drbd_bm_capacity(device) != size) {
1001 int err;
1002 err = drbd_bm_resize(device, size, !(flags & DDSF_NO_RESYNC));
1003 if (unlikely(err)) {
1004
1005 size = drbd_bm_capacity(device);
1006 if (size == 0) {
1007 drbd_err(device, "OUT OF MEMORY! "
1008 "Could not allocate bitmap!\n");
1009 } else {
1010 drbd_err(device, "BM resizing failed. "
1011 "Leaving size unchanged\n");
1012 }
1013 rv = DS_ERROR;
1014 }
1015
1016 drbd_set_my_capacity(device, size);
1017 md->la_size_sect = size;
1018 }
1019 if (rv <= DS_ERROR)
1020 goto err_out;
1021
1022 la_size_changed = (prev.last_agreed_sect != md->la_size_sect);
1023
1024 md_moved = prev.md_offset != md->md_offset
1025 || prev.md_size_sect != md->md_size_sect;
1026
1027 if (la_size_changed || md_moved || rs) {
1028 u32 prev_flags;
1029
1030
1031
1032
1033 del_timer(&device->md_sync_timer);
1034
1035
1036
1037
1038
1039 wait_event(device->al_wait, lc_try_lock_for_transaction(device->act_log));
1040
1041
1042 prev_flags = md->flags;
1043 md->flags |= MDF_FULL_SYNC | MDF_AL_DISABLED;
1044 drbd_md_write(device, buffer);
1045
1046 drbd_al_initialize(device, buffer);
1047
1048 drbd_info(device, "Writing the whole bitmap, %s\n",
1049 la_size_changed && md_moved ? "size changed and md moved" :
1050 la_size_changed ? "size changed" : "md moved");
1051
1052 drbd_bitmap_io(device, md_moved ? &drbd_bm_write_all : &drbd_bm_write,
1053 "size changed", BM_LOCKED_MASK);
1054
1055
1056
1057 md->flags = prev_flags;
1058 drbd_md_write(device, buffer);
1059
1060 if (rs)
1061 drbd_info(device, "Changed AL layout to al-stripes = %d, al-stripe-size-kB = %d\n",
1062 md->al_stripes, md->al_stripe_size_4k * 4);
1063 }
1064
1065 if (size > prev.last_agreed_sect)
1066 rv = prev.last_agreed_sect ? DS_GREW : DS_GREW_FROM_ZERO;
1067 if (size < prev.last_agreed_sect)
1068 rv = DS_SHRUNK;
1069
1070 if (0) {
1071 err_out:
1072
1073 md->la_size_sect = prev.last_agreed_sect;
1074 md->md_offset = prev.md_offset;
1075 md->al_offset = prev.al_offset;
1076 md->bm_offset = prev.bm_offset;
1077 md->md_size_sect = prev.md_size_sect;
1078 md->al_stripes = prev.al_stripes;
1079 md->al_stripe_size_4k = prev.al_stripe_size_4k;
1080 md->al_size_4k = (u64)prev.al_stripes * prev.al_stripe_size_4k;
1081 }
1082 lc_unlock(device->act_log);
1083 wake_up(&device->al_wait);
1084 drbd_md_put_buffer(device);
1085 drbd_resume_io(device);
1086
1087 return rv;
1088}
1089
1090sector_t
1091drbd_new_dev_size(struct drbd_device *device, struct drbd_backing_dev *bdev,
1092 sector_t u_size, int assume_peer_has_space)
1093{
1094 sector_t p_size = device->p_size;
1095 sector_t la_size_sect = bdev->md.la_size_sect;
1096 sector_t m_size;
1097 sector_t size = 0;
1098
1099 m_size = drbd_get_max_capacity(bdev);
1100
1101 if (device->state.conn < C_CONNECTED && assume_peer_has_space) {
1102 drbd_warn(device, "Resize while not connected was forced by the user!\n");
1103 p_size = m_size;
1104 }
1105
1106 if (p_size && m_size) {
1107 size = min_t(sector_t, p_size, m_size);
1108 } else {
1109 if (la_size_sect) {
1110 size = la_size_sect;
1111 if (m_size && m_size < size)
1112 size = m_size;
1113 if (p_size && p_size < size)
1114 size = p_size;
1115 } else {
1116 if (m_size)
1117 size = m_size;
1118 if (p_size)
1119 size = p_size;
1120 }
1121 }
1122
1123 if (size == 0)
1124 drbd_err(device, "Both nodes diskless!\n");
1125
1126 if (u_size) {
1127 if (u_size > size)
1128 drbd_err(device, "Requested disk size is too big (%lu > %lu)\n",
1129 (unsigned long)u_size>>1, (unsigned long)size>>1);
1130 else
1131 size = u_size;
1132 }
1133
1134 return size;
1135}
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145static int drbd_check_al_size(struct drbd_device *device, struct disk_conf *dc)
1146{
1147 struct lru_cache *n, *t;
1148 struct lc_element *e;
1149 unsigned int in_use;
1150 int i;
1151
1152 if (device->act_log &&
1153 device->act_log->nr_elements == dc->al_extents)
1154 return 0;
1155
1156 in_use = 0;
1157 t = device->act_log;
1158 n = lc_create("act_log", drbd_al_ext_cache, AL_UPDATES_PER_TRANSACTION,
1159 dc->al_extents, sizeof(struct lc_element), 0);
1160
1161 if (n == NULL) {
1162 drbd_err(device, "Cannot allocate act_log lru!\n");
1163 return -ENOMEM;
1164 }
1165 spin_lock_irq(&device->al_lock);
1166 if (t) {
1167 for (i = 0; i < t->nr_elements; i++) {
1168 e = lc_element_by_index(t, i);
1169 if (e->refcnt)
1170 drbd_err(device, "refcnt(%d)==%d\n",
1171 e->lc_number, e->refcnt);
1172 in_use += e->refcnt;
1173 }
1174 }
1175 if (!in_use)
1176 device->act_log = n;
1177 spin_unlock_irq(&device->al_lock);
1178 if (in_use) {
1179 drbd_err(device, "Activity log still in use!\n");
1180 lc_destroy(n);
1181 return -EBUSY;
1182 } else {
1183 lc_destroy(t);
1184 }
1185 drbd_md_mark_dirty(device);
1186 return 0;
1187}
1188
1189static void blk_queue_discard_granularity(struct request_queue *q, unsigned int granularity)
1190{
1191 q->limits.discard_granularity = granularity;
1192}
1193
1194static unsigned int drbd_max_discard_sectors(struct drbd_connection *connection)
1195{
1196
1197
1198 if (connection->agreed_features & DRBD_FF_WSAME)
1199 return DRBD_MAX_BBIO_SECTORS;
1200
1201 return AL_EXTENT_SIZE >> 9;
1202}
1203
1204static void decide_on_discard_support(struct drbd_device *device,
1205 struct request_queue *q,
1206 struct request_queue *b,
1207 bool discard_zeroes_if_aligned)
1208{
1209
1210
1211
1212
1213 struct drbd_connection *connection = first_peer_device(device)->connection;
1214 bool can_do = b ? blk_queue_discard(b) : true;
1215
1216 if (can_do && connection->cstate >= C_CONNECTED && !(connection->agreed_features & DRBD_FF_TRIM)) {
1217 can_do = false;
1218 drbd_info(connection, "peer DRBD too old, does not support TRIM: disabling discards\n");
1219 }
1220 if (can_do) {
1221
1222
1223
1224
1225
1226
1227 blk_queue_discard_granularity(q, 512);
1228 q->limits.max_discard_sectors = drbd_max_discard_sectors(connection);
1229 blk_queue_flag_set(QUEUE_FLAG_DISCARD, q);
1230 q->limits.max_write_zeroes_sectors = drbd_max_discard_sectors(connection);
1231 } else {
1232 blk_queue_flag_clear(QUEUE_FLAG_DISCARD, q);
1233 blk_queue_discard_granularity(q, 0);
1234 q->limits.max_discard_sectors = 0;
1235 q->limits.max_write_zeroes_sectors = 0;
1236 }
1237}
1238
1239static void fixup_discard_if_not_supported(struct request_queue *q)
1240{
1241
1242
1243
1244
1245 if (!blk_queue_discard(q)) {
1246 blk_queue_max_discard_sectors(q, 0);
1247 blk_queue_discard_granularity(q, 0);
1248 }
1249}
1250
1251static void fixup_write_zeroes(struct drbd_device *device, struct request_queue *q)
1252{
1253
1254
1255
1256
1257 struct drbd_connection *connection = first_peer_device(device)->connection;
1258
1259
1260 if (connection->agreed_features & DRBD_FF_WZEROES)
1261 q->limits.max_write_zeroes_sectors = DRBD_MAX_BBIO_SECTORS;
1262 else
1263 q->limits.max_write_zeroes_sectors = 0;
1264}
1265
1266static void decide_on_write_same_support(struct drbd_device *device,
1267 struct request_queue *q,
1268 struct request_queue *b, struct o_qlim *o,
1269 bool disable_write_same)
1270{
1271 struct drbd_peer_device *peer_device = first_peer_device(device);
1272 struct drbd_connection *connection = peer_device->connection;
1273 bool can_do = b ? b->limits.max_write_same_sectors : true;
1274
1275 if (can_do && disable_write_same) {
1276 can_do = false;
1277 drbd_info(peer_device, "WRITE_SAME disabled by config\n");
1278 }
1279
1280 if (can_do && connection->cstate >= C_CONNECTED && !(connection->agreed_features & DRBD_FF_WSAME)) {
1281 can_do = false;
1282 drbd_info(peer_device, "peer does not support WRITE_SAME\n");
1283 }
1284
1285 if (o) {
1286
1287 unsigned int peer_lbs = be32_to_cpu(o->logical_block_size);
1288 unsigned int me_lbs_b = queue_logical_block_size(b);
1289 unsigned int me_lbs = queue_logical_block_size(q);
1290
1291 if (me_lbs_b != me_lbs) {
1292 drbd_warn(device,
1293 "logical block size of local backend does not match (drbd:%u, backend:%u); was this a late attach?\n",
1294 me_lbs, me_lbs_b);
1295
1296 can_do = false;
1297 }
1298 if (me_lbs_b != peer_lbs) {
1299 drbd_warn(peer_device, "logical block sizes do not match (me:%u, peer:%u); this may cause problems.\n",
1300 me_lbs, peer_lbs);
1301 if (can_do) {
1302 drbd_dbg(peer_device, "logical block size mismatch: WRITE_SAME disabled.\n");
1303 can_do = false;
1304 }
1305 me_lbs = max(me_lbs, me_lbs_b);
1306
1307
1308
1309 if (peer_lbs > me_lbs) {
1310 if (device->state.role != R_PRIMARY) {
1311 blk_queue_logical_block_size(q, peer_lbs);
1312 drbd_warn(peer_device, "logical block size set to %u\n", peer_lbs);
1313 } else {
1314 drbd_warn(peer_device,
1315 "current Primary must NOT adjust logical block size (%u -> %u); hope for the best.\n",
1316 me_lbs, peer_lbs);
1317 }
1318 }
1319 }
1320 if (can_do && !o->write_same_capable) {
1321
1322
1323 drbd_dbg(peer_device, "WRITE_SAME disabled (peer device not capable)\n");
1324 can_do = false;
1325 }
1326 }
1327
1328 blk_queue_max_write_same_sectors(q, can_do ? DRBD_MAX_BBIO_SECTORS : 0);
1329}
1330
1331static void drbd_setup_queue_param(struct drbd_device *device, struct drbd_backing_dev *bdev,
1332 unsigned int max_bio_size, struct o_qlim *o)
1333{
1334 struct request_queue * const q = device->rq_queue;
1335 unsigned int max_hw_sectors = max_bio_size >> 9;
1336 unsigned int max_segments = 0;
1337 struct request_queue *b = NULL;
1338 struct disk_conf *dc;
1339 bool discard_zeroes_if_aligned = true;
1340 bool disable_write_same = false;
1341
1342 if (bdev) {
1343 b = bdev->backing_bdev->bd_disk->queue;
1344
1345 max_hw_sectors = min(queue_max_hw_sectors(b), max_bio_size >> 9);
1346 rcu_read_lock();
1347 dc = rcu_dereference(device->ldev->disk_conf);
1348 max_segments = dc->max_bio_bvecs;
1349 discard_zeroes_if_aligned = dc->discard_zeroes_if_aligned;
1350 disable_write_same = dc->disable_write_same;
1351 rcu_read_unlock();
1352
1353 blk_set_stacking_limits(&q->limits);
1354 }
1355
1356 blk_queue_max_hw_sectors(q, max_hw_sectors);
1357
1358 blk_queue_max_segments(q, max_segments ? max_segments : BLK_MAX_SEGMENTS);
1359 blk_queue_segment_boundary(q, PAGE_SIZE-1);
1360 decide_on_discard_support(device, q, b, discard_zeroes_if_aligned);
1361 decide_on_write_same_support(device, q, b, o, disable_write_same);
1362
1363 if (b) {
1364 blk_stack_limits(&q->limits, &b->limits, 0);
1365 blk_queue_update_readahead(q);
1366 }
1367 fixup_discard_if_not_supported(q);
1368 fixup_write_zeroes(device, q);
1369}
1370
1371void drbd_reconsider_queue_parameters(struct drbd_device *device, struct drbd_backing_dev *bdev, struct o_qlim *o)
1372{
1373 unsigned int now, new, local, peer;
1374
1375 now = queue_max_hw_sectors(device->rq_queue) << 9;
1376 local = device->local_max_bio_size;
1377 peer = device->peer_max_bio_size;
1378
1379 if (bdev) {
1380 local = queue_max_hw_sectors(bdev->backing_bdev->bd_disk->queue) << 9;
1381 device->local_max_bio_size = local;
1382 }
1383 local = min(local, DRBD_MAX_BIO_SIZE);
1384
1385
1386
1387
1388 if (device->state.conn >= C_WF_REPORT_PARAMS) {
1389 if (first_peer_device(device)->connection->agreed_pro_version < 94)
1390 peer = min(device->peer_max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1391
1392 else if (first_peer_device(device)->connection->agreed_pro_version == 94)
1393 peer = DRBD_MAX_SIZE_H80_PACKET;
1394 else if (first_peer_device(device)->connection->agreed_pro_version < 100)
1395 peer = DRBD_MAX_BIO_SIZE_P95;
1396 else
1397 peer = DRBD_MAX_BIO_SIZE;
1398
1399
1400
1401
1402
1403 if (peer > device->peer_max_bio_size)
1404 device->peer_max_bio_size = peer;
1405 }
1406 new = min(local, peer);
1407
1408 if (device->state.role == R_PRIMARY && new < now)
1409 drbd_err(device, "ASSERT FAILED new < now; (%u < %u)\n", new, now);
1410
1411 if (new != now)
1412 drbd_info(device, "max BIO size = %u\n", new);
1413
1414 drbd_setup_queue_param(device, bdev, new, o);
1415}
1416
1417
1418static void conn_reconfig_start(struct drbd_connection *connection)
1419{
1420 drbd_thread_start(&connection->worker);
1421 drbd_flush_workqueue(&connection->sender_work);
1422}
1423
1424
1425static void conn_reconfig_done(struct drbd_connection *connection)
1426{
1427 bool stop_threads;
1428 spin_lock_irq(&connection->resource->req_lock);
1429 stop_threads = conn_all_vols_unconf(connection) &&
1430 connection->cstate == C_STANDALONE;
1431 spin_unlock_irq(&connection->resource->req_lock);
1432 if (stop_threads) {
1433
1434
1435 drbd_thread_stop(&connection->receiver);
1436 drbd_thread_stop(&connection->worker);
1437 }
1438}
1439
1440
1441static void drbd_suspend_al(struct drbd_device *device)
1442{
1443 int s = 0;
1444
1445 if (!lc_try_lock(device->act_log)) {
1446 drbd_warn(device, "Failed to lock al in drbd_suspend_al()\n");
1447 return;
1448 }
1449
1450 drbd_al_shrink(device);
1451 spin_lock_irq(&device->resource->req_lock);
1452 if (device->state.conn < C_CONNECTED)
1453 s = !test_and_set_bit(AL_SUSPENDED, &device->flags);
1454 spin_unlock_irq(&device->resource->req_lock);
1455 lc_unlock(device->act_log);
1456
1457 if (s)
1458 drbd_info(device, "Suspended AL updates\n");
1459}
1460
1461
1462static bool should_set_defaults(struct genl_info *info)
1463{
1464 unsigned flags = ((struct drbd_genlmsghdr*)info->userhdr)->flags;
1465 return 0 != (flags & DRBD_GENL_F_SET_DEFAULTS);
1466}
1467
1468static unsigned int drbd_al_extents_max(struct drbd_backing_dev *bdev)
1469{
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483 const unsigned int max_al_nr = DRBD_AL_EXTENTS_MAX;
1484 const unsigned int sufficient_on_disk =
1485 (max_al_nr + AL_CONTEXT_PER_TRANSACTION -1)
1486 /AL_CONTEXT_PER_TRANSACTION;
1487
1488 unsigned int al_size_4k = bdev->md.al_size_4k;
1489
1490 if (al_size_4k > sufficient_on_disk)
1491 return max_al_nr;
1492
1493 return (al_size_4k - 1) * AL_CONTEXT_PER_TRANSACTION;
1494}
1495
1496static bool write_ordering_changed(struct disk_conf *a, struct disk_conf *b)
1497{
1498 return a->disk_barrier != b->disk_barrier ||
1499 a->disk_flushes != b->disk_flushes ||
1500 a->disk_drain != b->disk_drain;
1501}
1502
1503static void sanitize_disk_conf(struct drbd_device *device, struct disk_conf *disk_conf,
1504 struct drbd_backing_dev *nbc)
1505{
1506 struct request_queue * const q = nbc->backing_bdev->bd_disk->queue;
1507
1508 if (disk_conf->al_extents < DRBD_AL_EXTENTS_MIN)
1509 disk_conf->al_extents = DRBD_AL_EXTENTS_MIN;
1510 if (disk_conf->al_extents > drbd_al_extents_max(nbc))
1511 disk_conf->al_extents = drbd_al_extents_max(nbc);
1512
1513 if (!blk_queue_discard(q)) {
1514 if (disk_conf->rs_discard_granularity) {
1515 disk_conf->rs_discard_granularity = 0;
1516 drbd_info(device, "rs_discard_granularity feature disabled\n");
1517 }
1518 }
1519
1520 if (disk_conf->rs_discard_granularity) {
1521 int orig_value = disk_conf->rs_discard_granularity;
1522 int remainder;
1523
1524 if (q->limits.discard_granularity > disk_conf->rs_discard_granularity)
1525 disk_conf->rs_discard_granularity = q->limits.discard_granularity;
1526
1527 remainder = disk_conf->rs_discard_granularity % q->limits.discard_granularity;
1528 disk_conf->rs_discard_granularity += remainder;
1529
1530 if (disk_conf->rs_discard_granularity > q->limits.max_discard_sectors << 9)
1531 disk_conf->rs_discard_granularity = q->limits.max_discard_sectors << 9;
1532
1533 if (disk_conf->rs_discard_granularity != orig_value)
1534 drbd_info(device, "rs_discard_granularity changed to %d\n",
1535 disk_conf->rs_discard_granularity);
1536 }
1537}
1538
1539static int disk_opts_check_al_size(struct drbd_device *device, struct disk_conf *dc)
1540{
1541 int err = -EBUSY;
1542
1543 if (device->act_log &&
1544 device->act_log->nr_elements == dc->al_extents)
1545 return 0;
1546
1547 drbd_suspend_io(device);
1548
1549
1550 if (atomic_read(&device->ap_bio_cnt))
1551 goto out;
1552
1553 wait_event(device->al_wait, lc_try_lock(device->act_log));
1554 drbd_al_shrink(device);
1555 err = drbd_check_al_size(device, dc);
1556 lc_unlock(device->act_log);
1557 wake_up(&device->al_wait);
1558out:
1559 drbd_resume_io(device);
1560 return err;
1561}
1562
1563int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info)
1564{
1565 struct drbd_config_context adm_ctx;
1566 enum drbd_ret_code retcode;
1567 struct drbd_device *device;
1568 struct disk_conf *new_disk_conf, *old_disk_conf;
1569 struct fifo_buffer *old_plan = NULL, *new_plan = NULL;
1570 int err;
1571 unsigned int fifo_size;
1572
1573 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
1574 if (!adm_ctx.reply_skb)
1575 return retcode;
1576 if (retcode != NO_ERROR)
1577 goto finish;
1578
1579 device = adm_ctx.device;
1580 mutex_lock(&adm_ctx.resource->adm_mutex);
1581
1582
1583
1584 if (!get_ldev(device)) {
1585 retcode = ERR_NO_DISK;
1586 goto out;
1587 }
1588
1589 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
1590 if (!new_disk_conf) {
1591 retcode = ERR_NOMEM;
1592 goto fail;
1593 }
1594
1595 mutex_lock(&device->resource->conf_update);
1596 old_disk_conf = device->ldev->disk_conf;
1597 *new_disk_conf = *old_disk_conf;
1598 if (should_set_defaults(info))
1599 set_disk_conf_defaults(new_disk_conf);
1600
1601 err = disk_conf_from_attrs_for_change(new_disk_conf, info);
1602 if (err && err != -ENOMSG) {
1603 retcode = ERR_MANDATORY_TAG;
1604 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
1605 goto fail_unlock;
1606 }
1607
1608 if (!expect(new_disk_conf->resync_rate >= 1))
1609 new_disk_conf->resync_rate = 1;
1610
1611 sanitize_disk_conf(device, new_disk_conf, device->ldev);
1612
1613 if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1614 new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1615
1616 fifo_size = (new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ;
1617 if (fifo_size != device->rs_plan_s->size) {
1618 new_plan = fifo_alloc(fifo_size);
1619 if (!new_plan) {
1620 drbd_err(device, "kmalloc of fifo_buffer failed");
1621 retcode = ERR_NOMEM;
1622 goto fail_unlock;
1623 }
1624 }
1625
1626 err = disk_opts_check_al_size(device, new_disk_conf);
1627 if (err) {
1628
1629
1630 drbd_msg_put_info(adm_ctx.reply_skb,
1631 "Try again without changing current al-extents setting");
1632 retcode = ERR_NOMEM;
1633 goto fail_unlock;
1634 }
1635
1636 lock_all_resources();
1637 retcode = drbd_resync_after_valid(device, new_disk_conf->resync_after);
1638 if (retcode == NO_ERROR) {
1639 rcu_assign_pointer(device->ldev->disk_conf, new_disk_conf);
1640 drbd_resync_after_changed(device);
1641 }
1642 unlock_all_resources();
1643
1644 if (retcode != NO_ERROR)
1645 goto fail_unlock;
1646
1647 if (new_plan) {
1648 old_plan = device->rs_plan_s;
1649 rcu_assign_pointer(device->rs_plan_s, new_plan);
1650 }
1651
1652 mutex_unlock(&device->resource->conf_update);
1653
1654 if (new_disk_conf->al_updates)
1655 device->ldev->md.flags &= ~MDF_AL_DISABLED;
1656 else
1657 device->ldev->md.flags |= MDF_AL_DISABLED;
1658
1659 if (new_disk_conf->md_flushes)
1660 clear_bit(MD_NO_FUA, &device->flags);
1661 else
1662 set_bit(MD_NO_FUA, &device->flags);
1663
1664 if (write_ordering_changed(old_disk_conf, new_disk_conf))
1665 drbd_bump_write_ordering(device->resource, NULL, WO_BDEV_FLUSH);
1666
1667 if (old_disk_conf->discard_zeroes_if_aligned != new_disk_conf->discard_zeroes_if_aligned
1668 || old_disk_conf->disable_write_same != new_disk_conf->disable_write_same)
1669 drbd_reconsider_queue_parameters(device, device->ldev, NULL);
1670
1671 drbd_md_sync(device);
1672
1673 if (device->state.conn >= C_CONNECTED) {
1674 struct drbd_peer_device *peer_device;
1675
1676 for_each_peer_device(peer_device, device)
1677 drbd_send_sync_param(peer_device);
1678 }
1679
1680 synchronize_rcu();
1681 kfree(old_disk_conf);
1682 kfree(old_plan);
1683 mod_timer(&device->request_timer, jiffies + HZ);
1684 goto success;
1685
1686fail_unlock:
1687 mutex_unlock(&device->resource->conf_update);
1688 fail:
1689 kfree(new_disk_conf);
1690 kfree(new_plan);
1691success:
1692 put_ldev(device);
1693 out:
1694 mutex_unlock(&adm_ctx.resource->adm_mutex);
1695 finish:
1696 drbd_adm_finish(&adm_ctx, info, retcode);
1697 return 0;
1698}
1699
1700static struct block_device *open_backing_dev(struct drbd_device *device,
1701 const char *bdev_path, void *claim_ptr, bool do_bd_link)
1702{
1703 struct block_device *bdev;
1704 int err = 0;
1705
1706 bdev = blkdev_get_by_path(bdev_path,
1707 FMODE_READ | FMODE_WRITE | FMODE_EXCL, claim_ptr);
1708 if (IS_ERR(bdev)) {
1709 drbd_err(device, "open(\"%s\") failed with %ld\n",
1710 bdev_path, PTR_ERR(bdev));
1711 return bdev;
1712 }
1713
1714 if (!do_bd_link)
1715 return bdev;
1716
1717 err = bd_link_disk_holder(bdev, device->vdisk);
1718 if (err) {
1719 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1720 drbd_err(device, "bd_link_disk_holder(\"%s\", ...) failed with %d\n",
1721 bdev_path, err);
1722 bdev = ERR_PTR(err);
1723 }
1724 return bdev;
1725}
1726
1727static int open_backing_devices(struct drbd_device *device,
1728 struct disk_conf *new_disk_conf,
1729 struct drbd_backing_dev *nbc)
1730{
1731 struct block_device *bdev;
1732
1733 bdev = open_backing_dev(device, new_disk_conf->backing_dev, device, true);
1734 if (IS_ERR(bdev))
1735 return ERR_OPEN_DISK;
1736 nbc->backing_bdev = bdev;
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746 bdev = open_backing_dev(device, new_disk_conf->meta_dev,
1747
1748
1749 (new_disk_conf->meta_dev_idx < 0) ? (void*)device : (void*)drbd_m_holder,
1750
1751
1752 (new_disk_conf->meta_dev_idx != DRBD_MD_INDEX_FLEX_INT &&
1753 new_disk_conf->meta_dev_idx != DRBD_MD_INDEX_INTERNAL));
1754 if (IS_ERR(bdev))
1755 return ERR_OPEN_MD_DISK;
1756 nbc->md_bdev = bdev;
1757 return NO_ERROR;
1758}
1759
1760static void close_backing_dev(struct drbd_device *device, struct block_device *bdev,
1761 bool do_bd_unlink)
1762{
1763 if (!bdev)
1764 return;
1765 if (do_bd_unlink)
1766 bd_unlink_disk_holder(bdev, device->vdisk);
1767 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1768}
1769
1770void drbd_backing_dev_free(struct drbd_device *device, struct drbd_backing_dev *ldev)
1771{
1772 if (ldev == NULL)
1773 return;
1774
1775 close_backing_dev(device, ldev->md_bdev, ldev->md_bdev != ldev->backing_bdev);
1776 close_backing_dev(device, ldev->backing_bdev, true);
1777
1778 kfree(ldev->disk_conf);
1779 kfree(ldev);
1780}
1781
1782int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
1783{
1784 struct drbd_config_context adm_ctx;
1785 struct drbd_device *device;
1786 struct drbd_peer_device *peer_device;
1787 struct drbd_connection *connection;
1788 int err;
1789 enum drbd_ret_code retcode;
1790 enum determine_dev_size dd;
1791 sector_t max_possible_sectors;
1792 sector_t min_md_device_sectors;
1793 struct drbd_backing_dev *nbc = NULL;
1794 struct disk_conf *new_disk_conf = NULL;
1795 struct lru_cache *resync_lru = NULL;
1796 struct fifo_buffer *new_plan = NULL;
1797 union drbd_state ns, os;
1798 enum drbd_state_rv rv;
1799 struct net_conf *nc;
1800
1801 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
1802 if (!adm_ctx.reply_skb)
1803 return retcode;
1804 if (retcode != NO_ERROR)
1805 goto finish;
1806
1807 device = adm_ctx.device;
1808 mutex_lock(&adm_ctx.resource->adm_mutex);
1809 peer_device = first_peer_device(device);
1810 connection = peer_device->connection;
1811 conn_reconfig_start(connection);
1812
1813
1814 if (device->state.disk > D_DISKLESS) {
1815 retcode = ERR_DISK_CONFIGURED;
1816 goto fail;
1817 }
1818
1819
1820
1821
1822 wait_event(device->misc_wait, !test_bit(GOING_DISKLESS, &device->flags));
1823
1824
1825 clear_bit(FORCE_DETACH, &device->flags);
1826 clear_bit(WAS_IO_ERROR, &device->flags);
1827 clear_bit(WAS_READ_ERROR, &device->flags);
1828
1829
1830 device->rs_total = 0;
1831 device->rs_failed = 0;
1832 atomic_set(&device->rs_pending_cnt, 0);
1833
1834
1835 nbc = kzalloc(sizeof(struct drbd_backing_dev), GFP_KERNEL);
1836 if (!nbc) {
1837 retcode = ERR_NOMEM;
1838 goto fail;
1839 }
1840 spin_lock_init(&nbc->md.uuid_lock);
1841
1842 new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
1843 if (!new_disk_conf) {
1844 retcode = ERR_NOMEM;
1845 goto fail;
1846 }
1847 nbc->disk_conf = new_disk_conf;
1848
1849 set_disk_conf_defaults(new_disk_conf);
1850 err = disk_conf_from_attrs(new_disk_conf, info);
1851 if (err) {
1852 retcode = ERR_MANDATORY_TAG;
1853 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
1854 goto fail;
1855 }
1856
1857 if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1858 new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1859
1860 new_plan = fifo_alloc((new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ);
1861 if (!new_plan) {
1862 retcode = ERR_NOMEM;
1863 goto fail;
1864 }
1865
1866 if (new_disk_conf->meta_dev_idx < DRBD_MD_INDEX_FLEX_INT) {
1867 retcode = ERR_MD_IDX_INVALID;
1868 goto fail;
1869 }
1870
1871 rcu_read_lock();
1872 nc = rcu_dereference(connection->net_conf);
1873 if (nc) {
1874 if (new_disk_conf->fencing == FP_STONITH && nc->wire_protocol == DRBD_PROT_A) {
1875 rcu_read_unlock();
1876 retcode = ERR_STONITH_AND_PROT_A;
1877 goto fail;
1878 }
1879 }
1880 rcu_read_unlock();
1881
1882 retcode = open_backing_devices(device, new_disk_conf, nbc);
1883 if (retcode != NO_ERROR)
1884 goto fail;
1885
1886 if ((nbc->backing_bdev == nbc->md_bdev) !=
1887 (new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
1888 new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)) {
1889 retcode = ERR_MD_IDX_INVALID;
1890 goto fail;
1891 }
1892
1893 resync_lru = lc_create("resync", drbd_bm_ext_cache,
1894 1, 61, sizeof(struct bm_extent),
1895 offsetof(struct bm_extent, lce));
1896 if (!resync_lru) {
1897 retcode = ERR_NOMEM;
1898 goto fail;
1899 }
1900
1901
1902
1903 retcode = drbd_md_read(device, nbc);
1904 if (retcode != NO_ERROR)
1905 goto fail;
1906
1907 sanitize_disk_conf(device, new_disk_conf, nbc);
1908
1909 if (drbd_get_max_capacity(nbc) < new_disk_conf->disk_size) {
1910 drbd_err(device, "max capacity %llu smaller than disk size %llu\n",
1911 (unsigned long long) drbd_get_max_capacity(nbc),
1912 (unsigned long long) new_disk_conf->disk_size);
1913 retcode = ERR_DISK_TOO_SMALL;
1914 goto fail;
1915 }
1916
1917 if (new_disk_conf->meta_dev_idx < 0) {
1918 max_possible_sectors = DRBD_MAX_SECTORS_FLEX;
1919
1920 min_md_device_sectors = (2<<10);
1921 } else {
1922 max_possible_sectors = DRBD_MAX_SECTORS;
1923 min_md_device_sectors = MD_128MB_SECT * (new_disk_conf->meta_dev_idx + 1);
1924 }
1925
1926 if (drbd_get_capacity(nbc->md_bdev) < min_md_device_sectors) {
1927 retcode = ERR_MD_DISK_TOO_SMALL;
1928 drbd_warn(device, "refusing attach: md-device too small, "
1929 "at least %llu sectors needed for this meta-disk type\n",
1930 (unsigned long long) min_md_device_sectors);
1931 goto fail;
1932 }
1933
1934
1935
1936 if (drbd_get_max_capacity(nbc) < get_capacity(device->vdisk)) {
1937 retcode = ERR_DISK_TOO_SMALL;
1938 goto fail;
1939 }
1940
1941 nbc->known_size = drbd_get_capacity(nbc->backing_bdev);
1942
1943 if (nbc->known_size > max_possible_sectors) {
1944 drbd_warn(device, "==> truncating very big lower level device "
1945 "to currently maximum possible %llu sectors <==\n",
1946 (unsigned long long) max_possible_sectors);
1947 if (new_disk_conf->meta_dev_idx >= 0)
1948 drbd_warn(device, "==>> using internal or flexible "
1949 "meta data may help <<==\n");
1950 }
1951
1952 drbd_suspend_io(device);
1953
1954
1955
1956
1957
1958
1959
1960 wait_event(device->misc_wait, !atomic_read(&device->ap_pending_cnt) || drbd_suspended(device));
1961
1962 drbd_flush_workqueue(&connection->sender_work);
1963
1964 rv = _drbd_request_state(device, NS(disk, D_ATTACHING), CS_VERBOSE);
1965 retcode = rv;
1966 drbd_resume_io(device);
1967 if (rv < SS_SUCCESS)
1968 goto fail;
1969
1970 if (!get_ldev_if_state(device, D_ATTACHING))
1971 goto force_diskless;
1972
1973 if (!device->bitmap) {
1974 if (drbd_bm_init(device)) {
1975 retcode = ERR_NOMEM;
1976 goto force_diskless_dec;
1977 }
1978 }
1979
1980 if (device->state.pdsk != D_UP_TO_DATE && device->ed_uuid &&
1981 (device->state.role == R_PRIMARY || device->state.peer == R_PRIMARY) &&
1982 (device->ed_uuid & ~((u64)1)) != (nbc->md.uuid[UI_CURRENT] & ~((u64)1))) {
1983 drbd_err(device, "Can only attach to data with current UUID=%016llX\n",
1984 (unsigned long long)device->ed_uuid);
1985 retcode = ERR_DATA_NOT_CURRENT;
1986 goto force_diskless_dec;
1987 }
1988
1989
1990 if (drbd_check_al_size(device, new_disk_conf)) {
1991 retcode = ERR_NOMEM;
1992 goto force_diskless_dec;
1993 }
1994
1995
1996 {
1997 unsigned long long nsz = drbd_new_dev_size(device, nbc, nbc->disk_conf->disk_size, 0);
1998 unsigned long long eff = nbc->md.la_size_sect;
1999 if (drbd_md_test_flag(nbc, MDF_CONSISTENT) && nsz < eff) {
2000 if (nsz == nbc->disk_conf->disk_size) {
2001 drbd_warn(device, "truncating a consistent device during attach (%llu < %llu)\n", nsz, eff);
2002 } else {
2003 drbd_warn(device, "refusing to truncate a consistent device (%llu < %llu)\n", nsz, eff);
2004 drbd_msg_sprintf_info(adm_ctx.reply_skb,
2005 "To-be-attached device has last effective > current size, and is consistent\n"
2006 "(%llu > %llu sectors). Refusing to attach.", eff, nsz);
2007 retcode = ERR_IMPLICIT_SHRINK;
2008 goto force_diskless_dec;
2009 }
2010 }
2011 }
2012
2013 lock_all_resources();
2014 retcode = drbd_resync_after_valid(device, new_disk_conf->resync_after);
2015 if (retcode != NO_ERROR) {
2016 unlock_all_resources();
2017 goto force_diskless_dec;
2018 }
2019
2020
2021
2022 if (new_disk_conf->md_flushes)
2023 clear_bit(MD_NO_FUA, &device->flags);
2024 else
2025 set_bit(MD_NO_FUA, &device->flags);
2026
2027
2028
2029
2030
2031 D_ASSERT(device, device->ldev == NULL);
2032 device->ldev = nbc;
2033 device->resync = resync_lru;
2034 device->rs_plan_s = new_plan;
2035 nbc = NULL;
2036 resync_lru = NULL;
2037 new_disk_conf = NULL;
2038 new_plan = NULL;
2039
2040 drbd_resync_after_changed(device);
2041 drbd_bump_write_ordering(device->resource, device->ldev, WO_BDEV_FLUSH);
2042 unlock_all_resources();
2043
2044 if (drbd_md_test_flag(device->ldev, MDF_CRASHED_PRIMARY))
2045 set_bit(CRASHED_PRIMARY, &device->flags);
2046 else
2047 clear_bit(CRASHED_PRIMARY, &device->flags);
2048
2049 if (drbd_md_test_flag(device->ldev, MDF_PRIMARY_IND) &&
2050 !(device->state.role == R_PRIMARY && device->resource->susp_nod))
2051 set_bit(CRASHED_PRIMARY, &device->flags);
2052
2053 device->send_cnt = 0;
2054 device->recv_cnt = 0;
2055 device->read_cnt = 0;
2056 device->writ_cnt = 0;
2057
2058 drbd_reconsider_queue_parameters(device, device->ldev, NULL);
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074 clear_bit(USE_DEGR_WFC_T, &device->flags);
2075 if (device->state.role != R_PRIMARY &&
2076 drbd_md_test_flag(device->ldev, MDF_PRIMARY_IND) &&
2077 !drbd_md_test_flag(device->ldev, MDF_CONNECTED_IND))
2078 set_bit(USE_DEGR_WFC_T, &device->flags);
2079
2080 dd = drbd_determine_dev_size(device, 0, NULL);
2081 if (dd <= DS_ERROR) {
2082 retcode = ERR_NOMEM_BITMAP;
2083 goto force_diskless_dec;
2084 } else if (dd == DS_GREW)
2085 set_bit(RESYNC_AFTER_NEG, &device->flags);
2086
2087 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC) ||
2088 (test_bit(CRASHED_PRIMARY, &device->flags) &&
2089 drbd_md_test_flag(device->ldev, MDF_AL_DISABLED))) {
2090 drbd_info(device, "Assuming that all blocks are out of sync "
2091 "(aka FullSync)\n");
2092 if (drbd_bitmap_io(device, &drbd_bmio_set_n_write,
2093 "set_n_write from attaching", BM_LOCKED_MASK)) {
2094 retcode = ERR_IO_MD_DISK;
2095 goto force_diskless_dec;
2096 }
2097 } else {
2098 if (drbd_bitmap_io(device, &drbd_bm_read,
2099 "read from attaching", BM_LOCKED_MASK)) {
2100 retcode = ERR_IO_MD_DISK;
2101 goto force_diskless_dec;
2102 }
2103 }
2104
2105 if (_drbd_bm_total_weight(device) == drbd_bm_bits(device))
2106 drbd_suspend_al(device);
2107
2108 spin_lock_irq(&device->resource->req_lock);
2109 os = drbd_read_state(device);
2110 ns = os;
2111
2112
2113
2114
2115
2116 if (drbd_md_test_flag(device->ldev, MDF_CONSISTENT)) {
2117 if (drbd_md_test_flag(device->ldev, MDF_WAS_UP_TO_DATE))
2118 ns.disk = D_CONSISTENT;
2119 else
2120 ns.disk = D_OUTDATED;
2121 } else {
2122 ns.disk = D_INCONSISTENT;
2123 }
2124
2125 if (drbd_md_test_flag(device->ldev, MDF_PEER_OUT_DATED))
2126 ns.pdsk = D_OUTDATED;
2127
2128 rcu_read_lock();
2129 if (ns.disk == D_CONSISTENT &&
2130 (ns.pdsk == D_OUTDATED || rcu_dereference(device->ldev->disk_conf)->fencing == FP_DONT_CARE))
2131 ns.disk = D_UP_TO_DATE;
2132
2133
2134
2135
2136
2137
2138 if (rcu_dereference(device->ldev->disk_conf)->al_updates)
2139 device->ldev->md.flags &= ~MDF_AL_DISABLED;
2140 else
2141 device->ldev->md.flags |= MDF_AL_DISABLED;
2142
2143 rcu_read_unlock();
2144
2145
2146
2147 if (device->state.conn == C_CONNECTED) {
2148 device->new_state_tmp.i = ns.i;
2149 ns.i = os.i;
2150 ns.disk = D_NEGOTIATING;
2151
2152
2153
2154
2155 kfree(device->p_uuid);
2156 device->p_uuid = NULL;
2157 }
2158
2159 rv = _drbd_set_state(device, ns, CS_VERBOSE, NULL);
2160 spin_unlock_irq(&device->resource->req_lock);
2161
2162 if (rv < SS_SUCCESS)
2163 goto force_diskless_dec;
2164
2165 mod_timer(&device->request_timer, jiffies + HZ);
2166
2167 if (device->state.role == R_PRIMARY)
2168 device->ldev->md.uuid[UI_CURRENT] |= (u64)1;
2169 else
2170 device->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
2171
2172 drbd_md_mark_dirty(device);
2173 drbd_md_sync(device);
2174
2175 kobject_uevent(&disk_to_dev(device->vdisk)->kobj, KOBJ_CHANGE);
2176 put_ldev(device);
2177 conn_reconfig_done(connection);
2178 mutex_unlock(&adm_ctx.resource->adm_mutex);
2179 drbd_adm_finish(&adm_ctx, info, retcode);
2180 return 0;
2181
2182 force_diskless_dec:
2183 put_ldev(device);
2184 force_diskless:
2185 drbd_force_state(device, NS(disk, D_DISKLESS));
2186 drbd_md_sync(device);
2187 fail:
2188 conn_reconfig_done(connection);
2189 if (nbc) {
2190 close_backing_dev(device, nbc->md_bdev, nbc->md_bdev != nbc->backing_bdev);
2191 close_backing_dev(device, nbc->backing_bdev, true);
2192 kfree(nbc);
2193 }
2194 kfree(new_disk_conf);
2195 lc_destroy(resync_lru);
2196 kfree(new_plan);
2197 mutex_unlock(&adm_ctx.resource->adm_mutex);
2198 finish:
2199 drbd_adm_finish(&adm_ctx, info, retcode);
2200 return 0;
2201}
2202
2203static int adm_detach(struct drbd_device *device, int force)
2204{
2205 if (force) {
2206 set_bit(FORCE_DETACH, &device->flags);
2207 drbd_force_state(device, NS(disk, D_FAILED));
2208 return SS_SUCCESS;
2209 }
2210
2211 return drbd_request_detach_interruptible(device);
2212}
2213
2214
2215
2216
2217
2218
2219int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info)
2220{
2221 struct drbd_config_context adm_ctx;
2222 enum drbd_ret_code retcode;
2223 struct detach_parms parms = { };
2224 int err;
2225
2226 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
2227 if (!adm_ctx.reply_skb)
2228 return retcode;
2229 if (retcode != NO_ERROR)
2230 goto out;
2231
2232 if (info->attrs[DRBD_NLA_DETACH_PARMS]) {
2233 err = detach_parms_from_attrs(&parms, info);
2234 if (err) {
2235 retcode = ERR_MANDATORY_TAG;
2236 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2237 goto out;
2238 }
2239 }
2240
2241 mutex_lock(&adm_ctx.resource->adm_mutex);
2242 retcode = adm_detach(adm_ctx.device, parms.force_detach);
2243 mutex_unlock(&adm_ctx.resource->adm_mutex);
2244out:
2245 drbd_adm_finish(&adm_ctx, info, retcode);
2246 return 0;
2247}
2248
2249static bool conn_resync_running(struct drbd_connection *connection)
2250{
2251 struct drbd_peer_device *peer_device;
2252 bool rv = false;
2253 int vnr;
2254
2255 rcu_read_lock();
2256 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2257 struct drbd_device *device = peer_device->device;
2258 if (device->state.conn == C_SYNC_SOURCE ||
2259 device->state.conn == C_SYNC_TARGET ||
2260 device->state.conn == C_PAUSED_SYNC_S ||
2261 device->state.conn == C_PAUSED_SYNC_T) {
2262 rv = true;
2263 break;
2264 }
2265 }
2266 rcu_read_unlock();
2267
2268 return rv;
2269}
2270
2271static bool conn_ov_running(struct drbd_connection *connection)
2272{
2273 struct drbd_peer_device *peer_device;
2274 bool rv = false;
2275 int vnr;
2276
2277 rcu_read_lock();
2278 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2279 struct drbd_device *device = peer_device->device;
2280 if (device->state.conn == C_VERIFY_S ||
2281 device->state.conn == C_VERIFY_T) {
2282 rv = true;
2283 break;
2284 }
2285 }
2286 rcu_read_unlock();
2287
2288 return rv;
2289}
2290
2291static enum drbd_ret_code
2292_check_net_options(struct drbd_connection *connection, struct net_conf *old_net_conf, struct net_conf *new_net_conf)
2293{
2294 struct drbd_peer_device *peer_device;
2295 int i;
2296
2297 if (old_net_conf && connection->cstate == C_WF_REPORT_PARAMS && connection->agreed_pro_version < 100) {
2298 if (new_net_conf->wire_protocol != old_net_conf->wire_protocol)
2299 return ERR_NEED_APV_100;
2300
2301 if (new_net_conf->two_primaries != old_net_conf->two_primaries)
2302 return ERR_NEED_APV_100;
2303
2304 if (strcmp(new_net_conf->integrity_alg, old_net_conf->integrity_alg))
2305 return ERR_NEED_APV_100;
2306 }
2307
2308 if (!new_net_conf->two_primaries &&
2309 conn_highest_role(connection) == R_PRIMARY &&
2310 conn_highest_peer(connection) == R_PRIMARY)
2311 return ERR_NEED_ALLOW_TWO_PRI;
2312
2313 if (new_net_conf->two_primaries &&
2314 (new_net_conf->wire_protocol != DRBD_PROT_C))
2315 return ERR_NOT_PROTO_C;
2316
2317 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2318 struct drbd_device *device = peer_device->device;
2319 if (get_ldev(device)) {
2320 enum drbd_fencing_p fp = rcu_dereference(device->ldev->disk_conf)->fencing;
2321 put_ldev(device);
2322 if (new_net_conf->wire_protocol == DRBD_PROT_A && fp == FP_STONITH)
2323 return ERR_STONITH_AND_PROT_A;
2324 }
2325 if (device->state.role == R_PRIMARY && new_net_conf->discard_my_data)
2326 return ERR_DISCARD_IMPOSSIBLE;
2327 }
2328
2329 if (new_net_conf->on_congestion != OC_BLOCK && new_net_conf->wire_protocol != DRBD_PROT_A)
2330 return ERR_CONG_NOT_PROTO_A;
2331
2332 return NO_ERROR;
2333}
2334
2335static enum drbd_ret_code
2336check_net_options(struct drbd_connection *connection, struct net_conf *new_net_conf)
2337{
2338 enum drbd_ret_code rv;
2339 struct drbd_peer_device *peer_device;
2340 int i;
2341
2342 rcu_read_lock();
2343 rv = _check_net_options(connection, rcu_dereference(connection->net_conf), new_net_conf);
2344 rcu_read_unlock();
2345
2346
2347 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2348 struct drbd_device *device = peer_device->device;
2349 if (!device->bitmap) {
2350 if (drbd_bm_init(device))
2351 return ERR_NOMEM;
2352 }
2353 }
2354
2355 return rv;
2356}
2357
2358struct crypto {
2359 struct crypto_shash *verify_tfm;
2360 struct crypto_shash *csums_tfm;
2361 struct crypto_shash *cram_hmac_tfm;
2362 struct crypto_shash *integrity_tfm;
2363};
2364
2365static int
2366alloc_shash(struct crypto_shash **tfm, char *tfm_name, int err_alg)
2367{
2368 if (!tfm_name[0])
2369 return NO_ERROR;
2370
2371 *tfm = crypto_alloc_shash(tfm_name, 0, 0);
2372 if (IS_ERR(*tfm)) {
2373 *tfm = NULL;
2374 return err_alg;
2375 }
2376
2377 return NO_ERROR;
2378}
2379
2380static enum drbd_ret_code
2381alloc_crypto(struct crypto *crypto, struct net_conf *new_net_conf)
2382{
2383 char hmac_name[CRYPTO_MAX_ALG_NAME];
2384 enum drbd_ret_code rv;
2385
2386 rv = alloc_shash(&crypto->csums_tfm, new_net_conf->csums_alg,
2387 ERR_CSUMS_ALG);
2388 if (rv != NO_ERROR)
2389 return rv;
2390 rv = alloc_shash(&crypto->verify_tfm, new_net_conf->verify_alg,
2391 ERR_VERIFY_ALG);
2392 if (rv != NO_ERROR)
2393 return rv;
2394 rv = alloc_shash(&crypto->integrity_tfm, new_net_conf->integrity_alg,
2395 ERR_INTEGRITY_ALG);
2396 if (rv != NO_ERROR)
2397 return rv;
2398 if (new_net_conf->cram_hmac_alg[0] != 0) {
2399 snprintf(hmac_name, CRYPTO_MAX_ALG_NAME, "hmac(%s)",
2400 new_net_conf->cram_hmac_alg);
2401
2402 rv = alloc_shash(&crypto->cram_hmac_tfm, hmac_name,
2403 ERR_AUTH_ALG);
2404 }
2405
2406 return rv;
2407}
2408
2409static void free_crypto(struct crypto *crypto)
2410{
2411 crypto_free_shash(crypto->cram_hmac_tfm);
2412 crypto_free_shash(crypto->integrity_tfm);
2413 crypto_free_shash(crypto->csums_tfm);
2414 crypto_free_shash(crypto->verify_tfm);
2415}
2416
2417int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info)
2418{
2419 struct drbd_config_context adm_ctx;
2420 enum drbd_ret_code retcode;
2421 struct drbd_connection *connection;
2422 struct net_conf *old_net_conf, *new_net_conf = NULL;
2423 int err;
2424 int ovr;
2425 int rsr;
2426 struct crypto crypto = { };
2427
2428 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_CONNECTION);
2429 if (!adm_ctx.reply_skb)
2430 return retcode;
2431 if (retcode != NO_ERROR)
2432 goto finish;
2433
2434 connection = adm_ctx.connection;
2435 mutex_lock(&adm_ctx.resource->adm_mutex);
2436
2437 new_net_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
2438 if (!new_net_conf) {
2439 retcode = ERR_NOMEM;
2440 goto out;
2441 }
2442
2443 conn_reconfig_start(connection);
2444
2445 mutex_lock(&connection->data.mutex);
2446 mutex_lock(&connection->resource->conf_update);
2447 old_net_conf = connection->net_conf;
2448
2449 if (!old_net_conf) {
2450 drbd_msg_put_info(adm_ctx.reply_skb, "net conf missing, try connect");
2451 retcode = ERR_INVALID_REQUEST;
2452 goto fail;
2453 }
2454
2455 *new_net_conf = *old_net_conf;
2456 if (should_set_defaults(info))
2457 set_net_conf_defaults(new_net_conf);
2458
2459 err = net_conf_from_attrs_for_change(new_net_conf, info);
2460 if (err && err != -ENOMSG) {
2461 retcode = ERR_MANDATORY_TAG;
2462 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2463 goto fail;
2464 }
2465
2466 retcode = check_net_options(connection, new_net_conf);
2467 if (retcode != NO_ERROR)
2468 goto fail;
2469
2470
2471 rsr = conn_resync_running(connection);
2472 if (rsr && strcmp(new_net_conf->csums_alg, old_net_conf->csums_alg)) {
2473 retcode = ERR_CSUMS_RESYNC_RUNNING;
2474 goto fail;
2475 }
2476
2477
2478 ovr = conn_ov_running(connection);
2479 if (ovr && strcmp(new_net_conf->verify_alg, old_net_conf->verify_alg)) {
2480 retcode = ERR_VERIFY_RUNNING;
2481 goto fail;
2482 }
2483
2484 retcode = alloc_crypto(&crypto, new_net_conf);
2485 if (retcode != NO_ERROR)
2486 goto fail;
2487
2488 rcu_assign_pointer(connection->net_conf, new_net_conf);
2489
2490 if (!rsr) {
2491 crypto_free_shash(connection->csums_tfm);
2492 connection->csums_tfm = crypto.csums_tfm;
2493 crypto.csums_tfm = NULL;
2494 }
2495 if (!ovr) {
2496 crypto_free_shash(connection->verify_tfm);
2497 connection->verify_tfm = crypto.verify_tfm;
2498 crypto.verify_tfm = NULL;
2499 }
2500
2501 crypto_free_shash(connection->integrity_tfm);
2502 connection->integrity_tfm = crypto.integrity_tfm;
2503 if (connection->cstate >= C_WF_REPORT_PARAMS && connection->agreed_pro_version >= 100)
2504
2505 __drbd_send_protocol(connection, P_PROTOCOL_UPDATE);
2506
2507 crypto_free_shash(connection->cram_hmac_tfm);
2508 connection->cram_hmac_tfm = crypto.cram_hmac_tfm;
2509
2510 mutex_unlock(&connection->resource->conf_update);
2511 mutex_unlock(&connection->data.mutex);
2512 synchronize_rcu();
2513 kfree(old_net_conf);
2514
2515 if (connection->cstate >= C_WF_REPORT_PARAMS) {
2516 struct drbd_peer_device *peer_device;
2517 int vnr;
2518
2519 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
2520 drbd_send_sync_param(peer_device);
2521 }
2522
2523 goto done;
2524
2525 fail:
2526 mutex_unlock(&connection->resource->conf_update);
2527 mutex_unlock(&connection->data.mutex);
2528 free_crypto(&crypto);
2529 kfree(new_net_conf);
2530 done:
2531 conn_reconfig_done(connection);
2532 out:
2533 mutex_unlock(&adm_ctx.resource->adm_mutex);
2534 finish:
2535 drbd_adm_finish(&adm_ctx, info, retcode);
2536 return 0;
2537}
2538
2539static void connection_to_info(struct connection_info *info,
2540 struct drbd_connection *connection)
2541{
2542 info->conn_connection_state = connection->cstate;
2543 info->conn_role = conn_highest_peer(connection);
2544}
2545
2546static void peer_device_to_info(struct peer_device_info *info,
2547 struct drbd_peer_device *peer_device)
2548{
2549 struct drbd_device *device = peer_device->device;
2550
2551 info->peer_repl_state =
2552 max_t(enum drbd_conns, C_WF_REPORT_PARAMS, device->state.conn);
2553 info->peer_disk_state = device->state.pdsk;
2554 info->peer_resync_susp_user = device->state.user_isp;
2555 info->peer_resync_susp_peer = device->state.peer_isp;
2556 info->peer_resync_susp_dependency = device->state.aftr_isp;
2557}
2558
2559int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
2560{
2561 struct connection_info connection_info;
2562 enum drbd_notification_type flags;
2563 unsigned int peer_devices = 0;
2564 struct drbd_config_context adm_ctx;
2565 struct drbd_peer_device *peer_device;
2566 struct net_conf *old_net_conf, *new_net_conf = NULL;
2567 struct crypto crypto = { };
2568 struct drbd_resource *resource;
2569 struct drbd_connection *connection;
2570 enum drbd_ret_code retcode;
2571 int i;
2572 int err;
2573
2574 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
2575
2576 if (!adm_ctx.reply_skb)
2577 return retcode;
2578 if (retcode != NO_ERROR)
2579 goto out;
2580 if (!(adm_ctx.my_addr && adm_ctx.peer_addr)) {
2581 drbd_msg_put_info(adm_ctx.reply_skb, "connection endpoint(s) missing");
2582 retcode = ERR_INVALID_REQUEST;
2583 goto out;
2584 }
2585
2586
2587
2588
2589 for_each_resource(resource, &drbd_resources) {
2590 for_each_connection(connection, resource) {
2591 if (nla_len(adm_ctx.my_addr) == connection->my_addr_len &&
2592 !memcmp(nla_data(adm_ctx.my_addr), &connection->my_addr,
2593 connection->my_addr_len)) {
2594 retcode = ERR_LOCAL_ADDR;
2595 goto out;
2596 }
2597
2598 if (nla_len(adm_ctx.peer_addr) == connection->peer_addr_len &&
2599 !memcmp(nla_data(adm_ctx.peer_addr), &connection->peer_addr,
2600 connection->peer_addr_len)) {
2601 retcode = ERR_PEER_ADDR;
2602 goto out;
2603 }
2604 }
2605 }
2606
2607 mutex_lock(&adm_ctx.resource->adm_mutex);
2608 connection = first_connection(adm_ctx.resource);
2609 conn_reconfig_start(connection);
2610
2611 if (connection->cstate > C_STANDALONE) {
2612 retcode = ERR_NET_CONFIGURED;
2613 goto fail;
2614 }
2615
2616
2617 new_net_conf = kzalloc(sizeof(*new_net_conf), GFP_KERNEL);
2618 if (!new_net_conf) {
2619 retcode = ERR_NOMEM;
2620 goto fail;
2621 }
2622
2623 set_net_conf_defaults(new_net_conf);
2624
2625 err = net_conf_from_attrs(new_net_conf, info);
2626 if (err && err != -ENOMSG) {
2627 retcode = ERR_MANDATORY_TAG;
2628 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2629 goto fail;
2630 }
2631
2632 retcode = check_net_options(connection, new_net_conf);
2633 if (retcode != NO_ERROR)
2634 goto fail;
2635
2636 retcode = alloc_crypto(&crypto, new_net_conf);
2637 if (retcode != NO_ERROR)
2638 goto fail;
2639
2640 ((char *)new_net_conf->shared_secret)[SHARED_SECRET_MAX-1] = 0;
2641
2642 drbd_flush_workqueue(&connection->sender_work);
2643
2644 mutex_lock(&adm_ctx.resource->conf_update);
2645 old_net_conf = connection->net_conf;
2646 if (old_net_conf) {
2647 retcode = ERR_NET_CONFIGURED;
2648 mutex_unlock(&adm_ctx.resource->conf_update);
2649 goto fail;
2650 }
2651 rcu_assign_pointer(connection->net_conf, new_net_conf);
2652
2653 conn_free_crypto(connection);
2654 connection->cram_hmac_tfm = crypto.cram_hmac_tfm;
2655 connection->integrity_tfm = crypto.integrity_tfm;
2656 connection->csums_tfm = crypto.csums_tfm;
2657 connection->verify_tfm = crypto.verify_tfm;
2658
2659 connection->my_addr_len = nla_len(adm_ctx.my_addr);
2660 memcpy(&connection->my_addr, nla_data(adm_ctx.my_addr), connection->my_addr_len);
2661 connection->peer_addr_len = nla_len(adm_ctx.peer_addr);
2662 memcpy(&connection->peer_addr, nla_data(adm_ctx.peer_addr), connection->peer_addr_len);
2663
2664 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2665 peer_devices++;
2666 }
2667
2668 connection_to_info(&connection_info, connection);
2669 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
2670 mutex_lock(¬ification_mutex);
2671 notify_connection_state(NULL, 0, connection, &connection_info, NOTIFY_CREATE | flags);
2672 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2673 struct peer_device_info peer_device_info;
2674
2675 peer_device_to_info(&peer_device_info, peer_device);
2676 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
2677 notify_peer_device_state(NULL, 0, peer_device, &peer_device_info, NOTIFY_CREATE | flags);
2678 }
2679 mutex_unlock(¬ification_mutex);
2680 mutex_unlock(&adm_ctx.resource->conf_update);
2681
2682 rcu_read_lock();
2683 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2684 struct drbd_device *device = peer_device->device;
2685 device->send_cnt = 0;
2686 device->recv_cnt = 0;
2687 }
2688 rcu_read_unlock();
2689
2690 retcode = conn_request_state(connection, NS(conn, C_UNCONNECTED), CS_VERBOSE);
2691
2692 conn_reconfig_done(connection);
2693 mutex_unlock(&adm_ctx.resource->adm_mutex);
2694 drbd_adm_finish(&adm_ctx, info, retcode);
2695 return 0;
2696
2697fail:
2698 free_crypto(&crypto);
2699 kfree(new_net_conf);
2700
2701 conn_reconfig_done(connection);
2702 mutex_unlock(&adm_ctx.resource->adm_mutex);
2703out:
2704 drbd_adm_finish(&adm_ctx, info, retcode);
2705 return 0;
2706}
2707
2708static enum drbd_state_rv conn_try_disconnect(struct drbd_connection *connection, bool force)
2709{
2710 enum drbd_conns cstate;
2711 enum drbd_state_rv rv;
2712
2713repeat:
2714 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING),
2715 force ? CS_HARD : 0);
2716
2717 switch (rv) {
2718 case SS_NOTHING_TO_DO:
2719 break;
2720 case SS_ALREADY_STANDALONE:
2721 return SS_SUCCESS;
2722 case SS_PRIMARY_NOP:
2723
2724 rv = conn_request_state(connection, NS2(conn, C_DISCONNECTING, pdsk, D_OUTDATED), 0);
2725
2726 if (rv == SS_OUTDATE_WO_CONN)
2727 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING), CS_VERBOSE);
2728
2729 break;
2730 case SS_CW_FAILED_BY_PEER:
2731 spin_lock_irq(&connection->resource->req_lock);
2732 cstate = connection->cstate;
2733 spin_unlock_irq(&connection->resource->req_lock);
2734 if (cstate <= C_WF_CONNECTION)
2735 goto repeat;
2736
2737 rv = conn_request_state(connection, NS2(conn, C_DISCONNECTING,
2738 disk, D_OUTDATED), 0);
2739 if (rv == SS_IS_DISKLESS || rv == SS_LOWER_THAN_OUTDATED) {
2740 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING),
2741 CS_HARD);
2742 }
2743 break;
2744 default:;
2745
2746 }
2747
2748 if (rv >= SS_SUCCESS) {
2749 enum drbd_state_rv rv2;
2750
2751
2752
2753
2754 drbd_thread_stop(&connection->receiver);
2755
2756
2757
2758
2759
2760
2761
2762 rv2 = conn_request_state(connection, NS(conn, C_STANDALONE),
2763 CS_VERBOSE | CS_HARD);
2764 if (rv2 < SS_SUCCESS)
2765 drbd_err(connection,
2766 "unexpected rv2=%d in conn_try_disconnect()\n",
2767 rv2);
2768
2769
2770 }
2771 return rv;
2772}
2773
2774int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info)
2775{
2776 struct drbd_config_context adm_ctx;
2777 struct disconnect_parms parms;
2778 struct drbd_connection *connection;
2779 enum drbd_state_rv rv;
2780 enum drbd_ret_code retcode;
2781 int err;
2782
2783 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_CONNECTION);
2784 if (!adm_ctx.reply_skb)
2785 return retcode;
2786 if (retcode != NO_ERROR)
2787 goto fail;
2788
2789 connection = adm_ctx.connection;
2790 memset(&parms, 0, sizeof(parms));
2791 if (info->attrs[DRBD_NLA_DISCONNECT_PARMS]) {
2792 err = disconnect_parms_from_attrs(&parms, info);
2793 if (err) {
2794 retcode = ERR_MANDATORY_TAG;
2795 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2796 goto fail;
2797 }
2798 }
2799
2800 mutex_lock(&adm_ctx.resource->adm_mutex);
2801 rv = conn_try_disconnect(connection, parms.force_disconnect);
2802 if (rv < SS_SUCCESS)
2803 retcode = rv;
2804 else
2805 retcode = NO_ERROR;
2806 mutex_unlock(&adm_ctx.resource->adm_mutex);
2807 fail:
2808 drbd_adm_finish(&adm_ctx, info, retcode);
2809 return 0;
2810}
2811
2812void resync_after_online_grow(struct drbd_device *device)
2813{
2814 int iass;
2815
2816 drbd_info(device, "Resync of new storage after online grow\n");
2817 if (device->state.role != device->state.peer)
2818 iass = (device->state.role == R_PRIMARY);
2819 else
2820 iass = test_bit(RESOLVE_CONFLICTS, &first_peer_device(device)->connection->flags);
2821
2822 if (iass)
2823 drbd_start_resync(device, C_SYNC_SOURCE);
2824 else
2825 _drbd_request_state(device, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE + CS_SERIALIZE);
2826}
2827
2828int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info)
2829{
2830 struct drbd_config_context adm_ctx;
2831 struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
2832 struct resize_parms rs;
2833 struct drbd_device *device;
2834 enum drbd_ret_code retcode;
2835 enum determine_dev_size dd;
2836 bool change_al_layout = false;
2837 enum dds_flags ddsf;
2838 sector_t u_size;
2839 int err;
2840
2841 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
2842 if (!adm_ctx.reply_skb)
2843 return retcode;
2844 if (retcode != NO_ERROR)
2845 goto finish;
2846
2847 mutex_lock(&adm_ctx.resource->adm_mutex);
2848 device = adm_ctx.device;
2849 if (!get_ldev(device)) {
2850 retcode = ERR_NO_DISK;
2851 goto fail;
2852 }
2853
2854 memset(&rs, 0, sizeof(struct resize_parms));
2855 rs.al_stripes = device->ldev->md.al_stripes;
2856 rs.al_stripe_size = device->ldev->md.al_stripe_size_4k * 4;
2857 if (info->attrs[DRBD_NLA_RESIZE_PARMS]) {
2858 err = resize_parms_from_attrs(&rs, info);
2859 if (err) {
2860 retcode = ERR_MANDATORY_TAG;
2861 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2862 goto fail_ldev;
2863 }
2864 }
2865
2866 if (device->state.conn > C_CONNECTED) {
2867 retcode = ERR_RESIZE_RESYNC;
2868 goto fail_ldev;
2869 }
2870
2871 if (device->state.role == R_SECONDARY &&
2872 device->state.peer == R_SECONDARY) {
2873 retcode = ERR_NO_PRIMARY;
2874 goto fail_ldev;
2875 }
2876
2877 if (rs.no_resync && first_peer_device(device)->connection->agreed_pro_version < 93) {
2878 retcode = ERR_NEED_APV_93;
2879 goto fail_ldev;
2880 }
2881
2882 rcu_read_lock();
2883 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
2884 rcu_read_unlock();
2885 if (u_size != (sector_t)rs.resize_size) {
2886 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
2887 if (!new_disk_conf) {
2888 retcode = ERR_NOMEM;
2889 goto fail_ldev;
2890 }
2891 }
2892
2893 if (device->ldev->md.al_stripes != rs.al_stripes ||
2894 device->ldev->md.al_stripe_size_4k != rs.al_stripe_size / 4) {
2895 u32 al_size_k = rs.al_stripes * rs.al_stripe_size;
2896
2897 if (al_size_k > (16 * 1024 * 1024)) {
2898 retcode = ERR_MD_LAYOUT_TOO_BIG;
2899 goto fail_ldev;
2900 }
2901
2902 if (al_size_k < MD_32kB_SECT/2) {
2903 retcode = ERR_MD_LAYOUT_TOO_SMALL;
2904 goto fail_ldev;
2905 }
2906
2907 if (device->state.conn != C_CONNECTED && !rs.resize_force) {
2908 retcode = ERR_MD_LAYOUT_CONNECTED;
2909 goto fail_ldev;
2910 }
2911
2912 change_al_layout = true;
2913 }
2914
2915 if (device->ldev->known_size != drbd_get_capacity(device->ldev->backing_bdev))
2916 device->ldev->known_size = drbd_get_capacity(device->ldev->backing_bdev);
2917
2918 if (new_disk_conf) {
2919 mutex_lock(&device->resource->conf_update);
2920 old_disk_conf = device->ldev->disk_conf;
2921 *new_disk_conf = *old_disk_conf;
2922 new_disk_conf->disk_size = (sector_t)rs.resize_size;
2923 rcu_assign_pointer(device->ldev->disk_conf, new_disk_conf);
2924 mutex_unlock(&device->resource->conf_update);
2925 synchronize_rcu();
2926 kfree(old_disk_conf);
2927 new_disk_conf = NULL;
2928 }
2929
2930 ddsf = (rs.resize_force ? DDSF_FORCED : 0) | (rs.no_resync ? DDSF_NO_RESYNC : 0);
2931 dd = drbd_determine_dev_size(device, ddsf, change_al_layout ? &rs : NULL);
2932 drbd_md_sync(device);
2933 put_ldev(device);
2934 if (dd == DS_ERROR) {
2935 retcode = ERR_NOMEM_BITMAP;
2936 goto fail;
2937 } else if (dd == DS_ERROR_SPACE_MD) {
2938 retcode = ERR_MD_LAYOUT_NO_FIT;
2939 goto fail;
2940 } else if (dd == DS_ERROR_SHRINK) {
2941 retcode = ERR_IMPLICIT_SHRINK;
2942 goto fail;
2943 }
2944
2945 if (device->state.conn == C_CONNECTED) {
2946 if (dd == DS_GREW)
2947 set_bit(RESIZE_PENDING, &device->flags);
2948
2949 drbd_send_uuids(first_peer_device(device));
2950 drbd_send_sizes(first_peer_device(device), 1, ddsf);
2951 }
2952
2953 fail:
2954 mutex_unlock(&adm_ctx.resource->adm_mutex);
2955 finish:
2956 drbd_adm_finish(&adm_ctx, info, retcode);
2957 return 0;
2958
2959 fail_ldev:
2960 put_ldev(device);
2961 kfree(new_disk_conf);
2962 goto fail;
2963}
2964
2965int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info)
2966{
2967 struct drbd_config_context adm_ctx;
2968 enum drbd_ret_code retcode;
2969 struct res_opts res_opts;
2970 int err;
2971
2972 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
2973 if (!adm_ctx.reply_skb)
2974 return retcode;
2975 if (retcode != NO_ERROR)
2976 goto fail;
2977
2978 res_opts = adm_ctx.resource->res_opts;
2979 if (should_set_defaults(info))
2980 set_res_opts_defaults(&res_opts);
2981
2982 err = res_opts_from_attrs(&res_opts, info);
2983 if (err && err != -ENOMSG) {
2984 retcode = ERR_MANDATORY_TAG;
2985 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
2986 goto fail;
2987 }
2988
2989 mutex_lock(&adm_ctx.resource->adm_mutex);
2990 err = set_resource_options(adm_ctx.resource, &res_opts);
2991 if (err) {
2992 retcode = ERR_INVALID_REQUEST;
2993 if (err == -ENOMEM)
2994 retcode = ERR_NOMEM;
2995 }
2996 mutex_unlock(&adm_ctx.resource->adm_mutex);
2997
2998fail:
2999 drbd_adm_finish(&adm_ctx, info, retcode);
3000 return 0;
3001}
3002
3003int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info)
3004{
3005 struct drbd_config_context adm_ctx;
3006 struct drbd_device *device;
3007 int retcode;
3008
3009 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3010 if (!adm_ctx.reply_skb)
3011 return retcode;
3012 if (retcode != NO_ERROR)
3013 goto out;
3014
3015 device = adm_ctx.device;
3016 if (!get_ldev(device)) {
3017 retcode = ERR_NO_DISK;
3018 goto out;
3019 }
3020
3021 mutex_lock(&adm_ctx.resource->adm_mutex);
3022
3023
3024
3025
3026 drbd_suspend_io(device);
3027 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
3028 drbd_flush_workqueue(&first_peer_device(device)->connection->sender_work);
3029
3030
3031
3032
3033
3034 if (device->state.conn == C_STANDALONE && device->state.role == R_SECONDARY) {
3035 retcode = drbd_request_state(device, NS(disk, D_INCONSISTENT));
3036 if (retcode >= SS_SUCCESS) {
3037 if (drbd_bitmap_io(device, &drbd_bmio_set_n_write,
3038 "set_n_write from invalidate", BM_LOCKED_MASK))
3039 retcode = ERR_IO_MD_DISK;
3040 }
3041 } else
3042 retcode = drbd_request_state(device, NS(conn, C_STARTING_SYNC_T));
3043 drbd_resume_io(device);
3044 mutex_unlock(&adm_ctx.resource->adm_mutex);
3045 put_ldev(device);
3046out:
3047 drbd_adm_finish(&adm_ctx, info, retcode);
3048 return 0;
3049}
3050
3051static int drbd_adm_simple_request_state(struct sk_buff *skb, struct genl_info *info,
3052 union drbd_state mask, union drbd_state val)
3053{
3054 struct drbd_config_context adm_ctx;
3055 enum drbd_ret_code retcode;
3056
3057 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3058 if (!adm_ctx.reply_skb)
3059 return retcode;
3060 if (retcode != NO_ERROR)
3061 goto out;
3062
3063 mutex_lock(&adm_ctx.resource->adm_mutex);
3064 retcode = drbd_request_state(adm_ctx.device, mask, val);
3065 mutex_unlock(&adm_ctx.resource->adm_mutex);
3066out:
3067 drbd_adm_finish(&adm_ctx, info, retcode);
3068 return 0;
3069}
3070
3071static int drbd_bmio_set_susp_al(struct drbd_device *device) __must_hold(local)
3072{
3073 int rv;
3074
3075 rv = drbd_bmio_set_n_write(device);
3076 drbd_suspend_al(device);
3077 return rv;
3078}
3079
3080int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info)
3081{
3082 struct drbd_config_context adm_ctx;
3083 int retcode;
3084 struct drbd_device *device;
3085
3086 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3087 if (!adm_ctx.reply_skb)
3088 return retcode;
3089 if (retcode != NO_ERROR)
3090 goto out;
3091
3092 device = adm_ctx.device;
3093 if (!get_ldev(device)) {
3094 retcode = ERR_NO_DISK;
3095 goto out;
3096 }
3097
3098 mutex_lock(&adm_ctx.resource->adm_mutex);
3099
3100
3101
3102
3103 drbd_suspend_io(device);
3104 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
3105 drbd_flush_workqueue(&first_peer_device(device)->connection->sender_work);
3106
3107
3108
3109
3110
3111 if (device->state.conn == C_STANDALONE && device->state.role == R_PRIMARY) {
3112
3113
3114 retcode = drbd_request_state(device, NS(pdsk, D_INCONSISTENT));
3115 if (retcode >= SS_SUCCESS) {
3116 if (drbd_bitmap_io(device, &drbd_bmio_set_susp_al,
3117 "set_n_write from invalidate_peer",
3118 BM_LOCKED_SET_ALLOWED))
3119 retcode = ERR_IO_MD_DISK;
3120 }
3121 } else
3122 retcode = drbd_request_state(device, NS(conn, C_STARTING_SYNC_S));
3123 drbd_resume_io(device);
3124 mutex_unlock(&adm_ctx.resource->adm_mutex);
3125 put_ldev(device);
3126out:
3127 drbd_adm_finish(&adm_ctx, info, retcode);
3128 return 0;
3129}
3130
3131int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info)
3132{
3133 struct drbd_config_context adm_ctx;
3134 enum drbd_ret_code retcode;
3135
3136 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3137 if (!adm_ctx.reply_skb)
3138 return retcode;
3139 if (retcode != NO_ERROR)
3140 goto out;
3141
3142 mutex_lock(&adm_ctx.resource->adm_mutex);
3143 if (drbd_request_state(adm_ctx.device, NS(user_isp, 1)) == SS_NOTHING_TO_DO)
3144 retcode = ERR_PAUSE_IS_SET;
3145 mutex_unlock(&adm_ctx.resource->adm_mutex);
3146out:
3147 drbd_adm_finish(&adm_ctx, info, retcode);
3148 return 0;
3149}
3150
3151int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info)
3152{
3153 struct drbd_config_context adm_ctx;
3154 union drbd_dev_state s;
3155 enum drbd_ret_code retcode;
3156
3157 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3158 if (!adm_ctx.reply_skb)
3159 return retcode;
3160 if (retcode != NO_ERROR)
3161 goto out;
3162
3163 mutex_lock(&adm_ctx.resource->adm_mutex);
3164 if (drbd_request_state(adm_ctx.device, NS(user_isp, 0)) == SS_NOTHING_TO_DO) {
3165 s = adm_ctx.device->state;
3166 if (s.conn == C_PAUSED_SYNC_S || s.conn == C_PAUSED_SYNC_T) {
3167 retcode = s.aftr_isp ? ERR_PIC_AFTER_DEP :
3168 s.peer_isp ? ERR_PIC_PEER_DEP : ERR_PAUSE_IS_CLEAR;
3169 } else {
3170 retcode = ERR_PAUSE_IS_CLEAR;
3171 }
3172 }
3173 mutex_unlock(&adm_ctx.resource->adm_mutex);
3174out:
3175 drbd_adm_finish(&adm_ctx, info, retcode);
3176 return 0;
3177}
3178
3179int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info)
3180{
3181 return drbd_adm_simple_request_state(skb, info, NS(susp, 1));
3182}
3183
3184int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info)
3185{
3186 struct drbd_config_context adm_ctx;
3187 struct drbd_device *device;
3188 int retcode;
3189
3190 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3191 if (!adm_ctx.reply_skb)
3192 return retcode;
3193 if (retcode != NO_ERROR)
3194 goto out;
3195
3196 mutex_lock(&adm_ctx.resource->adm_mutex);
3197 device = adm_ctx.device;
3198 if (test_bit(NEW_CUR_UUID, &device->flags)) {
3199 if (get_ldev_if_state(device, D_ATTACHING)) {
3200 drbd_uuid_new_current(device);
3201 put_ldev(device);
3202 } else {
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218 u64 val;
3219 get_random_bytes(&val, sizeof(u64));
3220 drbd_set_ed_uuid(device, val);
3221 drbd_warn(device, "Resumed without access to data; please tear down before attempting to re-configure.\n");
3222 }
3223 clear_bit(NEW_CUR_UUID, &device->flags);
3224 }
3225 drbd_suspend_io(device);
3226 retcode = drbd_request_state(device, NS3(susp, 0, susp_nod, 0, susp_fen, 0));
3227 if (retcode == SS_SUCCESS) {
3228 if (device->state.conn < C_CONNECTED)
3229 tl_clear(first_peer_device(device)->connection);
3230 if (device->state.disk == D_DISKLESS || device->state.disk == D_FAILED)
3231 tl_restart(first_peer_device(device)->connection, FAIL_FROZEN_DISK_IO);
3232 }
3233 drbd_resume_io(device);
3234 mutex_unlock(&adm_ctx.resource->adm_mutex);
3235out:
3236 drbd_adm_finish(&adm_ctx, info, retcode);
3237 return 0;
3238}
3239
3240int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info)
3241{
3242 return drbd_adm_simple_request_state(skb, info, NS(disk, D_OUTDATED));
3243}
3244
3245static int nla_put_drbd_cfg_context(struct sk_buff *skb,
3246 struct drbd_resource *resource,
3247 struct drbd_connection *connection,
3248 struct drbd_device *device)
3249{
3250 struct nlattr *nla;
3251 nla = nla_nest_start_noflag(skb, DRBD_NLA_CFG_CONTEXT);
3252 if (!nla)
3253 goto nla_put_failure;
3254 if (device &&
3255 nla_put_u32(skb, T_ctx_volume, device->vnr))
3256 goto nla_put_failure;
3257 if (nla_put_string(skb, T_ctx_resource_name, resource->name))
3258 goto nla_put_failure;
3259 if (connection) {
3260 if (connection->my_addr_len &&
3261 nla_put(skb, T_ctx_my_addr, connection->my_addr_len, &connection->my_addr))
3262 goto nla_put_failure;
3263 if (connection->peer_addr_len &&
3264 nla_put(skb, T_ctx_peer_addr, connection->peer_addr_len, &connection->peer_addr))
3265 goto nla_put_failure;
3266 }
3267 nla_nest_end(skb, nla);
3268 return 0;
3269
3270nla_put_failure:
3271 if (nla)
3272 nla_nest_cancel(skb, nla);
3273 return -EMSGSIZE;
3274}
3275
3276
3277
3278
3279
3280
3281static struct nlattr *find_cfg_context_attr(const struct nlmsghdr *nlh, int attr)
3282{
3283 const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
3284 const int maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
3285 struct nlattr *nla;
3286
3287 nla = nla_find(nlmsg_attrdata(nlh, hdrlen), nlmsg_attrlen(nlh, hdrlen),
3288 DRBD_NLA_CFG_CONTEXT);
3289 if (!nla)
3290 return NULL;
3291 return drbd_nla_find_nested(maxtype, nla, __nla_type(attr));
3292}
3293
3294static void resource_to_info(struct resource_info *, struct drbd_resource *);
3295
3296int drbd_adm_dump_resources(struct sk_buff *skb, struct netlink_callback *cb)
3297{
3298 struct drbd_genlmsghdr *dh;
3299 struct drbd_resource *resource;
3300 struct resource_info resource_info;
3301 struct resource_statistics resource_statistics;
3302 int err;
3303
3304 rcu_read_lock();
3305 if (cb->args[0]) {
3306 for_each_resource_rcu(resource, &drbd_resources)
3307 if (resource == (struct drbd_resource *)cb->args[0])
3308 goto found_resource;
3309 err = 0;
3310 goto out;
3311 }
3312 resource = list_entry(&drbd_resources,
3313 struct drbd_resource, resources);
3314
3315found_resource:
3316 list_for_each_entry_continue_rcu(resource, &drbd_resources, resources) {
3317 goto put_result;
3318 }
3319 err = 0;
3320 goto out;
3321
3322put_result:
3323 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3324 cb->nlh->nlmsg_seq, &drbd_genl_family,
3325 NLM_F_MULTI, DRBD_ADM_GET_RESOURCES);
3326 err = -ENOMEM;
3327 if (!dh)
3328 goto out;
3329 dh->minor = -1U;
3330 dh->ret_code = NO_ERROR;
3331 err = nla_put_drbd_cfg_context(skb, resource, NULL, NULL);
3332 if (err)
3333 goto out;
3334 err = res_opts_to_skb(skb, &resource->res_opts, !capable(CAP_SYS_ADMIN));
3335 if (err)
3336 goto out;
3337 resource_to_info(&resource_info, resource);
3338 err = resource_info_to_skb(skb, &resource_info, !capable(CAP_SYS_ADMIN));
3339 if (err)
3340 goto out;
3341 resource_statistics.res_stat_write_ordering = resource->write_ordering;
3342 err = resource_statistics_to_skb(skb, &resource_statistics, !capable(CAP_SYS_ADMIN));
3343 if (err)
3344 goto out;
3345 cb->args[0] = (long)resource;
3346 genlmsg_end(skb, dh);
3347 err = 0;
3348
3349out:
3350 rcu_read_unlock();
3351 if (err)
3352 return err;
3353 return skb->len;
3354}
3355
3356static void device_to_statistics(struct device_statistics *s,
3357 struct drbd_device *device)
3358{
3359 memset(s, 0, sizeof(*s));
3360 s->dev_upper_blocked = !may_inc_ap_bio(device);
3361 if (get_ldev(device)) {
3362 struct drbd_md *md = &device->ldev->md;
3363 u64 *history_uuids = (u64 *)s->history_uuids;
3364 int n;
3365
3366 spin_lock_irq(&md->uuid_lock);
3367 s->dev_current_uuid = md->uuid[UI_CURRENT];
3368 BUILD_BUG_ON(sizeof(s->history_uuids) < UI_HISTORY_END - UI_HISTORY_START + 1);
3369 for (n = 0; n < UI_HISTORY_END - UI_HISTORY_START + 1; n++)
3370 history_uuids[n] = md->uuid[UI_HISTORY_START + n];
3371 for (; n < HISTORY_UUIDS; n++)
3372 history_uuids[n] = 0;
3373 s->history_uuids_len = HISTORY_UUIDS;
3374 spin_unlock_irq(&md->uuid_lock);
3375
3376 s->dev_disk_flags = md->flags;
3377 put_ldev(device);
3378 }
3379 s->dev_size = get_capacity(device->vdisk);
3380 s->dev_read = device->read_cnt;
3381 s->dev_write = device->writ_cnt;
3382 s->dev_al_writes = device->al_writ_cnt;
3383 s->dev_bm_writes = device->bm_writ_cnt;
3384 s->dev_upper_pending = atomic_read(&device->ap_bio_cnt);
3385 s->dev_lower_pending = atomic_read(&device->local_cnt);
3386 s->dev_al_suspended = test_bit(AL_SUSPENDED, &device->flags);
3387 s->dev_exposed_data_uuid = device->ed_uuid;
3388}
3389
3390static int put_resource_in_arg0(struct netlink_callback *cb, int holder_nr)
3391{
3392 if (cb->args[0]) {
3393 struct drbd_resource *resource =
3394 (struct drbd_resource *)cb->args[0];
3395 kref_put(&resource->kref, drbd_destroy_resource);
3396 }
3397
3398 return 0;
3399}
3400
3401int drbd_adm_dump_devices_done(struct netlink_callback *cb) {
3402 return put_resource_in_arg0(cb, 7);
3403}
3404
3405static void device_to_info(struct device_info *, struct drbd_device *);
3406
3407int drbd_adm_dump_devices(struct sk_buff *skb, struct netlink_callback *cb)
3408{
3409 struct nlattr *resource_filter;
3410 struct drbd_resource *resource;
3411 struct drbd_device *device;
3412 int minor, err, retcode;
3413 struct drbd_genlmsghdr *dh;
3414 struct device_info device_info;
3415 struct device_statistics device_statistics;
3416 struct idr *idr_to_search;
3417
3418 resource = (struct drbd_resource *)cb->args[0];
3419 if (!cb->args[0] && !cb->args[1]) {
3420 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3421 if (resource_filter) {
3422 retcode = ERR_RES_NOT_KNOWN;
3423 resource = drbd_find_resource(nla_data(resource_filter));
3424 if (!resource)
3425 goto put_result;
3426 cb->args[0] = (long)resource;
3427 }
3428 }
3429
3430 rcu_read_lock();
3431 minor = cb->args[1];
3432 idr_to_search = resource ? &resource->devices : &drbd_devices;
3433 device = idr_get_next(idr_to_search, &minor);
3434 if (!device) {
3435 err = 0;
3436 goto out;
3437 }
3438 idr_for_each_entry_continue(idr_to_search, device, minor) {
3439 retcode = NO_ERROR;
3440 goto put_result;
3441 }
3442 err = 0;
3443 goto out;
3444
3445put_result:
3446 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3447 cb->nlh->nlmsg_seq, &drbd_genl_family,
3448 NLM_F_MULTI, DRBD_ADM_GET_DEVICES);
3449 err = -ENOMEM;
3450 if (!dh)
3451 goto out;
3452 dh->ret_code = retcode;
3453 dh->minor = -1U;
3454 if (retcode == NO_ERROR) {
3455 dh->minor = device->minor;
3456 err = nla_put_drbd_cfg_context(skb, device->resource, NULL, device);
3457 if (err)
3458 goto out;
3459 if (get_ldev(device)) {
3460 struct disk_conf *disk_conf =
3461 rcu_dereference(device->ldev->disk_conf);
3462
3463 err = disk_conf_to_skb(skb, disk_conf, !capable(CAP_SYS_ADMIN));
3464 put_ldev(device);
3465 if (err)
3466 goto out;
3467 }
3468 device_to_info(&device_info, device);
3469 err = device_info_to_skb(skb, &device_info, !capable(CAP_SYS_ADMIN));
3470 if (err)
3471 goto out;
3472
3473 device_to_statistics(&device_statistics, device);
3474 err = device_statistics_to_skb(skb, &device_statistics, !capable(CAP_SYS_ADMIN));
3475 if (err)
3476 goto out;
3477 cb->args[1] = minor + 1;
3478 }
3479 genlmsg_end(skb, dh);
3480 err = 0;
3481
3482out:
3483 rcu_read_unlock();
3484 if (err)
3485 return err;
3486 return skb->len;
3487}
3488
3489int drbd_adm_dump_connections_done(struct netlink_callback *cb)
3490{
3491 return put_resource_in_arg0(cb, 6);
3492}
3493
3494enum { SINGLE_RESOURCE, ITERATE_RESOURCES };
3495
3496int drbd_adm_dump_connections(struct sk_buff *skb, struct netlink_callback *cb)
3497{
3498 struct nlattr *resource_filter;
3499 struct drbd_resource *resource = NULL, *next_resource;
3500 struct drbd_connection *connection;
3501 int err = 0, retcode;
3502 struct drbd_genlmsghdr *dh;
3503 struct connection_info connection_info;
3504 struct connection_statistics connection_statistics;
3505
3506 rcu_read_lock();
3507 resource = (struct drbd_resource *)cb->args[0];
3508 if (!cb->args[0]) {
3509 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3510 if (resource_filter) {
3511 retcode = ERR_RES_NOT_KNOWN;
3512 resource = drbd_find_resource(nla_data(resource_filter));
3513 if (!resource)
3514 goto put_result;
3515 cb->args[0] = (long)resource;
3516 cb->args[1] = SINGLE_RESOURCE;
3517 }
3518 }
3519 if (!resource) {
3520 if (list_empty(&drbd_resources))
3521 goto out;
3522 resource = list_first_entry(&drbd_resources, struct drbd_resource, resources);
3523 kref_get(&resource->kref);
3524 cb->args[0] = (long)resource;
3525 cb->args[1] = ITERATE_RESOURCES;
3526 }
3527
3528 next_resource:
3529 rcu_read_unlock();
3530 mutex_lock(&resource->conf_update);
3531 rcu_read_lock();
3532 if (cb->args[2]) {
3533 for_each_connection_rcu(connection, resource)
3534 if (connection == (struct drbd_connection *)cb->args[2])
3535 goto found_connection;
3536
3537 goto no_more_connections;
3538 }
3539 connection = list_entry(&resource->connections, struct drbd_connection, connections);
3540
3541found_connection:
3542 list_for_each_entry_continue_rcu(connection, &resource->connections, connections) {
3543 if (!has_net_conf(connection))
3544 continue;
3545 retcode = NO_ERROR;
3546 goto put_result;
3547 }
3548
3549no_more_connections:
3550 if (cb->args[1] == ITERATE_RESOURCES) {
3551 for_each_resource_rcu(next_resource, &drbd_resources) {
3552 if (next_resource == resource)
3553 goto found_resource;
3554 }
3555
3556 }
3557 goto out;
3558
3559found_resource:
3560 list_for_each_entry_continue_rcu(next_resource, &drbd_resources, resources) {
3561 mutex_unlock(&resource->conf_update);
3562 kref_put(&resource->kref, drbd_destroy_resource);
3563 resource = next_resource;
3564 kref_get(&resource->kref);
3565 cb->args[0] = (long)resource;
3566 cb->args[2] = 0;
3567 goto next_resource;
3568 }
3569 goto out;
3570
3571put_result:
3572 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3573 cb->nlh->nlmsg_seq, &drbd_genl_family,
3574 NLM_F_MULTI, DRBD_ADM_GET_CONNECTIONS);
3575 err = -ENOMEM;
3576 if (!dh)
3577 goto out;
3578 dh->ret_code = retcode;
3579 dh->minor = -1U;
3580 if (retcode == NO_ERROR) {
3581 struct net_conf *net_conf;
3582
3583 err = nla_put_drbd_cfg_context(skb, resource, connection, NULL);
3584 if (err)
3585 goto out;
3586 net_conf = rcu_dereference(connection->net_conf);
3587 if (net_conf) {
3588 err = net_conf_to_skb(skb, net_conf, !capable(CAP_SYS_ADMIN));
3589 if (err)
3590 goto out;
3591 }
3592 connection_to_info(&connection_info, connection);
3593 err = connection_info_to_skb(skb, &connection_info, !capable(CAP_SYS_ADMIN));
3594 if (err)
3595 goto out;
3596 connection_statistics.conn_congested = test_bit(NET_CONGESTED, &connection->flags);
3597 err = connection_statistics_to_skb(skb, &connection_statistics, !capable(CAP_SYS_ADMIN));
3598 if (err)
3599 goto out;
3600 cb->args[2] = (long)connection;
3601 }
3602 genlmsg_end(skb, dh);
3603 err = 0;
3604
3605out:
3606 rcu_read_unlock();
3607 if (resource)
3608 mutex_unlock(&resource->conf_update);
3609 if (err)
3610 return err;
3611 return skb->len;
3612}
3613
3614enum mdf_peer_flag {
3615 MDF_PEER_CONNECTED = 1 << 0,
3616 MDF_PEER_OUTDATED = 1 << 1,
3617 MDF_PEER_FENCING = 1 << 2,
3618 MDF_PEER_FULL_SYNC = 1 << 3,
3619};
3620
3621static void peer_device_to_statistics(struct peer_device_statistics *s,
3622 struct drbd_peer_device *peer_device)
3623{
3624 struct drbd_device *device = peer_device->device;
3625
3626 memset(s, 0, sizeof(*s));
3627 s->peer_dev_received = device->recv_cnt;
3628 s->peer_dev_sent = device->send_cnt;
3629 s->peer_dev_pending = atomic_read(&device->ap_pending_cnt) +
3630 atomic_read(&device->rs_pending_cnt);
3631 s->peer_dev_unacked = atomic_read(&device->unacked_cnt);
3632 s->peer_dev_out_of_sync = drbd_bm_total_weight(device) << (BM_BLOCK_SHIFT - 9);
3633 s->peer_dev_resync_failed = device->rs_failed << (BM_BLOCK_SHIFT - 9);
3634 if (get_ldev(device)) {
3635 struct drbd_md *md = &device->ldev->md;
3636
3637 spin_lock_irq(&md->uuid_lock);
3638 s->peer_dev_bitmap_uuid = md->uuid[UI_BITMAP];
3639 spin_unlock_irq(&md->uuid_lock);
3640 s->peer_dev_flags =
3641 (drbd_md_test_flag(device->ldev, MDF_CONNECTED_IND) ?
3642 MDF_PEER_CONNECTED : 0) +
3643 (drbd_md_test_flag(device->ldev, MDF_CONSISTENT) &&
3644 !drbd_md_test_flag(device->ldev, MDF_WAS_UP_TO_DATE) ?
3645 MDF_PEER_OUTDATED : 0) +
3646
3647 (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC) ?
3648 MDF_PEER_FULL_SYNC : 0);
3649 put_ldev(device);
3650 }
3651}
3652
3653int drbd_adm_dump_peer_devices_done(struct netlink_callback *cb)
3654{
3655 return put_resource_in_arg0(cb, 9);
3656}
3657
3658int drbd_adm_dump_peer_devices(struct sk_buff *skb, struct netlink_callback *cb)
3659{
3660 struct nlattr *resource_filter;
3661 struct drbd_resource *resource;
3662 struct drbd_device *device;
3663 struct drbd_peer_device *peer_device = NULL;
3664 int minor, err, retcode;
3665 struct drbd_genlmsghdr *dh;
3666 struct idr *idr_to_search;
3667
3668 resource = (struct drbd_resource *)cb->args[0];
3669 if (!cb->args[0] && !cb->args[1]) {
3670 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3671 if (resource_filter) {
3672 retcode = ERR_RES_NOT_KNOWN;
3673 resource = drbd_find_resource(nla_data(resource_filter));
3674 if (!resource)
3675 goto put_result;
3676 }
3677 cb->args[0] = (long)resource;
3678 }
3679
3680 rcu_read_lock();
3681 minor = cb->args[1];
3682 idr_to_search = resource ? &resource->devices : &drbd_devices;
3683 device = idr_find(idr_to_search, minor);
3684 if (!device) {
3685next_device:
3686 minor++;
3687 cb->args[2] = 0;
3688 device = idr_get_next(idr_to_search, &minor);
3689 if (!device) {
3690 err = 0;
3691 goto out;
3692 }
3693 }
3694 if (cb->args[2]) {
3695 for_each_peer_device(peer_device, device)
3696 if (peer_device == (struct drbd_peer_device *)cb->args[2])
3697 goto found_peer_device;
3698
3699 goto next_device;
3700 }
3701
3702 peer_device = list_entry(&device->peer_devices, struct drbd_peer_device, peer_devices);
3703
3704found_peer_device:
3705 list_for_each_entry_continue_rcu(peer_device, &device->peer_devices, peer_devices) {
3706 if (!has_net_conf(peer_device->connection))
3707 continue;
3708 retcode = NO_ERROR;
3709 goto put_result;
3710 }
3711 goto next_device;
3712
3713put_result:
3714 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3715 cb->nlh->nlmsg_seq, &drbd_genl_family,
3716 NLM_F_MULTI, DRBD_ADM_GET_PEER_DEVICES);
3717 err = -ENOMEM;
3718 if (!dh)
3719 goto out;
3720 dh->ret_code = retcode;
3721 dh->minor = -1U;
3722 if (retcode == NO_ERROR) {
3723 struct peer_device_info peer_device_info;
3724 struct peer_device_statistics peer_device_statistics;
3725
3726 dh->minor = minor;
3727 err = nla_put_drbd_cfg_context(skb, device->resource, peer_device->connection, device);
3728 if (err)
3729 goto out;
3730 peer_device_to_info(&peer_device_info, peer_device);
3731 err = peer_device_info_to_skb(skb, &peer_device_info, !capable(CAP_SYS_ADMIN));
3732 if (err)
3733 goto out;
3734 peer_device_to_statistics(&peer_device_statistics, peer_device);
3735 err = peer_device_statistics_to_skb(skb, &peer_device_statistics, !capable(CAP_SYS_ADMIN));
3736 if (err)
3737 goto out;
3738 cb->args[1] = minor;
3739 cb->args[2] = (long)peer_device;
3740 }
3741 genlmsg_end(skb, dh);
3742 err = 0;
3743
3744out:
3745 rcu_read_unlock();
3746 if (err)
3747 return err;
3748 return skb->len;
3749}
3750
3751
3752
3753static struct drbd_connection *the_only_connection(struct drbd_resource *resource)
3754{
3755 struct list_head *connections = &resource->connections;
3756
3757 if (list_empty(connections) || connections->next->next != connections)
3758 return NULL;
3759 return list_first_entry(&resource->connections, struct drbd_connection, connections);
3760}
3761
3762static int nla_put_status_info(struct sk_buff *skb, struct drbd_device *device,
3763 const struct sib_info *sib)
3764{
3765 struct drbd_resource *resource = device->resource;
3766 struct state_info *si = NULL;
3767 struct nlattr *nla;
3768 int got_ldev;
3769 int err = 0;
3770 int exclude_sensitive;
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783 exclude_sensitive = sib || !capable(CAP_SYS_ADMIN);
3784
3785 got_ldev = get_ldev(device);
3786
3787
3788
3789 if (nla_put_drbd_cfg_context(skb, resource, the_only_connection(resource), device))
3790 goto nla_put_failure;
3791
3792 if (res_opts_to_skb(skb, &device->resource->res_opts, exclude_sensitive))
3793 goto nla_put_failure;
3794
3795 rcu_read_lock();
3796 if (got_ldev) {
3797 struct disk_conf *disk_conf;
3798
3799 disk_conf = rcu_dereference(device->ldev->disk_conf);
3800 err = disk_conf_to_skb(skb, disk_conf, exclude_sensitive);
3801 }
3802 if (!err) {
3803 struct net_conf *nc;
3804
3805 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
3806 if (nc)
3807 err = net_conf_to_skb(skb, nc, exclude_sensitive);
3808 }
3809 rcu_read_unlock();
3810 if (err)
3811 goto nla_put_failure;
3812
3813 nla = nla_nest_start_noflag(skb, DRBD_NLA_STATE_INFO);
3814 if (!nla)
3815 goto nla_put_failure;
3816 if (nla_put_u32(skb, T_sib_reason, sib ? sib->sib_reason : SIB_GET_STATUS_REPLY) ||
3817 nla_put_u32(skb, T_current_state, device->state.i) ||
3818 nla_put_u64_0pad(skb, T_ed_uuid, device->ed_uuid) ||
3819 nla_put_u64_0pad(skb, T_capacity, get_capacity(device->vdisk)) ||
3820 nla_put_u64_0pad(skb, T_send_cnt, device->send_cnt) ||
3821 nla_put_u64_0pad(skb, T_recv_cnt, device->recv_cnt) ||
3822 nla_put_u64_0pad(skb, T_read_cnt, device->read_cnt) ||
3823 nla_put_u64_0pad(skb, T_writ_cnt, device->writ_cnt) ||
3824 nla_put_u64_0pad(skb, T_al_writ_cnt, device->al_writ_cnt) ||
3825 nla_put_u64_0pad(skb, T_bm_writ_cnt, device->bm_writ_cnt) ||
3826 nla_put_u32(skb, T_ap_bio_cnt, atomic_read(&device->ap_bio_cnt)) ||
3827 nla_put_u32(skb, T_ap_pending_cnt, atomic_read(&device->ap_pending_cnt)) ||
3828 nla_put_u32(skb, T_rs_pending_cnt, atomic_read(&device->rs_pending_cnt)))
3829 goto nla_put_failure;
3830
3831 if (got_ldev) {
3832 int err;
3833
3834 spin_lock_irq(&device->ldev->md.uuid_lock);
3835 err = nla_put(skb, T_uuids, sizeof(si->uuids), device->ldev->md.uuid);
3836 spin_unlock_irq(&device->ldev->md.uuid_lock);
3837
3838 if (err)
3839 goto nla_put_failure;
3840
3841 if (nla_put_u32(skb, T_disk_flags, device->ldev->md.flags) ||
3842 nla_put_u64_0pad(skb, T_bits_total, drbd_bm_bits(device)) ||
3843 nla_put_u64_0pad(skb, T_bits_oos,
3844 drbd_bm_total_weight(device)))
3845 goto nla_put_failure;
3846 if (C_SYNC_SOURCE <= device->state.conn &&
3847 C_PAUSED_SYNC_T >= device->state.conn) {
3848 if (nla_put_u64_0pad(skb, T_bits_rs_total,
3849 device->rs_total) ||
3850 nla_put_u64_0pad(skb, T_bits_rs_failed,
3851 device->rs_failed))
3852 goto nla_put_failure;
3853 }
3854 }
3855
3856 if (sib) {
3857 switch(sib->sib_reason) {
3858 case SIB_SYNC_PROGRESS:
3859 case SIB_GET_STATUS_REPLY:
3860 break;
3861 case SIB_STATE_CHANGE:
3862 if (nla_put_u32(skb, T_prev_state, sib->os.i) ||
3863 nla_put_u32(skb, T_new_state, sib->ns.i))
3864 goto nla_put_failure;
3865 break;
3866 case SIB_HELPER_POST:
3867 if (nla_put_u32(skb, T_helper_exit_code,
3868 sib->helper_exit_code))
3869 goto nla_put_failure;
3870 fallthrough;
3871 case SIB_HELPER_PRE:
3872 if (nla_put_string(skb, T_helper, sib->helper_name))
3873 goto nla_put_failure;
3874 break;
3875 }
3876 }
3877 nla_nest_end(skb, nla);
3878
3879 if (0)
3880nla_put_failure:
3881 err = -EMSGSIZE;
3882 if (got_ldev)
3883 put_ldev(device);
3884 return err;
3885}
3886
3887int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info)
3888{
3889 struct drbd_config_context adm_ctx;
3890 enum drbd_ret_code retcode;
3891 int err;
3892
3893 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3894 if (!adm_ctx.reply_skb)
3895 return retcode;
3896 if (retcode != NO_ERROR)
3897 goto out;
3898
3899 err = nla_put_status_info(adm_ctx.reply_skb, adm_ctx.device, NULL);
3900 if (err) {
3901 nlmsg_free(adm_ctx.reply_skb);
3902 return err;
3903 }
3904out:
3905 drbd_adm_finish(&adm_ctx, info, retcode);
3906 return 0;
3907}
3908
3909static int get_one_status(struct sk_buff *skb, struct netlink_callback *cb)
3910{
3911 struct drbd_device *device;
3912 struct drbd_genlmsghdr *dh;
3913 struct drbd_resource *pos = (struct drbd_resource *)cb->args[0];
3914 struct drbd_resource *resource = NULL;
3915 struct drbd_resource *tmp;
3916 unsigned volume = cb->args[1];
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940 rcu_read_lock();
3941
3942 for_each_resource_rcu(tmp, &drbd_resources) {
3943 if (pos == NULL) {
3944
3945 pos = tmp;
3946 resource = pos;
3947 break;
3948 }
3949 if (tmp == pos) {
3950 resource = pos;
3951 break;
3952 }
3953 }
3954 if (resource) {
3955next_resource:
3956 device = idr_get_next(&resource->devices, &volume);
3957 if (!device) {
3958
3959
3960 pos = list_entry_rcu(resource->resources.next,
3961 struct drbd_resource, resources);
3962
3963 if (volume != 0) {
3964
3965
3966
3967 if (&pos->resources == &drbd_resources || cb->args[2])
3968 goto out;
3969 volume = 0;
3970 resource = pos;
3971 goto next_resource;
3972 }
3973 }
3974
3975 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3976 cb->nlh->nlmsg_seq, &drbd_genl_family,
3977 NLM_F_MULTI, DRBD_ADM_GET_STATUS);
3978 if (!dh)
3979 goto out;
3980
3981 if (!device) {
3982
3983
3984
3985 struct drbd_connection *connection;
3986
3987 dh->minor = -1U;
3988 dh->ret_code = NO_ERROR;
3989 connection = the_only_connection(resource);
3990 if (nla_put_drbd_cfg_context(skb, resource, connection, NULL))
3991 goto cancel;
3992 if (connection) {
3993 struct net_conf *nc;
3994
3995 nc = rcu_dereference(connection->net_conf);
3996 if (nc && net_conf_to_skb(skb, nc, 1) != 0)
3997 goto cancel;
3998 }
3999 goto done;
4000 }
4001
4002 D_ASSERT(device, device->vnr == volume);
4003 D_ASSERT(device, device->resource == resource);
4004
4005 dh->minor = device_to_minor(device);
4006 dh->ret_code = NO_ERROR;
4007
4008 if (nla_put_status_info(skb, device, NULL)) {
4009cancel:
4010 genlmsg_cancel(skb, dh);
4011 goto out;
4012 }
4013done:
4014 genlmsg_end(skb, dh);
4015 }
4016
4017out:
4018 rcu_read_unlock();
4019
4020 cb->args[0] = (long)pos;
4021 cb->args[1] = (pos == resource) ? volume + 1 : 0;
4022
4023
4024
4025 return skb->len;
4026}
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb)
4039{
4040 const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
4041 struct nlattr *nla;
4042 const char *resource_name;
4043 struct drbd_resource *resource;
4044 int maxtype;
4045
4046
4047 if (cb->args[0]) {
4048
4049
4050 if (cb->args[2] && cb->args[2] != cb->args[0])
4051 return 0;
4052 goto dump;
4053 }
4054
4055
4056
4057 nla = nla_find(nlmsg_attrdata(cb->nlh, hdrlen),
4058 nlmsg_attrlen(cb->nlh, hdrlen),
4059 DRBD_NLA_CFG_CONTEXT);
4060
4061
4062 if (!nla)
4063 goto dump;
4064 maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
4065 nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name));
4066 if (IS_ERR(nla))
4067 return PTR_ERR(nla);
4068
4069 if (!nla)
4070 return -EINVAL;
4071 resource_name = nla_data(nla);
4072 if (!*resource_name)
4073 return -ENODEV;
4074 resource = drbd_find_resource(resource_name);
4075 if (!resource)
4076 return -ENODEV;
4077
4078 kref_put(&resource->kref, drbd_destroy_resource);
4079
4080
4081
4082 cb->args[0] = (long)resource;
4083
4084 cb->args[2] = (long)resource;
4085
4086dump:
4087 return get_one_status(skb, cb);
4088}
4089
4090int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info)
4091{
4092 struct drbd_config_context adm_ctx;
4093 enum drbd_ret_code retcode;
4094 struct timeout_parms tp;
4095 int err;
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;
4102
4103 tp.timeout_type =
4104 adm_ctx.device->state.pdsk == D_OUTDATED ? UT_PEER_OUTDATED :
4105 test_bit(USE_DEGR_WFC_T, &adm_ctx.device->flags) ? UT_DEGRADED :
4106 UT_DEFAULT;
4107
4108 err = timeout_parms_to_priv_skb(adm_ctx.reply_skb, &tp);
4109 if (err) {
4110 nlmsg_free(adm_ctx.reply_skb);
4111 return err;
4112 }
4113out:
4114 drbd_adm_finish(&adm_ctx, info, retcode);
4115 return 0;
4116}
4117
4118int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info)
4119{
4120 struct drbd_config_context adm_ctx;
4121 struct drbd_device *device;
4122 enum drbd_ret_code retcode;
4123 struct start_ov_parms parms;
4124
4125 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4126 if (!adm_ctx.reply_skb)
4127 return retcode;
4128 if (retcode != NO_ERROR)
4129 goto out;
4130
4131 device = adm_ctx.device;
4132
4133
4134 parms.ov_start_sector = device->ov_start_sector;
4135 parms.ov_stop_sector = ULLONG_MAX;
4136 if (info->attrs[DRBD_NLA_START_OV_PARMS]) {
4137 int err = start_ov_parms_from_attrs(&parms, info);
4138 if (err) {
4139 retcode = ERR_MANDATORY_TAG;
4140 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
4141 goto out;
4142 }
4143 }
4144 mutex_lock(&adm_ctx.resource->adm_mutex);
4145
4146
4147 device->ov_start_sector = parms.ov_start_sector & ~(BM_SECT_PER_BIT-1);
4148 device->ov_stop_sector = parms.ov_stop_sector;
4149
4150
4151
4152 drbd_suspend_io(device);
4153 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
4154 retcode = drbd_request_state(device, NS(conn, C_VERIFY_S));
4155 drbd_resume_io(device);
4156
4157 mutex_unlock(&adm_ctx.resource->adm_mutex);
4158out:
4159 drbd_adm_finish(&adm_ctx, info, retcode);
4160 return 0;
4161}
4162
4163
4164int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info)
4165{
4166 struct drbd_config_context adm_ctx;
4167 struct drbd_device *device;
4168 enum drbd_ret_code retcode;
4169 int skip_initial_sync = 0;
4170 int err;
4171 struct new_c_uuid_parms args;
4172
4173 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4174 if (!adm_ctx.reply_skb)
4175 return retcode;
4176 if (retcode != NO_ERROR)
4177 goto out_nolock;
4178
4179 device = adm_ctx.device;
4180 memset(&args, 0, sizeof(args));
4181 if (info->attrs[DRBD_NLA_NEW_C_UUID_PARMS]) {
4182 err = new_c_uuid_parms_from_attrs(&args, info);
4183 if (err) {
4184 retcode = ERR_MANDATORY_TAG;
4185 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
4186 goto out_nolock;
4187 }
4188 }
4189
4190 mutex_lock(&adm_ctx.resource->adm_mutex);
4191 mutex_lock(device->state_mutex);
4192
4193 if (!get_ldev(device)) {
4194 retcode = ERR_NO_DISK;
4195 goto out;
4196 }
4197
4198
4199 if (device->state.conn == C_CONNECTED &&
4200 first_peer_device(device)->connection->agreed_pro_version >= 90 &&
4201 device->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED && args.clear_bm) {
4202 drbd_info(device, "Preparing to skip initial sync\n");
4203 skip_initial_sync = 1;
4204 } else if (device->state.conn != C_STANDALONE) {
4205 retcode = ERR_CONNECTED;
4206 goto out_dec;
4207 }
4208
4209 drbd_uuid_set(device, UI_BITMAP, 0);
4210 drbd_uuid_new_current(device);
4211
4212 if (args.clear_bm) {
4213 err = drbd_bitmap_io(device, &drbd_bmio_clear_n_write,
4214 "clear_n_write from new_c_uuid", BM_LOCKED_MASK);
4215 if (err) {
4216 drbd_err(device, "Writing bitmap failed with %d\n", err);
4217 retcode = ERR_IO_MD_DISK;
4218 }
4219 if (skip_initial_sync) {
4220 drbd_send_uuids_skip_initial_sync(first_peer_device(device));
4221 _drbd_uuid_set(device, UI_BITMAP, 0);
4222 drbd_print_uuids(device, "cleared bitmap UUID");
4223 spin_lock_irq(&device->resource->req_lock);
4224 _drbd_set_state(_NS2(device, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
4225 CS_VERBOSE, NULL);
4226 spin_unlock_irq(&device->resource->req_lock);
4227 }
4228 }
4229
4230 drbd_md_sync(device);
4231out_dec:
4232 put_ldev(device);
4233out:
4234 mutex_unlock(device->state_mutex);
4235 mutex_unlock(&adm_ctx.resource->adm_mutex);
4236out_nolock:
4237 drbd_adm_finish(&adm_ctx, info, retcode);
4238 return 0;
4239}
4240
4241static enum drbd_ret_code
4242drbd_check_resource_name(struct drbd_config_context *adm_ctx)
4243{
4244 const char *name = adm_ctx->resource_name;
4245 if (!name || !name[0]) {
4246 drbd_msg_put_info(adm_ctx->reply_skb, "resource name missing");
4247 return ERR_MANDATORY_TAG;
4248 }
4249
4250
4251 if (strchr(name, '/')) {
4252 drbd_msg_put_info(adm_ctx->reply_skb, "invalid resource name");
4253 return ERR_INVALID_REQUEST;
4254 }
4255 return NO_ERROR;
4256}
4257
4258static void resource_to_info(struct resource_info *info,
4259 struct drbd_resource *resource)
4260{
4261 info->res_role = conn_highest_role(first_connection(resource));
4262 info->res_susp = resource->susp;
4263 info->res_susp_nod = resource->susp_nod;
4264 info->res_susp_fen = resource->susp_fen;
4265}
4266
4267int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info)
4268{
4269 struct drbd_connection *connection;
4270 struct drbd_config_context adm_ctx;
4271 enum drbd_ret_code retcode;
4272 struct res_opts res_opts;
4273 int err;
4274
4275 retcode = drbd_adm_prepare(&adm_ctx, skb, info, 0);
4276 if (!adm_ctx.reply_skb)
4277 return retcode;
4278 if (retcode != NO_ERROR)
4279 goto out;
4280
4281 set_res_opts_defaults(&res_opts);
4282 err = res_opts_from_attrs(&res_opts, info);
4283 if (err && err != -ENOMSG) {
4284 retcode = ERR_MANDATORY_TAG;
4285 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
4286 goto out;
4287 }
4288
4289 retcode = drbd_check_resource_name(&adm_ctx);
4290 if (retcode != NO_ERROR)
4291 goto out;
4292
4293 if (adm_ctx.resource) {
4294 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL) {
4295 retcode = ERR_INVALID_REQUEST;
4296 drbd_msg_put_info(adm_ctx.reply_skb, "resource exists");
4297 }
4298
4299 goto out;
4300 }
4301
4302
4303 mutex_lock(&resources_mutex);
4304 connection = conn_create(adm_ctx.resource_name, &res_opts);
4305 mutex_unlock(&resources_mutex);
4306
4307 if (connection) {
4308 struct resource_info resource_info;
4309
4310 mutex_lock(¬ification_mutex);
4311 resource_to_info(&resource_info, connection->resource);
4312 notify_resource_state(NULL, 0, connection->resource,
4313 &resource_info, NOTIFY_CREATE);
4314 mutex_unlock(¬ification_mutex);
4315 } else
4316 retcode = ERR_NOMEM;
4317
4318out:
4319 drbd_adm_finish(&adm_ctx, info, retcode);
4320 return 0;
4321}
4322
4323static void device_to_info(struct device_info *info,
4324 struct drbd_device *device)
4325{
4326 info->dev_disk_state = device->state.disk;
4327}
4328
4329
4330int drbd_adm_new_minor(struct sk_buff *skb, struct genl_info *info)
4331{
4332 struct drbd_config_context adm_ctx;
4333 struct drbd_genlmsghdr *dh = info->userhdr;
4334 enum drbd_ret_code retcode;
4335
4336 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
4337 if (!adm_ctx.reply_skb)
4338 return retcode;
4339 if (retcode != NO_ERROR)
4340 goto out;
4341
4342 if (dh->minor > MINORMASK) {
4343 drbd_msg_put_info(adm_ctx.reply_skb, "requested minor out of range");
4344 retcode = ERR_INVALID_REQUEST;
4345 goto out;
4346 }
4347 if (adm_ctx.volume > DRBD_VOLUME_MAX) {
4348 drbd_msg_put_info(adm_ctx.reply_skb, "requested volume id out of range");
4349 retcode = ERR_INVALID_REQUEST;
4350 goto out;
4351 }
4352
4353
4354
4355 if (adm_ctx.device) {
4356 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
4357 retcode = ERR_MINOR_OR_VOLUME_EXISTS;
4358
4359 goto out;
4360 }
4361
4362 mutex_lock(&adm_ctx.resource->adm_mutex);
4363 retcode = drbd_create_device(&adm_ctx, dh->minor);
4364 if (retcode == NO_ERROR) {
4365 struct drbd_device *device;
4366 struct drbd_peer_device *peer_device;
4367 struct device_info info;
4368 unsigned int peer_devices = 0;
4369 enum drbd_notification_type flags;
4370
4371 device = minor_to_device(dh->minor);
4372 for_each_peer_device(peer_device, device) {
4373 if (!has_net_conf(peer_device->connection))
4374 continue;
4375 peer_devices++;
4376 }
4377
4378 device_to_info(&info, device);
4379 mutex_lock(¬ification_mutex);
4380 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
4381 notify_device_state(NULL, 0, device, &info, NOTIFY_CREATE | flags);
4382 for_each_peer_device(peer_device, device) {
4383 struct peer_device_info peer_device_info;
4384
4385 if (!has_net_conf(peer_device->connection))
4386 continue;
4387 peer_device_to_info(&peer_device_info, peer_device);
4388 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
4389 notify_peer_device_state(NULL, 0, peer_device, &peer_device_info,
4390 NOTIFY_CREATE | flags);
4391 }
4392 mutex_unlock(¬ification_mutex);
4393 }
4394 mutex_unlock(&adm_ctx.resource->adm_mutex);
4395out:
4396 drbd_adm_finish(&adm_ctx, info, retcode);
4397 return 0;
4398}
4399
4400static enum drbd_ret_code adm_del_minor(struct drbd_device *device)
4401{
4402 struct drbd_peer_device *peer_device;
4403
4404 if (device->state.disk == D_DISKLESS &&
4405
4406
4407
4408 device->state.role == R_SECONDARY) {
4409 struct drbd_connection *connection =
4410 first_connection(device->resource);
4411
4412 _drbd_request_state(device, NS(conn, C_WF_REPORT_PARAMS),
4413 CS_VERBOSE + CS_WAIT_COMPLETE);
4414
4415
4416
4417
4418 if (get_t_state(&connection->worker) == RUNNING)
4419 drbd_flush_workqueue(&connection->sender_work);
4420
4421 mutex_lock(¬ification_mutex);
4422 for_each_peer_device(peer_device, device) {
4423 if (!has_net_conf(peer_device->connection))
4424 continue;
4425 notify_peer_device_state(NULL, 0, peer_device, NULL,
4426 NOTIFY_DESTROY | NOTIFY_CONTINUES);
4427 }
4428 notify_device_state(NULL, 0, device, NULL, NOTIFY_DESTROY);
4429 mutex_unlock(¬ification_mutex);
4430
4431 drbd_delete_device(device);
4432 return NO_ERROR;
4433 } else
4434 return ERR_MINOR_CONFIGURED;
4435}
4436
4437int drbd_adm_del_minor(struct sk_buff *skb, struct genl_info *info)
4438{
4439 struct drbd_config_context adm_ctx;
4440 enum drbd_ret_code retcode;
4441
4442 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
4443 if (!adm_ctx.reply_skb)
4444 return retcode;
4445 if (retcode != NO_ERROR)
4446 goto out;
4447
4448 mutex_lock(&adm_ctx.resource->adm_mutex);
4449 retcode = adm_del_minor(adm_ctx.device);
4450 mutex_unlock(&adm_ctx.resource->adm_mutex);
4451out:
4452 drbd_adm_finish(&adm_ctx, info, retcode);
4453 return 0;
4454}
4455
4456static int adm_del_resource(struct drbd_resource *resource)
4457{
4458 struct drbd_connection *connection;
4459
4460 for_each_connection(connection, resource) {
4461 if (connection->cstate > C_STANDALONE)
4462 return ERR_NET_CONFIGURED;
4463 }
4464 if (!idr_is_empty(&resource->devices))
4465 return ERR_RES_IN_USE;
4466
4467
4468
4469
4470 mutex_lock(¬ification_mutex);
4471 notify_resource_state(NULL, 0, resource, NULL, NOTIFY_DESTROY);
4472 mutex_unlock(¬ification_mutex);
4473
4474 mutex_lock(&resources_mutex);
4475 list_del_rcu(&resource->resources);
4476 mutex_unlock(&resources_mutex);
4477
4478
4479 list_for_each_entry(connection, &resource->connections, connections)
4480 drbd_thread_stop(&connection->worker);
4481 synchronize_rcu();
4482 drbd_free_resource(resource);
4483 return NO_ERROR;
4484}
4485
4486int drbd_adm_down(struct sk_buff *skb, struct genl_info *info)
4487{
4488 struct drbd_config_context adm_ctx;
4489 struct drbd_resource *resource;
4490 struct drbd_connection *connection;
4491 struct drbd_device *device;
4492 int retcode;
4493 unsigned i;
4494
4495 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
4496 if (!adm_ctx.reply_skb)
4497 return retcode;
4498 if (retcode != NO_ERROR)
4499 goto finish;
4500
4501 resource = adm_ctx.resource;
4502 mutex_lock(&resource->adm_mutex);
4503
4504 for_each_connection(connection, resource) {
4505 struct drbd_peer_device *peer_device;
4506
4507 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
4508 retcode = drbd_set_role(peer_device->device, R_SECONDARY, 0);
4509 if (retcode < SS_SUCCESS) {
4510 drbd_msg_put_info(adm_ctx.reply_skb, "failed to demote");
4511 goto out;
4512 }
4513 }
4514
4515 retcode = conn_try_disconnect(connection, 0);
4516 if (retcode < SS_SUCCESS) {
4517 drbd_msg_put_info(adm_ctx.reply_skb, "failed to disconnect");
4518 goto out;
4519 }
4520 }
4521
4522
4523 idr_for_each_entry(&resource->devices, device, i) {
4524 retcode = adm_detach(device, 0);
4525 if (retcode < SS_SUCCESS || retcode > NO_ERROR) {
4526 drbd_msg_put_info(adm_ctx.reply_skb, "failed to detach");
4527 goto out;
4528 }
4529 }
4530
4531
4532 idr_for_each_entry(&resource->devices, device, i) {
4533 retcode = adm_del_minor(device);
4534 if (retcode != NO_ERROR) {
4535
4536 drbd_msg_put_info(adm_ctx.reply_skb, "failed to delete volume");
4537 goto out;
4538 }
4539 }
4540
4541 retcode = adm_del_resource(resource);
4542out:
4543 mutex_unlock(&resource->adm_mutex);
4544finish:
4545 drbd_adm_finish(&adm_ctx, info, retcode);
4546 return 0;
4547}
4548
4549int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info)
4550{
4551 struct drbd_config_context adm_ctx;
4552 struct drbd_resource *resource;
4553 enum drbd_ret_code retcode;
4554
4555 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
4556 if (!adm_ctx.reply_skb)
4557 return retcode;
4558 if (retcode != NO_ERROR)
4559 goto finish;
4560 resource = adm_ctx.resource;
4561
4562 mutex_lock(&resource->adm_mutex);
4563 retcode = adm_del_resource(resource);
4564 mutex_unlock(&resource->adm_mutex);
4565finish:
4566 drbd_adm_finish(&adm_ctx, info, retcode);
4567 return 0;
4568}
4569
4570void drbd_bcast_event(struct drbd_device *device, const struct sib_info *sib)
4571{
4572 struct sk_buff *msg;
4573 struct drbd_genlmsghdr *d_out;
4574 unsigned seq;
4575 int err = -ENOMEM;
4576
4577 seq = atomic_inc_return(&drbd_genl_seq);
4578 msg = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4579 if (!msg)
4580 goto failed;
4581
4582 err = -EMSGSIZE;
4583 d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT);
4584 if (!d_out)
4585 goto nla_put_failure;
4586 d_out->minor = device_to_minor(device);
4587 d_out->ret_code = NO_ERROR;
4588
4589 if (nla_put_status_info(msg, device, sib))
4590 goto nla_put_failure;
4591 genlmsg_end(msg, d_out);
4592 err = drbd_genl_multicast_events(msg, GFP_NOWAIT);
4593
4594 if (err && err != -ESRCH)
4595 goto failed;
4596
4597 return;
4598
4599nla_put_failure:
4600 nlmsg_free(msg);
4601failed:
4602 drbd_err(device, "Error %d while broadcasting event. "
4603 "Event seq:%u sib_reason:%u\n",
4604 err, seq, sib->sib_reason);
4605}
4606
4607static int nla_put_notification_header(struct sk_buff *msg,
4608 enum drbd_notification_type type)
4609{
4610 struct drbd_notification_header nh = {
4611 .nh_type = type,
4612 };
4613
4614 return drbd_notification_header_to_skb(msg, &nh, true);
4615}
4616
4617void notify_resource_state(struct sk_buff *skb,
4618 unsigned int seq,
4619 struct drbd_resource *resource,
4620 struct resource_info *resource_info,
4621 enum drbd_notification_type type)
4622{
4623 struct resource_statistics resource_statistics;
4624 struct drbd_genlmsghdr *dh;
4625 bool multicast = false;
4626 int err;
4627
4628 if (!skb) {
4629 seq = atomic_inc_return(¬ify_genl_seq);
4630 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4631 err = -ENOMEM;
4632 if (!skb)
4633 goto failed;
4634 multicast = true;
4635 }
4636
4637 err = -EMSGSIZE;
4638 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_RESOURCE_STATE);
4639 if (!dh)
4640 goto nla_put_failure;
4641 dh->minor = -1U;
4642 dh->ret_code = NO_ERROR;
4643 if (nla_put_drbd_cfg_context(skb, resource, NULL, NULL) ||
4644 nla_put_notification_header(skb, type) ||
4645 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4646 resource_info_to_skb(skb, resource_info, true)))
4647 goto nla_put_failure;
4648 resource_statistics.res_stat_write_ordering = resource->write_ordering;
4649 err = resource_statistics_to_skb(skb, &resource_statistics, !capable(CAP_SYS_ADMIN));
4650 if (err)
4651 goto nla_put_failure;
4652 genlmsg_end(skb, dh);
4653 if (multicast) {
4654 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4655
4656 if (err && err != -ESRCH)
4657 goto failed;
4658 }
4659 return;
4660
4661nla_put_failure:
4662 nlmsg_free(skb);
4663failed:
4664 drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
4665 err, seq);
4666}
4667
4668void notify_device_state(struct sk_buff *skb,
4669 unsigned int seq,
4670 struct drbd_device *device,
4671 struct device_info *device_info,
4672 enum drbd_notification_type type)
4673{
4674 struct device_statistics device_statistics;
4675 struct drbd_genlmsghdr *dh;
4676 bool multicast = false;
4677 int err;
4678
4679 if (!skb) {
4680 seq = atomic_inc_return(¬ify_genl_seq);
4681 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4682 err = -ENOMEM;
4683 if (!skb)
4684 goto failed;
4685 multicast = true;
4686 }
4687
4688 err = -EMSGSIZE;
4689 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_DEVICE_STATE);
4690 if (!dh)
4691 goto nla_put_failure;
4692 dh->minor = device->minor;
4693 dh->ret_code = NO_ERROR;
4694 if (nla_put_drbd_cfg_context(skb, device->resource, NULL, device) ||
4695 nla_put_notification_header(skb, type) ||
4696 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4697 device_info_to_skb(skb, device_info, true)))
4698 goto nla_put_failure;
4699 device_to_statistics(&device_statistics, device);
4700 device_statistics_to_skb(skb, &device_statistics, !capable(CAP_SYS_ADMIN));
4701 genlmsg_end(skb, dh);
4702 if (multicast) {
4703 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4704
4705 if (err && err != -ESRCH)
4706 goto failed;
4707 }
4708 return;
4709
4710nla_put_failure:
4711 nlmsg_free(skb);
4712failed:
4713 drbd_err(device, "Error %d while broadcasting event. Event seq:%u\n",
4714 err, seq);
4715}
4716
4717void notify_connection_state(struct sk_buff *skb,
4718 unsigned int seq,
4719 struct drbd_connection *connection,
4720 struct connection_info *connection_info,
4721 enum drbd_notification_type type)
4722{
4723 struct connection_statistics connection_statistics;
4724 struct drbd_genlmsghdr *dh;
4725 bool multicast = false;
4726 int err;
4727
4728 if (!skb) {
4729 seq = atomic_inc_return(¬ify_genl_seq);
4730 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4731 err = -ENOMEM;
4732 if (!skb)
4733 goto failed;
4734 multicast = true;
4735 }
4736
4737 err = -EMSGSIZE;
4738 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_CONNECTION_STATE);
4739 if (!dh)
4740 goto nla_put_failure;
4741 dh->minor = -1U;
4742 dh->ret_code = NO_ERROR;
4743 if (nla_put_drbd_cfg_context(skb, connection->resource, connection, NULL) ||
4744 nla_put_notification_header(skb, type) ||
4745 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4746 connection_info_to_skb(skb, connection_info, true)))
4747 goto nla_put_failure;
4748 connection_statistics.conn_congested = test_bit(NET_CONGESTED, &connection->flags);
4749 connection_statistics_to_skb(skb, &connection_statistics, !capable(CAP_SYS_ADMIN));
4750 genlmsg_end(skb, dh);
4751 if (multicast) {
4752 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4753
4754 if (err && err != -ESRCH)
4755 goto failed;
4756 }
4757 return;
4758
4759nla_put_failure:
4760 nlmsg_free(skb);
4761failed:
4762 drbd_err(connection, "Error %d while broadcasting event. Event seq:%u\n",
4763 err, seq);
4764}
4765
4766void notify_peer_device_state(struct sk_buff *skb,
4767 unsigned int seq,
4768 struct drbd_peer_device *peer_device,
4769 struct peer_device_info *peer_device_info,
4770 enum drbd_notification_type type)
4771{
4772 struct peer_device_statistics peer_device_statistics;
4773 struct drbd_resource *resource = peer_device->device->resource;
4774 struct drbd_genlmsghdr *dh;
4775 bool multicast = false;
4776 int err;
4777
4778 if (!skb) {
4779 seq = atomic_inc_return(¬ify_genl_seq);
4780 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4781 err = -ENOMEM;
4782 if (!skb)
4783 goto failed;
4784 multicast = true;
4785 }
4786
4787 err = -EMSGSIZE;
4788 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_PEER_DEVICE_STATE);
4789 if (!dh)
4790 goto nla_put_failure;
4791 dh->minor = -1U;
4792 dh->ret_code = NO_ERROR;
4793 if (nla_put_drbd_cfg_context(skb, resource, peer_device->connection, peer_device->device) ||
4794 nla_put_notification_header(skb, type) ||
4795 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4796 peer_device_info_to_skb(skb, peer_device_info, true)))
4797 goto nla_put_failure;
4798 peer_device_to_statistics(&peer_device_statistics, peer_device);
4799 peer_device_statistics_to_skb(skb, &peer_device_statistics, !capable(CAP_SYS_ADMIN));
4800 genlmsg_end(skb, dh);
4801 if (multicast) {
4802 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4803
4804 if (err && err != -ESRCH)
4805 goto failed;
4806 }
4807 return;
4808
4809nla_put_failure:
4810 nlmsg_free(skb);
4811failed:
4812 drbd_err(peer_device, "Error %d while broadcasting event. Event seq:%u\n",
4813 err, seq);
4814}
4815
4816void notify_helper(enum drbd_notification_type type,
4817 struct drbd_device *device, struct drbd_connection *connection,
4818 const char *name, int status)
4819{
4820 struct drbd_resource *resource = device ? device->resource : connection->resource;
4821 struct drbd_helper_info helper_info;
4822 unsigned int seq = atomic_inc_return(¬ify_genl_seq);
4823 struct sk_buff *skb = NULL;
4824 struct drbd_genlmsghdr *dh;
4825 int err;
4826
4827 strlcpy(helper_info.helper_name, name, sizeof(helper_info.helper_name));
4828 helper_info.helper_name_len = min(strlen(name), sizeof(helper_info.helper_name));
4829 helper_info.helper_status = status;
4830
4831 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4832 err = -ENOMEM;
4833 if (!skb)
4834 goto fail;
4835
4836 err = -EMSGSIZE;
4837 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_HELPER);
4838 if (!dh)
4839 goto fail;
4840 dh->minor = device ? device->minor : -1;
4841 dh->ret_code = NO_ERROR;
4842 mutex_lock(¬ification_mutex);
4843 if (nla_put_drbd_cfg_context(skb, resource, connection, device) ||
4844 nla_put_notification_header(skb, type) ||
4845 drbd_helper_info_to_skb(skb, &helper_info, true))
4846 goto unlock_fail;
4847 genlmsg_end(skb, dh);
4848 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
4849 skb = NULL;
4850
4851 if (err && err != -ESRCH)
4852 goto unlock_fail;
4853 mutex_unlock(¬ification_mutex);
4854 return;
4855
4856unlock_fail:
4857 mutex_unlock(¬ification_mutex);
4858fail:
4859 nlmsg_free(skb);
4860 drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
4861 err, seq);
4862}
4863
4864static void notify_initial_state_done(struct sk_buff *skb, unsigned int seq)
4865{
4866 struct drbd_genlmsghdr *dh;
4867 int err;
4868
4869 err = -EMSGSIZE;
4870 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_INITIAL_STATE_DONE);
4871 if (!dh)
4872 goto nla_put_failure;
4873 dh->minor = -1U;
4874 dh->ret_code = NO_ERROR;
4875 if (nla_put_notification_header(skb, NOTIFY_EXISTS))
4876 goto nla_put_failure;
4877 genlmsg_end(skb, dh);
4878 return;
4879
4880nla_put_failure:
4881 nlmsg_free(skb);
4882 pr_err("Error %d sending event. Event seq:%u\n", err, seq);
4883}
4884
4885static void free_state_changes(struct list_head *list)
4886{
4887 while (!list_empty(list)) {
4888 struct drbd_state_change *state_change =
4889 list_first_entry(list, struct drbd_state_change, list);
4890 list_del(&state_change->list);
4891 forget_state_change(state_change);
4892 }
4893}
4894
4895static unsigned int notifications_for_state_change(struct drbd_state_change *state_change)
4896{
4897 return 1 +
4898 state_change->n_connections +
4899 state_change->n_devices +
4900 state_change->n_devices * state_change->n_connections;
4901}
4902
4903static int get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
4904{
4905 struct drbd_state_change *state_change = (struct drbd_state_change *)cb->args[0];
4906 unsigned int seq = cb->args[2];
4907 unsigned int n;
4908 enum drbd_notification_type flags = 0;
4909
4910
4911
4912
4913
4914
4915 cb->args[5]--;
4916 if (cb->args[5] == 1) {
4917 notify_initial_state_done(skb, seq);
4918 goto out;
4919 }
4920 n = cb->args[4]++;
4921 if (cb->args[4] < cb->args[3])
4922 flags |= NOTIFY_CONTINUES;
4923 if (n < 1) {
4924 notify_resource_state_change(skb, seq, state_change->resource,
4925 NOTIFY_EXISTS | flags);
4926 goto next;
4927 }
4928 n--;
4929 if (n < state_change->n_connections) {
4930 notify_connection_state_change(skb, seq, &state_change->connections[n],
4931 NOTIFY_EXISTS | flags);
4932 goto next;
4933 }
4934 n -= state_change->n_connections;
4935 if (n < state_change->n_devices) {
4936 notify_device_state_change(skb, seq, &state_change->devices[n],
4937 NOTIFY_EXISTS | flags);
4938 goto next;
4939 }
4940 n -= state_change->n_devices;
4941 if (n < state_change->n_devices * state_change->n_connections) {
4942 notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n],
4943 NOTIFY_EXISTS | flags);
4944 goto next;
4945 }
4946
4947next:
4948 if (cb->args[4] == cb->args[3]) {
4949 struct drbd_state_change *next_state_change =
4950 list_entry(state_change->list.next,
4951 struct drbd_state_change, list);
4952 cb->args[0] = (long)next_state_change;
4953 cb->args[3] = notifications_for_state_change(next_state_change);
4954 cb->args[4] = 0;
4955 }
4956out:
4957 return skb->len;
4958}
4959
4960int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
4961{
4962 struct drbd_resource *resource;
4963 LIST_HEAD(head);
4964
4965 if (cb->args[5] >= 1) {
4966 if (cb->args[5] > 1)
4967 return get_initial_state(skb, cb);
4968 if (cb->args[0]) {
4969 struct drbd_state_change *state_change =
4970 (struct drbd_state_change *)cb->args[0];
4971
4972
4973 list_add(&head, &state_change->list);
4974 free_state_changes(&head);
4975 }
4976 return 0;
4977 }
4978
4979 cb->args[5] = 2;
4980 mutex_lock(&resources_mutex);
4981 for_each_resource(resource, &drbd_resources) {
4982 struct drbd_state_change *state_change;
4983
4984 state_change = remember_old_state(resource, GFP_KERNEL);
4985 if (!state_change) {
4986 if (!list_empty(&head))
4987 free_state_changes(&head);
4988 mutex_unlock(&resources_mutex);
4989 return -ENOMEM;
4990 }
4991 copy_old_to_new_state_change(state_change);
4992 list_add_tail(&state_change->list, &head);
4993 cb->args[5] += notifications_for_state_change(state_change);
4994 }
4995 mutex_unlock(&resources_mutex);
4996
4997 if (!list_empty(&head)) {
4998 struct drbd_state_change *state_change =
4999 list_entry(head.next, struct drbd_state_change, list);
5000 cb->args[0] = (long)state_change;
5001 cb->args[3] = notifications_for_state_change(state_change);
5002 list_del(&head);
5003 }
5004
5005 cb->args[2] = cb->nlh->nlmsg_seq;
5006 return get_initial_state(skb, cb);
5007}
5008