drbd: report congestion if we are waiting for some userland callback
[firefly-linux-kernel-4.4.55.git] / drivers / block / drbd / drbd_nl.c
1 /*
2    drbd_nl.c
3
4    This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
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>.
9
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)
13    any later version.
14
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.
19
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.
23
24  */
25
26 #include <linux/module.h>
27 #include <linux/drbd.h>
28 #include <linux/in.h>
29 #include <linux/fs.h>
30 #include <linux/file.h>
31 #include <linux/slab.h>
32 #include <linux/blkpg.h>
33 #include <linux/cpumask.h>
34 #include "drbd_int.h"
35 #include "drbd_req.h"
36 #include "drbd_wrappers.h"
37 #include <asm/unaligned.h>
38 #include <linux/drbd_limits.h>
39 #include <linux/kthread.h>
40
41 #include <net/genetlink.h>
42
43 /* .doit */
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);
46
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);
49
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);
53
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);
74 /* .dumpit */
75 int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb);
76
77 #include <linux/drbd_genl_api.h>
78 #include "drbd_nla.h"
79 #include <linux/genl_magic_func.h>
80
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.";
83
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.
87  */
88 static struct drbd_config_context {
89         /* assigned from drbd_genlmsghdr */
90         unsigned int minor;
91         /* assigned from request attributes, if present */
92         unsigned int volume;
93 #define VOLUME_UNSPECIFIED              (-1U)
94         /* pointer into the request skb,
95          * limited lifetime! */
96         char *resource_name;
97         struct nlattr *my_addr;
98         struct nlattr *peer_addr;
99
100         /* reply buffer */
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;
107 } adm_ctx;
108
109 static void drbd_adm_send_reply(struct sk_buff *skb, struct genl_info *info)
110 {
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");
114 }
115
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)
119 {
120         struct sk_buff *skb = adm_ctx.reply_skb;
121         struct nlattr *nla;
122         int err = -EMSGSIZE;
123
124         if (!info || !info[0])
125                 return 0;
126
127         nla = nla_nest_start(skb, DRBD_NLA_CFG_REPLY);
128         if (!nla)
129                 return err;
130
131         err = nla_put_string(skb, T_info_text, info);
132         if (err) {
133                 nla_nest_cancel(skb, nla);
134                 return err;
135         } else
136                 nla_nest_end(skb, nla);
137         return 0;
138 }
139
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.
144  */
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,
149                 unsigned flags)
150 {
151         struct drbd_genlmsghdr *d_in = info->userhdr;
152         const u8 cmd = info->genlhdr->cmd;
153         int err;
154
155         memset(&adm_ctx, 0, sizeof(adm_ctx));
156
157         /* genl_rcv_msg only checks for CAP_NET_ADMIN on "GENL_ADMIN_PERM" :( */
158         if (cmd != DRBD_ADM_GET_STATUS
159         && security_netlink_recv(skb, CAP_SYS_ADMIN))
160                return -EPERM;
161
162         adm_ctx.reply_skb = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
163         if (!adm_ctx.reply_skb) {
164                 err = -ENOMEM;
165                 goto fail;
166         }
167
168         adm_ctx.reply_dh = genlmsg_put_reply(adm_ctx.reply_skb,
169                                         info, &drbd_genl_family, 0, cmd);
170         /* put of a few bytes into a fresh skb of >= 4k will always succeed.
171          * but anyways */
172         if (!adm_ctx.reply_dh) {
173                 err = -ENOMEM;
174                 goto fail;
175         }
176
177         adm_ctx.reply_dh->minor = d_in->minor;
178         adm_ctx.reply_dh->ret_code = NO_ERROR;
179
180         adm_ctx.volume = VOLUME_UNSPECIFIED;
181         if (info->attrs[DRBD_NLA_CFG_CONTEXT]) {
182                 struct nlattr *nla;
183                 /* parse and validate only */
184                 err = drbd_cfg_context_from_attrs(NULL, info);
185                 if (err)
186                         goto fail;
187
188                 /* It was present, and valid,
189                  * copy it over to the reply skb. */
190                 err = nla_put_nohdr(adm_ctx.reply_skb,
191                                 info->attrs[DRBD_NLA_CFG_CONTEXT]->nla_len,
192                                 info->attrs[DRBD_NLA_CFG_CONTEXT]);
193                 if (err)
194                         goto fail;
195
196                 /* and assign stuff to the global adm_ctx */
197                 nla = nested_attr_tb[__nla_type(T_ctx_volume)];
198                 if (nla)
199                         adm_ctx.volume = nla_get_u32(nla);
200                 nla = nested_attr_tb[__nla_type(T_ctx_resource_name)];
201                 if (nla)
202                         adm_ctx.resource_name = nla_data(nla);
203                 adm_ctx.my_addr = nested_attr_tb[__nla_type(T_ctx_my_addr)];
204                 adm_ctx.peer_addr = nested_attr_tb[__nla_type(T_ctx_peer_addr)];
205                 if ((adm_ctx.my_addr &&
206                      nla_len(adm_ctx.my_addr) > sizeof(adm_ctx.tconn->my_addr)) ||
207                     (adm_ctx.peer_addr &&
208                      nla_len(adm_ctx.peer_addr) > sizeof(adm_ctx.tconn->peer_addr))) {
209                         err = -EINVAL;
210                         goto fail;
211                 }
212         }
213
214         adm_ctx.minor = d_in->minor;
215         adm_ctx.mdev = minor_to_mdev(d_in->minor);
216         adm_ctx.tconn = conn_get_by_name(adm_ctx.resource_name);
217
218         if (!adm_ctx.mdev && (flags & DRBD_ADM_NEED_MINOR)) {
219                 drbd_msg_put_info("unknown minor");
220                 return ERR_MINOR_INVALID;
221         }
222         if (!adm_ctx.tconn && (flags & DRBD_ADM_NEED_RESOURCE)) {
223                 drbd_msg_put_info("unknown resource");
224                 return ERR_INVALID_REQUEST;
225         }
226
227         if (flags & DRBD_ADM_NEED_CONNECTION) {
228                 if (adm_ctx.tconn && !(flags & DRBD_ADM_NEED_RESOURCE)) {
229                         drbd_msg_put_info("no resource name expected");
230                         return ERR_INVALID_REQUEST;
231                 }
232                 if (adm_ctx.mdev) {
233                         drbd_msg_put_info("no minor number expected");
234                         return ERR_INVALID_REQUEST;
235                 }
236                 if (adm_ctx.my_addr && adm_ctx.peer_addr)
237                         adm_ctx.tconn = conn_get_by_addrs(nla_data(adm_ctx.my_addr),
238                                                           nla_len(adm_ctx.my_addr),
239                                                           nla_data(adm_ctx.peer_addr),
240                                                           nla_len(adm_ctx.peer_addr));
241                 if (!adm_ctx.tconn) {
242                         drbd_msg_put_info("unknown connection");
243                         return ERR_INVALID_REQUEST;
244                 }
245         }
246
247         /* some more paranoia, if the request was over-determined */
248         if (adm_ctx.mdev && adm_ctx.tconn &&
249             adm_ctx.mdev->tconn != adm_ctx.tconn) {
250                 pr_warning("request: minor=%u, resource=%s; but that minor belongs to connection %s\n",
251                                 adm_ctx.minor, adm_ctx.resource_name,
252                                 adm_ctx.mdev->tconn->name);
253                 drbd_msg_put_info("minor exists in different resource");
254                 return ERR_INVALID_REQUEST;
255         }
256         if (adm_ctx.mdev &&
257             adm_ctx.volume != VOLUME_UNSPECIFIED &&
258             adm_ctx.volume != adm_ctx.mdev->vnr) {
259                 pr_warning("request: minor=%u, volume=%u; but that minor is volume %u in %s\n",
260                                 adm_ctx.minor, adm_ctx.volume,
261                                 adm_ctx.mdev->vnr, adm_ctx.mdev->tconn->name);
262                 drbd_msg_put_info("minor exists as different volume");
263                 return ERR_INVALID_REQUEST;
264         }
265
266         return NO_ERROR;
267
268 fail:
269         nlmsg_free(adm_ctx.reply_skb);
270         adm_ctx.reply_skb = NULL;
271         return err;
272 }
273
274 static int drbd_adm_finish(struct genl_info *info, int retcode)
275 {
276         if (adm_ctx.tconn) {
277                 kref_put(&adm_ctx.tconn->kref, &conn_destroy);
278                 adm_ctx.tconn = NULL;
279         }
280
281         if (!adm_ctx.reply_skb)
282                 return -ENOMEM;
283
284         adm_ctx.reply_dh->ret_code = retcode;
285         drbd_adm_send_reply(adm_ctx.reply_skb, info);
286         return 0;
287 }
288
289 static void setup_khelper_env(struct drbd_tconn *tconn, char **envp)
290 {
291         char *afs;
292
293         /* FIXME: A future version will not allow this case. */
294         if (tconn->my_addr_len == 0 || tconn->peer_addr_len == 0)
295                 return;
296
297         switch (((struct sockaddr *)&tconn->peer_addr)->sa_family) {
298         case AF_INET6:
299                 afs = "ipv6";
300                 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI6",
301                          &((struct sockaddr_in6 *)&tconn->peer_addr)->sin6_addr);
302                 break;
303         case AF_INET:
304                 afs = "ipv4";
305                 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
306                          &((struct sockaddr_in *)&tconn->peer_addr)->sin_addr);
307                 break;
308         default:
309                 afs = "ssocks";
310                 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
311                          &((struct sockaddr_in *)&tconn->peer_addr)->sin_addr);
312         }
313         snprintf(envp[3], 20, "DRBD_PEER_AF=%s", afs);
314 }
315
316 int drbd_khelper(struct drbd_conf *mdev, char *cmd)
317 {
318         char *envp[] = { "HOME=/",
319                         "TERM=linux",
320                         "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
321                          (char[20]) { }, /* address family */
322                          (char[60]) { }, /* address */
323                         NULL };
324         char mb[12];
325         char *argv[] = {usermode_helper, cmd, mb, NULL };
326         struct drbd_tconn *tconn = mdev->tconn;
327         struct sib_info sib;
328         int ret;
329
330         if (current == tconn->worker.task)
331                 set_bit(CALLBACK_PENDING, &tconn->flags);
332
333         snprintf(mb, 12, "minor-%d", mdev_to_minor(mdev));
334         setup_khelper_env(tconn, envp);
335
336         /* The helper may take some time.
337          * write out any unsynced meta data changes now */
338         drbd_md_sync(mdev);
339
340         dev_info(DEV, "helper command: %s %s %s\n", usermode_helper, cmd, mb);
341         sib.sib_reason = SIB_HELPER_PRE;
342         sib.helper_name = cmd;
343         drbd_bcast_event(mdev, &sib);
344         ret = call_usermodehelper(usermode_helper, argv, envp, 1);
345         if (ret)
346                 dev_warn(DEV, "helper command: %s %s %s exit code %u (0x%x)\n",
347                                 usermode_helper, cmd, mb,
348                                 (ret >> 8) & 0xff, ret);
349         else
350                 dev_info(DEV, "helper command: %s %s %s exit code %u (0x%x)\n",
351                                 usermode_helper, cmd, mb,
352                                 (ret >> 8) & 0xff, ret);
353         sib.sib_reason = SIB_HELPER_POST;
354         sib.helper_exit_code = ret;
355         drbd_bcast_event(mdev, &sib);
356
357         if (current == tconn->worker.task)
358                 clear_bit(CALLBACK_PENDING, &tconn->flags);
359
360         if (ret < 0) /* Ignore any ERRNOs we got. */
361                 ret = 0;
362
363         return ret;
364 }
365
366 static void conn_md_sync(struct drbd_tconn *tconn)
367 {
368         struct drbd_conf *mdev;
369         int vnr;
370
371         rcu_read_lock();
372         idr_for_each_entry(&tconn->volumes, mdev, vnr) {
373                 kref_get(&mdev->kref);
374                 rcu_read_unlock();
375                 drbd_md_sync(mdev);
376                 kref_put(&mdev->kref, &drbd_minor_destroy);
377                 rcu_read_lock();
378         }
379         rcu_read_unlock();
380 }
381
382 int conn_khelper(struct drbd_tconn *tconn, char *cmd)
383 {
384         char *envp[] = { "HOME=/",
385                         "TERM=linux",
386                         "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
387                          (char[20]) { }, /* address family */
388                          (char[60]) { }, /* address */
389                         NULL };
390         char *argv[] = {usermode_helper, cmd, tconn->name, NULL };
391         int ret;
392
393         setup_khelper_env(tconn, envp);
394         conn_md_sync(tconn);
395
396         conn_info(tconn, "helper command: %s %s %s\n", usermode_helper, cmd, tconn->name);
397         /* TODO: conn_bcast_event() ?? */
398
399         ret = call_usermodehelper(usermode_helper, argv, envp, 1);
400         if (ret)
401                 conn_warn(tconn, "helper command: %s %s %s exit code %u (0x%x)\n",
402                           usermode_helper, cmd, tconn->name,
403                           (ret >> 8) & 0xff, ret);
404         else
405                 conn_info(tconn, "helper command: %s %s %s exit code %u (0x%x)\n",
406                           usermode_helper, cmd, tconn->name,
407                           (ret >> 8) & 0xff, ret);
408         /* TODO: conn_bcast_event() ?? */
409
410         if (ret < 0) /* Ignore any ERRNOs we got. */
411                 ret = 0;
412
413         return ret;
414 }
415
416 static enum drbd_fencing_p highest_fencing_policy(struct drbd_tconn *tconn)
417 {
418         enum drbd_fencing_p fp = FP_NOT_AVAIL;
419         struct drbd_conf *mdev;
420         int vnr;
421
422         rcu_read_lock();
423         idr_for_each_entry(&tconn->volumes, mdev, vnr) {
424                 if (get_ldev_if_state(mdev, D_CONSISTENT)) {
425                         fp = max_t(enum drbd_fencing_p, fp,
426                                    rcu_dereference(mdev->ldev->disk_conf)->fencing);
427                         put_ldev(mdev);
428                 }
429         }
430         rcu_read_unlock();
431
432         return fp;
433 }
434
435 bool conn_try_outdate_peer(struct drbd_tconn *tconn)
436 {
437         union drbd_state mask = { };
438         union drbd_state val = { };
439         enum drbd_fencing_p fp;
440         char *ex_to_string;
441         int r;
442
443         if (tconn->cstate >= C_WF_REPORT_PARAMS) {
444                 conn_err(tconn, "Expected cstate < C_WF_REPORT_PARAMS\n");
445                 return false;
446         }
447
448         fp = highest_fencing_policy(tconn);
449         switch (fp) {
450         case FP_NOT_AVAIL:
451                 conn_warn(tconn, "Not fencing peer, I'm not even Consistent myself.\n");
452                 goto out;
453         case FP_DONT_CARE:
454                 return true;
455         default: ;
456         }
457
458         r = conn_khelper(tconn, "fence-peer");
459
460         switch ((r>>8) & 0xff) {
461         case 3: /* peer is inconsistent */
462                 ex_to_string = "peer is inconsistent or worse";
463                 mask.pdsk = D_MASK;
464                 val.pdsk = D_INCONSISTENT;
465                 break;
466         case 4: /* peer got outdated, or was already outdated */
467                 ex_to_string = "peer was fenced";
468                 mask.pdsk = D_MASK;
469                 val.pdsk = D_OUTDATED;
470                 break;
471         case 5: /* peer was down */
472                 if (conn_highest_disk(tconn) == D_UP_TO_DATE) {
473                         /* we will(have) create(d) a new UUID anyways... */
474                         ex_to_string = "peer is unreachable, assumed to be dead";
475                         mask.pdsk = D_MASK;
476                         val.pdsk = D_OUTDATED;
477                 } else {
478                         ex_to_string = "peer unreachable, doing nothing since disk != UpToDate";
479                 }
480                 break;
481         case 6: /* Peer is primary, voluntarily outdate myself.
482                  * This is useful when an unconnected R_SECONDARY is asked to
483                  * become R_PRIMARY, but finds the other peer being active. */
484                 ex_to_string = "peer is active";
485                 conn_warn(tconn, "Peer is primary, outdating myself.\n");
486                 mask.disk = D_MASK;
487                 val.disk = D_OUTDATED;
488                 break;
489         case 7:
490                 if (fp != FP_STONITH)
491                         conn_err(tconn, "fence-peer() = 7 && fencing != Stonith !!!\n");
492                 ex_to_string = "peer was stonithed";
493                 mask.pdsk = D_MASK;
494                 val.pdsk = D_OUTDATED;
495                 break;
496         default:
497                 /* The script is broken ... */
498                 conn_err(tconn, "fence-peer helper broken, returned %d\n", (r>>8)&0xff);
499                 return false; /* Eventually leave IO frozen */
500         }
501
502         conn_info(tconn, "fence-peer helper returned %d (%s)\n",
503                   (r>>8) & 0xff, ex_to_string);
504
505  out:
506
507         /* Not using
508            conn_request_state(tconn, mask, val, CS_VERBOSE);
509            here, because we might were able to re-establish the connection in the
510            meantime. */
511         spin_lock_irq(&tconn->req_lock);
512         if (tconn->cstate < C_WF_REPORT_PARAMS && !test_bit(STATE_SENT, &tconn->flags))
513                 _conn_request_state(tconn, mask, val, CS_VERBOSE);
514         spin_unlock_irq(&tconn->req_lock);
515
516         return conn_highest_pdsk(tconn) <= D_OUTDATED;
517 }
518
519 static int _try_outdate_peer_async(void *data)
520 {
521         struct drbd_tconn *tconn = (struct drbd_tconn *)data;
522
523         conn_try_outdate_peer(tconn);
524
525         kref_put(&tconn->kref, &conn_destroy);
526         return 0;
527 }
528
529 void conn_try_outdate_peer_async(struct drbd_tconn *tconn)
530 {
531         struct task_struct *opa;
532
533         kref_get(&tconn->kref);
534         opa = kthread_run(_try_outdate_peer_async, tconn, "drbd_async_h");
535         if (IS_ERR(opa)) {
536                 conn_err(tconn, "out of mem, failed to invoke fence-peer helper\n");
537                 kref_put(&tconn->kref, &conn_destroy);
538         }
539 }
540
541 enum drbd_state_rv
542 drbd_set_role(struct drbd_conf *mdev, enum drbd_role new_role, int force)
543 {
544         const int max_tries = 4;
545         enum drbd_state_rv rv = SS_UNKNOWN_ERROR;
546         struct net_conf *nc;
547         int try = 0;
548         int forced = 0;
549         union drbd_state mask, val;
550
551         if (new_role == R_PRIMARY)
552                 request_ping(mdev->tconn); /* Detect a dead peer ASAP */
553
554         mutex_lock(mdev->state_mutex);
555
556         mask.i = 0; mask.role = R_MASK;
557         val.i  = 0; val.role  = new_role;
558
559         while (try++ < max_tries) {
560                 rv = _drbd_request_state(mdev, mask, val, CS_WAIT_COMPLETE);
561
562                 /* in case we first succeeded to outdate,
563                  * but now suddenly could establish a connection */
564                 if (rv == SS_CW_FAILED_BY_PEER && mask.pdsk != 0) {
565                         val.pdsk = 0;
566                         mask.pdsk = 0;
567                         continue;
568                 }
569
570                 if (rv == SS_NO_UP_TO_DATE_DISK && force &&
571                     (mdev->state.disk < D_UP_TO_DATE &&
572                      mdev->state.disk >= D_INCONSISTENT)) {
573                         mask.disk = D_MASK;
574                         val.disk  = D_UP_TO_DATE;
575                         forced = 1;
576                         continue;
577                 }
578
579                 if (rv == SS_NO_UP_TO_DATE_DISK &&
580                     mdev->state.disk == D_CONSISTENT && mask.pdsk == 0) {
581                         D_ASSERT(mdev->state.pdsk == D_UNKNOWN);
582
583                         if (conn_try_outdate_peer(mdev->tconn)) {
584                                 val.disk = D_UP_TO_DATE;
585                                 mask.disk = D_MASK;
586                         }
587                         continue;
588                 }
589
590                 if (rv == SS_NOTHING_TO_DO)
591                         goto out;
592                 if (rv == SS_PRIMARY_NOP && mask.pdsk == 0) {
593                         if (!conn_try_outdate_peer(mdev->tconn) && force) {
594                                 dev_warn(DEV, "Forced into split brain situation!\n");
595                                 mask.pdsk = D_MASK;
596                                 val.pdsk  = D_OUTDATED;
597
598                         }
599                         continue;
600                 }
601                 if (rv == SS_TWO_PRIMARIES) {
602                         /* Maybe the peer is detected as dead very soon...
603                            retry at most once more in this case. */
604                         int timeo;
605                         rcu_read_lock();
606                         nc = rcu_dereference(mdev->tconn->net_conf);
607                         timeo = nc ? (nc->ping_timeo + 1) * HZ / 10 : 1;
608                         rcu_read_unlock();
609                         schedule_timeout_interruptible(timeo);
610                         if (try < max_tries)
611                                 try = max_tries - 1;
612                         continue;
613                 }
614                 if (rv < SS_SUCCESS) {
615                         rv = _drbd_request_state(mdev, mask, val,
616                                                 CS_VERBOSE + CS_WAIT_COMPLETE);
617                         if (rv < SS_SUCCESS)
618                                 goto out;
619                 }
620                 break;
621         }
622
623         if (rv < SS_SUCCESS)
624                 goto out;
625
626         if (forced)
627                 dev_warn(DEV, "Forced to consider local data as UpToDate!\n");
628
629         /* Wait until nothing is on the fly :) */
630         wait_event(mdev->misc_wait, atomic_read(&mdev->ap_pending_cnt) == 0);
631
632         /* FIXME also wait for all pending P_BARRIER_ACK? */
633
634         if (new_role == R_SECONDARY) {
635                 set_disk_ro(mdev->vdisk, true);
636                 if (get_ldev(mdev)) {
637                         mdev->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
638                         put_ldev(mdev);
639                 }
640         } else {
641                 mutex_lock(&mdev->tconn->conf_update);
642                 nc = mdev->tconn->net_conf;
643                 if (nc)
644                         nc->discard_my_data = 0; /* without copy; single bit op is atomic */
645                 mutex_unlock(&mdev->tconn->conf_update);
646
647                 set_disk_ro(mdev->vdisk, false);
648                 if (get_ldev(mdev)) {
649                         if (((mdev->state.conn < C_CONNECTED ||
650                                mdev->state.pdsk <= D_FAILED)
651                               && mdev->ldev->md.uuid[UI_BITMAP] == 0) || forced)
652                                 drbd_uuid_new_current(mdev);
653
654                         mdev->ldev->md.uuid[UI_CURRENT] |=  (u64)1;
655                         put_ldev(mdev);
656                 }
657         }
658
659         /* writeout of activity log covered areas of the bitmap
660          * to stable storage done in after state change already */
661
662         if (mdev->state.conn >= C_WF_REPORT_PARAMS) {
663                 /* if this was forced, we should consider sync */
664                 if (forced)
665                         drbd_send_uuids(mdev);
666                 drbd_send_current_state(mdev);
667         }
668
669         drbd_md_sync(mdev);
670
671         kobject_uevent(&disk_to_dev(mdev->vdisk)->kobj, KOBJ_CHANGE);
672 out:
673         mutex_unlock(mdev->state_mutex);
674         return rv;
675 }
676
677 static const char *from_attrs_err_to_txt(int err)
678 {
679         return  err == -ENOMSG ? "required attribute missing" :
680                 err == -EOPNOTSUPP ? "unknown mandatory attribute" :
681                 err == -EEXIST ? "can not change invariant setting" :
682                 "invalid attribute value";
683 }
684
685 int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info)
686 {
687         struct set_role_parms parms;
688         int err;
689         enum drbd_ret_code retcode;
690
691         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
692         if (!adm_ctx.reply_skb)
693                 return retcode;
694         if (retcode != NO_ERROR)
695                 goto out;
696
697         memset(&parms, 0, sizeof(parms));
698         if (info->attrs[DRBD_NLA_SET_ROLE_PARMS]) {
699                 err = set_role_parms_from_attrs(&parms, info);
700                 if (err) {
701                         retcode = ERR_MANDATORY_TAG;
702                         drbd_msg_put_info(from_attrs_err_to_txt(err));
703                         goto out;
704                 }
705         }
706
707         if (info->genlhdr->cmd == DRBD_ADM_PRIMARY)
708                 retcode = drbd_set_role(adm_ctx.mdev, R_PRIMARY, parms.assume_uptodate);
709         else
710                 retcode = drbd_set_role(adm_ctx.mdev, R_SECONDARY, 0);
711 out:
712         drbd_adm_finish(info, retcode);
713         return 0;
714 }
715
716 /* initializes the md.*_offset members, so we are able to find
717  * the on disk meta data */
718 static void drbd_md_set_sector_offsets(struct drbd_conf *mdev,
719                                        struct drbd_backing_dev *bdev)
720 {
721         sector_t md_size_sect = 0;
722         int meta_dev_idx;
723
724         rcu_read_lock();
725         meta_dev_idx = rcu_dereference(bdev->disk_conf)->meta_dev_idx;
726
727         switch (meta_dev_idx) {
728         default:
729                 /* v07 style fixed size indexed meta data */
730                 bdev->md.md_size_sect = MD_RESERVED_SECT;
731                 bdev->md.md_offset = drbd_md_ss__(mdev, bdev);
732                 bdev->md.al_offset = MD_AL_OFFSET;
733                 bdev->md.bm_offset = MD_BM_OFFSET;
734                 break;
735         case DRBD_MD_INDEX_FLEX_EXT:
736                 /* just occupy the full device; unit: sectors */
737                 bdev->md.md_size_sect = drbd_get_capacity(bdev->md_bdev);
738                 bdev->md.md_offset = 0;
739                 bdev->md.al_offset = MD_AL_OFFSET;
740                 bdev->md.bm_offset = MD_BM_OFFSET;
741                 break;
742         case DRBD_MD_INDEX_INTERNAL:
743         case DRBD_MD_INDEX_FLEX_INT:
744                 bdev->md.md_offset = drbd_md_ss__(mdev, bdev);
745                 /* al size is still fixed */
746                 bdev->md.al_offset = -MD_AL_SECTORS;
747                 /* we need (slightly less than) ~ this much bitmap sectors: */
748                 md_size_sect = drbd_get_capacity(bdev->backing_bdev);
749                 md_size_sect = ALIGN(md_size_sect, BM_SECT_PER_EXT);
750                 md_size_sect = BM_SECT_TO_EXT(md_size_sect);
751                 md_size_sect = ALIGN(md_size_sect, 8);
752
753                 /* plus the "drbd meta data super block",
754                  * and the activity log; */
755                 md_size_sect += MD_BM_OFFSET;
756
757                 bdev->md.md_size_sect = md_size_sect;
758                 /* bitmap offset is adjusted by 'super' block size */
759                 bdev->md.bm_offset   = -md_size_sect + MD_AL_OFFSET;
760                 break;
761         }
762         rcu_read_unlock();
763 }
764
765 /* input size is expected to be in KB */
766 char *ppsize(char *buf, unsigned long long size)
767 {
768         /* Needs 9 bytes at max including trailing NUL:
769          * -1ULL ==> "16384 EB" */
770         static char units[] = { 'K', 'M', 'G', 'T', 'P', 'E' };
771         int base = 0;
772         while (size >= 10000 && base < sizeof(units)-1) {
773                 /* shift + round */
774                 size = (size >> 10) + !!(size & (1<<9));
775                 base++;
776         }
777         sprintf(buf, "%u %cB", (unsigned)size, units[base]);
778
779         return buf;
780 }
781
782 /* there is still a theoretical deadlock when called from receiver
783  * on an D_INCONSISTENT R_PRIMARY:
784  *  remote READ does inc_ap_bio, receiver would need to receive answer
785  *  packet from remote to dec_ap_bio again.
786  *  receiver receive_sizes(), comes here,
787  *  waits for ap_bio_cnt == 0. -> deadlock.
788  * but this cannot happen, actually, because:
789  *  R_PRIMARY D_INCONSISTENT, and peer's disk is unreachable
790  *  (not connected, or bad/no disk on peer):
791  *  see drbd_fail_request_early, ap_bio_cnt is zero.
792  *  R_PRIMARY D_INCONSISTENT, and C_SYNC_TARGET:
793  *  peer may not initiate a resize.
794  */
795 /* Note these are not to be confused with
796  * drbd_adm_suspend_io/drbd_adm_resume_io,
797  * which are (sub) state changes triggered by admin (drbdsetup),
798  * and can be long lived.
799  * This changes an mdev->flag, is triggered by drbd internals,
800  * and should be short-lived. */
801 void drbd_suspend_io(struct drbd_conf *mdev)
802 {
803         set_bit(SUSPEND_IO, &mdev->flags);
804         if (drbd_suspended(mdev))
805                 return;
806         wait_event(mdev->misc_wait, !atomic_read(&mdev->ap_bio_cnt));
807 }
808
809 void drbd_resume_io(struct drbd_conf *mdev)
810 {
811         clear_bit(SUSPEND_IO, &mdev->flags);
812         wake_up(&mdev->misc_wait);
813 }
814
815 /**
816  * drbd_determine_dev_size() -  Sets the right device size obeying all constraints
817  * @mdev:       DRBD device.
818  *
819  * Returns 0 on success, negative return values indicate errors.
820  * You should call drbd_md_sync() after calling this function.
821  */
822 enum determine_dev_size drbd_determine_dev_size(struct drbd_conf *mdev, enum dds_flags flags) __must_hold(local)
823 {
824         sector_t prev_first_sect, prev_size; /* previous meta location */
825         sector_t la_size, u_size;
826         sector_t size;
827         char ppb[10];
828
829         int md_moved, la_size_changed;
830         enum determine_dev_size rv = unchanged;
831
832         /* race:
833          * application request passes inc_ap_bio,
834          * but then cannot get an AL-reference.
835          * this function later may wait on ap_bio_cnt == 0. -> deadlock.
836          *
837          * to avoid that:
838          * Suspend IO right here.
839          * still lock the act_log to not trigger ASSERTs there.
840          */
841         drbd_suspend_io(mdev);
842
843         /* no wait necessary anymore, actually we could assert that */
844         wait_event(mdev->al_wait, lc_try_lock(mdev->act_log));
845
846         prev_first_sect = drbd_md_first_sector(mdev->ldev);
847         prev_size = mdev->ldev->md.md_size_sect;
848         la_size = mdev->ldev->md.la_size_sect;
849
850         /* TODO: should only be some assert here, not (re)init... */
851         drbd_md_set_sector_offsets(mdev, mdev->ldev);
852
853         rcu_read_lock();
854         u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
855         rcu_read_unlock();
856         size = drbd_new_dev_size(mdev, mdev->ldev, u_size, flags & DDSF_FORCED);
857
858         if (drbd_get_capacity(mdev->this_bdev) != size ||
859             drbd_bm_capacity(mdev) != size) {
860                 int err;
861                 err = drbd_bm_resize(mdev, size, !(flags & DDSF_NO_RESYNC));
862                 if (unlikely(err)) {
863                         /* currently there is only one error: ENOMEM! */
864                         size = drbd_bm_capacity(mdev)>>1;
865                         if (size == 0) {
866                                 dev_err(DEV, "OUT OF MEMORY! "
867                                     "Could not allocate bitmap!\n");
868                         } else {
869                                 dev_err(DEV, "BM resizing failed. "
870                                     "Leaving size unchanged at size = %lu KB\n",
871                                     (unsigned long)size);
872                         }
873                         rv = dev_size_error;
874                 }
875                 /* racy, see comments above. */
876                 drbd_set_my_capacity(mdev, size);
877                 mdev->ldev->md.la_size_sect = size;
878                 dev_info(DEV, "size = %s (%llu KB)\n", ppsize(ppb, size>>1),
879                      (unsigned long long)size>>1);
880         }
881         if (rv == dev_size_error)
882                 goto out;
883
884         la_size_changed = (la_size != mdev->ldev->md.la_size_sect);
885
886         md_moved = prev_first_sect != drbd_md_first_sector(mdev->ldev)
887                 || prev_size       != mdev->ldev->md.md_size_sect;
888
889         if (la_size_changed || md_moved) {
890                 int err;
891
892                 drbd_al_shrink(mdev); /* All extents inactive. */
893                 dev_info(DEV, "Writing the whole bitmap, %s\n",
894                          la_size_changed && md_moved ? "size changed and md moved" :
895                          la_size_changed ? "size changed" : "md moved");
896                 /* next line implicitly does drbd_suspend_io()+drbd_resume_io() */
897                 err = drbd_bitmap_io(mdev, &drbd_bm_write,
898                                 "size changed", BM_LOCKED_MASK);
899                 if (err) {
900                         rv = dev_size_error;
901                         goto out;
902                 }
903                 drbd_md_mark_dirty(mdev);
904         }
905
906         if (size > la_size)
907                 rv = grew;
908         if (size < la_size)
909                 rv = shrunk;
910 out:
911         lc_unlock(mdev->act_log);
912         wake_up(&mdev->al_wait);
913         drbd_resume_io(mdev);
914
915         return rv;
916 }
917
918 sector_t
919 drbd_new_dev_size(struct drbd_conf *mdev, struct drbd_backing_dev *bdev,
920                   sector_t u_size, int assume_peer_has_space)
921 {
922         sector_t p_size = mdev->p_size;   /* partner's disk size. */
923         sector_t la_size = bdev->md.la_size_sect; /* last agreed size. */
924         sector_t m_size; /* my size */
925         sector_t size = 0;
926
927         m_size = drbd_get_max_capacity(bdev);
928
929         if (mdev->state.conn < C_CONNECTED && assume_peer_has_space) {
930                 dev_warn(DEV, "Resize while not connected was forced by the user!\n");
931                 p_size = m_size;
932         }
933
934         if (p_size && m_size) {
935                 size = min_t(sector_t, p_size, m_size);
936         } else {
937                 if (la_size) {
938                         size = la_size;
939                         if (m_size && m_size < size)
940                                 size = m_size;
941                         if (p_size && p_size < size)
942                                 size = p_size;
943                 } else {
944                         if (m_size)
945                                 size = m_size;
946                         if (p_size)
947                                 size = p_size;
948                 }
949         }
950
951         if (size == 0)
952                 dev_err(DEV, "Both nodes diskless!\n");
953
954         if (u_size) {
955                 if (u_size > size)
956                         dev_err(DEV, "Requested disk size is too big (%lu > %lu)\n",
957                             (unsigned long)u_size>>1, (unsigned long)size>>1);
958                 else
959                         size = u_size;
960         }
961
962         return size;
963 }
964
965 /**
966  * drbd_check_al_size() - Ensures that the AL is of the right size
967  * @mdev:       DRBD device.
968  *
969  * Returns -EBUSY if current al lru is still used, -ENOMEM when allocation
970  * failed, and 0 on success. You should call drbd_md_sync() after you called
971  * this function.
972  */
973 static int drbd_check_al_size(struct drbd_conf *mdev, struct disk_conf *dc)
974 {
975         struct lru_cache *n, *t;
976         struct lc_element *e;
977         unsigned int in_use;
978         int i;
979
980         if (mdev->act_log &&
981             mdev->act_log->nr_elements == dc->al_extents)
982                 return 0;
983
984         in_use = 0;
985         t = mdev->act_log;
986         n = lc_create("act_log", drbd_al_ext_cache, AL_UPDATES_PER_TRANSACTION,
987                 dc->al_extents, sizeof(struct lc_element), 0);
988
989         if (n == NULL) {
990                 dev_err(DEV, "Cannot allocate act_log lru!\n");
991                 return -ENOMEM;
992         }
993         spin_lock_irq(&mdev->al_lock);
994         if (t) {
995                 for (i = 0; i < t->nr_elements; i++) {
996                         e = lc_element_by_index(t, i);
997                         if (e->refcnt)
998                                 dev_err(DEV, "refcnt(%d)==%d\n",
999                                     e->lc_number, e->refcnt);
1000                         in_use += e->refcnt;
1001                 }
1002         }
1003         if (!in_use)
1004                 mdev->act_log = n;
1005         spin_unlock_irq(&mdev->al_lock);
1006         if (in_use) {
1007                 dev_err(DEV, "Activity log still in use!\n");
1008                 lc_destroy(n);
1009                 return -EBUSY;
1010         } else {
1011                 if (t)
1012                         lc_destroy(t);
1013         }
1014         drbd_md_mark_dirty(mdev); /* we changed mdev->act_log->nr_elemens */
1015         return 0;
1016 }
1017
1018 static void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int max_bio_size)
1019 {
1020         struct request_queue * const q = mdev->rq_queue;
1021         int max_hw_sectors = max_bio_size >> 9;
1022         int max_segments = 0;
1023
1024         if (get_ldev_if_state(mdev, D_ATTACHING)) {
1025                 struct request_queue * const b = mdev->ldev->backing_bdev->bd_disk->queue;
1026
1027                 max_hw_sectors = min(queue_max_hw_sectors(b), max_bio_size >> 9);
1028                 rcu_read_lock();
1029                 max_segments = rcu_dereference(mdev->ldev->disk_conf)->max_bio_bvecs;
1030                 rcu_read_unlock();
1031                 put_ldev(mdev);
1032         }
1033
1034         blk_queue_logical_block_size(q, 512);
1035         blk_queue_max_hw_sectors(q, max_hw_sectors);
1036         /* This is the workaround for "bio would need to, but cannot, be split" */
1037         blk_queue_max_segments(q, max_segments ? max_segments : BLK_MAX_SEGMENTS);
1038         blk_queue_segment_boundary(q, PAGE_CACHE_SIZE-1);
1039
1040         if (get_ldev_if_state(mdev, D_ATTACHING)) {
1041                 struct request_queue * const b = mdev->ldev->backing_bdev->bd_disk->queue;
1042
1043                 blk_queue_stack_limits(q, b);
1044
1045                 if (q->backing_dev_info.ra_pages != b->backing_dev_info.ra_pages) {
1046                         dev_info(DEV, "Adjusting my ra_pages to backing device's (%lu -> %lu)\n",
1047                                  q->backing_dev_info.ra_pages,
1048                                  b->backing_dev_info.ra_pages);
1049                         q->backing_dev_info.ra_pages = b->backing_dev_info.ra_pages;
1050                 }
1051                 put_ldev(mdev);
1052         }
1053 }
1054
1055 void drbd_reconsider_max_bio_size(struct drbd_conf *mdev)
1056 {
1057         int now, new, local, peer;
1058
1059         now = queue_max_hw_sectors(mdev->rq_queue) << 9;
1060         local = mdev->local_max_bio_size; /* Eventually last known value, from volatile memory */
1061         peer = mdev->peer_max_bio_size; /* Eventually last known value, from meta data */
1062
1063         if (get_ldev_if_state(mdev, D_ATTACHING)) {
1064                 local = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
1065                 mdev->local_max_bio_size = local;
1066                 put_ldev(mdev);
1067         }
1068
1069         /* We may ignore peer limits if the peer is modern enough.
1070            Because new from 8.3.8 onwards the peer can use multiple
1071            BIOs for a single peer_request */
1072         if (mdev->state.conn >= C_CONNECTED) {
1073                 if (mdev->tconn->agreed_pro_version < 94)
1074                         peer = min_t(int, mdev->peer_max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1075                         /* Correct old drbd (up to 8.3.7) if it believes it can do more than 32KiB */
1076                 else if (mdev->tconn->agreed_pro_version == 94)
1077                         peer = DRBD_MAX_SIZE_H80_PACKET;
1078                 else if (mdev->tconn->agreed_pro_version < 100)
1079                         peer = DRBD_MAX_BIO_SIZE_P95;  /* drbd 8.3.8 onwards, before 8.4.0 */
1080                 else
1081                         peer = DRBD_MAX_BIO_SIZE;
1082         }
1083
1084         new = min_t(int, local, peer);
1085
1086         if (mdev->state.role == R_PRIMARY && new < now)
1087                 dev_err(DEV, "ASSERT FAILED new < now; (%d < %d)\n", new, now);
1088
1089         if (new != now)
1090                 dev_info(DEV, "max BIO size = %u\n", new);
1091
1092         drbd_setup_queue_param(mdev, new);
1093 }
1094
1095 /* Starts the worker thread */
1096 static void conn_reconfig_start(struct drbd_tconn *tconn)
1097 {
1098         drbd_thread_start(&tconn->worker);
1099         conn_flush_workqueue(tconn);
1100 }
1101
1102 /* if still unconfigured, stops worker again. */
1103 static void conn_reconfig_done(struct drbd_tconn *tconn)
1104 {
1105         bool stop_threads;
1106         spin_lock_irq(&tconn->req_lock);
1107         stop_threads = conn_all_vols_unconf(tconn) &&
1108                 tconn->cstate == C_STANDALONE;
1109         spin_unlock_irq(&tconn->req_lock);
1110         if (stop_threads) {
1111                 /* asender is implicitly stopped by receiver
1112                  * in conn_disconnect() */
1113                 drbd_thread_stop(&tconn->receiver);
1114                 drbd_thread_stop(&tconn->worker);
1115         }
1116 }
1117
1118 /* Make sure IO is suspended before calling this function(). */
1119 static void drbd_suspend_al(struct drbd_conf *mdev)
1120 {
1121         int s = 0;
1122
1123         if (!lc_try_lock(mdev->act_log)) {
1124                 dev_warn(DEV, "Failed to lock al in drbd_suspend_al()\n");
1125                 return;
1126         }
1127
1128         drbd_al_shrink(mdev);
1129         spin_lock_irq(&mdev->tconn->req_lock);
1130         if (mdev->state.conn < C_CONNECTED)
1131                 s = !test_and_set_bit(AL_SUSPENDED, &mdev->flags);
1132         spin_unlock_irq(&mdev->tconn->req_lock);
1133         lc_unlock(mdev->act_log);
1134
1135         if (s)
1136                 dev_info(DEV, "Suspended AL updates\n");
1137 }
1138
1139
1140 static bool should_set_defaults(struct genl_info *info)
1141 {
1142         unsigned flags = ((struct drbd_genlmsghdr*)info->userhdr)->flags;
1143         return 0 != (flags & DRBD_GENL_F_SET_DEFAULTS);
1144 }
1145
1146 static void enforce_disk_conf_limits(struct disk_conf *dc)
1147 {
1148         if (dc->al_extents < DRBD_AL_EXTENTS_MIN)
1149                 dc->al_extents = DRBD_AL_EXTENTS_MIN;
1150         if (dc->al_extents > DRBD_AL_EXTENTS_MAX)
1151                 dc->al_extents = DRBD_AL_EXTENTS_MAX;
1152
1153         if (dc->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1154                 dc->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1155 }
1156
1157 int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info)
1158 {
1159         enum drbd_ret_code retcode;
1160         struct drbd_conf *mdev;
1161         struct disk_conf *new_disk_conf, *old_disk_conf;
1162         struct fifo_buffer *old_plan = NULL, *new_plan = NULL;
1163         int err, fifo_size;
1164
1165         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
1166         if (!adm_ctx.reply_skb)
1167                 return retcode;
1168         if (retcode != NO_ERROR)
1169                 goto out;
1170
1171         mdev = adm_ctx.mdev;
1172
1173         /* we also need a disk
1174          * to change the options on */
1175         if (!get_ldev(mdev)) {
1176                 retcode = ERR_NO_DISK;
1177                 goto out;
1178         }
1179
1180         new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
1181         if (!new_disk_conf) {
1182                 retcode = ERR_NOMEM;
1183                 goto fail;
1184         }
1185
1186         mutex_lock(&mdev->tconn->conf_update);
1187         old_disk_conf = mdev->ldev->disk_conf;
1188         *new_disk_conf = *old_disk_conf;
1189         if (should_set_defaults(info))
1190                 set_disk_conf_defaults(new_disk_conf);
1191
1192         err = disk_conf_from_attrs_for_change(new_disk_conf, info);
1193         if (err && err != -ENOMSG) {
1194                 retcode = ERR_MANDATORY_TAG;
1195                 drbd_msg_put_info(from_attrs_err_to_txt(err));
1196         }
1197
1198         if (!expect(new_disk_conf->resync_rate >= 1))
1199                 new_disk_conf->resync_rate = 1;
1200
1201         enforce_disk_conf_limits(new_disk_conf);
1202
1203         fifo_size = (new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ;
1204         if (fifo_size != mdev->rs_plan_s->size) {
1205                 new_plan = fifo_alloc(fifo_size);
1206                 if (!new_plan) {
1207                         dev_err(DEV, "kmalloc of fifo_buffer failed");
1208                         retcode = ERR_NOMEM;
1209                         goto fail_unlock;
1210                 }
1211         }
1212
1213         wait_event(mdev->al_wait, lc_try_lock(mdev->act_log));
1214         drbd_al_shrink(mdev);
1215         err = drbd_check_al_size(mdev, new_disk_conf);
1216         lc_unlock(mdev->act_log);
1217         wake_up(&mdev->al_wait);
1218
1219         if (err) {
1220                 retcode = ERR_NOMEM;
1221                 goto fail_unlock;
1222         }
1223
1224         write_lock_irq(&global_state_lock);
1225         retcode = drbd_resync_after_valid(mdev, new_disk_conf->resync_after);
1226         if (retcode == NO_ERROR) {
1227                 rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
1228                 drbd_resync_after_changed(mdev);
1229         }
1230         write_unlock_irq(&global_state_lock);
1231
1232         if (retcode != NO_ERROR)
1233                 goto fail_unlock;
1234
1235         if (new_plan) {
1236                 old_plan = mdev->rs_plan_s;
1237                 rcu_assign_pointer(mdev->rs_plan_s, new_plan);
1238         }
1239
1240         mutex_unlock(&mdev->tconn->conf_update);
1241
1242         if (new_disk_conf->al_updates)
1243                 mdev->ldev->md.flags &= MDF_AL_DISABLED;
1244         else
1245                 mdev->ldev->md.flags |= MDF_AL_DISABLED;
1246
1247         drbd_bump_write_ordering(mdev->tconn, WO_bdev_flush);
1248
1249         drbd_md_sync(mdev);
1250
1251         if (mdev->state.conn >= C_CONNECTED)
1252                 drbd_send_sync_param(mdev);
1253
1254         synchronize_rcu();
1255         kfree(old_disk_conf);
1256         kfree(old_plan);
1257         mod_timer(&mdev->request_timer, jiffies + HZ);
1258         goto success;
1259
1260 fail_unlock:
1261         mutex_unlock(&mdev->tconn->conf_update);
1262  fail:
1263         kfree(new_disk_conf);
1264         kfree(new_plan);
1265 success:
1266         put_ldev(mdev);
1267  out:
1268         drbd_adm_finish(info, retcode);
1269         return 0;
1270 }
1271
1272 int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
1273 {
1274         struct drbd_conf *mdev;
1275         int err;
1276         enum drbd_ret_code retcode;
1277         enum determine_dev_size dd;
1278         sector_t max_possible_sectors;
1279         sector_t min_md_device_sectors;
1280         struct drbd_backing_dev *nbc = NULL; /* new_backing_conf */
1281         struct disk_conf *new_disk_conf = NULL;
1282         struct block_device *bdev;
1283         struct lru_cache *resync_lru = NULL;
1284         struct fifo_buffer *new_plan = NULL;
1285         union drbd_state ns, os;
1286         enum drbd_state_rv rv;
1287         struct net_conf *nc;
1288
1289         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
1290         if (!adm_ctx.reply_skb)
1291                 return retcode;
1292         if (retcode != NO_ERROR)
1293                 goto finish;
1294
1295         mdev = adm_ctx.mdev;
1296         conn_reconfig_start(mdev->tconn);
1297
1298         /* if you want to reconfigure, please tear down first */
1299         if (mdev->state.disk > D_DISKLESS) {
1300                 retcode = ERR_DISK_CONFIGURED;
1301                 goto fail;
1302         }
1303         /* It may just now have detached because of IO error.  Make sure
1304          * drbd_ldev_destroy is done already, we may end up here very fast,
1305          * e.g. if someone calls attach from the on-io-error handler,
1306          * to realize a "hot spare" feature (not that I'd recommend that) */
1307         wait_event(mdev->misc_wait, !atomic_read(&mdev->local_cnt));
1308
1309         /* make sure there is no leftover from previous force-detach attempts */
1310         clear_bit(FORCE_DETACH, &mdev->flags);
1311
1312         /* allocation not in the IO path, drbdsetup context */
1313         nbc = kzalloc(sizeof(struct drbd_backing_dev), GFP_KERNEL);
1314         if (!nbc) {
1315                 retcode = ERR_NOMEM;
1316                 goto fail;
1317         }
1318         new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
1319         if (!new_disk_conf) {
1320                 retcode = ERR_NOMEM;
1321                 goto fail;
1322         }
1323         nbc->disk_conf = new_disk_conf;
1324
1325         set_disk_conf_defaults(new_disk_conf);
1326         err = disk_conf_from_attrs(new_disk_conf, info);
1327         if (err) {
1328                 retcode = ERR_MANDATORY_TAG;
1329                 drbd_msg_put_info(from_attrs_err_to_txt(err));
1330                 goto fail;
1331         }
1332
1333         enforce_disk_conf_limits(new_disk_conf);
1334
1335         new_plan = fifo_alloc((new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ);
1336         if (!new_plan) {
1337                 retcode = ERR_NOMEM;
1338                 goto fail;
1339         }
1340
1341         if (new_disk_conf->meta_dev_idx < DRBD_MD_INDEX_FLEX_INT) {
1342                 retcode = ERR_MD_IDX_INVALID;
1343                 goto fail;
1344         }
1345
1346         rcu_read_lock();
1347         nc = rcu_dereference(mdev->tconn->net_conf);
1348         if (nc) {
1349                 if (new_disk_conf->fencing == FP_STONITH && nc->wire_protocol == DRBD_PROT_A) {
1350                         rcu_read_unlock();
1351                         retcode = ERR_STONITH_AND_PROT_A;
1352                         goto fail;
1353                 }
1354         }
1355         rcu_read_unlock();
1356
1357         bdev = blkdev_get_by_path(new_disk_conf->backing_dev,
1358                                   FMODE_READ | FMODE_WRITE | FMODE_EXCL, mdev);
1359         if (IS_ERR(bdev)) {
1360                 dev_err(DEV, "open(\"%s\") failed with %ld\n", new_disk_conf->backing_dev,
1361                         PTR_ERR(bdev));
1362                 retcode = ERR_OPEN_DISK;
1363                 goto fail;
1364         }
1365         nbc->backing_bdev = bdev;
1366
1367         /*
1368          * meta_dev_idx >= 0: external fixed size, possibly multiple
1369          * drbd sharing one meta device.  TODO in that case, paranoia
1370          * check that [md_bdev, meta_dev_idx] is not yet used by some
1371          * other drbd minor!  (if you use drbd.conf + drbdadm, that
1372          * should check it for you already; but if you don't, or
1373          * someone fooled it, we need to double check here)
1374          */
1375         bdev = blkdev_get_by_path(new_disk_conf->meta_dev,
1376                                   FMODE_READ | FMODE_WRITE | FMODE_EXCL,
1377                                   (new_disk_conf->meta_dev_idx < 0) ?
1378                                   (void *)mdev : (void *)drbd_m_holder);
1379         if (IS_ERR(bdev)) {
1380                 dev_err(DEV, "open(\"%s\") failed with %ld\n", new_disk_conf->meta_dev,
1381                         PTR_ERR(bdev));
1382                 retcode = ERR_OPEN_MD_DISK;
1383                 goto fail;
1384         }
1385         nbc->md_bdev = bdev;
1386
1387         if ((nbc->backing_bdev == nbc->md_bdev) !=
1388             (new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
1389              new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)) {
1390                 retcode = ERR_MD_IDX_INVALID;
1391                 goto fail;
1392         }
1393
1394         resync_lru = lc_create("resync", drbd_bm_ext_cache,
1395                         1, 61, sizeof(struct bm_extent),
1396                         offsetof(struct bm_extent, lce));
1397         if (!resync_lru) {
1398                 retcode = ERR_NOMEM;
1399                 goto fail;
1400         }
1401
1402         /* RT - for drbd_get_max_capacity() DRBD_MD_INDEX_FLEX_INT */
1403         drbd_md_set_sector_offsets(mdev, nbc);
1404
1405         if (drbd_get_max_capacity(nbc) < new_disk_conf->disk_size) {
1406                 dev_err(DEV, "max capacity %llu smaller than disk size %llu\n",
1407                         (unsigned long long) drbd_get_max_capacity(nbc),
1408                         (unsigned long long) new_disk_conf->disk_size);
1409                 retcode = ERR_DISK_TOO_SMALL;
1410                 goto fail;
1411         }
1412
1413         if (new_disk_conf->meta_dev_idx < 0) {
1414                 max_possible_sectors = DRBD_MAX_SECTORS_FLEX;
1415                 /* at least one MB, otherwise it does not make sense */
1416                 min_md_device_sectors = (2<<10);
1417         } else {
1418                 max_possible_sectors = DRBD_MAX_SECTORS;
1419                 min_md_device_sectors = MD_RESERVED_SECT * (new_disk_conf->meta_dev_idx + 1);
1420         }
1421
1422         if (drbd_get_capacity(nbc->md_bdev) < min_md_device_sectors) {
1423                 retcode = ERR_MD_DISK_TOO_SMALL;
1424                 dev_warn(DEV, "refusing attach: md-device too small, "
1425                      "at least %llu sectors needed for this meta-disk type\n",
1426                      (unsigned long long) min_md_device_sectors);
1427                 goto fail;
1428         }
1429
1430         /* Make sure the new disk is big enough
1431          * (we may currently be R_PRIMARY with no local disk...) */
1432         if (drbd_get_max_capacity(nbc) <
1433             drbd_get_capacity(mdev->this_bdev)) {
1434                 retcode = ERR_DISK_TOO_SMALL;
1435                 goto fail;
1436         }
1437
1438         nbc->known_size = drbd_get_capacity(nbc->backing_bdev);
1439
1440         if (nbc->known_size > max_possible_sectors) {
1441                 dev_warn(DEV, "==> truncating very big lower level device "
1442                         "to currently maximum possible %llu sectors <==\n",
1443                         (unsigned long long) max_possible_sectors);
1444                 if (new_disk_conf->meta_dev_idx >= 0)
1445                         dev_warn(DEV, "==>> using internal or flexible "
1446                                       "meta data may help <<==\n");
1447         }
1448
1449         drbd_suspend_io(mdev);
1450         /* also wait for the last barrier ack. */
1451         /* FIXME see also https://daiquiri.linbit/cgi-bin/bugzilla/show_bug.cgi?id=171
1452          * We need a way to either ignore barrier acks for barriers sent before a device
1453          * was attached, or a way to wait for all pending barrier acks to come in.
1454          * As barriers are counted per resource,
1455          * we'd need to suspend io on all devices of a resource.
1456          */
1457         wait_event(mdev->misc_wait, !atomic_read(&mdev->ap_pending_cnt) || drbd_suspended(mdev));
1458         /* and for any other previously queued work */
1459         drbd_flush_workqueue(mdev);
1460
1461         rv = _drbd_request_state(mdev, NS(disk, D_ATTACHING), CS_VERBOSE);
1462         retcode = rv;  /* FIXME: Type mismatch. */
1463         drbd_resume_io(mdev);
1464         if (rv < SS_SUCCESS)
1465                 goto fail;
1466
1467         if (!get_ldev_if_state(mdev, D_ATTACHING))
1468                 goto force_diskless;
1469
1470         drbd_md_set_sector_offsets(mdev, nbc);
1471
1472         if (!mdev->bitmap) {
1473                 if (drbd_bm_init(mdev)) {
1474                         retcode = ERR_NOMEM;
1475                         goto force_diskless_dec;
1476                 }
1477         }
1478
1479         retcode = drbd_md_read(mdev, nbc);
1480         if (retcode != NO_ERROR)
1481                 goto force_diskless_dec;
1482
1483         if (mdev->state.conn < C_CONNECTED &&
1484             mdev->state.role == R_PRIMARY &&
1485             (mdev->ed_uuid & ~((u64)1)) != (nbc->md.uuid[UI_CURRENT] & ~((u64)1))) {
1486                 dev_err(DEV, "Can only attach to data with current UUID=%016llX\n",
1487                     (unsigned long long)mdev->ed_uuid);
1488                 retcode = ERR_DATA_NOT_CURRENT;
1489                 goto force_diskless_dec;
1490         }
1491
1492         /* Since we are diskless, fix the activity log first... */
1493         if (drbd_check_al_size(mdev, new_disk_conf)) {
1494                 retcode = ERR_NOMEM;
1495                 goto force_diskless_dec;
1496         }
1497
1498         /* Prevent shrinking of consistent devices ! */
1499         if (drbd_md_test_flag(nbc, MDF_CONSISTENT) &&
1500             drbd_new_dev_size(mdev, nbc, nbc->disk_conf->disk_size, 0) < nbc->md.la_size_sect) {
1501                 dev_warn(DEV, "refusing to truncate a consistent device\n");
1502                 retcode = ERR_DISK_TOO_SMALL;
1503                 goto force_diskless_dec;
1504         }
1505
1506         /* Reset the "barriers don't work" bits here, then force meta data to
1507          * be written, to ensure we determine if barriers are supported. */
1508         if (new_disk_conf->md_flushes)
1509                 clear_bit(MD_NO_FUA, &mdev->flags);
1510         else
1511                 set_bit(MD_NO_FUA, &mdev->flags);
1512
1513         /* Point of no return reached.
1514          * Devices and memory are no longer released by error cleanup below.
1515          * now mdev takes over responsibility, and the state engine should
1516          * clean it up somewhere.  */
1517         D_ASSERT(mdev->ldev == NULL);
1518         mdev->ldev = nbc;
1519         mdev->resync = resync_lru;
1520         mdev->rs_plan_s = new_plan;
1521         nbc = NULL;
1522         resync_lru = NULL;
1523         new_disk_conf = NULL;
1524         new_plan = NULL;
1525
1526         drbd_bump_write_ordering(mdev->tconn, WO_bdev_flush);
1527
1528         if (drbd_md_test_flag(mdev->ldev, MDF_CRASHED_PRIMARY))
1529                 set_bit(CRASHED_PRIMARY, &mdev->flags);
1530         else
1531                 clear_bit(CRASHED_PRIMARY, &mdev->flags);
1532
1533         if (drbd_md_test_flag(mdev->ldev, MDF_PRIMARY_IND) &&
1534             !(mdev->state.role == R_PRIMARY && mdev->tconn->susp_nod))
1535                 set_bit(CRASHED_PRIMARY, &mdev->flags);
1536
1537         mdev->send_cnt = 0;
1538         mdev->recv_cnt = 0;
1539         mdev->read_cnt = 0;
1540         mdev->writ_cnt = 0;
1541
1542         drbd_reconsider_max_bio_size(mdev);
1543
1544         /* If I am currently not R_PRIMARY,
1545          * but meta data primary indicator is set,
1546          * I just now recover from a hard crash,
1547          * and have been R_PRIMARY before that crash.
1548          *
1549          * Now, if I had no connection before that crash
1550          * (have been degraded R_PRIMARY), chances are that
1551          * I won't find my peer now either.
1552          *
1553          * In that case, and _only_ in that case,
1554          * we use the degr-wfc-timeout instead of the default,
1555          * so we can automatically recover from a crash of a
1556          * degraded but active "cluster" after a certain timeout.
1557          */
1558         clear_bit(USE_DEGR_WFC_T, &mdev->flags);
1559         if (mdev->state.role != R_PRIMARY &&
1560              drbd_md_test_flag(mdev->ldev, MDF_PRIMARY_IND) &&
1561             !drbd_md_test_flag(mdev->ldev, MDF_CONNECTED_IND))
1562                 set_bit(USE_DEGR_WFC_T, &mdev->flags);
1563
1564         dd = drbd_determine_dev_size(mdev, 0);
1565         if (dd == dev_size_error) {
1566                 retcode = ERR_NOMEM_BITMAP;
1567                 goto force_diskless_dec;
1568         } else if (dd == grew)
1569                 set_bit(RESYNC_AFTER_NEG, &mdev->flags);
1570
1571         if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC) ||
1572             (test_bit(CRASHED_PRIMARY, &mdev->flags) &&
1573              drbd_md_test_flag(mdev->ldev, MDF_AL_DISABLED))) {
1574                 dev_info(DEV, "Assuming that all blocks are out of sync "
1575                      "(aka FullSync)\n");
1576                 if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write,
1577                         "set_n_write from attaching", BM_LOCKED_MASK)) {
1578                         retcode = ERR_IO_MD_DISK;
1579                         goto force_diskless_dec;
1580                 }
1581         } else {
1582                 if (drbd_bitmap_io(mdev, &drbd_bm_read,
1583                         "read from attaching", BM_LOCKED_MASK)) {
1584                         retcode = ERR_IO_MD_DISK;
1585                         goto force_diskless_dec;
1586                 }
1587         }
1588
1589         if (_drbd_bm_total_weight(mdev) == drbd_bm_bits(mdev))
1590                 drbd_suspend_al(mdev); /* IO is still suspended here... */
1591
1592         spin_lock_irq(&mdev->tconn->req_lock);
1593         os = drbd_read_state(mdev);
1594         ns = os;
1595         /* If MDF_CONSISTENT is not set go into inconsistent state,
1596            otherwise investigate MDF_WasUpToDate...
1597            If MDF_WAS_UP_TO_DATE is not set go into D_OUTDATED disk state,
1598            otherwise into D_CONSISTENT state.
1599         */
1600         if (drbd_md_test_flag(mdev->ldev, MDF_CONSISTENT)) {
1601                 if (drbd_md_test_flag(mdev->ldev, MDF_WAS_UP_TO_DATE))
1602                         ns.disk = D_CONSISTENT;
1603                 else
1604                         ns.disk = D_OUTDATED;
1605         } else {
1606                 ns.disk = D_INCONSISTENT;
1607         }
1608
1609         if (drbd_md_test_flag(mdev->ldev, MDF_PEER_OUT_DATED))
1610                 ns.pdsk = D_OUTDATED;
1611
1612         rcu_read_lock();
1613         if (ns.disk == D_CONSISTENT &&
1614             (ns.pdsk == D_OUTDATED || rcu_dereference(mdev->ldev->disk_conf)->fencing == FP_DONT_CARE))
1615                 ns.disk = D_UP_TO_DATE;
1616
1617         /* All tests on MDF_PRIMARY_IND, MDF_CONNECTED_IND,
1618            MDF_CONSISTENT and MDF_WAS_UP_TO_DATE must happen before
1619            this point, because drbd_request_state() modifies these
1620            flags. */
1621
1622         if (rcu_dereference(mdev->ldev->disk_conf)->al_updates)
1623                 mdev->ldev->md.flags &= MDF_AL_DISABLED;
1624         else
1625                 mdev->ldev->md.flags |= MDF_AL_DISABLED;
1626
1627         rcu_read_unlock();
1628
1629         /* In case we are C_CONNECTED postpone any decision on the new disk
1630            state after the negotiation phase. */
1631         if (mdev->state.conn == C_CONNECTED) {
1632                 mdev->new_state_tmp.i = ns.i;
1633                 ns.i = os.i;
1634                 ns.disk = D_NEGOTIATING;
1635
1636                 /* We expect to receive up-to-date UUIDs soon.
1637                    To avoid a race in receive_state, free p_uuid while
1638                    holding req_lock. I.e. atomic with the state change */
1639                 kfree(mdev->p_uuid);
1640                 mdev->p_uuid = NULL;
1641         }
1642
1643         rv = _drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
1644         spin_unlock_irq(&mdev->tconn->req_lock);
1645
1646         if (rv < SS_SUCCESS)
1647                 goto force_diskless_dec;
1648
1649         mod_timer(&mdev->request_timer, jiffies + HZ);
1650
1651         if (mdev->state.role == R_PRIMARY)
1652                 mdev->ldev->md.uuid[UI_CURRENT] |=  (u64)1;
1653         else
1654                 mdev->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
1655
1656         drbd_md_mark_dirty(mdev);
1657         drbd_md_sync(mdev);
1658
1659         kobject_uevent(&disk_to_dev(mdev->vdisk)->kobj, KOBJ_CHANGE);
1660         put_ldev(mdev);
1661         conn_reconfig_done(mdev->tconn);
1662         drbd_adm_finish(info, retcode);
1663         return 0;
1664
1665  force_diskless_dec:
1666         put_ldev(mdev);
1667  force_diskless:
1668         drbd_force_state(mdev, NS(disk, D_DISKLESS));
1669         drbd_md_sync(mdev);
1670  fail:
1671         conn_reconfig_done(mdev->tconn);
1672         if (nbc) {
1673                 if (nbc->backing_bdev)
1674                         blkdev_put(nbc->backing_bdev,
1675                                    FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1676                 if (nbc->md_bdev)
1677                         blkdev_put(nbc->md_bdev,
1678                                    FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1679                 kfree(nbc);
1680         }
1681         kfree(new_disk_conf);
1682         lc_destroy(resync_lru);
1683         kfree(new_plan);
1684
1685  finish:
1686         drbd_adm_finish(info, retcode);
1687         return 0;
1688 }
1689
1690 static int adm_detach(struct drbd_conf *mdev, int force)
1691 {
1692         enum drbd_state_rv retcode;
1693         int ret;
1694
1695         if (force) {
1696                 set_bit(FORCE_DETACH, &mdev->flags);
1697                 drbd_force_state(mdev, NS(disk, D_FAILED));
1698                 retcode = SS_SUCCESS;
1699                 goto out;
1700         }
1701
1702         drbd_suspend_io(mdev); /* so no-one is stuck in drbd_al_begin_io */
1703         drbd_md_get_buffer(mdev); /* make sure there is no in-flight meta-data IO */
1704         retcode = drbd_request_state(mdev, NS(disk, D_FAILED));
1705         drbd_md_put_buffer(mdev);
1706         /* D_FAILED will transition to DISKLESS. */
1707         ret = wait_event_interruptible(mdev->misc_wait,
1708                         mdev->state.disk != D_FAILED);
1709         drbd_resume_io(mdev);
1710         if ((int)retcode == (int)SS_IS_DISKLESS)
1711                 retcode = SS_NOTHING_TO_DO;
1712         if (ret)
1713                 retcode = ERR_INTR;
1714 out:
1715         return retcode;
1716 }
1717
1718 /* Detaching the disk is a process in multiple stages.  First we need to lock
1719  * out application IO, in-flight IO, IO stuck in drbd_al_begin_io.
1720  * Then we transition to D_DISKLESS, and wait for put_ldev() to return all
1721  * internal references as well.
1722  * Only then we have finally detached. */
1723 int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info)
1724 {
1725         enum drbd_ret_code retcode;
1726         struct detach_parms parms = { };
1727         int err;
1728
1729         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
1730         if (!adm_ctx.reply_skb)
1731                 return retcode;
1732         if (retcode != NO_ERROR)
1733                 goto out;
1734
1735         if (info->attrs[DRBD_NLA_DETACH_PARMS]) {
1736                 err = detach_parms_from_attrs(&parms, info);
1737                 if (err) {
1738                         retcode = ERR_MANDATORY_TAG;
1739                         drbd_msg_put_info(from_attrs_err_to_txt(err));
1740                         goto out;
1741                 }
1742         }
1743
1744         retcode = adm_detach(adm_ctx.mdev, parms.force_detach);
1745 out:
1746         drbd_adm_finish(info, retcode);
1747         return 0;
1748 }
1749
1750 static bool conn_resync_running(struct drbd_tconn *tconn)
1751 {
1752         struct drbd_conf *mdev;
1753         bool rv = false;
1754         int vnr;
1755
1756         rcu_read_lock();
1757         idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1758                 if (mdev->state.conn == C_SYNC_SOURCE ||
1759                     mdev->state.conn == C_SYNC_TARGET ||
1760                     mdev->state.conn == C_PAUSED_SYNC_S ||
1761                     mdev->state.conn == C_PAUSED_SYNC_T) {
1762                         rv = true;
1763                         break;
1764                 }
1765         }
1766         rcu_read_unlock();
1767
1768         return rv;
1769 }
1770
1771 static bool conn_ov_running(struct drbd_tconn *tconn)
1772 {
1773         struct drbd_conf *mdev;
1774         bool rv = false;
1775         int vnr;
1776
1777         rcu_read_lock();
1778         idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1779                 if (mdev->state.conn == C_VERIFY_S ||
1780                     mdev->state.conn == C_VERIFY_T) {
1781                         rv = true;
1782                         break;
1783                 }
1784         }
1785         rcu_read_unlock();
1786
1787         return rv;
1788 }
1789
1790 static enum drbd_ret_code
1791 _check_net_options(struct drbd_tconn *tconn, struct net_conf *old_conf, struct net_conf *new_conf)
1792 {
1793         struct drbd_conf *mdev;
1794         int i;
1795
1796         if (old_conf && tconn->cstate == C_WF_REPORT_PARAMS && tconn->agreed_pro_version < 100) {
1797                 if (new_conf->wire_protocol != old_conf->wire_protocol)
1798                         return ERR_NEED_APV_100;
1799
1800                 if (new_conf->two_primaries != old_conf->two_primaries)
1801                         return ERR_NEED_APV_100;
1802
1803                 if (!new_conf->integrity_alg != !old_conf->integrity_alg)
1804                         return ERR_NEED_APV_100;
1805
1806                 if (strcmp(new_conf->integrity_alg, old_conf->integrity_alg))
1807                         return ERR_NEED_APV_100;
1808         }
1809
1810         if (!new_conf->two_primaries &&
1811             conn_highest_role(tconn) == R_PRIMARY &&
1812             conn_highest_peer(tconn) == R_PRIMARY)
1813                 return ERR_NEED_ALLOW_TWO_PRI;
1814
1815         if (new_conf->two_primaries &&
1816             (new_conf->wire_protocol != DRBD_PROT_C))
1817                 return ERR_NOT_PROTO_C;
1818
1819         idr_for_each_entry(&tconn->volumes, mdev, i) {
1820                 if (get_ldev(mdev)) {
1821                         enum drbd_fencing_p fp = rcu_dereference(mdev->ldev->disk_conf)->fencing;
1822                         put_ldev(mdev);
1823                         if (new_conf->wire_protocol == DRBD_PROT_A && fp == FP_STONITH)
1824                                 return ERR_STONITH_AND_PROT_A;
1825                 }
1826                 if (mdev->state.role == R_PRIMARY && new_conf->discard_my_data)
1827                         return ERR_DISCARD;
1828         }
1829
1830         if (new_conf->on_congestion != OC_BLOCK && new_conf->wire_protocol != DRBD_PROT_A)
1831                 return ERR_CONG_NOT_PROTO_A;
1832
1833         return NO_ERROR;
1834 }
1835
1836 static enum drbd_ret_code
1837 check_net_options(struct drbd_tconn *tconn, struct net_conf *new_conf)
1838 {
1839         static enum drbd_ret_code rv;
1840         struct drbd_conf *mdev;
1841         int i;
1842
1843         rcu_read_lock();
1844         rv = _check_net_options(tconn, rcu_dereference(tconn->net_conf), new_conf);
1845         rcu_read_unlock();
1846
1847         /* tconn->volumes protected by genl_lock() here */
1848         idr_for_each_entry(&tconn->volumes, mdev, i) {
1849                 if (!mdev->bitmap) {
1850                         if(drbd_bm_init(mdev))
1851                                 return ERR_NOMEM;
1852                 }
1853         }
1854
1855         return rv;
1856 }
1857
1858 struct crypto {
1859         struct crypto_hash *verify_tfm;
1860         struct crypto_hash *csums_tfm;
1861         struct crypto_hash *cram_hmac_tfm;
1862         struct crypto_hash *integrity_tfm;
1863 };
1864
1865 static int
1866 alloc_hash(struct crypto_hash **tfm, char *tfm_name, int err_alg)
1867 {
1868         if (!tfm_name[0])
1869                 return NO_ERROR;
1870
1871         *tfm = crypto_alloc_hash(tfm_name, 0, CRYPTO_ALG_ASYNC);
1872         if (IS_ERR(*tfm)) {
1873                 *tfm = NULL;
1874                 return err_alg;
1875         }
1876
1877         return NO_ERROR;
1878 }
1879
1880 static enum drbd_ret_code
1881 alloc_crypto(struct crypto *crypto, struct net_conf *new_conf)
1882 {
1883         char hmac_name[CRYPTO_MAX_ALG_NAME];
1884         enum drbd_ret_code rv;
1885
1886         rv = alloc_hash(&crypto->csums_tfm, new_conf->csums_alg,
1887                        ERR_CSUMS_ALG);
1888         if (rv != NO_ERROR)
1889                 return rv;
1890         rv = alloc_hash(&crypto->verify_tfm, new_conf->verify_alg,
1891                        ERR_VERIFY_ALG);
1892         if (rv != NO_ERROR)
1893                 return rv;
1894         rv = alloc_hash(&crypto->integrity_tfm, new_conf->integrity_alg,
1895                        ERR_INTEGRITY_ALG);
1896         if (rv != NO_ERROR)
1897                 return rv;
1898         if (new_conf->cram_hmac_alg[0] != 0) {
1899                 snprintf(hmac_name, CRYPTO_MAX_ALG_NAME, "hmac(%s)",
1900                          new_conf->cram_hmac_alg);
1901
1902                 rv = alloc_hash(&crypto->cram_hmac_tfm, hmac_name,
1903                                ERR_AUTH_ALG);
1904         }
1905
1906         return rv;
1907 }
1908
1909 static void free_crypto(struct crypto *crypto)
1910 {
1911         crypto_free_hash(crypto->cram_hmac_tfm);
1912         crypto_free_hash(crypto->integrity_tfm);
1913         crypto_free_hash(crypto->csums_tfm);
1914         crypto_free_hash(crypto->verify_tfm);
1915 }
1916
1917 int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info)
1918 {
1919         enum drbd_ret_code retcode;
1920         struct drbd_tconn *tconn;
1921         struct net_conf *old_conf, *new_conf = NULL;
1922         int err;
1923         int ovr; /* online verify running */
1924         int rsr; /* re-sync running */
1925         struct crypto crypto = { };
1926
1927         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_CONNECTION);
1928         if (!adm_ctx.reply_skb)
1929                 return retcode;
1930         if (retcode != NO_ERROR)
1931                 goto out;
1932
1933         tconn = adm_ctx.tconn;
1934
1935         new_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
1936         if (!new_conf) {
1937                 retcode = ERR_NOMEM;
1938                 goto out;
1939         }
1940
1941         conn_reconfig_start(tconn);
1942
1943         mutex_lock(&tconn->data.mutex);
1944         mutex_lock(&tconn->conf_update);
1945         old_conf = tconn->net_conf;
1946
1947         if (!old_conf) {
1948                 drbd_msg_put_info("net conf missing, try connect");
1949                 retcode = ERR_INVALID_REQUEST;
1950                 goto fail;
1951         }
1952
1953         *new_conf = *old_conf;
1954         if (should_set_defaults(info))
1955                 set_net_conf_defaults(new_conf);
1956
1957         err = net_conf_from_attrs_for_change(new_conf, info);
1958         if (err && err != -ENOMSG) {
1959                 retcode = ERR_MANDATORY_TAG;
1960                 drbd_msg_put_info(from_attrs_err_to_txt(err));
1961                 goto fail;
1962         }
1963
1964         retcode = check_net_options(tconn, new_conf);
1965         if (retcode != NO_ERROR)
1966                 goto fail;
1967
1968         /* re-sync running */
1969         rsr = conn_resync_running(tconn);
1970         if (rsr && strcmp(new_conf->csums_alg, old_conf->csums_alg)) {
1971                 retcode = ERR_CSUMS_RESYNC_RUNNING;
1972                 goto fail;
1973         }
1974
1975         /* online verify running */
1976         ovr = conn_ov_running(tconn);
1977         if (ovr && strcmp(new_conf->verify_alg, old_conf->verify_alg)) {
1978                 retcode = ERR_VERIFY_RUNNING;
1979                 goto fail;
1980         }
1981
1982         retcode = alloc_crypto(&crypto, new_conf);
1983         if (retcode != NO_ERROR)
1984                 goto fail;
1985
1986         rcu_assign_pointer(tconn->net_conf, new_conf);
1987
1988         if (!rsr) {
1989                 crypto_free_hash(tconn->csums_tfm);
1990                 tconn->csums_tfm = crypto.csums_tfm;
1991                 crypto.csums_tfm = NULL;
1992         }
1993         if (!ovr) {
1994                 crypto_free_hash(tconn->verify_tfm);
1995                 tconn->verify_tfm = crypto.verify_tfm;
1996                 crypto.verify_tfm = NULL;
1997         }
1998
1999         crypto_free_hash(tconn->integrity_tfm);
2000         tconn->integrity_tfm = crypto.integrity_tfm;
2001         if (tconn->cstate >= C_WF_REPORT_PARAMS && tconn->agreed_pro_version >= 100)
2002                 /* Do this without trying to take tconn->data.mutex again.  */
2003                 __drbd_send_protocol(tconn, P_PROTOCOL_UPDATE);
2004
2005         crypto_free_hash(tconn->cram_hmac_tfm);
2006         tconn->cram_hmac_tfm = crypto.cram_hmac_tfm;
2007
2008         mutex_unlock(&tconn->conf_update);
2009         mutex_unlock(&tconn->data.mutex);
2010         synchronize_rcu();
2011         kfree(old_conf);
2012
2013         if (tconn->cstate >= C_WF_REPORT_PARAMS)
2014                 drbd_send_sync_param(minor_to_mdev(conn_lowest_minor(tconn)));
2015
2016         goto done;
2017
2018  fail:
2019         mutex_unlock(&tconn->conf_update);
2020         mutex_unlock(&tconn->data.mutex);
2021         free_crypto(&crypto);
2022         kfree(new_conf);
2023  done:
2024         conn_reconfig_done(tconn);
2025  out:
2026         drbd_adm_finish(info, retcode);
2027         return 0;
2028 }
2029
2030 int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
2031 {
2032         struct drbd_conf *mdev;
2033         struct net_conf *old_conf, *new_conf = NULL;
2034         struct crypto crypto = { };
2035         struct drbd_tconn *tconn;
2036         enum drbd_ret_code retcode;
2037         int i;
2038         int err;
2039
2040         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
2041
2042         if (!adm_ctx.reply_skb)
2043                 return retcode;
2044         if (retcode != NO_ERROR)
2045                 goto out;
2046         if (!(adm_ctx.my_addr && adm_ctx.peer_addr)) {
2047                 drbd_msg_put_info("connection endpoint(s) missing");
2048                 retcode = ERR_INVALID_REQUEST;
2049                 goto out;
2050         }
2051
2052         /* No need for _rcu here. All reconfiguration is
2053          * strictly serialized on genl_lock(). We are protected against
2054          * concurrent reconfiguration/addition/deletion */
2055         list_for_each_entry(tconn, &drbd_tconns, all_tconn) {
2056                 if (nla_len(adm_ctx.my_addr) == tconn->my_addr_len &&
2057                     !memcmp(nla_data(adm_ctx.my_addr), &tconn->my_addr, tconn->my_addr_len)) {
2058                         retcode = ERR_LOCAL_ADDR;
2059                         goto out;
2060                 }
2061
2062                 if (nla_len(adm_ctx.peer_addr) == tconn->peer_addr_len &&
2063                     !memcmp(nla_data(adm_ctx.peer_addr), &tconn->peer_addr, tconn->peer_addr_len)) {
2064                         retcode = ERR_PEER_ADDR;
2065                         goto out;
2066                 }
2067         }
2068
2069         tconn = adm_ctx.tconn;
2070         conn_reconfig_start(tconn);
2071
2072         if (tconn->cstate > C_STANDALONE) {
2073                 retcode = ERR_NET_CONFIGURED;
2074                 goto fail;
2075         }
2076
2077         /* allocation not in the IO path, drbdsetup / netlink process context */
2078         new_conf = kzalloc(sizeof(*new_conf), GFP_KERNEL);
2079         if (!new_conf) {
2080                 retcode = ERR_NOMEM;
2081                 goto fail;
2082         }
2083
2084         set_net_conf_defaults(new_conf);
2085
2086         err = net_conf_from_attrs(new_conf, info);
2087         if (err && err != -ENOMSG) {
2088                 retcode = ERR_MANDATORY_TAG;
2089                 drbd_msg_put_info(from_attrs_err_to_txt(err));
2090                 goto fail;
2091         }
2092
2093         retcode = check_net_options(tconn, new_conf);
2094         if (retcode != NO_ERROR)
2095                 goto fail;
2096
2097         retcode = alloc_crypto(&crypto, new_conf);
2098         if (retcode != NO_ERROR)
2099                 goto fail;
2100
2101         ((char *)new_conf->shared_secret)[SHARED_SECRET_MAX-1] = 0;
2102
2103         conn_flush_workqueue(tconn);
2104
2105         mutex_lock(&tconn->conf_update);
2106         old_conf = tconn->net_conf;
2107         if (old_conf) {
2108                 retcode = ERR_NET_CONFIGURED;
2109                 mutex_unlock(&tconn->conf_update);
2110                 goto fail;
2111         }
2112         rcu_assign_pointer(tconn->net_conf, new_conf);
2113
2114         conn_free_crypto(tconn);
2115         tconn->cram_hmac_tfm = crypto.cram_hmac_tfm;
2116         tconn->integrity_tfm = crypto.integrity_tfm;
2117         tconn->csums_tfm = crypto.csums_tfm;
2118         tconn->verify_tfm = crypto.verify_tfm;
2119
2120         tconn->my_addr_len = nla_len(adm_ctx.my_addr);
2121         memcpy(&tconn->my_addr, nla_data(adm_ctx.my_addr), tconn->my_addr_len);
2122         tconn->peer_addr_len = nla_len(adm_ctx.peer_addr);
2123         memcpy(&tconn->peer_addr, nla_data(adm_ctx.peer_addr), tconn->peer_addr_len);
2124
2125         mutex_unlock(&tconn->conf_update);
2126
2127         rcu_read_lock();
2128         idr_for_each_entry(&tconn->volumes, mdev, i) {
2129                 mdev->send_cnt = 0;
2130                 mdev->recv_cnt = 0;
2131         }
2132         rcu_read_unlock();
2133
2134         retcode = conn_request_state(tconn, NS(conn, C_UNCONNECTED), CS_VERBOSE);
2135
2136         conn_reconfig_done(tconn);
2137         drbd_adm_finish(info, retcode);
2138         return 0;
2139
2140 fail:
2141         free_crypto(&crypto);
2142         kfree(new_conf);
2143
2144         conn_reconfig_done(tconn);
2145 out:
2146         drbd_adm_finish(info, retcode);
2147         return 0;
2148 }
2149
2150 static enum drbd_state_rv conn_try_disconnect(struct drbd_tconn *tconn, bool force)
2151 {
2152         enum drbd_state_rv rv;
2153
2154         rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING),
2155                         force ? CS_HARD : 0);
2156
2157         switch (rv) {
2158         case SS_NOTHING_TO_DO:
2159                 break;
2160         case SS_ALREADY_STANDALONE:
2161                 return SS_SUCCESS;
2162         case SS_PRIMARY_NOP:
2163                 /* Our state checking code wants to see the peer outdated. */
2164                 rv = conn_request_state(tconn, NS2(conn, C_DISCONNECTING,
2165                                                 pdsk, D_OUTDATED), CS_VERBOSE);
2166                 break;
2167         case SS_CW_FAILED_BY_PEER:
2168                 /* The peer probably wants to see us outdated. */
2169                 rv = conn_request_state(tconn, NS2(conn, C_DISCONNECTING,
2170                                                         disk, D_OUTDATED), 0);
2171                 if (rv == SS_IS_DISKLESS || rv == SS_LOWER_THAN_OUTDATED) {
2172                         rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING),
2173                                         CS_HARD);
2174                 }
2175                 break;
2176         default:;
2177                 /* no special handling necessary */
2178         }
2179
2180         if (rv >= SS_SUCCESS) {
2181                 enum drbd_state_rv rv2;
2182                 /* No one else can reconfigure the network while I am here.
2183                  * The state handling only uses drbd_thread_stop_nowait(),
2184                  * we want to really wait here until the receiver is no more.
2185                  */
2186                 drbd_thread_stop(&adm_ctx.tconn->receiver);
2187
2188                 /* Race breaker.  This additional state change request may be
2189                  * necessary, if this was a forced disconnect during a receiver
2190                  * restart.  We may have "killed" the receiver thread just
2191                  * after drbdd_init() returned.  Typically, we should be
2192                  * C_STANDALONE already, now, and this becomes a no-op.
2193                  */
2194                 rv2 = conn_request_state(tconn, NS(conn, C_STANDALONE),
2195                                 CS_VERBOSE | CS_HARD);
2196                 if (rv2 < SS_SUCCESS)
2197                         conn_err(tconn,
2198                                 "unexpected rv2=%d in conn_try_disconnect()\n",
2199                                 rv2);
2200         }
2201         return rv;
2202 }
2203
2204 int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info)
2205 {
2206         struct disconnect_parms parms;
2207         struct drbd_tconn *tconn;
2208         enum drbd_state_rv rv;
2209         enum drbd_ret_code retcode;
2210         int err;
2211
2212         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_CONNECTION);
2213         if (!adm_ctx.reply_skb)
2214                 return retcode;
2215         if (retcode != NO_ERROR)
2216                 goto fail;
2217
2218         tconn = adm_ctx.tconn;
2219         memset(&parms, 0, sizeof(parms));
2220         if (info->attrs[DRBD_NLA_DISCONNECT_PARMS]) {
2221                 err = disconnect_parms_from_attrs(&parms, info);
2222                 if (err) {
2223                         retcode = ERR_MANDATORY_TAG;
2224                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2225                         goto fail;
2226                 }
2227         }
2228
2229         rv = conn_try_disconnect(tconn, parms.force_disconnect);
2230         if (rv < SS_SUCCESS)
2231                 retcode = rv;  /* FIXME: Type mismatch. */
2232         else
2233                 retcode = NO_ERROR;
2234  fail:
2235         drbd_adm_finish(info, retcode);
2236         return 0;
2237 }
2238
2239 void resync_after_online_grow(struct drbd_conf *mdev)
2240 {
2241         int iass; /* I am sync source */
2242
2243         dev_info(DEV, "Resync of new storage after online grow\n");
2244         if (mdev->state.role != mdev->state.peer)
2245                 iass = (mdev->state.role == R_PRIMARY);
2246         else
2247                 iass = test_bit(DISCARD_CONCURRENT, &mdev->tconn->flags);
2248
2249         if (iass)
2250                 drbd_start_resync(mdev, C_SYNC_SOURCE);
2251         else
2252                 _drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE + CS_SERIALIZE);
2253 }
2254
2255 int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info)
2256 {
2257         struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
2258         struct resize_parms rs;
2259         struct drbd_conf *mdev;
2260         enum drbd_ret_code retcode;
2261         enum determine_dev_size dd;
2262         enum dds_flags ddsf;
2263         sector_t u_size;
2264         int err;
2265
2266         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2267         if (!adm_ctx.reply_skb)
2268                 return retcode;
2269         if (retcode != NO_ERROR)
2270                 goto fail;
2271
2272         memset(&rs, 0, sizeof(struct resize_parms));
2273         if (info->attrs[DRBD_NLA_RESIZE_PARMS]) {
2274                 err = resize_parms_from_attrs(&rs, info);
2275                 if (err) {
2276                         retcode = ERR_MANDATORY_TAG;
2277                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2278                         goto fail;
2279                 }
2280         }
2281
2282         mdev = adm_ctx.mdev;
2283         if (mdev->state.conn > C_CONNECTED) {
2284                 retcode = ERR_RESIZE_RESYNC;
2285                 goto fail;
2286         }
2287
2288         if (mdev->state.role == R_SECONDARY &&
2289             mdev->state.peer == R_SECONDARY) {
2290                 retcode = ERR_NO_PRIMARY;
2291                 goto fail;
2292         }
2293
2294         if (!get_ldev(mdev)) {
2295                 retcode = ERR_NO_DISK;
2296                 goto fail;
2297         }
2298
2299         if (rs.no_resync && mdev->tconn->agreed_pro_version < 93) {
2300                 retcode = ERR_NEED_APV_93;
2301                 goto fail_ldev;
2302         }
2303
2304         rcu_read_lock();
2305         u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
2306         rcu_read_unlock();
2307         if (u_size != (sector_t)rs.resize_size) {
2308                 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
2309                 if (!new_disk_conf) {
2310                         retcode = ERR_NOMEM;
2311                         goto fail_ldev;
2312                 }
2313         }
2314
2315         if (mdev->ldev->known_size != drbd_get_capacity(mdev->ldev->backing_bdev))
2316                 mdev->ldev->known_size = drbd_get_capacity(mdev->ldev->backing_bdev);
2317
2318         if (new_disk_conf) {
2319                 mutex_lock(&mdev->tconn->conf_update);
2320                 old_disk_conf = mdev->ldev->disk_conf;
2321                 *new_disk_conf = *old_disk_conf;
2322                 new_disk_conf->disk_size = (sector_t)rs.resize_size;
2323                 rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
2324                 mutex_unlock(&mdev->tconn->conf_update);
2325                 synchronize_rcu();
2326                 kfree(old_disk_conf);
2327         }
2328
2329         ddsf = (rs.resize_force ? DDSF_FORCED : 0) | (rs.no_resync ? DDSF_NO_RESYNC : 0);
2330         dd = drbd_determine_dev_size(mdev, ddsf);
2331         drbd_md_sync(mdev);
2332         put_ldev(mdev);
2333         if (dd == dev_size_error) {
2334                 retcode = ERR_NOMEM_BITMAP;
2335                 goto fail;
2336         }
2337
2338         if (mdev->state.conn == C_CONNECTED) {
2339                 if (dd == grew)
2340                         set_bit(RESIZE_PENDING, &mdev->flags);
2341
2342                 drbd_send_uuids(mdev);
2343                 drbd_send_sizes(mdev, 1, ddsf);
2344         }
2345
2346  fail:
2347         drbd_adm_finish(info, retcode);
2348         return 0;
2349
2350  fail_ldev:
2351         put_ldev(mdev);
2352         goto fail;
2353 }
2354
2355 int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info)
2356 {
2357         enum drbd_ret_code retcode;
2358         struct drbd_tconn *tconn;
2359         struct res_opts res_opts;
2360         int err;
2361
2362         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
2363         if (!adm_ctx.reply_skb)
2364                 return retcode;
2365         if (retcode != NO_ERROR)
2366                 goto fail;
2367         tconn = adm_ctx.tconn;
2368
2369         res_opts = tconn->res_opts;
2370         if (should_set_defaults(info))
2371                 set_res_opts_defaults(&res_opts);
2372
2373         err = res_opts_from_attrs(&res_opts, info);
2374         if (err && err != -ENOMSG) {
2375                 retcode = ERR_MANDATORY_TAG;
2376                 drbd_msg_put_info(from_attrs_err_to_txt(err));
2377                 goto fail;
2378         }
2379
2380         err = set_resource_options(tconn, &res_opts);
2381         if (err) {
2382                 retcode = ERR_INVALID_REQUEST;
2383                 if (err == -ENOMEM)
2384                         retcode = ERR_NOMEM;
2385         }
2386
2387 fail:
2388         drbd_adm_finish(info, retcode);
2389         return 0;
2390 }
2391
2392 int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info)
2393 {
2394         struct drbd_conf *mdev;
2395         int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2396
2397         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2398         if (!adm_ctx.reply_skb)
2399                 return retcode;
2400         if (retcode != NO_ERROR)
2401                 goto out;
2402
2403         mdev = adm_ctx.mdev;
2404
2405         /* If there is still bitmap IO pending, probably because of a previous
2406          * resync just being finished, wait for it before requesting a new resync. */
2407         drbd_suspend_io(mdev);
2408         wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2409
2410         retcode = _drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T), CS_ORDERED);
2411
2412         if (retcode < SS_SUCCESS && retcode != SS_NEED_CONNECTION)
2413                 retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T));
2414
2415         while (retcode == SS_NEED_CONNECTION) {
2416                 spin_lock_irq(&mdev->tconn->req_lock);
2417                 if (mdev->state.conn < C_CONNECTED)
2418                         retcode = _drbd_set_state(_NS(mdev, disk, D_INCONSISTENT), CS_VERBOSE, NULL);
2419                 spin_unlock_irq(&mdev->tconn->req_lock);
2420
2421                 if (retcode != SS_NEED_CONNECTION)
2422                         break;
2423
2424                 retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T));
2425         }
2426         drbd_resume_io(mdev);
2427
2428 out:
2429         drbd_adm_finish(info, retcode);
2430         return 0;
2431 }
2432
2433 static int drbd_adm_simple_request_state(struct sk_buff *skb, struct genl_info *info,
2434                 union drbd_state mask, union drbd_state val)
2435 {
2436         enum drbd_ret_code retcode;
2437
2438         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2439         if (!adm_ctx.reply_skb)
2440                 return retcode;
2441         if (retcode != NO_ERROR)
2442                 goto out;
2443
2444         retcode = drbd_request_state(adm_ctx.mdev, mask, val);
2445 out:
2446         drbd_adm_finish(info, retcode);
2447         return 0;
2448 }
2449
2450 static int drbd_bmio_set_susp_al(struct drbd_conf *mdev)
2451 {
2452         int rv;
2453
2454         rv = drbd_bmio_set_n_write(mdev);
2455         drbd_suspend_al(mdev);
2456         return rv;
2457 }
2458
2459 int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info)
2460 {
2461         int retcode; /* drbd_ret_code, drbd_state_rv */
2462         struct drbd_conf *mdev;
2463
2464         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2465         if (!adm_ctx.reply_skb)
2466                 return retcode;
2467         if (retcode != NO_ERROR)
2468                 goto out;
2469
2470         mdev = adm_ctx.mdev;
2471
2472         /* If there is still bitmap IO pending, probably because of a previous
2473          * resync just being finished, wait for it before requesting a new resync. */
2474         drbd_suspend_io(mdev);
2475         wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2476
2477         retcode = _drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_S), CS_ORDERED);
2478         if (retcode < SS_SUCCESS) {
2479                 if (retcode == SS_NEED_CONNECTION && mdev->state.role == R_PRIMARY) {
2480                         /* The peer will get a resync upon connect anyways.
2481                          * Just make that into a full resync. */
2482                         retcode = drbd_request_state(mdev, NS(pdsk, D_INCONSISTENT));
2483                         if (retcode >= SS_SUCCESS) {
2484                                 if (drbd_bitmap_io(mdev, &drbd_bmio_set_susp_al,
2485                                                    "set_n_write from invalidate_peer",
2486                                                    BM_LOCKED_SET_ALLOWED))
2487                                         retcode = ERR_IO_MD_DISK;
2488                         }
2489                 } else
2490                         retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_S));
2491         }
2492         drbd_resume_io(mdev);
2493
2494 out:
2495         drbd_adm_finish(info, retcode);
2496         return 0;
2497 }
2498
2499 int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info)
2500 {
2501         enum drbd_ret_code retcode;
2502
2503         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2504         if (!adm_ctx.reply_skb)
2505                 return retcode;
2506         if (retcode != NO_ERROR)
2507                 goto out;
2508
2509         if (drbd_request_state(adm_ctx.mdev, NS(user_isp, 1)) == SS_NOTHING_TO_DO)
2510                 retcode = ERR_PAUSE_IS_SET;
2511 out:
2512         drbd_adm_finish(info, retcode);
2513         return 0;
2514 }
2515
2516 int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info)
2517 {
2518         union drbd_dev_state s;
2519         enum drbd_ret_code retcode;
2520
2521         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2522         if (!adm_ctx.reply_skb)
2523                 return retcode;
2524         if (retcode != NO_ERROR)
2525                 goto out;
2526
2527         if (drbd_request_state(adm_ctx.mdev, NS(user_isp, 0)) == SS_NOTHING_TO_DO) {
2528                 s = adm_ctx.mdev->state;
2529                 if (s.conn == C_PAUSED_SYNC_S || s.conn == C_PAUSED_SYNC_T) {
2530                         retcode = s.aftr_isp ? ERR_PIC_AFTER_DEP :
2531                                   s.peer_isp ? ERR_PIC_PEER_DEP : ERR_PAUSE_IS_CLEAR;
2532                 } else {
2533                         retcode = ERR_PAUSE_IS_CLEAR;
2534                 }
2535         }
2536
2537 out:
2538         drbd_adm_finish(info, retcode);
2539         return 0;
2540 }
2541
2542 int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info)
2543 {
2544         return drbd_adm_simple_request_state(skb, info, NS(susp, 1));
2545 }
2546
2547 int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info)
2548 {
2549         struct drbd_conf *mdev;
2550         int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2551
2552         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2553         if (!adm_ctx.reply_skb)
2554                 return retcode;
2555         if (retcode != NO_ERROR)
2556                 goto out;
2557
2558         mdev = adm_ctx.mdev;
2559         if (test_bit(NEW_CUR_UUID, &mdev->flags)) {
2560                 drbd_uuid_new_current(mdev);
2561                 clear_bit(NEW_CUR_UUID, &mdev->flags);
2562         }
2563         drbd_suspend_io(mdev);
2564         retcode = drbd_request_state(mdev, NS3(susp, 0, susp_nod, 0, susp_fen, 0));
2565         if (retcode == SS_SUCCESS) {
2566                 if (mdev->state.conn < C_CONNECTED)
2567                         tl_clear(mdev->tconn);
2568                 if (mdev->state.disk == D_DISKLESS || mdev->state.disk == D_FAILED)
2569                         tl_restart(mdev->tconn, FAIL_FROZEN_DISK_IO);
2570         }
2571         drbd_resume_io(mdev);
2572
2573 out:
2574         drbd_adm_finish(info, retcode);
2575         return 0;
2576 }
2577
2578 int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info)
2579 {
2580         return drbd_adm_simple_request_state(skb, info, NS(disk, D_OUTDATED));
2581 }
2582
2583 int nla_put_drbd_cfg_context(struct sk_buff *skb, struct drbd_tconn *tconn, unsigned vnr)
2584 {
2585         struct nlattr *nla;
2586         nla = nla_nest_start(skb, DRBD_NLA_CFG_CONTEXT);
2587         if (!nla)
2588                 goto nla_put_failure;
2589         if (vnr != VOLUME_UNSPECIFIED &&
2590             nla_put_u32(skb, T_ctx_volume, vnr))
2591                 goto nla_put_failure;
2592         if (nla_put_string(skb, T_ctx_resource_name, tconn->name))
2593                 goto nla_put_failure;
2594         if (tconn->my_addr_len &&
2595             nla_put(skb, T_ctx_my_addr, tconn->my_addr_len, &tconn->my_addr))
2596                 goto nla_put_failure;
2597         if (tconn->peer_addr_len &&
2598             nla_put(skb, T_ctx_peer_addr, tconn->peer_addr_len, &tconn->peer_addr))
2599                 goto nla_put_failure;
2600         nla_nest_end(skb, nla);
2601         return 0;
2602
2603 nla_put_failure:
2604         if (nla)
2605                 nla_nest_cancel(skb, nla);
2606         return -EMSGSIZE;
2607 }
2608
2609 int nla_put_status_info(struct sk_buff *skb, struct drbd_conf *mdev,
2610                 const struct sib_info *sib)
2611 {
2612         struct state_info *si = NULL; /* for sizeof(si->member); */
2613         struct net_conf *nc;
2614         struct nlattr *nla;
2615         int got_ldev;
2616         int err = 0;
2617         int exclude_sensitive;
2618
2619         /* If sib != NULL, this is drbd_bcast_event, which anyone can listen
2620          * to.  So we better exclude_sensitive information.
2621          *
2622          * If sib == NULL, this is drbd_adm_get_status, executed synchronously
2623          * in the context of the requesting user process. Exclude sensitive
2624          * information, unless current has superuser.
2625          *
2626          * NOTE: for drbd_adm_get_status_all(), this is a netlink dump, and
2627          * relies on the current implementation of netlink_dump(), which
2628          * executes the dump callback successively from netlink_recvmsg(),
2629          * always in the context of the receiving process */
2630         exclude_sensitive = sib || !capable(CAP_SYS_ADMIN);
2631
2632         got_ldev = get_ldev(mdev);
2633
2634         /* We need to add connection name and volume number information still.
2635          * Minor number is in drbd_genlmsghdr. */
2636         if (nla_put_drbd_cfg_context(skb, mdev->tconn, mdev->vnr))
2637                 goto nla_put_failure;
2638
2639         if (res_opts_to_skb(skb, &mdev->tconn->res_opts, exclude_sensitive))
2640                 goto nla_put_failure;
2641
2642         rcu_read_lock();
2643         if (got_ldev)
2644                 if (disk_conf_to_skb(skb, rcu_dereference(mdev->ldev->disk_conf), exclude_sensitive))
2645                         goto nla_put_failure;
2646
2647         nc = rcu_dereference(mdev->tconn->net_conf);
2648         if (nc)
2649                 err = net_conf_to_skb(skb, nc, exclude_sensitive);
2650         rcu_read_unlock();
2651         if (err)
2652                 goto nla_put_failure;
2653
2654         nla = nla_nest_start(skb, DRBD_NLA_STATE_INFO);
2655         if (!nla)
2656                 goto nla_put_failure;
2657         if (nla_put_u32(skb, T_sib_reason, sib ? sib->sib_reason : SIB_GET_STATUS_REPLY) ||
2658             nla_put_u32(skb, T_current_state, mdev->state.i) ||
2659             nla_put_u64(skb, T_ed_uuid, mdev->ed_uuid) ||
2660             nla_put_u64(skb, T_capacity, drbd_get_capacity(mdev->this_bdev)))
2661                 goto nla_put_failure;
2662
2663         if (got_ldev) {
2664                 if (nla_put_u32(skb, T_disk_flags, mdev->ldev->md.flags) ||
2665                     nla_put(skb, T_uuids, sizeof(si->uuids), mdev->ldev->md.uuid) ||
2666                     nla_put_u64(skb, T_bits_total, drbd_bm_bits(mdev)) ||
2667                     nla_put_u64(skb, T_bits_oos, drbd_bm_total_weight(mdev)))
2668                         goto nla_put_failure;
2669                 if (C_SYNC_SOURCE <= mdev->state.conn &&
2670                     C_PAUSED_SYNC_T >= mdev->state.conn) {
2671                         if (nla_put_u64(skb, T_bits_rs_total, mdev->rs_total) ||
2672                             nla_put_u64(skb, T_bits_rs_failed, mdev->rs_failed))
2673                                 goto nla_put_failure;
2674                 }
2675         }
2676
2677         if (sib) {
2678                 switch(sib->sib_reason) {
2679                 case SIB_SYNC_PROGRESS:
2680                 case SIB_GET_STATUS_REPLY:
2681                         break;
2682                 case SIB_STATE_CHANGE:
2683                         if (nla_put_u32(skb, T_prev_state, sib->os.i) ||
2684                             nla_put_u32(skb, T_new_state, sib->ns.i))
2685                                 goto nla_put_failure;
2686                         break;
2687                 case SIB_HELPER_POST:
2688                         if (nla_put_u32(skb, T_helper_exit_code,
2689                                         sib->helper_exit_code))
2690                                 goto nla_put_failure;
2691                         /* fall through */
2692                 case SIB_HELPER_PRE:
2693                         if (nla_put_string(skb, T_helper, sib->helper_name))
2694                                 goto nla_put_failure;
2695                         break;
2696                 }
2697         }
2698         nla_nest_end(skb, nla);
2699
2700         if (0)
2701 nla_put_failure:
2702                 err = -EMSGSIZE;
2703         if (got_ldev)
2704                 put_ldev(mdev);
2705         return err;
2706 }
2707
2708 int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info)
2709 {
2710         enum drbd_ret_code retcode;
2711         int err;
2712
2713         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2714         if (!adm_ctx.reply_skb)
2715                 return retcode;
2716         if (retcode != NO_ERROR)
2717                 goto out;
2718
2719         err = nla_put_status_info(adm_ctx.reply_skb, adm_ctx.mdev, NULL);
2720         if (err) {
2721                 nlmsg_free(adm_ctx.reply_skb);
2722                 return err;
2723         }
2724 out:
2725         drbd_adm_finish(info, retcode);
2726         return 0;
2727 }
2728
2729 int get_one_status(struct sk_buff *skb, struct netlink_callback *cb)
2730 {
2731         struct drbd_conf *mdev;
2732         struct drbd_genlmsghdr *dh;
2733         struct drbd_tconn *pos = (struct drbd_tconn*)cb->args[0];
2734         struct drbd_tconn *tconn = NULL;
2735         struct drbd_tconn *tmp;
2736         unsigned volume = cb->args[1];
2737
2738         /* Open coded, deferred, iteration:
2739          * list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
2740          *      idr_for_each_entry(&tconn->volumes, mdev, i) {
2741          *        ...
2742          *      }
2743          * }
2744          * where tconn is cb->args[0];
2745          * and i is cb->args[1];
2746          *
2747          * cb->args[2] indicates if we shall loop over all resources,
2748          * or just dump all volumes of a single resource.
2749          *
2750          * This may miss entries inserted after this dump started,
2751          * or entries deleted before they are reached.
2752          *
2753          * We need to make sure the mdev won't disappear while
2754          * we are looking at it, and revalidate our iterators
2755          * on each iteration.
2756          */
2757
2758         /* synchronize with conn_create()/conn_destroy() */
2759         rcu_read_lock();
2760         /* revalidate iterator position */
2761         list_for_each_entry_rcu(tmp, &drbd_tconns, all_tconn) {
2762                 if (pos == NULL) {
2763                         /* first iteration */
2764                         pos = tmp;
2765                         tconn = pos;
2766                         break;
2767                 }
2768                 if (tmp == pos) {
2769                         tconn = pos;
2770                         break;
2771                 }
2772         }
2773         if (tconn) {
2774 next_tconn:
2775                 mdev = idr_get_next(&tconn->volumes, &volume);
2776                 if (!mdev) {
2777                         /* No more volumes to dump on this tconn.
2778                          * Advance tconn iterator. */
2779                         pos = list_entry_rcu(tconn->all_tconn.next,
2780                                              struct drbd_tconn, all_tconn);
2781                         /* Did we dump any volume on this tconn yet? */
2782                         if (volume != 0) {
2783                                 /* If we reached the end of the list,
2784                                  * or only a single resource dump was requested,
2785                                  * we are done. */
2786                                 if (&pos->all_tconn == &drbd_tconns || cb->args[2])
2787                                         goto out;
2788                                 volume = 0;
2789                                 tconn = pos;
2790                                 goto next_tconn;
2791                         }
2792                 }
2793
2794                 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).pid,
2795                                 cb->nlh->nlmsg_seq, &drbd_genl_family,
2796                                 NLM_F_MULTI, DRBD_ADM_GET_STATUS);
2797                 if (!dh)
2798                         goto out;
2799
2800                 if (!mdev) {
2801                         /* This is a tconn without a single volume.
2802                          * Suprisingly enough, it may have a network
2803                          * configuration. */
2804                         struct net_conf *nc;
2805                         dh->minor = -1U;
2806                         dh->ret_code = NO_ERROR;
2807                         if (nla_put_drbd_cfg_context(skb, tconn, VOLUME_UNSPECIFIED))
2808                                 goto cancel;
2809                         nc = rcu_dereference(tconn->net_conf);
2810                         if (nc && net_conf_to_skb(skb, nc, 1) != 0)
2811                                 goto cancel;
2812                         goto done;
2813                 }
2814
2815                 D_ASSERT(mdev->vnr == volume);
2816                 D_ASSERT(mdev->tconn == tconn);
2817
2818                 dh->minor = mdev_to_minor(mdev);
2819                 dh->ret_code = NO_ERROR;
2820
2821                 if (nla_put_status_info(skb, mdev, NULL)) {
2822 cancel:
2823                         genlmsg_cancel(skb, dh);
2824                         goto out;
2825                 }
2826 done:
2827                 genlmsg_end(skb, dh);
2828         }
2829
2830 out:
2831         rcu_read_unlock();
2832         /* where to start the next iteration */
2833         cb->args[0] = (long)pos;
2834         cb->args[1] = (pos == tconn) ? volume + 1 : 0;
2835
2836         /* No more tconns/volumes/minors found results in an empty skb.
2837          * Which will terminate the dump. */
2838         return skb->len;
2839 }
2840
2841 /*
2842  * Request status of all resources, or of all volumes within a single resource.
2843  *
2844  * This is a dump, as the answer may not fit in a single reply skb otherwise.
2845  * Which means we cannot use the family->attrbuf or other such members, because
2846  * dump is NOT protected by the genl_lock().  During dump, we only have access
2847  * to the incoming skb, and need to opencode "parsing" of the nlattr payload.
2848  *
2849  * Once things are setup properly, we call into get_one_status().
2850  */
2851 int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb)
2852 {
2853         const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
2854         struct nlattr *nla;
2855         const char *resource_name;
2856         struct drbd_tconn *tconn;
2857         int maxtype;
2858
2859         /* Is this a followup call? */
2860         if (cb->args[0]) {
2861                 /* ... of a single resource dump,
2862                  * and the resource iterator has been advanced already? */
2863                 if (cb->args[2] && cb->args[2] != cb->args[0])
2864                         return 0; /* DONE. */
2865                 goto dump;
2866         }
2867
2868         /* First call (from netlink_dump_start).  We need to figure out
2869          * which resource(s) the user wants us to dump. */
2870         nla = nla_find(nlmsg_attrdata(cb->nlh, hdrlen),
2871                         nlmsg_attrlen(cb->nlh, hdrlen),
2872                         DRBD_NLA_CFG_CONTEXT);
2873
2874         /* No explicit context given.  Dump all. */
2875         if (!nla)
2876                 goto dump;
2877         maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
2878         nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name));
2879         if (IS_ERR(nla))
2880                 return PTR_ERR(nla);
2881         /* context given, but no name present? */
2882         if (!nla)
2883                 return -EINVAL;
2884         resource_name = nla_data(nla);
2885         tconn = conn_get_by_name(resource_name);
2886
2887         if (!tconn)
2888                 return -ENODEV;
2889
2890         kref_put(&tconn->kref, &conn_destroy); /* get_one_status() (re)validates tconn by itself */
2891
2892         /* prime iterators, and set "filter" mode mark:
2893          * only dump this tconn. */
2894         cb->args[0] = (long)tconn;
2895         /* cb->args[1] = 0; passed in this way. */
2896         cb->args[2] = (long)tconn;
2897
2898 dump:
2899         return get_one_status(skb, cb);
2900 }
2901
2902 int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info)
2903 {
2904         enum drbd_ret_code retcode;
2905         struct timeout_parms tp;
2906         int err;
2907
2908         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2909         if (!adm_ctx.reply_skb)
2910                 return retcode;
2911         if (retcode != NO_ERROR)
2912                 goto out;
2913
2914         tp.timeout_type =
2915                 adm_ctx.mdev->state.pdsk == D_OUTDATED ? UT_PEER_OUTDATED :
2916                 test_bit(USE_DEGR_WFC_T, &adm_ctx.mdev->flags) ? UT_DEGRADED :
2917                 UT_DEFAULT;
2918
2919         err = timeout_parms_to_priv_skb(adm_ctx.reply_skb, &tp);
2920         if (err) {
2921                 nlmsg_free(adm_ctx.reply_skb);
2922                 return err;
2923         }
2924 out:
2925         drbd_adm_finish(info, retcode);
2926         return 0;
2927 }
2928
2929 int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info)
2930 {
2931         struct drbd_conf *mdev;
2932         enum drbd_ret_code retcode;
2933
2934         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2935         if (!adm_ctx.reply_skb)
2936                 return retcode;
2937         if (retcode != NO_ERROR)
2938                 goto out;
2939
2940         mdev = adm_ctx.mdev;
2941         if (info->attrs[DRBD_NLA_START_OV_PARMS]) {
2942                 /* resume from last known position, if possible */
2943                 struct start_ov_parms parms =
2944                         { .ov_start_sector = mdev->ov_start_sector };
2945                 int err = start_ov_parms_from_attrs(&parms, info);
2946                 if (err) {
2947                         retcode = ERR_MANDATORY_TAG;
2948                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2949                         goto out;
2950                 }
2951                 /* w_make_ov_request expects position to be aligned */
2952                 mdev->ov_start_sector = parms.ov_start_sector & ~BM_SECT_PER_BIT;
2953         }
2954         /* If there is still bitmap IO pending, e.g. previous resync or verify
2955          * just being finished, wait for it before requesting a new resync. */
2956         drbd_suspend_io(mdev);
2957         wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2958         retcode = drbd_request_state(mdev,NS(conn,C_VERIFY_S));
2959         drbd_resume_io(mdev);
2960 out:
2961         drbd_adm_finish(info, retcode);
2962         return 0;
2963 }
2964
2965
2966 int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info)
2967 {
2968         struct drbd_conf *mdev;
2969         enum drbd_ret_code retcode;
2970         int skip_initial_sync = 0;
2971         int err;
2972         struct new_c_uuid_parms args;
2973
2974         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2975         if (!adm_ctx.reply_skb)
2976                 return retcode;
2977         if (retcode != NO_ERROR)
2978                 goto out_nolock;
2979
2980         mdev = adm_ctx.mdev;
2981         memset(&args, 0, sizeof(args));
2982         if (info->attrs[DRBD_NLA_NEW_C_UUID_PARMS]) {
2983                 err = new_c_uuid_parms_from_attrs(&args, info);
2984                 if (err) {
2985                         retcode = ERR_MANDATORY_TAG;
2986                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2987                         goto out_nolock;
2988                 }
2989         }
2990
2991         mutex_lock(mdev->state_mutex); /* Protects us against serialized state changes. */
2992
2993         if (!get_ldev(mdev)) {
2994                 retcode = ERR_NO_DISK;
2995                 goto out;
2996         }
2997
2998         /* this is "skip initial sync", assume to be clean */
2999         if (mdev->state.conn == C_CONNECTED && mdev->tconn->agreed_pro_version >= 90 &&
3000             mdev->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED && args.clear_bm) {
3001                 dev_info(DEV, "Preparing to skip initial sync\n");
3002                 skip_initial_sync = 1;
3003         } else if (mdev->state.conn != C_STANDALONE) {
3004                 retcode = ERR_CONNECTED;
3005                 goto out_dec;
3006         }
3007
3008         drbd_uuid_set(mdev, UI_BITMAP, 0); /* Rotate UI_BITMAP to History 1, etc... */
3009         drbd_uuid_new_current(mdev); /* New current, previous to UI_BITMAP */
3010
3011         if (args.clear_bm) {
3012                 err = drbd_bitmap_io(mdev, &drbd_bmio_clear_n_write,
3013                         "clear_n_write from new_c_uuid", BM_LOCKED_MASK);
3014                 if (err) {
3015                         dev_err(DEV, "Writing bitmap failed with %d\n",err);
3016                         retcode = ERR_IO_MD_DISK;
3017                 }
3018                 if (skip_initial_sync) {
3019                         drbd_send_uuids_skip_initial_sync(mdev);
3020                         _drbd_uuid_set(mdev, UI_BITMAP, 0);
3021                         drbd_print_uuids(mdev, "cleared bitmap UUID");
3022                         spin_lock_irq(&mdev->tconn->req_lock);
3023                         _drbd_set_state(_NS2(mdev, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
3024                                         CS_VERBOSE, NULL);
3025                         spin_unlock_irq(&mdev->tconn->req_lock);
3026                 }
3027         }
3028
3029         drbd_md_sync(mdev);
3030 out_dec:
3031         put_ldev(mdev);
3032 out:
3033         mutex_unlock(mdev->state_mutex);
3034 out_nolock:
3035         drbd_adm_finish(info, retcode);
3036         return 0;
3037 }
3038
3039 static enum drbd_ret_code
3040 drbd_check_resource_name(const char *name)
3041 {
3042         if (!name || !name[0]) {
3043                 drbd_msg_put_info("resource name missing");
3044                 return ERR_MANDATORY_TAG;
3045         }
3046         /* if we want to use these in sysfs/configfs/debugfs some day,
3047          * we must not allow slashes */
3048         if (strchr(name, '/')) {
3049                 drbd_msg_put_info("invalid resource name");
3050                 return ERR_INVALID_REQUEST;
3051         }
3052         return NO_ERROR;
3053 }
3054
3055 int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info)
3056 {
3057         enum drbd_ret_code retcode;
3058         struct res_opts res_opts;
3059         int err;
3060
3061         retcode = drbd_adm_prepare(skb, info, 0);
3062         if (!adm_ctx.reply_skb)
3063                 return retcode;
3064         if (retcode != NO_ERROR)
3065                 goto out;
3066
3067         set_res_opts_defaults(&res_opts);
3068         err = res_opts_from_attrs(&res_opts, info);
3069         if (err && err != -ENOMSG) {
3070                 retcode = ERR_MANDATORY_TAG;
3071                 drbd_msg_put_info(from_attrs_err_to_txt(err));
3072                 goto out;
3073         }
3074
3075         retcode = drbd_check_resource_name(adm_ctx.resource_name);
3076         if (retcode != NO_ERROR)
3077                 goto out;
3078
3079         if (adm_ctx.tconn) {
3080                 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL) {
3081                         retcode = ERR_INVALID_REQUEST;
3082                         drbd_msg_put_info("resource exists");
3083                 }
3084                 /* else: still NO_ERROR */
3085                 goto out;
3086         }
3087
3088         if (!conn_create(adm_ctx.resource_name, &res_opts))
3089                 retcode = ERR_NOMEM;
3090 out:
3091         drbd_adm_finish(info, retcode);
3092         return 0;
3093 }
3094
3095 int drbd_adm_add_minor(struct sk_buff *skb, struct genl_info *info)
3096 {
3097         struct drbd_genlmsghdr *dh = info->userhdr;
3098         enum drbd_ret_code retcode;
3099
3100         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
3101         if (!adm_ctx.reply_skb)
3102                 return retcode;
3103         if (retcode != NO_ERROR)
3104                 goto out;
3105
3106         if (dh->minor > MINORMASK) {
3107                 drbd_msg_put_info("requested minor out of range");
3108                 retcode = ERR_INVALID_REQUEST;
3109                 goto out;
3110         }
3111         if (adm_ctx.volume > DRBD_VOLUME_MAX) {
3112                 drbd_msg_put_info("requested volume id out of range");
3113                 retcode = ERR_INVALID_REQUEST;
3114                 goto out;
3115         }
3116
3117         /* drbd_adm_prepare made sure already
3118          * that mdev->tconn and mdev->vnr match the request. */
3119         if (adm_ctx.mdev) {
3120                 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
3121                         retcode = ERR_MINOR_EXISTS;
3122                 /* else: still NO_ERROR */
3123                 goto out;
3124         }
3125
3126         retcode = conn_new_minor(adm_ctx.tconn, dh->minor, adm_ctx.volume);
3127 out:
3128         drbd_adm_finish(info, retcode);
3129         return 0;
3130 }
3131
3132 static enum drbd_ret_code adm_delete_minor(struct drbd_conf *mdev)
3133 {
3134         if (mdev->state.disk == D_DISKLESS &&
3135             /* no need to be mdev->state.conn == C_STANDALONE &&
3136              * we may want to delete a minor from a live replication group.
3137              */
3138             mdev->state.role == R_SECONDARY) {
3139                 _drbd_request_state(mdev, NS(conn, C_WF_REPORT_PARAMS),
3140                                     CS_VERBOSE + CS_WAIT_COMPLETE);
3141                 idr_remove(&mdev->tconn->volumes, mdev->vnr);
3142                 idr_remove(&minors, mdev_to_minor(mdev));
3143                 del_gendisk(mdev->vdisk);
3144                 synchronize_rcu();
3145                 kref_put(&mdev->kref, &drbd_minor_destroy);
3146                 return NO_ERROR;
3147         } else
3148                 return ERR_MINOR_CONFIGURED;
3149 }
3150
3151 int drbd_adm_delete_minor(struct sk_buff *skb, struct genl_info *info)
3152 {
3153         enum drbd_ret_code retcode;
3154
3155         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
3156         if (!adm_ctx.reply_skb)
3157                 return retcode;
3158         if (retcode != NO_ERROR)
3159                 goto out;
3160
3161         retcode = adm_delete_minor(adm_ctx.mdev);
3162 out:
3163         drbd_adm_finish(info, retcode);
3164         return 0;
3165 }
3166
3167 int drbd_adm_down(struct sk_buff *skb, struct genl_info *info)
3168 {
3169         int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
3170         struct drbd_conf *mdev;
3171         unsigned i;
3172
3173         retcode = drbd_adm_prepare(skb, info, 0);
3174         if (!adm_ctx.reply_skb)
3175                 return retcode;
3176         if (retcode != NO_ERROR)
3177                 goto out;
3178
3179         if (!adm_ctx.tconn) {
3180                 retcode = ERR_RES_NOT_KNOWN;
3181                 goto out;
3182         }
3183
3184         /* demote */
3185         idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3186                 retcode = drbd_set_role(mdev, R_SECONDARY, 0);
3187                 if (retcode < SS_SUCCESS) {
3188                         drbd_msg_put_info("failed to demote");
3189                         goto out;
3190                 }
3191         }
3192
3193         retcode = conn_try_disconnect(adm_ctx.tconn, 0);
3194         if (retcode < SS_SUCCESS) {
3195                 drbd_msg_put_info("failed to disconnect");
3196                 goto out;
3197         }
3198
3199         /* detach */
3200         idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3201                 retcode = adm_detach(mdev, 0);
3202                 if (retcode < SS_SUCCESS || retcode > NO_ERROR) {
3203                         drbd_msg_put_info("failed to detach");
3204                         goto out;
3205                 }
3206         }
3207
3208         /* If we reach this, all volumes (of this tconn) are Secondary,
3209          * Disconnected, Diskless, aka Unconfigured. Make sure all threads have
3210          * actually stopped, state handling only does drbd_thread_stop_nowait(). */
3211         drbd_thread_stop(&adm_ctx.tconn->worker);
3212
3213         /* Now, nothing can fail anymore */
3214
3215         /* delete volumes */
3216         idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3217                 retcode = adm_delete_minor(mdev);
3218                 if (retcode != NO_ERROR) {
3219                         /* "can not happen" */
3220                         drbd_msg_put_info("failed to delete volume");
3221                         goto out;
3222                 }
3223         }
3224
3225         /* delete connection */
3226         if (conn_lowest_minor(adm_ctx.tconn) < 0) {
3227                 list_del_rcu(&adm_ctx.tconn->all_tconn);
3228                 synchronize_rcu();
3229                 kref_put(&adm_ctx.tconn->kref, &conn_destroy);
3230
3231                 retcode = NO_ERROR;
3232         } else {
3233                 /* "can not happen" */
3234                 retcode = ERR_RES_IN_USE;
3235                 drbd_msg_put_info("failed to delete connection");
3236         }
3237         goto out;
3238 out:
3239         drbd_adm_finish(info, retcode);
3240         return 0;
3241 }
3242
3243 int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info)
3244 {
3245         enum drbd_ret_code retcode;
3246
3247         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
3248         if (!adm_ctx.reply_skb)
3249                 return retcode;
3250         if (retcode != NO_ERROR)
3251                 goto out;
3252
3253         if (conn_lowest_minor(adm_ctx.tconn) < 0) {
3254                 list_del_rcu(&adm_ctx.tconn->all_tconn);
3255                 synchronize_rcu();
3256                 kref_put(&adm_ctx.tconn->kref, &conn_destroy);
3257
3258                 retcode = NO_ERROR;
3259         } else {
3260                 retcode = ERR_RES_IN_USE;
3261         }
3262
3263         if (retcode == NO_ERROR)
3264                 drbd_thread_stop(&adm_ctx.tconn->worker);
3265 out:
3266         drbd_adm_finish(info, retcode);
3267         return 0;
3268 }
3269
3270 void drbd_bcast_event(struct drbd_conf *mdev, const struct sib_info *sib)
3271 {
3272         static atomic_t drbd_genl_seq = ATOMIC_INIT(2); /* two. */
3273         struct sk_buff *msg;
3274         struct drbd_genlmsghdr *d_out;
3275         unsigned seq;
3276         int err = -ENOMEM;
3277
3278         seq = atomic_inc_return(&drbd_genl_seq);
3279         msg = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
3280         if (!msg)
3281                 goto failed;
3282
3283         err = -EMSGSIZE;
3284         d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT);
3285         if (!d_out) /* cannot happen, but anyways. */
3286                 goto nla_put_failure;
3287         d_out->minor = mdev_to_minor(mdev);
3288         d_out->ret_code = NO_ERROR;
3289
3290         if (nla_put_status_info(msg, mdev, sib))
3291                 goto nla_put_failure;
3292         genlmsg_end(msg, d_out);
3293         err = drbd_genl_multicast_events(msg, 0);
3294         /* msg has been consumed or freed in netlink_broadcast() */
3295         if (err && err != -ESRCH)
3296                 goto failed;
3297
3298         return;
3299
3300 nla_put_failure:
3301         nlmsg_free(msg);
3302 failed:
3303         dev_err(DEV, "Error %d while broadcasting event. "
3304                         "Event seq:%u sib_reason:%u\n",
3305                         err, seq, sib->sib_reason);
3306 }