4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include <linux/module.h>
27 #include <linux/drbd.h>
30 #include <linux/file.h>
31 #include <linux/slab.h>
32 #include <linux/blkpg.h>
33 #include <linux/cpumask.h>
36 #include "drbd_wrappers.h"
37 #include <asm/unaligned.h>
38 #include <linux/drbd_limits.h>
39 #include <linux/kthread.h>
41 #include <net/genetlink.h>
44 // int drbd_adm_create_resource(struct sk_buff *skb, struct genl_info *info);
45 // int drbd_adm_delete_resource(struct sk_buff *skb, struct genl_info *info);
47 int drbd_adm_add_minor(struct sk_buff
*skb
, struct genl_info
*info
);
48 int drbd_adm_delete_minor(struct sk_buff
*skb
, struct genl_info
*info
);
50 int drbd_adm_new_resource(struct sk_buff
*skb
, struct genl_info
*info
);
51 int drbd_adm_del_resource(struct sk_buff
*skb
, struct genl_info
*info
);
52 int drbd_adm_down(struct sk_buff
*skb
, struct genl_info
*info
);
54 int drbd_adm_set_role(struct sk_buff
*skb
, struct genl_info
*info
);
55 int drbd_adm_attach(struct sk_buff
*skb
, struct genl_info
*info
);
56 int drbd_adm_disk_opts(struct sk_buff
*skb
, struct genl_info
*info
);
57 int drbd_adm_detach(struct sk_buff
*skb
, struct genl_info
*info
);
58 int drbd_adm_connect(struct sk_buff
*skb
, struct genl_info
*info
);
59 int drbd_adm_net_opts(struct sk_buff
*skb
, struct genl_info
*info
);
60 int drbd_adm_resize(struct sk_buff
*skb
, struct genl_info
*info
);
61 int drbd_adm_start_ov(struct sk_buff
*skb
, struct genl_info
*info
);
62 int drbd_adm_new_c_uuid(struct sk_buff
*skb
, struct genl_info
*info
);
63 int drbd_adm_disconnect(struct sk_buff
*skb
, struct genl_info
*info
);
64 int drbd_adm_invalidate(struct sk_buff
*skb
, struct genl_info
*info
);
65 int drbd_adm_invalidate_peer(struct sk_buff
*skb
, struct genl_info
*info
);
66 int drbd_adm_pause_sync(struct sk_buff
*skb
, struct genl_info
*info
);
67 int drbd_adm_resume_sync(struct sk_buff
*skb
, struct genl_info
*info
);
68 int drbd_adm_suspend_io(struct sk_buff
*skb
, struct genl_info
*info
);
69 int drbd_adm_resume_io(struct sk_buff
*skb
, struct genl_info
*info
);
70 int drbd_adm_outdate(struct sk_buff
*skb
, struct genl_info
*info
);
71 int drbd_adm_resource_opts(struct sk_buff
*skb
, struct genl_info
*info
);
72 int drbd_adm_get_status(struct sk_buff
*skb
, struct genl_info
*info
);
73 int drbd_adm_get_timeout_type(struct sk_buff
*skb
, struct genl_info
*info
);
75 int drbd_adm_get_status_all(struct sk_buff
*skb
, struct netlink_callback
*cb
);
77 #include <linux/drbd_genl_api.h>
79 #include <linux/genl_magic_func.h>
81 /* used blkdev_get_by_path, to claim our meta data device(s) */
82 static char *drbd_m_holder
= "Hands off! this is DRBD's meta data device.";
84 /* Configuration is strictly serialized, because generic netlink message
85 * processing is strictly serialized by the genl_lock().
86 * Which means we can use one static global drbd_config_context struct.
88 static struct drbd_config_context
{
89 /* assigned from drbd_genlmsghdr */
91 /* assigned from request attributes, if present */
93 #define VOLUME_UNSPECIFIED (-1U)
94 /* pointer into the request skb,
95 * limited lifetime! */
97 struct nlattr
*my_addr
;
98 struct nlattr
*peer_addr
;
101 struct sk_buff
*reply_skb
;
102 /* pointer into reply buffer */
103 struct drbd_genlmsghdr
*reply_dh
;
104 /* resolved from attributes, if possible */
105 struct drbd_conf
*mdev
;
106 struct drbd_tconn
*tconn
;
109 static void drbd_adm_send_reply(struct sk_buff
*skb
, struct genl_info
*info
)
111 genlmsg_end(skb
, genlmsg_data(nlmsg_data(nlmsg_hdr(skb
))));
112 if (genlmsg_reply(skb
, info
))
113 printk(KERN_ERR
"drbd: error sending genl reply\n");
116 /* Used on a fresh "drbd_adm_prepare"d reply_skb, this cannot fail: The only
117 * reason it could fail was no space in skb, and there are 4k available. */
118 int drbd_msg_put_info(const char *info
)
120 struct sk_buff
*skb
= adm_ctx
.reply_skb
;
124 if (!info
|| !info
[0])
127 nla
= nla_nest_start(skb
, DRBD_NLA_CFG_REPLY
);
131 err
= nla_put_string(skb
, T_info_text
, info
);
133 nla_nest_cancel(skb
, nla
);
136 nla_nest_end(skb
, nla
);
140 /* This would be a good candidate for a "pre_doit" hook,
141 * and per-family private info->pointers.
142 * But we need to stay compatible with older kernels.
143 * If it returns successfully, adm_ctx members are valid.
145 #define DRBD_ADM_NEED_MINOR 1
146 #define DRBD_ADM_NEED_RESOURCE 2
147 #define DRBD_ADM_NEED_CONNECTION 4
148 static int drbd_adm_prepare(struct sk_buff
*skb
, struct genl_info
*info
,
151 struct drbd_genlmsghdr
*d_in
= info
->userhdr
;
152 const u8 cmd
= info
->genlhdr
->cmd
;
155 memset(&adm_ctx
, 0, sizeof(adm_ctx
));
157 /* genl_rcv_msg only checks for CAP_NET_ADMIN on "GENL_ADMIN_PERM" :( */
158 if (cmd
!= DRBD_ADM_GET_STATUS
&& !capable(CAP_NET_ADMIN
))
161 adm_ctx
.reply_skb
= genlmsg_new(NLMSG_GOODSIZE
, GFP_KERNEL
);
162 if (!adm_ctx
.reply_skb
) {
167 adm_ctx
.reply_dh
= genlmsg_put_reply(adm_ctx
.reply_skb
,
168 info
, &drbd_genl_family
, 0, cmd
);
169 /* put of a few bytes into a fresh skb of >= 4k will always succeed.
171 if (!adm_ctx
.reply_dh
) {
176 adm_ctx
.reply_dh
->minor
= d_in
->minor
;
177 adm_ctx
.reply_dh
->ret_code
= NO_ERROR
;
179 adm_ctx
.volume
= VOLUME_UNSPECIFIED
;
180 if (info
->attrs
[DRBD_NLA_CFG_CONTEXT
]) {
182 /* parse and validate only */
183 err
= drbd_cfg_context_from_attrs(NULL
, info
);
187 /* It was present, and valid,
188 * copy it over to the reply skb. */
189 err
= nla_put_nohdr(adm_ctx
.reply_skb
,
190 info
->attrs
[DRBD_NLA_CFG_CONTEXT
]->nla_len
,
191 info
->attrs
[DRBD_NLA_CFG_CONTEXT
]);
195 /* and assign stuff to the global adm_ctx */
196 nla
= nested_attr_tb
[__nla_type(T_ctx_volume
)];
198 adm_ctx
.volume
= nla_get_u32(nla
);
199 nla
= nested_attr_tb
[__nla_type(T_ctx_resource_name
)];
201 adm_ctx
.resource_name
= nla_data(nla
);
202 adm_ctx
.my_addr
= nested_attr_tb
[__nla_type(T_ctx_my_addr
)];
203 adm_ctx
.peer_addr
= nested_attr_tb
[__nla_type(T_ctx_peer_addr
)];
204 if ((adm_ctx
.my_addr
&&
205 nla_len(adm_ctx
.my_addr
) > sizeof(adm_ctx
.tconn
->my_addr
)) ||
206 (adm_ctx
.peer_addr
&&
207 nla_len(adm_ctx
.peer_addr
) > sizeof(adm_ctx
.tconn
->peer_addr
))) {
213 adm_ctx
.minor
= d_in
->minor
;
214 adm_ctx
.mdev
= minor_to_mdev(d_in
->minor
);
215 adm_ctx
.tconn
= conn_get_by_name(adm_ctx
.resource_name
);
217 if (!adm_ctx
.mdev
&& (flags
& DRBD_ADM_NEED_MINOR
)) {
218 drbd_msg_put_info("unknown minor");
219 return ERR_MINOR_INVALID
;
221 if (!adm_ctx
.tconn
&& (flags
& DRBD_ADM_NEED_RESOURCE
)) {
222 drbd_msg_put_info("unknown resource");
223 return ERR_INVALID_REQUEST
;
226 if (flags
& DRBD_ADM_NEED_CONNECTION
) {
227 if (adm_ctx
.tconn
&& !(flags
& DRBD_ADM_NEED_RESOURCE
)) {
228 drbd_msg_put_info("no resource name expected");
229 return ERR_INVALID_REQUEST
;
232 drbd_msg_put_info("no minor number expected");
233 return ERR_INVALID_REQUEST
;
235 if (adm_ctx
.my_addr
&& adm_ctx
.peer_addr
)
236 adm_ctx
.tconn
= conn_get_by_addrs(nla_data(adm_ctx
.my_addr
),
237 nla_len(adm_ctx
.my_addr
),
238 nla_data(adm_ctx
.peer_addr
),
239 nla_len(adm_ctx
.peer_addr
));
240 if (!adm_ctx
.tconn
) {
241 drbd_msg_put_info("unknown connection");
242 return ERR_INVALID_REQUEST
;
246 /* some more paranoia, if the request was over-determined */
247 if (adm_ctx
.mdev
&& adm_ctx
.tconn
&&
248 adm_ctx
.mdev
->tconn
!= adm_ctx
.tconn
) {
249 pr_warning("request: minor=%u, resource=%s; but that minor belongs to connection %s\n",
250 adm_ctx
.minor
, adm_ctx
.resource_name
,
251 adm_ctx
.mdev
->tconn
->name
);
252 drbd_msg_put_info("minor exists in different resource");
253 return ERR_INVALID_REQUEST
;
256 adm_ctx
.volume
!= VOLUME_UNSPECIFIED
&&
257 adm_ctx
.volume
!= adm_ctx
.mdev
->vnr
) {
258 pr_warning("request: minor=%u, volume=%u; but that minor is volume %u in %s\n",
259 adm_ctx
.minor
, adm_ctx
.volume
,
260 adm_ctx
.mdev
->vnr
, adm_ctx
.mdev
->tconn
->name
);
261 drbd_msg_put_info("minor exists as different volume");
262 return ERR_INVALID_REQUEST
;
268 nlmsg_free(adm_ctx
.reply_skb
);
269 adm_ctx
.reply_skb
= NULL
;
273 static int drbd_adm_finish(struct genl_info
*info
, int retcode
)
276 kref_put(&adm_ctx
.tconn
->kref
, &conn_destroy
);
277 adm_ctx
.tconn
= NULL
;
280 if (!adm_ctx
.reply_skb
)
283 adm_ctx
.reply_dh
->ret_code
= retcode
;
284 drbd_adm_send_reply(adm_ctx
.reply_skb
, info
);
288 static void setup_khelper_env(struct drbd_tconn
*tconn
, char **envp
)
292 /* FIXME: A future version will not allow this case. */
293 if (tconn
->my_addr_len
== 0 || tconn
->peer_addr_len
== 0)
296 switch (((struct sockaddr
*)&tconn
->peer_addr
)->sa_family
) {
299 snprintf(envp
[4], 60, "DRBD_PEER_ADDRESS=%pI6",
300 &((struct sockaddr_in6
*)&tconn
->peer_addr
)->sin6_addr
);
304 snprintf(envp
[4], 60, "DRBD_PEER_ADDRESS=%pI4",
305 &((struct sockaddr_in
*)&tconn
->peer_addr
)->sin_addr
);
309 snprintf(envp
[4], 60, "DRBD_PEER_ADDRESS=%pI4",
310 &((struct sockaddr_in
*)&tconn
->peer_addr
)->sin_addr
);
312 snprintf(envp
[3], 20, "DRBD_PEER_AF=%s", afs
);
315 int drbd_khelper(struct drbd_conf
*mdev
, char *cmd
)
317 char *envp
[] = { "HOME=/",
319 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
320 (char[20]) { }, /* address family */
321 (char[60]) { }, /* address */
324 char *argv
[] = {usermode_helper
, cmd
, mb
, NULL
};
325 struct drbd_tconn
*tconn
= mdev
->tconn
;
329 if (current
== tconn
->worker
.task
)
330 set_bit(CALLBACK_PENDING
, &tconn
->flags
);
332 snprintf(mb
, 12, "minor-%d", mdev_to_minor(mdev
));
333 setup_khelper_env(tconn
, envp
);
335 /* The helper may take some time.
336 * write out any unsynced meta data changes now */
339 dev_info(DEV
, "helper command: %s %s %s\n", usermode_helper
, cmd
, mb
);
340 sib
.sib_reason
= SIB_HELPER_PRE
;
341 sib
.helper_name
= cmd
;
342 drbd_bcast_event(mdev
, &sib
);
343 ret
= call_usermodehelper(usermode_helper
, argv
, envp
, UMH_WAIT_PROC
);
345 dev_warn(DEV
, "helper command: %s %s %s exit code %u (0x%x)\n",
346 usermode_helper
, cmd
, mb
,
347 (ret
>> 8) & 0xff, ret
);
349 dev_info(DEV
, "helper command: %s %s %s exit code %u (0x%x)\n",
350 usermode_helper
, cmd
, mb
,
351 (ret
>> 8) & 0xff, ret
);
352 sib
.sib_reason
= SIB_HELPER_POST
;
353 sib
.helper_exit_code
= ret
;
354 drbd_bcast_event(mdev
, &sib
);
356 if (current
== tconn
->worker
.task
)
357 clear_bit(CALLBACK_PENDING
, &tconn
->flags
);
359 if (ret
< 0) /* Ignore any ERRNOs we got. */
365 int conn_khelper(struct drbd_tconn
*tconn
, char *cmd
)
367 char *envp
[] = { "HOME=/",
369 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
370 (char[20]) { }, /* address family */
371 (char[60]) { }, /* address */
373 char *argv
[] = {usermode_helper
, cmd
, tconn
->name
, NULL
};
376 setup_khelper_env(tconn
, envp
);
379 conn_info(tconn
, "helper command: %s %s %s\n", usermode_helper
, cmd
, tconn
->name
);
380 /* TODO: conn_bcast_event() ?? */
382 ret
= call_usermodehelper(usermode_helper
, argv
, envp
, UMH_WAIT_PROC
);
384 conn_warn(tconn
, "helper command: %s %s %s exit code %u (0x%x)\n",
385 usermode_helper
, cmd
, tconn
->name
,
386 (ret
>> 8) & 0xff, ret
);
388 conn_info(tconn
, "helper command: %s %s %s exit code %u (0x%x)\n",
389 usermode_helper
, cmd
, tconn
->name
,
390 (ret
>> 8) & 0xff, ret
);
391 /* TODO: conn_bcast_event() ?? */
393 if (ret
< 0) /* Ignore any ERRNOs we got. */
399 static enum drbd_fencing_p
highest_fencing_policy(struct drbd_tconn
*tconn
)
401 enum drbd_fencing_p fp
= FP_NOT_AVAIL
;
402 struct drbd_conf
*mdev
;
406 idr_for_each_entry(&tconn
->volumes
, mdev
, vnr
) {
407 if (get_ldev_if_state(mdev
, D_CONSISTENT
)) {
408 fp
= max_t(enum drbd_fencing_p
, fp
,
409 rcu_dereference(mdev
->ldev
->disk_conf
)->fencing
);
418 bool conn_try_outdate_peer(struct drbd_tconn
*tconn
)
420 unsigned int connect_cnt
;
421 union drbd_state mask
= { };
422 union drbd_state val
= { };
423 enum drbd_fencing_p fp
;
427 if (tconn
->cstate
>= C_WF_REPORT_PARAMS
) {
428 conn_err(tconn
, "Expected cstate < C_WF_REPORT_PARAMS\n");
432 spin_lock_irq(&tconn
->req_lock
);
433 connect_cnt
= tconn
->connect_cnt
;
434 spin_unlock_irq(&tconn
->req_lock
);
436 fp
= highest_fencing_policy(tconn
);
439 conn_warn(tconn
, "Not fencing peer, I'm not even Consistent myself.\n");
446 r
= conn_khelper(tconn
, "fence-peer");
448 switch ((r
>>8) & 0xff) {
449 case 3: /* peer is inconsistent */
450 ex_to_string
= "peer is inconsistent or worse";
452 val
.pdsk
= D_INCONSISTENT
;
454 case 4: /* peer got outdated, or was already outdated */
455 ex_to_string
= "peer was fenced";
457 val
.pdsk
= D_OUTDATED
;
459 case 5: /* peer was down */
460 if (conn_highest_disk(tconn
) == D_UP_TO_DATE
) {
461 /* we will(have) create(d) a new UUID anyways... */
462 ex_to_string
= "peer is unreachable, assumed to be dead";
464 val
.pdsk
= D_OUTDATED
;
466 ex_to_string
= "peer unreachable, doing nothing since disk != UpToDate";
469 case 6: /* Peer is primary, voluntarily outdate myself.
470 * This is useful when an unconnected R_SECONDARY is asked to
471 * become R_PRIMARY, but finds the other peer being active. */
472 ex_to_string
= "peer is active";
473 conn_warn(tconn
, "Peer is primary, outdating myself.\n");
475 val
.disk
= D_OUTDATED
;
478 if (fp
!= FP_STONITH
)
479 conn_err(tconn
, "fence-peer() = 7 && fencing != Stonith !!!\n");
480 ex_to_string
= "peer was stonithed";
482 val
.pdsk
= D_OUTDATED
;
485 /* The script is broken ... */
486 conn_err(tconn
, "fence-peer helper broken, returned %d\n", (r
>>8)&0xff);
487 return false; /* Eventually leave IO frozen */
490 conn_info(tconn
, "fence-peer helper returned %d (%s)\n",
491 (r
>>8) & 0xff, ex_to_string
);
496 conn_request_state(tconn, mask, val, CS_VERBOSE);
497 here, because we might were able to re-establish the connection in the
499 spin_lock_irq(&tconn
->req_lock
);
500 if (tconn
->cstate
< C_WF_REPORT_PARAMS
&& !test_bit(STATE_SENT
, &tconn
->flags
)) {
501 if (tconn
->connect_cnt
!= connect_cnt
)
502 /* In case the connection was established and droped
503 while the fence-peer handler was running, ignore it */
504 conn_info(tconn
, "Ignoring fence-peer exit code\n");
506 _conn_request_state(tconn
, mask
, val
, CS_VERBOSE
);
508 spin_unlock_irq(&tconn
->req_lock
);
510 return conn_highest_pdsk(tconn
) <= D_OUTDATED
;
513 static int _try_outdate_peer_async(void *data
)
515 struct drbd_tconn
*tconn
= (struct drbd_tconn
*)data
;
517 conn_try_outdate_peer(tconn
);
519 kref_put(&tconn
->kref
, &conn_destroy
);
523 void conn_try_outdate_peer_async(struct drbd_tconn
*tconn
)
525 struct task_struct
*opa
;
527 kref_get(&tconn
->kref
);
528 opa
= kthread_run(_try_outdate_peer_async
, tconn
, "drbd_async_h");
530 conn_err(tconn
, "out of mem, failed to invoke fence-peer helper\n");
531 kref_put(&tconn
->kref
, &conn_destroy
);
536 drbd_set_role(struct drbd_conf
*mdev
, enum drbd_role new_role
, int force
)
538 const int max_tries
= 4;
539 enum drbd_state_rv rv
= SS_UNKNOWN_ERROR
;
543 union drbd_state mask
, val
;
545 if (new_role
== R_PRIMARY
)
546 request_ping(mdev
->tconn
); /* Detect a dead peer ASAP */
548 mutex_lock(mdev
->state_mutex
);
550 mask
.i
= 0; mask
.role
= R_MASK
;
551 val
.i
= 0; val
.role
= new_role
;
553 while (try++ < max_tries
) {
554 rv
= _drbd_request_state(mdev
, mask
, val
, CS_WAIT_COMPLETE
);
556 /* in case we first succeeded to outdate,
557 * but now suddenly could establish a connection */
558 if (rv
== SS_CW_FAILED_BY_PEER
&& mask
.pdsk
!= 0) {
564 if (rv
== SS_NO_UP_TO_DATE_DISK
&& force
&&
565 (mdev
->state
.disk
< D_UP_TO_DATE
&&
566 mdev
->state
.disk
>= D_INCONSISTENT
)) {
568 val
.disk
= D_UP_TO_DATE
;
573 if (rv
== SS_NO_UP_TO_DATE_DISK
&&
574 mdev
->state
.disk
== D_CONSISTENT
&& mask
.pdsk
== 0) {
575 D_ASSERT(mdev
->state
.pdsk
== D_UNKNOWN
);
577 if (conn_try_outdate_peer(mdev
->tconn
)) {
578 val
.disk
= D_UP_TO_DATE
;
584 if (rv
== SS_NOTHING_TO_DO
)
586 if (rv
== SS_PRIMARY_NOP
&& mask
.pdsk
== 0) {
587 if (!conn_try_outdate_peer(mdev
->tconn
) && force
) {
588 dev_warn(DEV
, "Forced into split brain situation!\n");
590 val
.pdsk
= D_OUTDATED
;
595 if (rv
== SS_TWO_PRIMARIES
) {
596 /* Maybe the peer is detected as dead very soon...
597 retry at most once more in this case. */
600 nc
= rcu_dereference(mdev
->tconn
->net_conf
);
601 timeo
= nc
? (nc
->ping_timeo
+ 1) * HZ
/ 10 : 1;
603 schedule_timeout_interruptible(timeo
);
608 if (rv
< SS_SUCCESS
) {
609 rv
= _drbd_request_state(mdev
, mask
, val
,
610 CS_VERBOSE
+ CS_WAIT_COMPLETE
);
621 dev_warn(DEV
, "Forced to consider local data as UpToDate!\n");
623 /* Wait until nothing is on the fly :) */
624 wait_event(mdev
->misc_wait
, atomic_read(&mdev
->ap_pending_cnt
) == 0);
626 /* FIXME also wait for all pending P_BARRIER_ACK? */
628 if (new_role
== R_SECONDARY
) {
629 set_disk_ro(mdev
->vdisk
, true);
630 if (get_ldev(mdev
)) {
631 mdev
->ldev
->md
.uuid
[UI_CURRENT
] &= ~(u64
)1;
635 mutex_lock(&mdev
->tconn
->conf_update
);
636 nc
= mdev
->tconn
->net_conf
;
638 nc
->discard_my_data
= 0; /* without copy; single bit op is atomic */
639 mutex_unlock(&mdev
->tconn
->conf_update
);
641 set_disk_ro(mdev
->vdisk
, false);
642 if (get_ldev(mdev
)) {
643 if (((mdev
->state
.conn
< C_CONNECTED
||
644 mdev
->state
.pdsk
<= D_FAILED
)
645 && mdev
->ldev
->md
.uuid
[UI_BITMAP
] == 0) || forced
)
646 drbd_uuid_new_current(mdev
);
648 mdev
->ldev
->md
.uuid
[UI_CURRENT
] |= (u64
)1;
653 /* writeout of activity log covered areas of the bitmap
654 * to stable storage done in after state change already */
656 if (mdev
->state
.conn
>= C_WF_REPORT_PARAMS
) {
657 /* if this was forced, we should consider sync */
659 drbd_send_uuids(mdev
);
660 drbd_send_current_state(mdev
);
665 kobject_uevent(&disk_to_dev(mdev
->vdisk
)->kobj
, KOBJ_CHANGE
);
667 mutex_unlock(mdev
->state_mutex
);
671 static const char *from_attrs_err_to_txt(int err
)
673 return err
== -ENOMSG
? "required attribute missing" :
674 err
== -EOPNOTSUPP
? "unknown mandatory attribute" :
675 err
== -EEXIST
? "can not change invariant setting" :
676 "invalid attribute value";
679 int drbd_adm_set_role(struct sk_buff
*skb
, struct genl_info
*info
)
681 struct set_role_parms parms
;
683 enum drbd_ret_code retcode
;
685 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
686 if (!adm_ctx
.reply_skb
)
688 if (retcode
!= NO_ERROR
)
691 memset(&parms
, 0, sizeof(parms
));
692 if (info
->attrs
[DRBD_NLA_SET_ROLE_PARMS
]) {
693 err
= set_role_parms_from_attrs(&parms
, info
);
695 retcode
= ERR_MANDATORY_TAG
;
696 drbd_msg_put_info(from_attrs_err_to_txt(err
));
701 if (info
->genlhdr
->cmd
== DRBD_ADM_PRIMARY
)
702 retcode
= drbd_set_role(adm_ctx
.mdev
, R_PRIMARY
, parms
.assume_uptodate
);
704 retcode
= drbd_set_role(adm_ctx
.mdev
, R_SECONDARY
, 0);
706 drbd_adm_finish(info
, retcode
);
710 /* Initializes the md.*_offset members, so we are able to find
711 * the on disk meta data.
713 * We currently have two possible layouts:
715 * |----------- md_size_sect ------------------|
716 * [ 4k superblock ][ activity log ][ Bitmap ]
718 * | bm_offset = al_offset + X |
719 * ==> bitmap sectors = md_size_sect - bm_offset
722 * |----------- md_size_sect ------------------|
723 * [data.....][ Bitmap ][ activity log ][ 4k superblock ]
725 * | bm_offset = al_offset - Y |
726 * ==> bitmap sectors = Y = al_offset - bm_offset
728 * Activity log size used to be fixed 32kB,
729 * but is about to become configurable.
731 static void drbd_md_set_sector_offsets(struct drbd_conf
*mdev
,
732 struct drbd_backing_dev
*bdev
)
734 sector_t md_size_sect
= 0;
735 unsigned int al_size_sect
= bdev
->md
.al_size_4k
* 8;
737 bdev
->md
.md_offset
= drbd_md_ss(bdev
);
739 switch (bdev
->md
.meta_dev_idx
) {
741 /* v07 style fixed size indexed meta data */
742 bdev
->md
.md_size_sect
= MD_128MB_SECT
;
743 bdev
->md
.al_offset
= MD_4kB_SECT
;
744 bdev
->md
.bm_offset
= MD_4kB_SECT
+ al_size_sect
;
746 case DRBD_MD_INDEX_FLEX_EXT
:
747 /* just occupy the full device; unit: sectors */
748 bdev
->md
.md_size_sect
= drbd_get_capacity(bdev
->md_bdev
);
749 bdev
->md
.al_offset
= MD_4kB_SECT
;
750 bdev
->md
.bm_offset
= MD_4kB_SECT
+ al_size_sect
;
752 case DRBD_MD_INDEX_INTERNAL
:
753 case DRBD_MD_INDEX_FLEX_INT
:
754 /* al size is still fixed */
755 bdev
->md
.al_offset
= -al_size_sect
;
756 /* we need (slightly less than) ~ this much bitmap sectors: */
757 md_size_sect
= drbd_get_capacity(bdev
->backing_bdev
);
758 md_size_sect
= ALIGN(md_size_sect
, BM_SECT_PER_EXT
);
759 md_size_sect
= BM_SECT_TO_EXT(md_size_sect
);
760 md_size_sect
= ALIGN(md_size_sect
, 8);
762 /* plus the "drbd meta data super block",
763 * and the activity log; */
764 md_size_sect
+= MD_4kB_SECT
+ al_size_sect
;
766 bdev
->md
.md_size_sect
= md_size_sect
;
767 /* bitmap offset is adjusted by 'super' block size */
768 bdev
->md
.bm_offset
= -md_size_sect
+ MD_4kB_SECT
;
773 /* input size is expected to be in KB */
774 char *ppsize(char *buf
, unsigned long long size
)
776 /* Needs 9 bytes at max including trailing NUL:
777 * -1ULL ==> "16384 EB" */
778 static char units
[] = { 'K', 'M', 'G', 'T', 'P', 'E' };
780 while (size
>= 10000 && base
< sizeof(units
)-1) {
782 size
= (size
>> 10) + !!(size
& (1<<9));
785 sprintf(buf
, "%u %cB", (unsigned)size
, units
[base
]);
790 /* there is still a theoretical deadlock when called from receiver
791 * on an D_INCONSISTENT R_PRIMARY:
792 * remote READ does inc_ap_bio, receiver would need to receive answer
793 * packet from remote to dec_ap_bio again.
794 * receiver receive_sizes(), comes here,
795 * waits for ap_bio_cnt == 0. -> deadlock.
796 * but this cannot happen, actually, because:
797 * R_PRIMARY D_INCONSISTENT, and peer's disk is unreachable
798 * (not connected, or bad/no disk on peer):
799 * see drbd_fail_request_early, ap_bio_cnt is zero.
800 * R_PRIMARY D_INCONSISTENT, and C_SYNC_TARGET:
801 * peer may not initiate a resize.
803 /* Note these are not to be confused with
804 * drbd_adm_suspend_io/drbd_adm_resume_io,
805 * which are (sub) state changes triggered by admin (drbdsetup),
806 * and can be long lived.
807 * This changes an mdev->flag, is triggered by drbd internals,
808 * and should be short-lived. */
809 void drbd_suspend_io(struct drbd_conf
*mdev
)
811 set_bit(SUSPEND_IO
, &mdev
->flags
);
812 if (drbd_suspended(mdev
))
814 wait_event(mdev
->misc_wait
, !atomic_read(&mdev
->ap_bio_cnt
));
817 void drbd_resume_io(struct drbd_conf
*mdev
)
819 clear_bit(SUSPEND_IO
, &mdev
->flags
);
820 wake_up(&mdev
->misc_wait
);
824 * drbd_determine_dev_size() - Sets the right device size obeying all constraints
825 * @mdev: DRBD device.
827 * Returns 0 on success, negative return values indicate errors.
828 * You should call drbd_md_sync() after calling this function.
830 enum determine_dev_size
831 drbd_determine_dev_size(struct drbd_conf
*mdev
, enum dds_flags flags
, struct resize_parms
*rs
) __must_hold(local
)
833 sector_t prev_first_sect
, prev_size
; /* previous meta location */
834 sector_t la_size_sect
, u_size
;
835 struct drbd_md
*md
= &mdev
->ldev
->md
;
836 u32 prev_al_stripe_size_4k
;
842 int md_moved
, la_size_changed
;
843 enum determine_dev_size rv
= DS_UNCHANGED
;
846 * application request passes inc_ap_bio,
847 * but then cannot get an AL-reference.
848 * this function later may wait on ap_bio_cnt == 0. -> deadlock.
851 * Suspend IO right here.
852 * still lock the act_log to not trigger ASSERTs there.
854 drbd_suspend_io(mdev
);
855 buffer
= drbd_md_get_buffer(mdev
); /* Lock meta-data IO */
857 drbd_resume_io(mdev
);
861 /* no wait necessary anymore, actually we could assert that */
862 wait_event(mdev
->al_wait
, lc_try_lock(mdev
->act_log
));
864 prev_first_sect
= drbd_md_first_sector(mdev
->ldev
);
865 prev_size
= mdev
->ldev
->md
.md_size_sect
;
866 la_size_sect
= mdev
->ldev
->md
.la_size_sect
;
869 /* rs is non NULL if we should change the AL layout only */
871 prev_al_stripes
= md
->al_stripes
;
872 prev_al_stripe_size_4k
= md
->al_stripe_size_4k
;
874 md
->al_stripes
= rs
->al_stripes
;
875 md
->al_stripe_size_4k
= rs
->al_stripe_size
/ 4;
876 md
->al_size_4k
= (u64
)rs
->al_stripes
* rs
->al_stripe_size
/ 4;
879 drbd_md_set_sector_offsets(mdev
, mdev
->ldev
);
882 u_size
= rcu_dereference(mdev
->ldev
->disk_conf
)->disk_size
;
884 size
= drbd_new_dev_size(mdev
, mdev
->ldev
, u_size
, flags
& DDSF_FORCED
);
886 if (size
< la_size_sect
) {
887 if (rs
&& u_size
== 0) {
888 /* Remove "rs &&" later. This check should always be active, but
889 right now the receiver expects the permissive behavior */
890 dev_warn(DEV
, "Implicit shrink not allowed. "
891 "Use --size=%llus for explicit shrink.\n",
892 (unsigned long long)size
);
893 rv
= DS_ERROR_SHRINK
;
896 rv
= DS_ERROR_SPACE_MD
;
897 if (rv
!= DS_UNCHANGED
)
901 if (drbd_get_capacity(mdev
->this_bdev
) != size
||
902 drbd_bm_capacity(mdev
) != size
) {
904 err
= drbd_bm_resize(mdev
, size
, !(flags
& DDSF_NO_RESYNC
));
906 /* currently there is only one error: ENOMEM! */
907 size
= drbd_bm_capacity(mdev
)>>1;
909 dev_err(DEV
, "OUT OF MEMORY! "
910 "Could not allocate bitmap!\n");
912 dev_err(DEV
, "BM resizing failed. "
913 "Leaving size unchanged at size = %lu KB\n",
914 (unsigned long)size
);
918 /* racy, see comments above. */
919 drbd_set_my_capacity(mdev
, size
);
920 mdev
->ldev
->md
.la_size_sect
= size
;
921 dev_info(DEV
, "size = %s (%llu KB)\n", ppsize(ppb
, size
>>1),
922 (unsigned long long)size
>>1);
927 la_size_changed
= (la_size_sect
!= mdev
->ldev
->md
.la_size_sect
);
929 md_moved
= prev_first_sect
!= drbd_md_first_sector(mdev
->ldev
)
930 || prev_size
!= mdev
->ldev
->md
.md_size_sect
;
932 if (la_size_changed
|| md_moved
|| rs
) {
935 drbd_al_shrink(mdev
); /* All extents inactive. */
937 prev_flags
= md
->flags
;
938 md
->flags
&= ~MDF_PRIMARY_IND
;
939 drbd_md_write(mdev
, buffer
);
941 dev_info(DEV
, "Writing the whole bitmap, %s\n",
942 la_size_changed
&& md_moved
? "size changed and md moved" :
943 la_size_changed
? "size changed" : "md moved");
944 /* next line implicitly does drbd_suspend_io()+drbd_resume_io() */
945 drbd_bitmap_io(mdev
, md_moved
? &drbd_bm_write_all
: &drbd_bm_write
,
946 "size changed", BM_LOCKED_MASK
);
947 drbd_initialize_al(mdev
, buffer
);
949 md
->flags
= prev_flags
;
950 drbd_md_write(mdev
, buffer
);
953 dev_info(DEV
, "Changed AL layout to al-stripes = %d, al-stripe-size-kB = %d\n",
954 md
->al_stripes
, md
->al_stripe_size_4k
* 4);
957 if (size
> la_size_sect
)
958 rv
= la_size_sect
? DS_GREW
: DS_GREW_FROM_ZERO
;
959 if (size
< la_size_sect
)
965 md
->al_stripes
= prev_al_stripes
;
966 md
->al_stripe_size_4k
= prev_al_stripe_size_4k
;
967 md
->al_size_4k
= (u64
)prev_al_stripes
* prev_al_stripe_size_4k
;
969 drbd_md_set_sector_offsets(mdev
, mdev
->ldev
);
972 lc_unlock(mdev
->act_log
);
973 wake_up(&mdev
->al_wait
);
974 drbd_md_put_buffer(mdev
);
975 drbd_resume_io(mdev
);
981 drbd_new_dev_size(struct drbd_conf
*mdev
, struct drbd_backing_dev
*bdev
,
982 sector_t u_size
, int assume_peer_has_space
)
984 sector_t p_size
= mdev
->p_size
; /* partner's disk size. */
985 sector_t la_size_sect
= bdev
->md
.la_size_sect
; /* last agreed size. */
986 sector_t m_size
; /* my size */
989 m_size
= drbd_get_max_capacity(bdev
);
991 if (mdev
->state
.conn
< C_CONNECTED
&& assume_peer_has_space
) {
992 dev_warn(DEV
, "Resize while not connected was forced by the user!\n");
996 if (p_size
&& m_size
) {
997 size
= min_t(sector_t
, p_size
, m_size
);
1000 size
= la_size_sect
;
1001 if (m_size
&& m_size
< size
)
1003 if (p_size
&& p_size
< size
)
1014 dev_err(DEV
, "Both nodes diskless!\n");
1018 dev_err(DEV
, "Requested disk size is too big (%lu > %lu)\n",
1019 (unsigned long)u_size
>>1, (unsigned long)size
>>1);
1028 * drbd_check_al_size() - Ensures that the AL is of the right size
1029 * @mdev: DRBD device.
1031 * Returns -EBUSY if current al lru is still used, -ENOMEM when allocation
1032 * failed, and 0 on success. You should call drbd_md_sync() after you called
1035 static int drbd_check_al_size(struct drbd_conf
*mdev
, struct disk_conf
*dc
)
1037 struct lru_cache
*n
, *t
;
1038 struct lc_element
*e
;
1039 unsigned int in_use
;
1042 if (mdev
->act_log
&&
1043 mdev
->act_log
->nr_elements
== dc
->al_extents
)
1048 n
= lc_create("act_log", drbd_al_ext_cache
, AL_UPDATES_PER_TRANSACTION
,
1049 dc
->al_extents
, sizeof(struct lc_element
), 0);
1052 dev_err(DEV
, "Cannot allocate act_log lru!\n");
1055 spin_lock_irq(&mdev
->al_lock
);
1057 for (i
= 0; i
< t
->nr_elements
; i
++) {
1058 e
= lc_element_by_index(t
, i
);
1060 dev_err(DEV
, "refcnt(%d)==%d\n",
1061 e
->lc_number
, e
->refcnt
);
1062 in_use
+= e
->refcnt
;
1067 spin_unlock_irq(&mdev
->al_lock
);
1069 dev_err(DEV
, "Activity log still in use!\n");
1076 drbd_md_mark_dirty(mdev
); /* we changed mdev->act_log->nr_elemens */
1080 static void drbd_setup_queue_param(struct drbd_conf
*mdev
, unsigned int max_bio_size
)
1082 struct request_queue
* const q
= mdev
->rq_queue
;
1083 unsigned int max_hw_sectors
= max_bio_size
>> 9;
1084 unsigned int max_segments
= 0;
1086 if (get_ldev_if_state(mdev
, D_ATTACHING
)) {
1087 struct request_queue
* const b
= mdev
->ldev
->backing_bdev
->bd_disk
->queue
;
1089 max_hw_sectors
= min(queue_max_hw_sectors(b
), max_bio_size
>> 9);
1091 max_segments
= rcu_dereference(mdev
->ldev
->disk_conf
)->max_bio_bvecs
;
1096 blk_queue_logical_block_size(q
, 512);
1097 blk_queue_max_hw_sectors(q
, max_hw_sectors
);
1098 /* This is the workaround for "bio would need to, but cannot, be split" */
1099 blk_queue_max_segments(q
, max_segments
? max_segments
: BLK_MAX_SEGMENTS
);
1100 blk_queue_segment_boundary(q
, PAGE_CACHE_SIZE
-1);
1102 if (get_ldev_if_state(mdev
, D_ATTACHING
)) {
1103 struct request_queue
* const b
= mdev
->ldev
->backing_bdev
->bd_disk
->queue
;
1105 blk_queue_stack_limits(q
, b
);
1107 if (q
->backing_dev_info
.ra_pages
!= b
->backing_dev_info
.ra_pages
) {
1108 dev_info(DEV
, "Adjusting my ra_pages to backing device's (%lu -> %lu)\n",
1109 q
->backing_dev_info
.ra_pages
,
1110 b
->backing_dev_info
.ra_pages
);
1111 q
->backing_dev_info
.ra_pages
= b
->backing_dev_info
.ra_pages
;
1117 void drbd_reconsider_max_bio_size(struct drbd_conf
*mdev
)
1119 unsigned int now
, new, local
, peer
;
1121 now
= queue_max_hw_sectors(mdev
->rq_queue
) << 9;
1122 local
= mdev
->local_max_bio_size
; /* Eventually last known value, from volatile memory */
1123 peer
= mdev
->peer_max_bio_size
; /* Eventually last known value, from meta data */
1125 if (get_ldev_if_state(mdev
, D_ATTACHING
)) {
1126 local
= queue_max_hw_sectors(mdev
->ldev
->backing_bdev
->bd_disk
->queue
) << 9;
1127 mdev
->local_max_bio_size
= local
;
1130 local
= min(local
, DRBD_MAX_BIO_SIZE
);
1132 /* We may ignore peer limits if the peer is modern enough.
1133 Because new from 8.3.8 onwards the peer can use multiple
1134 BIOs for a single peer_request */
1135 if (mdev
->state
.conn
>= C_WF_REPORT_PARAMS
) {
1136 if (mdev
->tconn
->agreed_pro_version
< 94)
1137 peer
= min(mdev
->peer_max_bio_size
, DRBD_MAX_SIZE_H80_PACKET
);
1138 /* Correct old drbd (up to 8.3.7) if it believes it can do more than 32KiB */
1139 else if (mdev
->tconn
->agreed_pro_version
== 94)
1140 peer
= DRBD_MAX_SIZE_H80_PACKET
;
1141 else if (mdev
->tconn
->agreed_pro_version
< 100)
1142 peer
= DRBD_MAX_BIO_SIZE_P95
; /* drbd 8.3.8 onwards, before 8.4.0 */
1144 peer
= DRBD_MAX_BIO_SIZE
;
1147 new = min(local
, peer
);
1149 if (mdev
->state
.role
== R_PRIMARY
&& new < now
)
1150 dev_err(DEV
, "ASSERT FAILED new < now; (%u < %u)\n", new, now
);
1153 dev_info(DEV
, "max BIO size = %u\n", new);
1155 drbd_setup_queue_param(mdev
, new);
1158 /* Starts the worker thread */
1159 static void conn_reconfig_start(struct drbd_tconn
*tconn
)
1161 drbd_thread_start(&tconn
->worker
);
1162 conn_flush_workqueue(tconn
);
1165 /* if still unconfigured, stops worker again. */
1166 static void conn_reconfig_done(struct drbd_tconn
*tconn
)
1169 spin_lock_irq(&tconn
->req_lock
);
1170 stop_threads
= conn_all_vols_unconf(tconn
) &&
1171 tconn
->cstate
== C_STANDALONE
;
1172 spin_unlock_irq(&tconn
->req_lock
);
1174 /* asender is implicitly stopped by receiver
1175 * in conn_disconnect() */
1176 drbd_thread_stop(&tconn
->receiver
);
1177 drbd_thread_stop(&tconn
->worker
);
1181 /* Make sure IO is suspended before calling this function(). */
1182 static void drbd_suspend_al(struct drbd_conf
*mdev
)
1186 if (!lc_try_lock(mdev
->act_log
)) {
1187 dev_warn(DEV
, "Failed to lock al in drbd_suspend_al()\n");
1191 drbd_al_shrink(mdev
);
1192 spin_lock_irq(&mdev
->tconn
->req_lock
);
1193 if (mdev
->state
.conn
< C_CONNECTED
)
1194 s
= !test_and_set_bit(AL_SUSPENDED
, &mdev
->flags
);
1195 spin_unlock_irq(&mdev
->tconn
->req_lock
);
1196 lc_unlock(mdev
->act_log
);
1199 dev_info(DEV
, "Suspended AL updates\n");
1203 static bool should_set_defaults(struct genl_info
*info
)
1205 unsigned flags
= ((struct drbd_genlmsghdr
*)info
->userhdr
)->flags
;
1206 return 0 != (flags
& DRBD_GENL_F_SET_DEFAULTS
);
1209 static unsigned int drbd_al_extents_max(struct drbd_backing_dev
*bdev
)
1211 /* This is limited by 16 bit "slot" numbers,
1212 * and by available on-disk context storage.
1214 * Also (u16)~0 is special (denotes a "free" extent).
1216 * One transaction occupies one 4kB on-disk block,
1217 * we have n such blocks in the on disk ring buffer,
1218 * the "current" transaction may fail (n-1),
1219 * and there is 919 slot numbers context information per transaction.
1221 * 72 transaction blocks amounts to more than 2**16 context slots,
1222 * so cap there first.
1224 const unsigned int max_al_nr
= DRBD_AL_EXTENTS_MAX
;
1225 const unsigned int sufficient_on_disk
=
1226 (max_al_nr
+ AL_CONTEXT_PER_TRANSACTION
-1)
1227 /AL_CONTEXT_PER_TRANSACTION
;
1229 unsigned int al_size_4k
= bdev
->md
.al_size_4k
;
1231 if (al_size_4k
> sufficient_on_disk
)
1234 return (al_size_4k
- 1) * AL_CONTEXT_PER_TRANSACTION
;
1237 int drbd_adm_disk_opts(struct sk_buff
*skb
, struct genl_info
*info
)
1239 enum drbd_ret_code retcode
;
1240 struct drbd_conf
*mdev
;
1241 struct disk_conf
*new_disk_conf
, *old_disk_conf
;
1242 struct fifo_buffer
*old_plan
= NULL
, *new_plan
= NULL
;
1245 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
1246 if (!adm_ctx
.reply_skb
)
1248 if (retcode
!= NO_ERROR
)
1251 mdev
= adm_ctx
.mdev
;
1253 /* we also need a disk
1254 * to change the options on */
1255 if (!get_ldev(mdev
)) {
1256 retcode
= ERR_NO_DISK
;
1260 new_disk_conf
= kmalloc(sizeof(struct disk_conf
), GFP_KERNEL
);
1261 if (!new_disk_conf
) {
1262 retcode
= ERR_NOMEM
;
1266 mutex_lock(&mdev
->tconn
->conf_update
);
1267 old_disk_conf
= mdev
->ldev
->disk_conf
;
1268 *new_disk_conf
= *old_disk_conf
;
1269 if (should_set_defaults(info
))
1270 set_disk_conf_defaults(new_disk_conf
);
1272 err
= disk_conf_from_attrs_for_change(new_disk_conf
, info
);
1273 if (err
&& err
!= -ENOMSG
) {
1274 retcode
= ERR_MANDATORY_TAG
;
1275 drbd_msg_put_info(from_attrs_err_to_txt(err
));
1278 if (!expect(new_disk_conf
->resync_rate
>= 1))
1279 new_disk_conf
->resync_rate
= 1;
1281 if (new_disk_conf
->al_extents
< DRBD_AL_EXTENTS_MIN
)
1282 new_disk_conf
->al_extents
= DRBD_AL_EXTENTS_MIN
;
1283 if (new_disk_conf
->al_extents
> drbd_al_extents_max(mdev
->ldev
))
1284 new_disk_conf
->al_extents
= drbd_al_extents_max(mdev
->ldev
);
1286 if (new_disk_conf
->c_plan_ahead
> DRBD_C_PLAN_AHEAD_MAX
)
1287 new_disk_conf
->c_plan_ahead
= DRBD_C_PLAN_AHEAD_MAX
;
1289 fifo_size
= (new_disk_conf
->c_plan_ahead
* 10 * SLEEP_TIME
) / HZ
;
1290 if (fifo_size
!= mdev
->rs_plan_s
->size
) {
1291 new_plan
= fifo_alloc(fifo_size
);
1293 dev_err(DEV
, "kmalloc of fifo_buffer failed");
1294 retcode
= ERR_NOMEM
;
1299 drbd_suspend_io(mdev
);
1300 wait_event(mdev
->al_wait
, lc_try_lock(mdev
->act_log
));
1301 drbd_al_shrink(mdev
);
1302 err
= drbd_check_al_size(mdev
, new_disk_conf
);
1303 lc_unlock(mdev
->act_log
);
1304 wake_up(&mdev
->al_wait
);
1305 drbd_resume_io(mdev
);
1308 retcode
= ERR_NOMEM
;
1312 write_lock_irq(&global_state_lock
);
1313 retcode
= drbd_resync_after_valid(mdev
, new_disk_conf
->resync_after
);
1314 if (retcode
== NO_ERROR
) {
1315 rcu_assign_pointer(mdev
->ldev
->disk_conf
, new_disk_conf
);
1316 drbd_resync_after_changed(mdev
);
1318 write_unlock_irq(&global_state_lock
);
1320 if (retcode
!= NO_ERROR
)
1324 old_plan
= mdev
->rs_plan_s
;
1325 rcu_assign_pointer(mdev
->rs_plan_s
, new_plan
);
1328 mutex_unlock(&mdev
->tconn
->conf_update
);
1330 if (new_disk_conf
->al_updates
)
1331 mdev
->ldev
->md
.flags
&= ~MDF_AL_DISABLED
;
1333 mdev
->ldev
->md
.flags
|= MDF_AL_DISABLED
;
1335 if (new_disk_conf
->md_flushes
)
1336 clear_bit(MD_NO_FUA
, &mdev
->flags
);
1338 set_bit(MD_NO_FUA
, &mdev
->flags
);
1340 drbd_bump_write_ordering(mdev
->tconn
, WO_bdev_flush
);
1344 if (mdev
->state
.conn
>= C_CONNECTED
)
1345 drbd_send_sync_param(mdev
);
1348 kfree(old_disk_conf
);
1350 mod_timer(&mdev
->request_timer
, jiffies
+ HZ
);
1354 mutex_unlock(&mdev
->tconn
->conf_update
);
1356 kfree(new_disk_conf
);
1361 drbd_adm_finish(info
, retcode
);
1365 int drbd_adm_attach(struct sk_buff
*skb
, struct genl_info
*info
)
1367 struct drbd_conf
*mdev
;
1369 enum drbd_ret_code retcode
;
1370 enum determine_dev_size dd
;
1371 sector_t max_possible_sectors
;
1372 sector_t min_md_device_sectors
;
1373 struct drbd_backing_dev
*nbc
= NULL
; /* new_backing_conf */
1374 struct disk_conf
*new_disk_conf
= NULL
;
1375 struct block_device
*bdev
;
1376 struct lru_cache
*resync_lru
= NULL
;
1377 struct fifo_buffer
*new_plan
= NULL
;
1378 union drbd_state ns
, os
;
1379 enum drbd_state_rv rv
;
1380 struct net_conf
*nc
;
1382 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
1383 if (!adm_ctx
.reply_skb
)
1385 if (retcode
!= NO_ERROR
)
1388 mdev
= adm_ctx
.mdev
;
1389 conn_reconfig_start(mdev
->tconn
);
1391 /* if you want to reconfigure, please tear down first */
1392 if (mdev
->state
.disk
> D_DISKLESS
) {
1393 retcode
= ERR_DISK_CONFIGURED
;
1396 /* It may just now have detached because of IO error. Make sure
1397 * drbd_ldev_destroy is done already, we may end up here very fast,
1398 * e.g. if someone calls attach from the on-io-error handler,
1399 * to realize a "hot spare" feature (not that I'd recommend that) */
1400 wait_event(mdev
->misc_wait
, !atomic_read(&mdev
->local_cnt
));
1402 /* make sure there is no leftover from previous force-detach attempts */
1403 clear_bit(FORCE_DETACH
, &mdev
->flags
);
1404 clear_bit(WAS_IO_ERROR
, &mdev
->flags
);
1405 clear_bit(WAS_READ_ERROR
, &mdev
->flags
);
1407 /* and no leftover from previously aborted resync or verify, either */
1409 mdev
->rs_failed
= 0;
1410 atomic_set(&mdev
->rs_pending_cnt
, 0);
1412 /* allocation not in the IO path, drbdsetup context */
1413 nbc
= kzalloc(sizeof(struct drbd_backing_dev
), GFP_KERNEL
);
1415 retcode
= ERR_NOMEM
;
1418 spin_lock_init(&nbc
->md
.uuid_lock
);
1420 new_disk_conf
= kzalloc(sizeof(struct disk_conf
), GFP_KERNEL
);
1421 if (!new_disk_conf
) {
1422 retcode
= ERR_NOMEM
;
1425 nbc
->disk_conf
= new_disk_conf
;
1427 set_disk_conf_defaults(new_disk_conf
);
1428 err
= disk_conf_from_attrs(new_disk_conf
, info
);
1430 retcode
= ERR_MANDATORY_TAG
;
1431 drbd_msg_put_info(from_attrs_err_to_txt(err
));
1435 if (new_disk_conf
->c_plan_ahead
> DRBD_C_PLAN_AHEAD_MAX
)
1436 new_disk_conf
->c_plan_ahead
= DRBD_C_PLAN_AHEAD_MAX
;
1438 new_plan
= fifo_alloc((new_disk_conf
->c_plan_ahead
* 10 * SLEEP_TIME
) / HZ
);
1440 retcode
= ERR_NOMEM
;
1444 if (new_disk_conf
->meta_dev_idx
< DRBD_MD_INDEX_FLEX_INT
) {
1445 retcode
= ERR_MD_IDX_INVALID
;
1449 write_lock_irq(&global_state_lock
);
1450 retcode
= drbd_resync_after_valid(mdev
, new_disk_conf
->resync_after
);
1451 write_unlock_irq(&global_state_lock
);
1452 if (retcode
!= NO_ERROR
)
1456 nc
= rcu_dereference(mdev
->tconn
->net_conf
);
1458 if (new_disk_conf
->fencing
== FP_STONITH
&& nc
->wire_protocol
== DRBD_PROT_A
) {
1460 retcode
= ERR_STONITH_AND_PROT_A
;
1466 bdev
= blkdev_get_by_path(new_disk_conf
->backing_dev
,
1467 FMODE_READ
| FMODE_WRITE
| FMODE_EXCL
, mdev
);
1469 dev_err(DEV
, "open(\"%s\") failed with %ld\n", new_disk_conf
->backing_dev
,
1471 retcode
= ERR_OPEN_DISK
;
1474 nbc
->backing_bdev
= bdev
;
1477 * meta_dev_idx >= 0: external fixed size, possibly multiple
1478 * drbd sharing one meta device. TODO in that case, paranoia
1479 * check that [md_bdev, meta_dev_idx] is not yet used by some
1480 * other drbd minor! (if you use drbd.conf + drbdadm, that
1481 * should check it for you already; but if you don't, or
1482 * someone fooled it, we need to double check here)
1484 bdev
= blkdev_get_by_path(new_disk_conf
->meta_dev
,
1485 FMODE_READ
| FMODE_WRITE
| FMODE_EXCL
,
1486 (new_disk_conf
->meta_dev_idx
< 0) ?
1487 (void *)mdev
: (void *)drbd_m_holder
);
1489 dev_err(DEV
, "open(\"%s\") failed with %ld\n", new_disk_conf
->meta_dev
,
1491 retcode
= ERR_OPEN_MD_DISK
;
1494 nbc
->md_bdev
= bdev
;
1496 if ((nbc
->backing_bdev
== nbc
->md_bdev
) !=
1497 (new_disk_conf
->meta_dev_idx
== DRBD_MD_INDEX_INTERNAL
||
1498 new_disk_conf
->meta_dev_idx
== DRBD_MD_INDEX_FLEX_INT
)) {
1499 retcode
= ERR_MD_IDX_INVALID
;
1503 resync_lru
= lc_create("resync", drbd_bm_ext_cache
,
1504 1, 61, sizeof(struct bm_extent
),
1505 offsetof(struct bm_extent
, lce
));
1507 retcode
= ERR_NOMEM
;
1511 /* Read our meta data super block early.
1512 * This also sets other on-disk offsets. */
1513 retcode
= drbd_md_read(mdev
, nbc
);
1514 if (retcode
!= NO_ERROR
)
1517 if (new_disk_conf
->al_extents
< DRBD_AL_EXTENTS_MIN
)
1518 new_disk_conf
->al_extents
= DRBD_AL_EXTENTS_MIN
;
1519 if (new_disk_conf
->al_extents
> drbd_al_extents_max(nbc
))
1520 new_disk_conf
->al_extents
= drbd_al_extents_max(nbc
);
1522 if (drbd_get_max_capacity(nbc
) < new_disk_conf
->disk_size
) {
1523 dev_err(DEV
, "max capacity %llu smaller than disk size %llu\n",
1524 (unsigned long long) drbd_get_max_capacity(nbc
),
1525 (unsigned long long) new_disk_conf
->disk_size
);
1526 retcode
= ERR_DISK_TOO_SMALL
;
1530 if (new_disk_conf
->meta_dev_idx
< 0) {
1531 max_possible_sectors
= DRBD_MAX_SECTORS_FLEX
;
1532 /* at least one MB, otherwise it does not make sense */
1533 min_md_device_sectors
= (2<<10);
1535 max_possible_sectors
= DRBD_MAX_SECTORS
;
1536 min_md_device_sectors
= MD_128MB_SECT
* (new_disk_conf
->meta_dev_idx
+ 1);
1539 if (drbd_get_capacity(nbc
->md_bdev
) < min_md_device_sectors
) {
1540 retcode
= ERR_MD_DISK_TOO_SMALL
;
1541 dev_warn(DEV
, "refusing attach: md-device too small, "
1542 "at least %llu sectors needed for this meta-disk type\n",
1543 (unsigned long long) min_md_device_sectors
);
1547 /* Make sure the new disk is big enough
1548 * (we may currently be R_PRIMARY with no local disk...) */
1549 if (drbd_get_max_capacity(nbc
) <
1550 drbd_get_capacity(mdev
->this_bdev
)) {
1551 retcode
= ERR_DISK_TOO_SMALL
;
1555 nbc
->known_size
= drbd_get_capacity(nbc
->backing_bdev
);
1557 if (nbc
->known_size
> max_possible_sectors
) {
1558 dev_warn(DEV
, "==> truncating very big lower level device "
1559 "to currently maximum possible %llu sectors <==\n",
1560 (unsigned long long) max_possible_sectors
);
1561 if (new_disk_conf
->meta_dev_idx
>= 0)
1562 dev_warn(DEV
, "==>> using internal or flexible "
1563 "meta data may help <<==\n");
1566 drbd_suspend_io(mdev
);
1567 /* also wait for the last barrier ack. */
1568 /* FIXME see also https://daiquiri.linbit/cgi-bin/bugzilla/show_bug.cgi?id=171
1569 * We need a way to either ignore barrier acks for barriers sent before a device
1570 * was attached, or a way to wait for all pending barrier acks to come in.
1571 * As barriers are counted per resource,
1572 * we'd need to suspend io on all devices of a resource.
1574 wait_event(mdev
->misc_wait
, !atomic_read(&mdev
->ap_pending_cnt
) || drbd_suspended(mdev
));
1575 /* and for any other previously queued work */
1576 drbd_flush_workqueue(mdev
);
1578 rv
= _drbd_request_state(mdev
, NS(disk
, D_ATTACHING
), CS_VERBOSE
);
1579 retcode
= rv
; /* FIXME: Type mismatch. */
1580 drbd_resume_io(mdev
);
1581 if (rv
< SS_SUCCESS
)
1584 if (!get_ldev_if_state(mdev
, D_ATTACHING
))
1585 goto force_diskless
;
1587 if (!mdev
->bitmap
) {
1588 if (drbd_bm_init(mdev
)) {
1589 retcode
= ERR_NOMEM
;
1590 goto force_diskless_dec
;
1594 if (mdev
->state
.conn
< C_CONNECTED
&&
1595 mdev
->state
.role
== R_PRIMARY
&&
1596 (mdev
->ed_uuid
& ~((u64
)1)) != (nbc
->md
.uuid
[UI_CURRENT
] & ~((u64
)1))) {
1597 dev_err(DEV
, "Can only attach to data with current UUID=%016llX\n",
1598 (unsigned long long)mdev
->ed_uuid
);
1599 retcode
= ERR_DATA_NOT_CURRENT
;
1600 goto force_diskless_dec
;
1603 /* Since we are diskless, fix the activity log first... */
1604 if (drbd_check_al_size(mdev
, new_disk_conf
)) {
1605 retcode
= ERR_NOMEM
;
1606 goto force_diskless_dec
;
1609 /* Prevent shrinking of consistent devices ! */
1610 if (drbd_md_test_flag(nbc
, MDF_CONSISTENT
) &&
1611 drbd_new_dev_size(mdev
, nbc
, nbc
->disk_conf
->disk_size
, 0) < nbc
->md
.la_size_sect
) {
1612 dev_warn(DEV
, "refusing to truncate a consistent device\n");
1613 retcode
= ERR_DISK_TOO_SMALL
;
1614 goto force_diskless_dec
;
1617 /* Reset the "barriers don't work" bits here, then force meta data to
1618 * be written, to ensure we determine if barriers are supported. */
1619 if (new_disk_conf
->md_flushes
)
1620 clear_bit(MD_NO_FUA
, &mdev
->flags
);
1622 set_bit(MD_NO_FUA
, &mdev
->flags
);
1624 /* Point of no return reached.
1625 * Devices and memory are no longer released by error cleanup below.
1626 * now mdev takes over responsibility, and the state engine should
1627 * clean it up somewhere. */
1628 D_ASSERT(mdev
->ldev
== NULL
);
1630 mdev
->resync
= resync_lru
;
1631 mdev
->rs_plan_s
= new_plan
;
1634 new_disk_conf
= NULL
;
1637 drbd_bump_write_ordering(mdev
->tconn
, WO_bdev_flush
);
1639 if (drbd_md_test_flag(mdev
->ldev
, MDF_CRASHED_PRIMARY
))
1640 set_bit(CRASHED_PRIMARY
, &mdev
->flags
);
1642 clear_bit(CRASHED_PRIMARY
, &mdev
->flags
);
1644 if (drbd_md_test_flag(mdev
->ldev
, MDF_PRIMARY_IND
) &&
1645 !(mdev
->state
.role
== R_PRIMARY
&& mdev
->tconn
->susp_nod
))
1646 set_bit(CRASHED_PRIMARY
, &mdev
->flags
);
1653 drbd_reconsider_max_bio_size(mdev
);
1655 /* If I am currently not R_PRIMARY,
1656 * but meta data primary indicator is set,
1657 * I just now recover from a hard crash,
1658 * and have been R_PRIMARY before that crash.
1660 * Now, if I had no connection before that crash
1661 * (have been degraded R_PRIMARY), chances are that
1662 * I won't find my peer now either.
1664 * In that case, and _only_ in that case,
1665 * we use the degr-wfc-timeout instead of the default,
1666 * so we can automatically recover from a crash of a
1667 * degraded but active "cluster" after a certain timeout.
1669 clear_bit(USE_DEGR_WFC_T
, &mdev
->flags
);
1670 if (mdev
->state
.role
!= R_PRIMARY
&&
1671 drbd_md_test_flag(mdev
->ldev
, MDF_PRIMARY_IND
) &&
1672 !drbd_md_test_flag(mdev
->ldev
, MDF_CONNECTED_IND
))
1673 set_bit(USE_DEGR_WFC_T
, &mdev
->flags
);
1675 dd
= drbd_determine_dev_size(mdev
, 0, NULL
);
1676 if (dd
<= DS_ERROR
) {
1677 retcode
= ERR_NOMEM_BITMAP
;
1678 goto force_diskless_dec
;
1679 } else if (dd
== DS_GREW
)
1680 set_bit(RESYNC_AFTER_NEG
, &mdev
->flags
);
1682 if (drbd_md_test_flag(mdev
->ldev
, MDF_FULL_SYNC
) ||
1683 (test_bit(CRASHED_PRIMARY
, &mdev
->flags
) &&
1684 drbd_md_test_flag(mdev
->ldev
, MDF_AL_DISABLED
))) {
1685 dev_info(DEV
, "Assuming that all blocks are out of sync "
1686 "(aka FullSync)\n");
1687 if (drbd_bitmap_io(mdev
, &drbd_bmio_set_n_write
,
1688 "set_n_write from attaching", BM_LOCKED_MASK
)) {
1689 retcode
= ERR_IO_MD_DISK
;
1690 goto force_diskless_dec
;
1693 if (drbd_bitmap_io(mdev
, &drbd_bm_read
,
1694 "read from attaching", BM_LOCKED_MASK
)) {
1695 retcode
= ERR_IO_MD_DISK
;
1696 goto force_diskless_dec
;
1700 if (_drbd_bm_total_weight(mdev
) == drbd_bm_bits(mdev
))
1701 drbd_suspend_al(mdev
); /* IO is still suspended here... */
1703 spin_lock_irq(&mdev
->tconn
->req_lock
);
1704 os
= drbd_read_state(mdev
);
1706 /* If MDF_CONSISTENT is not set go into inconsistent state,
1707 otherwise investigate MDF_WasUpToDate...
1708 If MDF_WAS_UP_TO_DATE is not set go into D_OUTDATED disk state,
1709 otherwise into D_CONSISTENT state.
1711 if (drbd_md_test_flag(mdev
->ldev
, MDF_CONSISTENT
)) {
1712 if (drbd_md_test_flag(mdev
->ldev
, MDF_WAS_UP_TO_DATE
))
1713 ns
.disk
= D_CONSISTENT
;
1715 ns
.disk
= D_OUTDATED
;
1717 ns
.disk
= D_INCONSISTENT
;
1720 if (drbd_md_test_flag(mdev
->ldev
, MDF_PEER_OUT_DATED
))
1721 ns
.pdsk
= D_OUTDATED
;
1724 if (ns
.disk
== D_CONSISTENT
&&
1725 (ns
.pdsk
== D_OUTDATED
|| rcu_dereference(mdev
->ldev
->disk_conf
)->fencing
== FP_DONT_CARE
))
1726 ns
.disk
= D_UP_TO_DATE
;
1728 /* All tests on MDF_PRIMARY_IND, MDF_CONNECTED_IND,
1729 MDF_CONSISTENT and MDF_WAS_UP_TO_DATE must happen before
1730 this point, because drbd_request_state() modifies these
1733 if (rcu_dereference(mdev
->ldev
->disk_conf
)->al_updates
)
1734 mdev
->ldev
->md
.flags
&= ~MDF_AL_DISABLED
;
1736 mdev
->ldev
->md
.flags
|= MDF_AL_DISABLED
;
1740 /* In case we are C_CONNECTED postpone any decision on the new disk
1741 state after the negotiation phase. */
1742 if (mdev
->state
.conn
== C_CONNECTED
) {
1743 mdev
->new_state_tmp
.i
= ns
.i
;
1745 ns
.disk
= D_NEGOTIATING
;
1747 /* We expect to receive up-to-date UUIDs soon.
1748 To avoid a race in receive_state, free p_uuid while
1749 holding req_lock. I.e. atomic with the state change */
1750 kfree(mdev
->p_uuid
);
1751 mdev
->p_uuid
= NULL
;
1754 rv
= _drbd_set_state(mdev
, ns
, CS_VERBOSE
, NULL
);
1755 spin_unlock_irq(&mdev
->tconn
->req_lock
);
1757 if (rv
< SS_SUCCESS
)
1758 goto force_diskless_dec
;
1760 mod_timer(&mdev
->request_timer
, jiffies
+ HZ
);
1762 if (mdev
->state
.role
== R_PRIMARY
)
1763 mdev
->ldev
->md
.uuid
[UI_CURRENT
] |= (u64
)1;
1765 mdev
->ldev
->md
.uuid
[UI_CURRENT
] &= ~(u64
)1;
1767 drbd_md_mark_dirty(mdev
);
1770 kobject_uevent(&disk_to_dev(mdev
->vdisk
)->kobj
, KOBJ_CHANGE
);
1772 conn_reconfig_done(mdev
->tconn
);
1773 drbd_adm_finish(info
, retcode
);
1779 drbd_force_state(mdev
, NS(disk
, D_DISKLESS
));
1782 conn_reconfig_done(mdev
->tconn
);
1784 if (nbc
->backing_bdev
)
1785 blkdev_put(nbc
->backing_bdev
,
1786 FMODE_READ
| FMODE_WRITE
| FMODE_EXCL
);
1788 blkdev_put(nbc
->md_bdev
,
1789 FMODE_READ
| FMODE_WRITE
| FMODE_EXCL
);
1792 kfree(new_disk_conf
);
1793 lc_destroy(resync_lru
);
1797 drbd_adm_finish(info
, retcode
);
1801 static int adm_detach(struct drbd_conf
*mdev
, int force
)
1803 enum drbd_state_rv retcode
;
1807 set_bit(FORCE_DETACH
, &mdev
->flags
);
1808 drbd_force_state(mdev
, NS(disk
, D_FAILED
));
1809 retcode
= SS_SUCCESS
;
1813 drbd_suspend_io(mdev
); /* so no-one is stuck in drbd_al_begin_io */
1814 drbd_md_get_buffer(mdev
); /* make sure there is no in-flight meta-data IO */
1815 retcode
= drbd_request_state(mdev
, NS(disk
, D_FAILED
));
1816 drbd_md_put_buffer(mdev
);
1817 /* D_FAILED will transition to DISKLESS. */
1818 ret
= wait_event_interruptible(mdev
->misc_wait
,
1819 mdev
->state
.disk
!= D_FAILED
);
1820 drbd_resume_io(mdev
);
1821 if ((int)retcode
== (int)SS_IS_DISKLESS
)
1822 retcode
= SS_NOTHING_TO_DO
;
1829 /* Detaching the disk is a process in multiple stages. First we need to lock
1830 * out application IO, in-flight IO, IO stuck in drbd_al_begin_io.
1831 * Then we transition to D_DISKLESS, and wait for put_ldev() to return all
1832 * internal references as well.
1833 * Only then we have finally detached. */
1834 int drbd_adm_detach(struct sk_buff
*skb
, struct genl_info
*info
)
1836 enum drbd_ret_code retcode
;
1837 struct detach_parms parms
= { };
1840 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
1841 if (!adm_ctx
.reply_skb
)
1843 if (retcode
!= NO_ERROR
)
1846 if (info
->attrs
[DRBD_NLA_DETACH_PARMS
]) {
1847 err
= detach_parms_from_attrs(&parms
, info
);
1849 retcode
= ERR_MANDATORY_TAG
;
1850 drbd_msg_put_info(from_attrs_err_to_txt(err
));
1855 retcode
= adm_detach(adm_ctx
.mdev
, parms
.force_detach
);
1857 drbd_adm_finish(info
, retcode
);
1861 static bool conn_resync_running(struct drbd_tconn
*tconn
)
1863 struct drbd_conf
*mdev
;
1868 idr_for_each_entry(&tconn
->volumes
, mdev
, vnr
) {
1869 if (mdev
->state
.conn
== C_SYNC_SOURCE
||
1870 mdev
->state
.conn
== C_SYNC_TARGET
||
1871 mdev
->state
.conn
== C_PAUSED_SYNC_S
||
1872 mdev
->state
.conn
== C_PAUSED_SYNC_T
) {
1882 static bool conn_ov_running(struct drbd_tconn
*tconn
)
1884 struct drbd_conf
*mdev
;
1889 idr_for_each_entry(&tconn
->volumes
, mdev
, vnr
) {
1890 if (mdev
->state
.conn
== C_VERIFY_S
||
1891 mdev
->state
.conn
== C_VERIFY_T
) {
1901 static enum drbd_ret_code
1902 _check_net_options(struct drbd_tconn
*tconn
, struct net_conf
*old_conf
, struct net_conf
*new_conf
)
1904 struct drbd_conf
*mdev
;
1907 if (old_conf
&& tconn
->cstate
== C_WF_REPORT_PARAMS
&& tconn
->agreed_pro_version
< 100) {
1908 if (new_conf
->wire_protocol
!= old_conf
->wire_protocol
)
1909 return ERR_NEED_APV_100
;
1911 if (new_conf
->two_primaries
!= old_conf
->two_primaries
)
1912 return ERR_NEED_APV_100
;
1914 if (strcmp(new_conf
->integrity_alg
, old_conf
->integrity_alg
))
1915 return ERR_NEED_APV_100
;
1918 if (!new_conf
->two_primaries
&&
1919 conn_highest_role(tconn
) == R_PRIMARY
&&
1920 conn_highest_peer(tconn
) == R_PRIMARY
)
1921 return ERR_NEED_ALLOW_TWO_PRI
;
1923 if (new_conf
->two_primaries
&&
1924 (new_conf
->wire_protocol
!= DRBD_PROT_C
))
1925 return ERR_NOT_PROTO_C
;
1927 idr_for_each_entry(&tconn
->volumes
, mdev
, i
) {
1928 if (get_ldev(mdev
)) {
1929 enum drbd_fencing_p fp
= rcu_dereference(mdev
->ldev
->disk_conf
)->fencing
;
1931 if (new_conf
->wire_protocol
== DRBD_PROT_A
&& fp
== FP_STONITH
)
1932 return ERR_STONITH_AND_PROT_A
;
1934 if (mdev
->state
.role
== R_PRIMARY
&& new_conf
->discard_my_data
)
1935 return ERR_DISCARD_IMPOSSIBLE
;
1938 if (new_conf
->on_congestion
!= OC_BLOCK
&& new_conf
->wire_protocol
!= DRBD_PROT_A
)
1939 return ERR_CONG_NOT_PROTO_A
;
1944 static enum drbd_ret_code
1945 check_net_options(struct drbd_tconn
*tconn
, struct net_conf
*new_conf
)
1947 static enum drbd_ret_code rv
;
1948 struct drbd_conf
*mdev
;
1952 rv
= _check_net_options(tconn
, rcu_dereference(tconn
->net_conf
), new_conf
);
1955 /* tconn->volumes protected by genl_lock() here */
1956 idr_for_each_entry(&tconn
->volumes
, mdev
, i
) {
1957 if (!mdev
->bitmap
) {
1958 if(drbd_bm_init(mdev
))
1967 struct crypto_hash
*verify_tfm
;
1968 struct crypto_hash
*csums_tfm
;
1969 struct crypto_hash
*cram_hmac_tfm
;
1970 struct crypto_hash
*integrity_tfm
;
1974 alloc_hash(struct crypto_hash
**tfm
, char *tfm_name
, int err_alg
)
1979 *tfm
= crypto_alloc_hash(tfm_name
, 0, CRYPTO_ALG_ASYNC
);
1988 static enum drbd_ret_code
1989 alloc_crypto(struct crypto
*crypto
, struct net_conf
*new_conf
)
1991 char hmac_name
[CRYPTO_MAX_ALG_NAME
];
1992 enum drbd_ret_code rv
;
1994 rv
= alloc_hash(&crypto
->csums_tfm
, new_conf
->csums_alg
,
1998 rv
= alloc_hash(&crypto
->verify_tfm
, new_conf
->verify_alg
,
2002 rv
= alloc_hash(&crypto
->integrity_tfm
, new_conf
->integrity_alg
,
2006 if (new_conf
->cram_hmac_alg
[0] != 0) {
2007 snprintf(hmac_name
, CRYPTO_MAX_ALG_NAME
, "hmac(%s)",
2008 new_conf
->cram_hmac_alg
);
2010 rv
= alloc_hash(&crypto
->cram_hmac_tfm
, hmac_name
,
2017 static void free_crypto(struct crypto
*crypto
)
2019 crypto_free_hash(crypto
->cram_hmac_tfm
);
2020 crypto_free_hash(crypto
->integrity_tfm
);
2021 crypto_free_hash(crypto
->csums_tfm
);
2022 crypto_free_hash(crypto
->verify_tfm
);
2025 int drbd_adm_net_opts(struct sk_buff
*skb
, struct genl_info
*info
)
2027 enum drbd_ret_code retcode
;
2028 struct drbd_tconn
*tconn
;
2029 struct net_conf
*old_conf
, *new_conf
= NULL
;
2031 int ovr
; /* online verify running */
2032 int rsr
; /* re-sync running */
2033 struct crypto crypto
= { };
2035 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_CONNECTION
);
2036 if (!adm_ctx
.reply_skb
)
2038 if (retcode
!= NO_ERROR
)
2041 tconn
= adm_ctx
.tconn
;
2043 new_conf
= kzalloc(sizeof(struct net_conf
), GFP_KERNEL
);
2045 retcode
= ERR_NOMEM
;
2049 conn_reconfig_start(tconn
);
2051 mutex_lock(&tconn
->data
.mutex
);
2052 mutex_lock(&tconn
->conf_update
);
2053 old_conf
= tconn
->net_conf
;
2056 drbd_msg_put_info("net conf missing, try connect");
2057 retcode
= ERR_INVALID_REQUEST
;
2061 *new_conf
= *old_conf
;
2062 if (should_set_defaults(info
))
2063 set_net_conf_defaults(new_conf
);
2065 err
= net_conf_from_attrs_for_change(new_conf
, info
);
2066 if (err
&& err
!= -ENOMSG
) {
2067 retcode
= ERR_MANDATORY_TAG
;
2068 drbd_msg_put_info(from_attrs_err_to_txt(err
));
2072 retcode
= check_net_options(tconn
, new_conf
);
2073 if (retcode
!= NO_ERROR
)
2076 /* re-sync running */
2077 rsr
= conn_resync_running(tconn
);
2078 if (rsr
&& strcmp(new_conf
->csums_alg
, old_conf
->csums_alg
)) {
2079 retcode
= ERR_CSUMS_RESYNC_RUNNING
;
2083 /* online verify running */
2084 ovr
= conn_ov_running(tconn
);
2085 if (ovr
&& strcmp(new_conf
->verify_alg
, old_conf
->verify_alg
)) {
2086 retcode
= ERR_VERIFY_RUNNING
;
2090 retcode
= alloc_crypto(&crypto
, new_conf
);
2091 if (retcode
!= NO_ERROR
)
2094 rcu_assign_pointer(tconn
->net_conf
, new_conf
);
2097 crypto_free_hash(tconn
->csums_tfm
);
2098 tconn
->csums_tfm
= crypto
.csums_tfm
;
2099 crypto
.csums_tfm
= NULL
;
2102 crypto_free_hash(tconn
->verify_tfm
);
2103 tconn
->verify_tfm
= crypto
.verify_tfm
;
2104 crypto
.verify_tfm
= NULL
;
2107 crypto_free_hash(tconn
->integrity_tfm
);
2108 tconn
->integrity_tfm
= crypto
.integrity_tfm
;
2109 if (tconn
->cstate
>= C_WF_REPORT_PARAMS
&& tconn
->agreed_pro_version
>= 100)
2110 /* Do this without trying to take tconn->data.mutex again. */
2111 __drbd_send_protocol(tconn
, P_PROTOCOL_UPDATE
);
2113 crypto_free_hash(tconn
->cram_hmac_tfm
);
2114 tconn
->cram_hmac_tfm
= crypto
.cram_hmac_tfm
;
2116 mutex_unlock(&tconn
->conf_update
);
2117 mutex_unlock(&tconn
->data
.mutex
);
2121 if (tconn
->cstate
>= C_WF_REPORT_PARAMS
)
2122 drbd_send_sync_param(minor_to_mdev(conn_lowest_minor(tconn
)));
2127 mutex_unlock(&tconn
->conf_update
);
2128 mutex_unlock(&tconn
->data
.mutex
);
2129 free_crypto(&crypto
);
2132 conn_reconfig_done(tconn
);
2134 drbd_adm_finish(info
, retcode
);
2138 int drbd_adm_connect(struct sk_buff
*skb
, struct genl_info
*info
)
2140 struct drbd_conf
*mdev
;
2141 struct net_conf
*old_conf
, *new_conf
= NULL
;
2142 struct crypto crypto
= { };
2143 struct drbd_tconn
*tconn
;
2144 enum drbd_ret_code retcode
;
2148 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_RESOURCE
);
2150 if (!adm_ctx
.reply_skb
)
2152 if (retcode
!= NO_ERROR
)
2154 if (!(adm_ctx
.my_addr
&& adm_ctx
.peer_addr
)) {
2155 drbd_msg_put_info("connection endpoint(s) missing");
2156 retcode
= ERR_INVALID_REQUEST
;
2160 /* No need for _rcu here. All reconfiguration is
2161 * strictly serialized on genl_lock(). We are protected against
2162 * concurrent reconfiguration/addition/deletion */
2163 list_for_each_entry(tconn
, &drbd_tconns
, all_tconn
) {
2164 if (nla_len(adm_ctx
.my_addr
) == tconn
->my_addr_len
&&
2165 !memcmp(nla_data(adm_ctx
.my_addr
), &tconn
->my_addr
, tconn
->my_addr_len
)) {
2166 retcode
= ERR_LOCAL_ADDR
;
2170 if (nla_len(adm_ctx
.peer_addr
) == tconn
->peer_addr_len
&&
2171 !memcmp(nla_data(adm_ctx
.peer_addr
), &tconn
->peer_addr
, tconn
->peer_addr_len
)) {
2172 retcode
= ERR_PEER_ADDR
;
2177 tconn
= adm_ctx
.tconn
;
2178 conn_reconfig_start(tconn
);
2180 if (tconn
->cstate
> C_STANDALONE
) {
2181 retcode
= ERR_NET_CONFIGURED
;
2185 /* allocation not in the IO path, drbdsetup / netlink process context */
2186 new_conf
= kzalloc(sizeof(*new_conf
), GFP_KERNEL
);
2188 retcode
= ERR_NOMEM
;
2192 set_net_conf_defaults(new_conf
);
2194 err
= net_conf_from_attrs(new_conf
, info
);
2195 if (err
&& err
!= -ENOMSG
) {
2196 retcode
= ERR_MANDATORY_TAG
;
2197 drbd_msg_put_info(from_attrs_err_to_txt(err
));
2201 retcode
= check_net_options(tconn
, new_conf
);
2202 if (retcode
!= NO_ERROR
)
2205 retcode
= alloc_crypto(&crypto
, new_conf
);
2206 if (retcode
!= NO_ERROR
)
2209 ((char *)new_conf
->shared_secret
)[SHARED_SECRET_MAX
-1] = 0;
2211 conn_flush_workqueue(tconn
);
2213 mutex_lock(&tconn
->conf_update
);
2214 old_conf
= tconn
->net_conf
;
2216 retcode
= ERR_NET_CONFIGURED
;
2217 mutex_unlock(&tconn
->conf_update
);
2220 rcu_assign_pointer(tconn
->net_conf
, new_conf
);
2222 conn_free_crypto(tconn
);
2223 tconn
->cram_hmac_tfm
= crypto
.cram_hmac_tfm
;
2224 tconn
->integrity_tfm
= crypto
.integrity_tfm
;
2225 tconn
->csums_tfm
= crypto
.csums_tfm
;
2226 tconn
->verify_tfm
= crypto
.verify_tfm
;
2228 tconn
->my_addr_len
= nla_len(adm_ctx
.my_addr
);
2229 memcpy(&tconn
->my_addr
, nla_data(adm_ctx
.my_addr
), tconn
->my_addr_len
);
2230 tconn
->peer_addr_len
= nla_len(adm_ctx
.peer_addr
);
2231 memcpy(&tconn
->peer_addr
, nla_data(adm_ctx
.peer_addr
), tconn
->peer_addr_len
);
2233 mutex_unlock(&tconn
->conf_update
);
2236 idr_for_each_entry(&tconn
->volumes
, mdev
, i
) {
2242 retcode
= conn_request_state(tconn
, NS(conn
, C_UNCONNECTED
), CS_VERBOSE
);
2244 conn_reconfig_done(tconn
);
2245 drbd_adm_finish(info
, retcode
);
2249 free_crypto(&crypto
);
2252 conn_reconfig_done(tconn
);
2254 drbd_adm_finish(info
, retcode
);
2258 static enum drbd_state_rv
conn_try_disconnect(struct drbd_tconn
*tconn
, bool force
)
2260 enum drbd_state_rv rv
;
2262 rv
= conn_request_state(tconn
, NS(conn
, C_DISCONNECTING
),
2263 force
? CS_HARD
: 0);
2266 case SS_NOTHING_TO_DO
:
2268 case SS_ALREADY_STANDALONE
:
2270 case SS_PRIMARY_NOP
:
2271 /* Our state checking code wants to see the peer outdated. */
2272 rv
= conn_request_state(tconn
, NS2(conn
, C_DISCONNECTING
, pdsk
, D_OUTDATED
), 0);
2274 if (rv
== SS_OUTDATE_WO_CONN
) /* lost connection before graceful disconnect succeeded */
2275 rv
= conn_request_state(tconn
, NS(conn
, C_DISCONNECTING
), CS_VERBOSE
);
2278 case SS_CW_FAILED_BY_PEER
:
2279 /* The peer probably wants to see us outdated. */
2280 rv
= conn_request_state(tconn
, NS2(conn
, C_DISCONNECTING
,
2281 disk
, D_OUTDATED
), 0);
2282 if (rv
== SS_IS_DISKLESS
|| rv
== SS_LOWER_THAN_OUTDATED
) {
2283 rv
= conn_request_state(tconn
, NS(conn
, C_DISCONNECTING
),
2288 /* no special handling necessary */
2291 if (rv
>= SS_SUCCESS
) {
2292 enum drbd_state_rv rv2
;
2293 /* No one else can reconfigure the network while I am here.
2294 * The state handling only uses drbd_thread_stop_nowait(),
2295 * we want to really wait here until the receiver is no more.
2297 drbd_thread_stop(&adm_ctx
.tconn
->receiver
);
2299 /* Race breaker. This additional state change request may be
2300 * necessary, if this was a forced disconnect during a receiver
2301 * restart. We may have "killed" the receiver thread just
2302 * after drbdd_init() returned. Typically, we should be
2303 * C_STANDALONE already, now, and this becomes a no-op.
2305 rv2
= conn_request_state(tconn
, NS(conn
, C_STANDALONE
),
2306 CS_VERBOSE
| CS_HARD
);
2307 if (rv2
< SS_SUCCESS
)
2309 "unexpected rv2=%d in conn_try_disconnect()\n",
2315 int drbd_adm_disconnect(struct sk_buff
*skb
, struct genl_info
*info
)
2317 struct disconnect_parms parms
;
2318 struct drbd_tconn
*tconn
;
2319 enum drbd_state_rv rv
;
2320 enum drbd_ret_code retcode
;
2323 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_CONNECTION
);
2324 if (!adm_ctx
.reply_skb
)
2326 if (retcode
!= NO_ERROR
)
2329 tconn
= adm_ctx
.tconn
;
2330 memset(&parms
, 0, sizeof(parms
));
2331 if (info
->attrs
[DRBD_NLA_DISCONNECT_PARMS
]) {
2332 err
= disconnect_parms_from_attrs(&parms
, info
);
2334 retcode
= ERR_MANDATORY_TAG
;
2335 drbd_msg_put_info(from_attrs_err_to_txt(err
));
2340 rv
= conn_try_disconnect(tconn
, parms
.force_disconnect
);
2341 if (rv
< SS_SUCCESS
)
2342 retcode
= rv
; /* FIXME: Type mismatch. */
2346 drbd_adm_finish(info
, retcode
);
2350 void resync_after_online_grow(struct drbd_conf
*mdev
)
2352 int iass
; /* I am sync source */
2354 dev_info(DEV
, "Resync of new storage after online grow\n");
2355 if (mdev
->state
.role
!= mdev
->state
.peer
)
2356 iass
= (mdev
->state
.role
== R_PRIMARY
);
2358 iass
= test_bit(RESOLVE_CONFLICTS
, &mdev
->tconn
->flags
);
2361 drbd_start_resync(mdev
, C_SYNC_SOURCE
);
2363 _drbd_request_state(mdev
, NS(conn
, C_WF_SYNC_UUID
), CS_VERBOSE
+ CS_SERIALIZE
);
2366 int drbd_adm_resize(struct sk_buff
*skb
, struct genl_info
*info
)
2368 struct disk_conf
*old_disk_conf
, *new_disk_conf
= NULL
;
2369 struct resize_parms rs
;
2370 struct drbd_conf
*mdev
;
2371 enum drbd_ret_code retcode
;
2372 enum determine_dev_size dd
;
2373 bool change_al_layout
= false;
2374 enum dds_flags ddsf
;
2378 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2379 if (!adm_ctx
.reply_skb
)
2381 if (retcode
!= NO_ERROR
)
2384 mdev
= adm_ctx
.mdev
;
2385 if (!get_ldev(mdev
)) {
2386 retcode
= ERR_NO_DISK
;
2390 memset(&rs
, 0, sizeof(struct resize_parms
));
2391 rs
.al_stripes
= mdev
->ldev
->md
.al_stripes
;
2392 rs
.al_stripe_size
= mdev
->ldev
->md
.al_stripe_size_4k
* 4;
2393 if (info
->attrs
[DRBD_NLA_RESIZE_PARMS
]) {
2394 err
= resize_parms_from_attrs(&rs
, info
);
2396 retcode
= ERR_MANDATORY_TAG
;
2397 drbd_msg_put_info(from_attrs_err_to_txt(err
));
2402 if (mdev
->state
.conn
> C_CONNECTED
) {
2403 retcode
= ERR_RESIZE_RESYNC
;
2407 if (mdev
->state
.role
== R_SECONDARY
&&
2408 mdev
->state
.peer
== R_SECONDARY
) {
2409 retcode
= ERR_NO_PRIMARY
;
2413 if (rs
.no_resync
&& mdev
->tconn
->agreed_pro_version
< 93) {
2414 retcode
= ERR_NEED_APV_93
;
2419 u_size
= rcu_dereference(mdev
->ldev
->disk_conf
)->disk_size
;
2421 if (u_size
!= (sector_t
)rs
.resize_size
) {
2422 new_disk_conf
= kmalloc(sizeof(struct disk_conf
), GFP_KERNEL
);
2423 if (!new_disk_conf
) {
2424 retcode
= ERR_NOMEM
;
2429 if (mdev
->ldev
->md
.al_stripes
!= rs
.al_stripes
||
2430 mdev
->ldev
->md
.al_stripe_size_4k
!= rs
.al_stripe_size
/ 4) {
2431 u32 al_size_k
= rs
.al_stripes
* rs
.al_stripe_size
;
2433 if (al_size_k
> (16 * 1024 * 1024)) {
2434 retcode
= ERR_MD_LAYOUT_TOO_BIG
;
2438 if (al_size_k
< MD_32kB_SECT
/2) {
2439 retcode
= ERR_MD_LAYOUT_TOO_SMALL
;
2443 if (mdev
->state
.conn
!= C_CONNECTED
) {
2444 retcode
= ERR_MD_LAYOUT_CONNECTED
;
2448 change_al_layout
= true;
2451 if (mdev
->ldev
->known_size
!= drbd_get_capacity(mdev
->ldev
->backing_bdev
))
2452 mdev
->ldev
->known_size
= drbd_get_capacity(mdev
->ldev
->backing_bdev
);
2454 if (new_disk_conf
) {
2455 mutex_lock(&mdev
->tconn
->conf_update
);
2456 old_disk_conf
= mdev
->ldev
->disk_conf
;
2457 *new_disk_conf
= *old_disk_conf
;
2458 new_disk_conf
->disk_size
= (sector_t
)rs
.resize_size
;
2459 rcu_assign_pointer(mdev
->ldev
->disk_conf
, new_disk_conf
);
2460 mutex_unlock(&mdev
->tconn
->conf_update
);
2462 kfree(old_disk_conf
);
2465 ddsf
= (rs
.resize_force
? DDSF_FORCED
: 0) | (rs
.no_resync
? DDSF_NO_RESYNC
: 0);
2466 dd
= drbd_determine_dev_size(mdev
, ddsf
, change_al_layout
? &rs
: NULL
);
2469 if (dd
== DS_ERROR
) {
2470 retcode
= ERR_NOMEM_BITMAP
;
2472 } else if (dd
== DS_ERROR_SPACE_MD
) {
2473 retcode
= ERR_MD_LAYOUT_NO_FIT
;
2475 } else if (dd
== DS_ERROR_SHRINK
) {
2476 retcode
= ERR_IMPLICIT_SHRINK
;
2480 if (mdev
->state
.conn
== C_CONNECTED
) {
2482 set_bit(RESIZE_PENDING
, &mdev
->flags
);
2484 drbd_send_uuids(mdev
);
2485 drbd_send_sizes(mdev
, 1, ddsf
);
2489 drbd_adm_finish(info
, retcode
);
2497 int drbd_adm_resource_opts(struct sk_buff
*skb
, struct genl_info
*info
)
2499 enum drbd_ret_code retcode
;
2500 struct drbd_tconn
*tconn
;
2501 struct res_opts res_opts
;
2504 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_RESOURCE
);
2505 if (!adm_ctx
.reply_skb
)
2507 if (retcode
!= NO_ERROR
)
2509 tconn
= adm_ctx
.tconn
;
2511 res_opts
= tconn
->res_opts
;
2512 if (should_set_defaults(info
))
2513 set_res_opts_defaults(&res_opts
);
2515 err
= res_opts_from_attrs(&res_opts
, info
);
2516 if (err
&& err
!= -ENOMSG
) {
2517 retcode
= ERR_MANDATORY_TAG
;
2518 drbd_msg_put_info(from_attrs_err_to_txt(err
));
2522 err
= set_resource_options(tconn
, &res_opts
);
2524 retcode
= ERR_INVALID_REQUEST
;
2526 retcode
= ERR_NOMEM
;
2530 drbd_adm_finish(info
, retcode
);
2534 int drbd_adm_invalidate(struct sk_buff
*skb
, struct genl_info
*info
)
2536 struct drbd_conf
*mdev
;
2537 int retcode
; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2539 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2540 if (!adm_ctx
.reply_skb
)
2542 if (retcode
!= NO_ERROR
)
2545 mdev
= adm_ctx
.mdev
;
2547 /* If there is still bitmap IO pending, probably because of a previous
2548 * resync just being finished, wait for it before requesting a new resync.
2549 * Also wait for it's after_state_ch(). */
2550 drbd_suspend_io(mdev
);
2551 wait_event(mdev
->misc_wait
, !test_bit(BITMAP_IO
, &mdev
->flags
));
2552 drbd_flush_workqueue(mdev
);
2554 /* If we happen to be C_STANDALONE R_SECONDARY, just change to
2555 * D_INCONSISTENT, and set all bits in the bitmap. Otherwise,
2556 * try to start a resync handshake as sync target for full sync.
2558 if (mdev
->state
.conn
== C_STANDALONE
&& mdev
->state
.role
== R_SECONDARY
) {
2559 retcode
= drbd_request_state(mdev
, NS(disk
, D_INCONSISTENT
));
2560 if (retcode
>= SS_SUCCESS
) {
2561 if (drbd_bitmap_io(mdev
, &drbd_bmio_set_n_write
,
2562 "set_n_write from invalidate", BM_LOCKED_MASK
))
2563 retcode
= ERR_IO_MD_DISK
;
2566 retcode
= drbd_request_state(mdev
, NS(conn
, C_STARTING_SYNC_T
));
2567 drbd_resume_io(mdev
);
2570 drbd_adm_finish(info
, retcode
);
2574 static int drbd_adm_simple_request_state(struct sk_buff
*skb
, struct genl_info
*info
,
2575 union drbd_state mask
, union drbd_state val
)
2577 enum drbd_ret_code retcode
;
2579 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2580 if (!adm_ctx
.reply_skb
)
2582 if (retcode
!= NO_ERROR
)
2585 retcode
= drbd_request_state(adm_ctx
.mdev
, mask
, val
);
2587 drbd_adm_finish(info
, retcode
);
2591 static int drbd_bmio_set_susp_al(struct drbd_conf
*mdev
)
2595 rv
= drbd_bmio_set_n_write(mdev
);
2596 drbd_suspend_al(mdev
);
2600 int drbd_adm_invalidate_peer(struct sk_buff
*skb
, struct genl_info
*info
)
2602 int retcode
; /* drbd_ret_code, drbd_state_rv */
2603 struct drbd_conf
*mdev
;
2605 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2606 if (!adm_ctx
.reply_skb
)
2608 if (retcode
!= NO_ERROR
)
2611 mdev
= adm_ctx
.mdev
;
2613 /* If there is still bitmap IO pending, probably because of a previous
2614 * resync just being finished, wait for it before requesting a new resync.
2615 * Also wait for it's after_state_ch(). */
2616 drbd_suspend_io(mdev
);
2617 wait_event(mdev
->misc_wait
, !test_bit(BITMAP_IO
, &mdev
->flags
));
2618 drbd_flush_workqueue(mdev
);
2620 /* If we happen to be C_STANDALONE R_PRIMARY, just set all bits
2621 * in the bitmap. Otherwise, try to start a resync handshake
2622 * as sync source for full sync.
2624 if (mdev
->state
.conn
== C_STANDALONE
&& mdev
->state
.role
== R_PRIMARY
) {
2625 /* The peer will get a resync upon connect anyways. Just make that
2626 into a full resync. */
2627 retcode
= drbd_request_state(mdev
, NS(pdsk
, D_INCONSISTENT
));
2628 if (retcode
>= SS_SUCCESS
) {
2629 if (drbd_bitmap_io(mdev
, &drbd_bmio_set_susp_al
,
2630 "set_n_write from invalidate_peer",
2631 BM_LOCKED_SET_ALLOWED
))
2632 retcode
= ERR_IO_MD_DISK
;
2635 retcode
= drbd_request_state(mdev
, NS(conn
, C_STARTING_SYNC_S
));
2636 drbd_resume_io(mdev
);
2639 drbd_adm_finish(info
, retcode
);
2643 int drbd_adm_pause_sync(struct sk_buff
*skb
, struct genl_info
*info
)
2645 enum drbd_ret_code retcode
;
2647 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2648 if (!adm_ctx
.reply_skb
)
2650 if (retcode
!= NO_ERROR
)
2653 if (drbd_request_state(adm_ctx
.mdev
, NS(user_isp
, 1)) == SS_NOTHING_TO_DO
)
2654 retcode
= ERR_PAUSE_IS_SET
;
2656 drbd_adm_finish(info
, retcode
);
2660 int drbd_adm_resume_sync(struct sk_buff
*skb
, struct genl_info
*info
)
2662 union drbd_dev_state s
;
2663 enum drbd_ret_code retcode
;
2665 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2666 if (!adm_ctx
.reply_skb
)
2668 if (retcode
!= NO_ERROR
)
2671 if (drbd_request_state(adm_ctx
.mdev
, NS(user_isp
, 0)) == SS_NOTHING_TO_DO
) {
2672 s
= adm_ctx
.mdev
->state
;
2673 if (s
.conn
== C_PAUSED_SYNC_S
|| s
.conn
== C_PAUSED_SYNC_T
) {
2674 retcode
= s
.aftr_isp
? ERR_PIC_AFTER_DEP
:
2675 s
.peer_isp
? ERR_PIC_PEER_DEP
: ERR_PAUSE_IS_CLEAR
;
2677 retcode
= ERR_PAUSE_IS_CLEAR
;
2682 drbd_adm_finish(info
, retcode
);
2686 int drbd_adm_suspend_io(struct sk_buff
*skb
, struct genl_info
*info
)
2688 return drbd_adm_simple_request_state(skb
, info
, NS(susp
, 1));
2691 int drbd_adm_resume_io(struct sk_buff
*skb
, struct genl_info
*info
)
2693 struct drbd_conf
*mdev
;
2694 int retcode
; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2696 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2697 if (!adm_ctx
.reply_skb
)
2699 if (retcode
!= NO_ERROR
)
2702 mdev
= adm_ctx
.mdev
;
2703 if (test_bit(NEW_CUR_UUID
, &mdev
->flags
)) {
2704 drbd_uuid_new_current(mdev
);
2705 clear_bit(NEW_CUR_UUID
, &mdev
->flags
);
2707 drbd_suspend_io(mdev
);
2708 retcode
= drbd_request_state(mdev
, NS3(susp
, 0, susp_nod
, 0, susp_fen
, 0));
2709 if (retcode
== SS_SUCCESS
) {
2710 if (mdev
->state
.conn
< C_CONNECTED
)
2711 tl_clear(mdev
->tconn
);
2712 if (mdev
->state
.disk
== D_DISKLESS
|| mdev
->state
.disk
== D_FAILED
)
2713 tl_restart(mdev
->tconn
, FAIL_FROZEN_DISK_IO
);
2715 drbd_resume_io(mdev
);
2718 drbd_adm_finish(info
, retcode
);
2722 int drbd_adm_outdate(struct sk_buff
*skb
, struct genl_info
*info
)
2724 return drbd_adm_simple_request_state(skb
, info
, NS(disk
, D_OUTDATED
));
2727 int nla_put_drbd_cfg_context(struct sk_buff
*skb
, struct drbd_tconn
*tconn
, unsigned vnr
)
2730 nla
= nla_nest_start(skb
, DRBD_NLA_CFG_CONTEXT
);
2732 goto nla_put_failure
;
2733 if (vnr
!= VOLUME_UNSPECIFIED
&&
2734 nla_put_u32(skb
, T_ctx_volume
, vnr
))
2735 goto nla_put_failure
;
2736 if (nla_put_string(skb
, T_ctx_resource_name
, tconn
->name
))
2737 goto nla_put_failure
;
2738 if (tconn
->my_addr_len
&&
2739 nla_put(skb
, T_ctx_my_addr
, tconn
->my_addr_len
, &tconn
->my_addr
))
2740 goto nla_put_failure
;
2741 if (tconn
->peer_addr_len
&&
2742 nla_put(skb
, T_ctx_peer_addr
, tconn
->peer_addr_len
, &tconn
->peer_addr
))
2743 goto nla_put_failure
;
2744 nla_nest_end(skb
, nla
);
2749 nla_nest_cancel(skb
, nla
);
2753 int nla_put_status_info(struct sk_buff
*skb
, struct drbd_conf
*mdev
,
2754 const struct sib_info
*sib
)
2756 struct state_info
*si
= NULL
; /* for sizeof(si->member); */
2760 int exclude_sensitive
;
2762 /* If sib != NULL, this is drbd_bcast_event, which anyone can listen
2763 * to. So we better exclude_sensitive information.
2765 * If sib == NULL, this is drbd_adm_get_status, executed synchronously
2766 * in the context of the requesting user process. Exclude sensitive
2767 * information, unless current has superuser.
2769 * NOTE: for drbd_adm_get_status_all(), this is a netlink dump, and
2770 * relies on the current implementation of netlink_dump(), which
2771 * executes the dump callback successively from netlink_recvmsg(),
2772 * always in the context of the receiving process */
2773 exclude_sensitive
= sib
|| !capable(CAP_SYS_ADMIN
);
2775 got_ldev
= get_ldev(mdev
);
2777 /* We need to add connection name and volume number information still.
2778 * Minor number is in drbd_genlmsghdr. */
2779 if (nla_put_drbd_cfg_context(skb
, mdev
->tconn
, mdev
->vnr
))
2780 goto nla_put_failure
;
2782 if (res_opts_to_skb(skb
, &mdev
->tconn
->res_opts
, exclude_sensitive
))
2783 goto nla_put_failure
;
2787 struct disk_conf
*disk_conf
;
2789 disk_conf
= rcu_dereference(mdev
->ldev
->disk_conf
);
2790 err
= disk_conf_to_skb(skb
, disk_conf
, exclude_sensitive
);
2793 struct net_conf
*nc
;
2795 nc
= rcu_dereference(mdev
->tconn
->net_conf
);
2797 err
= net_conf_to_skb(skb
, nc
, exclude_sensitive
);
2801 goto nla_put_failure
;
2803 nla
= nla_nest_start(skb
, DRBD_NLA_STATE_INFO
);
2805 goto nla_put_failure
;
2806 if (nla_put_u32(skb
, T_sib_reason
, sib
? sib
->sib_reason
: SIB_GET_STATUS_REPLY
) ||
2807 nla_put_u32(skb
, T_current_state
, mdev
->state
.i
) ||
2808 nla_put_u64(skb
, T_ed_uuid
, mdev
->ed_uuid
) ||
2809 nla_put_u64(skb
, T_capacity
, drbd_get_capacity(mdev
->this_bdev
)) ||
2810 nla_put_u64(skb
, T_send_cnt
, mdev
->send_cnt
) ||
2811 nla_put_u64(skb
, T_recv_cnt
, mdev
->recv_cnt
) ||
2812 nla_put_u64(skb
, T_read_cnt
, mdev
->read_cnt
) ||
2813 nla_put_u64(skb
, T_writ_cnt
, mdev
->writ_cnt
) ||
2814 nla_put_u64(skb
, T_al_writ_cnt
, mdev
->al_writ_cnt
) ||
2815 nla_put_u64(skb
, T_bm_writ_cnt
, mdev
->bm_writ_cnt
) ||
2816 nla_put_u32(skb
, T_ap_bio_cnt
, atomic_read(&mdev
->ap_bio_cnt
)) ||
2817 nla_put_u32(skb
, T_ap_pending_cnt
, atomic_read(&mdev
->ap_pending_cnt
)) ||
2818 nla_put_u32(skb
, T_rs_pending_cnt
, atomic_read(&mdev
->rs_pending_cnt
)))
2819 goto nla_put_failure
;
2824 spin_lock_irq(&mdev
->ldev
->md
.uuid_lock
);
2825 err
= nla_put(skb
, T_uuids
, sizeof(si
->uuids
), mdev
->ldev
->md
.uuid
);
2826 spin_unlock_irq(&mdev
->ldev
->md
.uuid_lock
);
2829 goto nla_put_failure
;
2831 if (nla_put_u32(skb
, T_disk_flags
, mdev
->ldev
->md
.flags
) ||
2832 nla_put_u64(skb
, T_bits_total
, drbd_bm_bits(mdev
)) ||
2833 nla_put_u64(skb
, T_bits_oos
, drbd_bm_total_weight(mdev
)))
2834 goto nla_put_failure
;
2835 if (C_SYNC_SOURCE
<= mdev
->state
.conn
&&
2836 C_PAUSED_SYNC_T
>= mdev
->state
.conn
) {
2837 if (nla_put_u64(skb
, T_bits_rs_total
, mdev
->rs_total
) ||
2838 nla_put_u64(skb
, T_bits_rs_failed
, mdev
->rs_failed
))
2839 goto nla_put_failure
;
2844 switch(sib
->sib_reason
) {
2845 case SIB_SYNC_PROGRESS
:
2846 case SIB_GET_STATUS_REPLY
:
2848 case SIB_STATE_CHANGE
:
2849 if (nla_put_u32(skb
, T_prev_state
, sib
->os
.i
) ||
2850 nla_put_u32(skb
, T_new_state
, sib
->ns
.i
))
2851 goto nla_put_failure
;
2853 case SIB_HELPER_POST
:
2854 if (nla_put_u32(skb
, T_helper_exit_code
,
2855 sib
->helper_exit_code
))
2856 goto nla_put_failure
;
2858 case SIB_HELPER_PRE
:
2859 if (nla_put_string(skb
, T_helper
, sib
->helper_name
))
2860 goto nla_put_failure
;
2864 nla_nest_end(skb
, nla
);
2874 int drbd_adm_get_status(struct sk_buff
*skb
, struct genl_info
*info
)
2876 enum drbd_ret_code retcode
;
2879 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
2880 if (!adm_ctx
.reply_skb
)
2882 if (retcode
!= NO_ERROR
)
2885 err
= nla_put_status_info(adm_ctx
.reply_skb
, adm_ctx
.mdev
, NULL
);
2887 nlmsg_free(adm_ctx
.reply_skb
);
2891 drbd_adm_finish(info
, retcode
);
2895 int get_one_status(struct sk_buff
*skb
, struct netlink_callback
*cb
)
2897 struct drbd_conf
*mdev
;
2898 struct drbd_genlmsghdr
*dh
;
2899 struct drbd_tconn
*pos
= (struct drbd_tconn
*)cb
->args
[0];
2900 struct drbd_tconn
*tconn
= NULL
;
2901 struct drbd_tconn
*tmp
;
2902 unsigned volume
= cb
->args
[1];
2904 /* Open coded, deferred, iteration:
2905 * list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
2906 * idr_for_each_entry(&tconn->volumes, mdev, i) {
2910 * where tconn is cb->args[0];
2911 * and i is cb->args[1];
2913 * cb->args[2] indicates if we shall loop over all resources,
2914 * or just dump all volumes of a single resource.
2916 * This may miss entries inserted after this dump started,
2917 * or entries deleted before they are reached.
2919 * We need to make sure the mdev won't disappear while
2920 * we are looking at it, and revalidate our iterators
2921 * on each iteration.
2924 /* synchronize with conn_create()/conn_destroy() */
2926 /* revalidate iterator position */
2927 list_for_each_entry_rcu(tmp
, &drbd_tconns
, all_tconn
) {
2929 /* first iteration */
2941 mdev
= idr_get_next(&tconn
->volumes
, &volume
);
2943 /* No more volumes to dump on this tconn.
2944 * Advance tconn iterator. */
2945 pos
= list_entry_rcu(tconn
->all_tconn
.next
,
2946 struct drbd_tconn
, all_tconn
);
2947 /* Did we dump any volume on this tconn yet? */
2949 /* If we reached the end of the list,
2950 * or only a single resource dump was requested,
2952 if (&pos
->all_tconn
== &drbd_tconns
|| cb
->args
[2])
2960 dh
= genlmsg_put(skb
, NETLINK_CB(cb
->skb
).portid
,
2961 cb
->nlh
->nlmsg_seq
, &drbd_genl_family
,
2962 NLM_F_MULTI
, DRBD_ADM_GET_STATUS
);
2967 /* This is a tconn without a single volume.
2968 * Suprisingly enough, it may have a network
2970 struct net_conf
*nc
;
2972 dh
->ret_code
= NO_ERROR
;
2973 if (nla_put_drbd_cfg_context(skb
, tconn
, VOLUME_UNSPECIFIED
))
2975 nc
= rcu_dereference(tconn
->net_conf
);
2976 if (nc
&& net_conf_to_skb(skb
, nc
, 1) != 0)
2981 D_ASSERT(mdev
->vnr
== volume
);
2982 D_ASSERT(mdev
->tconn
== tconn
);
2984 dh
->minor
= mdev_to_minor(mdev
);
2985 dh
->ret_code
= NO_ERROR
;
2987 if (nla_put_status_info(skb
, mdev
, NULL
)) {
2989 genlmsg_cancel(skb
, dh
);
2993 genlmsg_end(skb
, dh
);
2998 /* where to start the next iteration */
2999 cb
->args
[0] = (long)pos
;
3000 cb
->args
[1] = (pos
== tconn
) ? volume
+ 1 : 0;
3002 /* No more tconns/volumes/minors found results in an empty skb.
3003 * Which will terminate the dump. */
3008 * Request status of all resources, or of all volumes within a single resource.
3010 * This is a dump, as the answer may not fit in a single reply skb otherwise.
3011 * Which means we cannot use the family->attrbuf or other such members, because
3012 * dump is NOT protected by the genl_lock(). During dump, we only have access
3013 * to the incoming skb, and need to opencode "parsing" of the nlattr payload.
3015 * Once things are setup properly, we call into get_one_status().
3017 int drbd_adm_get_status_all(struct sk_buff
*skb
, struct netlink_callback
*cb
)
3019 const unsigned hdrlen
= GENL_HDRLEN
+ GENL_MAGIC_FAMILY_HDRSZ
;
3021 const char *resource_name
;
3022 struct drbd_tconn
*tconn
;
3025 /* Is this a followup call? */
3027 /* ... of a single resource dump,
3028 * and the resource iterator has been advanced already? */
3029 if (cb
->args
[2] && cb
->args
[2] != cb
->args
[0])
3030 return 0; /* DONE. */
3034 /* First call (from netlink_dump_start). We need to figure out
3035 * which resource(s) the user wants us to dump. */
3036 nla
= nla_find(nlmsg_attrdata(cb
->nlh
, hdrlen
),
3037 nlmsg_attrlen(cb
->nlh
, hdrlen
),
3038 DRBD_NLA_CFG_CONTEXT
);
3040 /* No explicit context given. Dump all. */
3043 maxtype
= ARRAY_SIZE(drbd_cfg_context_nl_policy
) - 1;
3044 nla
= drbd_nla_find_nested(maxtype
, nla
, __nla_type(T_ctx_resource_name
));
3046 return PTR_ERR(nla
);
3047 /* context given, but no name present? */
3050 resource_name
= nla_data(nla
);
3051 tconn
= conn_get_by_name(resource_name
);
3056 kref_put(&tconn
->kref
, &conn_destroy
); /* get_one_status() (re)validates tconn by itself */
3058 /* prime iterators, and set "filter" mode mark:
3059 * only dump this tconn. */
3060 cb
->args
[0] = (long)tconn
;
3061 /* cb->args[1] = 0; passed in this way. */
3062 cb
->args
[2] = (long)tconn
;
3065 return get_one_status(skb
, cb
);
3068 int drbd_adm_get_timeout_type(struct sk_buff
*skb
, struct genl_info
*info
)
3070 enum drbd_ret_code retcode
;
3071 struct timeout_parms tp
;
3074 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
3075 if (!adm_ctx
.reply_skb
)
3077 if (retcode
!= NO_ERROR
)
3081 adm_ctx
.mdev
->state
.pdsk
== D_OUTDATED
? UT_PEER_OUTDATED
:
3082 test_bit(USE_DEGR_WFC_T
, &adm_ctx
.mdev
->flags
) ? UT_DEGRADED
:
3085 err
= timeout_parms_to_priv_skb(adm_ctx
.reply_skb
, &tp
);
3087 nlmsg_free(adm_ctx
.reply_skb
);
3091 drbd_adm_finish(info
, retcode
);
3095 int drbd_adm_start_ov(struct sk_buff
*skb
, struct genl_info
*info
)
3097 struct drbd_conf
*mdev
;
3098 enum drbd_ret_code retcode
;
3099 struct start_ov_parms parms
;
3101 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
3102 if (!adm_ctx
.reply_skb
)
3104 if (retcode
!= NO_ERROR
)
3107 mdev
= adm_ctx
.mdev
;
3109 /* resume from last known position, if possible */
3110 parms
.ov_start_sector
= mdev
->ov_start_sector
;
3111 parms
.ov_stop_sector
= ULLONG_MAX
;
3112 if (info
->attrs
[DRBD_NLA_START_OV_PARMS
]) {
3113 int err
= start_ov_parms_from_attrs(&parms
, info
);
3115 retcode
= ERR_MANDATORY_TAG
;
3116 drbd_msg_put_info(from_attrs_err_to_txt(err
));
3120 /* w_make_ov_request expects position to be aligned */
3121 mdev
->ov_start_sector
= parms
.ov_start_sector
& ~(BM_SECT_PER_BIT
-1);
3122 mdev
->ov_stop_sector
= parms
.ov_stop_sector
;
3124 /* If there is still bitmap IO pending, e.g. previous resync or verify
3125 * just being finished, wait for it before requesting a new resync. */
3126 drbd_suspend_io(mdev
);
3127 wait_event(mdev
->misc_wait
, !test_bit(BITMAP_IO
, &mdev
->flags
));
3128 retcode
= drbd_request_state(mdev
,NS(conn
,C_VERIFY_S
));
3129 drbd_resume_io(mdev
);
3131 drbd_adm_finish(info
, retcode
);
3136 int drbd_adm_new_c_uuid(struct sk_buff
*skb
, struct genl_info
*info
)
3138 struct drbd_conf
*mdev
;
3139 enum drbd_ret_code retcode
;
3140 int skip_initial_sync
= 0;
3142 struct new_c_uuid_parms args
;
3144 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
3145 if (!adm_ctx
.reply_skb
)
3147 if (retcode
!= NO_ERROR
)
3150 mdev
= adm_ctx
.mdev
;
3151 memset(&args
, 0, sizeof(args
));
3152 if (info
->attrs
[DRBD_NLA_NEW_C_UUID_PARMS
]) {
3153 err
= new_c_uuid_parms_from_attrs(&args
, info
);
3155 retcode
= ERR_MANDATORY_TAG
;
3156 drbd_msg_put_info(from_attrs_err_to_txt(err
));
3161 mutex_lock(mdev
->state_mutex
); /* Protects us against serialized state changes. */
3163 if (!get_ldev(mdev
)) {
3164 retcode
= ERR_NO_DISK
;
3168 /* this is "skip initial sync", assume to be clean */
3169 if (mdev
->state
.conn
== C_CONNECTED
&& mdev
->tconn
->agreed_pro_version
>= 90 &&
3170 mdev
->ldev
->md
.uuid
[UI_CURRENT
] == UUID_JUST_CREATED
&& args
.clear_bm
) {
3171 dev_info(DEV
, "Preparing to skip initial sync\n");
3172 skip_initial_sync
= 1;
3173 } else if (mdev
->state
.conn
!= C_STANDALONE
) {
3174 retcode
= ERR_CONNECTED
;
3178 drbd_uuid_set(mdev
, UI_BITMAP
, 0); /* Rotate UI_BITMAP to History 1, etc... */
3179 drbd_uuid_new_current(mdev
); /* New current, previous to UI_BITMAP */
3181 if (args
.clear_bm
) {
3182 err
= drbd_bitmap_io(mdev
, &drbd_bmio_clear_n_write
,
3183 "clear_n_write from new_c_uuid", BM_LOCKED_MASK
);
3185 dev_err(DEV
, "Writing bitmap failed with %d\n",err
);
3186 retcode
= ERR_IO_MD_DISK
;
3188 if (skip_initial_sync
) {
3189 drbd_send_uuids_skip_initial_sync(mdev
);
3190 _drbd_uuid_set(mdev
, UI_BITMAP
, 0);
3191 drbd_print_uuids(mdev
, "cleared bitmap UUID");
3192 spin_lock_irq(&mdev
->tconn
->req_lock
);
3193 _drbd_set_state(_NS2(mdev
, disk
, D_UP_TO_DATE
, pdsk
, D_UP_TO_DATE
),
3195 spin_unlock_irq(&mdev
->tconn
->req_lock
);
3203 mutex_unlock(mdev
->state_mutex
);
3205 drbd_adm_finish(info
, retcode
);
3209 static enum drbd_ret_code
3210 drbd_check_resource_name(const char *name
)
3212 if (!name
|| !name
[0]) {
3213 drbd_msg_put_info("resource name missing");
3214 return ERR_MANDATORY_TAG
;
3216 /* if we want to use these in sysfs/configfs/debugfs some day,
3217 * we must not allow slashes */
3218 if (strchr(name
, '/')) {
3219 drbd_msg_put_info("invalid resource name");
3220 return ERR_INVALID_REQUEST
;
3225 int drbd_adm_new_resource(struct sk_buff
*skb
, struct genl_info
*info
)
3227 enum drbd_ret_code retcode
;
3228 struct res_opts res_opts
;
3231 retcode
= drbd_adm_prepare(skb
, info
, 0);
3232 if (!adm_ctx
.reply_skb
)
3234 if (retcode
!= NO_ERROR
)
3237 set_res_opts_defaults(&res_opts
);
3238 err
= res_opts_from_attrs(&res_opts
, info
);
3239 if (err
&& err
!= -ENOMSG
) {
3240 retcode
= ERR_MANDATORY_TAG
;
3241 drbd_msg_put_info(from_attrs_err_to_txt(err
));
3245 retcode
= drbd_check_resource_name(adm_ctx
.resource_name
);
3246 if (retcode
!= NO_ERROR
)
3249 if (adm_ctx
.tconn
) {
3250 if (info
->nlhdr
->nlmsg_flags
& NLM_F_EXCL
) {
3251 retcode
= ERR_INVALID_REQUEST
;
3252 drbd_msg_put_info("resource exists");
3254 /* else: still NO_ERROR */
3258 if (!conn_create(adm_ctx
.resource_name
, &res_opts
))
3259 retcode
= ERR_NOMEM
;
3261 drbd_adm_finish(info
, retcode
);
3265 int drbd_adm_add_minor(struct sk_buff
*skb
, struct genl_info
*info
)
3267 struct drbd_genlmsghdr
*dh
= info
->userhdr
;
3268 enum drbd_ret_code retcode
;
3270 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_RESOURCE
);
3271 if (!adm_ctx
.reply_skb
)
3273 if (retcode
!= NO_ERROR
)
3276 if (dh
->minor
> MINORMASK
) {
3277 drbd_msg_put_info("requested minor out of range");
3278 retcode
= ERR_INVALID_REQUEST
;
3281 if (adm_ctx
.volume
> DRBD_VOLUME_MAX
) {
3282 drbd_msg_put_info("requested volume id out of range");
3283 retcode
= ERR_INVALID_REQUEST
;
3287 /* drbd_adm_prepare made sure already
3288 * that mdev->tconn and mdev->vnr match the request. */
3290 if (info
->nlhdr
->nlmsg_flags
& NLM_F_EXCL
)
3291 retcode
= ERR_MINOR_EXISTS
;
3292 /* else: still NO_ERROR */
3296 retcode
= conn_new_minor(adm_ctx
.tconn
, dh
->minor
, adm_ctx
.volume
);
3298 drbd_adm_finish(info
, retcode
);
3302 static enum drbd_ret_code
adm_delete_minor(struct drbd_conf
*mdev
)
3304 if (mdev
->state
.disk
== D_DISKLESS
&&
3305 /* no need to be mdev->state.conn == C_STANDALONE &&
3306 * we may want to delete a minor from a live replication group.
3308 mdev
->state
.role
== R_SECONDARY
) {
3309 _drbd_request_state(mdev
, NS(conn
, C_WF_REPORT_PARAMS
),
3310 CS_VERBOSE
+ CS_WAIT_COMPLETE
);
3311 idr_remove(&mdev
->tconn
->volumes
, mdev
->vnr
);
3312 idr_remove(&minors
, mdev_to_minor(mdev
));
3313 destroy_workqueue(mdev
->submit
.wq
);
3314 del_gendisk(mdev
->vdisk
);
3316 kref_put(&mdev
->kref
, &drbd_minor_destroy
);
3319 return ERR_MINOR_CONFIGURED
;
3322 int drbd_adm_delete_minor(struct sk_buff
*skb
, struct genl_info
*info
)
3324 enum drbd_ret_code retcode
;
3326 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_MINOR
);
3327 if (!adm_ctx
.reply_skb
)
3329 if (retcode
!= NO_ERROR
)
3332 retcode
= adm_delete_minor(adm_ctx
.mdev
);
3334 drbd_adm_finish(info
, retcode
);
3338 int drbd_adm_down(struct sk_buff
*skb
, struct genl_info
*info
)
3340 int retcode
; /* enum drbd_ret_code rsp. enum drbd_state_rv */
3341 struct drbd_conf
*mdev
;
3344 retcode
= drbd_adm_prepare(skb
, info
, 0);
3345 if (!adm_ctx
.reply_skb
)
3347 if (retcode
!= NO_ERROR
)
3350 if (!adm_ctx
.tconn
) {
3351 retcode
= ERR_RES_NOT_KNOWN
;
3356 idr_for_each_entry(&adm_ctx
.tconn
->volumes
, mdev
, i
) {
3357 retcode
= drbd_set_role(mdev
, R_SECONDARY
, 0);
3358 if (retcode
< SS_SUCCESS
) {
3359 drbd_msg_put_info("failed to demote");
3364 retcode
= conn_try_disconnect(adm_ctx
.tconn
, 0);
3365 if (retcode
< SS_SUCCESS
) {
3366 drbd_msg_put_info("failed to disconnect");
3371 idr_for_each_entry(&adm_ctx
.tconn
->volumes
, mdev
, i
) {
3372 retcode
= adm_detach(mdev
, 0);
3373 if (retcode
< SS_SUCCESS
|| retcode
> NO_ERROR
) {
3374 drbd_msg_put_info("failed to detach");
3379 /* If we reach this, all volumes (of this tconn) are Secondary,
3380 * Disconnected, Diskless, aka Unconfigured. Make sure all threads have
3381 * actually stopped, state handling only does drbd_thread_stop_nowait(). */
3382 drbd_thread_stop(&adm_ctx
.tconn
->worker
);
3384 /* Now, nothing can fail anymore */
3386 /* delete volumes */
3387 idr_for_each_entry(&adm_ctx
.tconn
->volumes
, mdev
, i
) {
3388 retcode
= adm_delete_minor(mdev
);
3389 if (retcode
!= NO_ERROR
) {
3390 /* "can not happen" */
3391 drbd_msg_put_info("failed to delete volume");
3396 /* delete connection */
3397 if (conn_lowest_minor(adm_ctx
.tconn
) < 0) {
3398 list_del_rcu(&adm_ctx
.tconn
->all_tconn
);
3400 kref_put(&adm_ctx
.tconn
->kref
, &conn_destroy
);
3404 /* "can not happen" */
3405 retcode
= ERR_RES_IN_USE
;
3406 drbd_msg_put_info("failed to delete connection");
3410 drbd_adm_finish(info
, retcode
);
3414 int drbd_adm_del_resource(struct sk_buff
*skb
, struct genl_info
*info
)
3416 enum drbd_ret_code retcode
;
3418 retcode
= drbd_adm_prepare(skb
, info
, DRBD_ADM_NEED_RESOURCE
);
3419 if (!adm_ctx
.reply_skb
)
3421 if (retcode
!= NO_ERROR
)
3424 if (conn_lowest_minor(adm_ctx
.tconn
) < 0) {
3425 list_del_rcu(&adm_ctx
.tconn
->all_tconn
);
3427 kref_put(&adm_ctx
.tconn
->kref
, &conn_destroy
);
3431 retcode
= ERR_RES_IN_USE
;
3434 if (retcode
== NO_ERROR
)
3435 drbd_thread_stop(&adm_ctx
.tconn
->worker
);
3437 drbd_adm_finish(info
, retcode
);
3441 void drbd_bcast_event(struct drbd_conf
*mdev
, const struct sib_info
*sib
)
3443 static atomic_t drbd_genl_seq
= ATOMIC_INIT(2); /* two. */
3444 struct sk_buff
*msg
;
3445 struct drbd_genlmsghdr
*d_out
;
3449 if (sib
->sib_reason
== SIB_SYNC_PROGRESS
) {
3450 if (time_after(jiffies
, mdev
->rs_last_bcast
+ HZ
))
3451 mdev
->rs_last_bcast
= jiffies
;
3456 seq
= atomic_inc_return(&drbd_genl_seq
);
3457 msg
= genlmsg_new(NLMSG_GOODSIZE
, GFP_NOIO
);
3462 d_out
= genlmsg_put(msg
, 0, seq
, &drbd_genl_family
, 0, DRBD_EVENT
);
3463 if (!d_out
) /* cannot happen, but anyways. */
3464 goto nla_put_failure
;
3465 d_out
->minor
= mdev_to_minor(mdev
);
3466 d_out
->ret_code
= NO_ERROR
;
3468 if (nla_put_status_info(msg
, mdev
, sib
))
3469 goto nla_put_failure
;
3470 genlmsg_end(msg
, d_out
);
3471 err
= drbd_genl_multicast_events(msg
, 0);
3472 /* msg has been consumed or freed in netlink_broadcast() */
3473 if (err
&& err
!= -ESRCH
)
3481 dev_err(DEV
, "Error %d while broadcasting event. "
3482 "Event seq:%u sib_reason:%u\n",
3483 err
, seq
, sib
->sib_reason
);