drbd: Protect accesses to the uuid set with a spinlock
[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, md_moved ? &drbd_bm_write_all : &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         /* and no leftover from previously aborted resync or verify, either */
1313         mdev->rs_total = 0;
1314         mdev->rs_failed = 0;
1315         atomic_set(&mdev->rs_pending_cnt, 0);
1316
1317         /* allocation not in the IO path, drbdsetup context */
1318         nbc = kzalloc(sizeof(struct drbd_backing_dev), GFP_KERNEL);
1319         if (!nbc) {
1320                 retcode = ERR_NOMEM;
1321                 goto fail;
1322         }
1323         spin_lock_init(&nbc->md.uuid_lock);
1324
1325         new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
1326         if (!new_disk_conf) {
1327                 retcode = ERR_NOMEM;
1328                 goto fail;
1329         }
1330         nbc->disk_conf = new_disk_conf;
1331
1332         set_disk_conf_defaults(new_disk_conf);
1333         err = disk_conf_from_attrs(new_disk_conf, info);
1334         if (err) {
1335                 retcode = ERR_MANDATORY_TAG;
1336                 drbd_msg_put_info(from_attrs_err_to_txt(err));
1337                 goto fail;
1338         }
1339
1340         enforce_disk_conf_limits(new_disk_conf);
1341
1342         new_plan = fifo_alloc((new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ);
1343         if (!new_plan) {
1344                 retcode = ERR_NOMEM;
1345                 goto fail;
1346         }
1347
1348         if (new_disk_conf->meta_dev_idx < DRBD_MD_INDEX_FLEX_INT) {
1349                 retcode = ERR_MD_IDX_INVALID;
1350                 goto fail;
1351         }
1352
1353         rcu_read_lock();
1354         nc = rcu_dereference(mdev->tconn->net_conf);
1355         if (nc) {
1356                 if (new_disk_conf->fencing == FP_STONITH && nc->wire_protocol == DRBD_PROT_A) {
1357                         rcu_read_unlock();
1358                         retcode = ERR_STONITH_AND_PROT_A;
1359                         goto fail;
1360                 }
1361         }
1362         rcu_read_unlock();
1363
1364         bdev = blkdev_get_by_path(new_disk_conf->backing_dev,
1365                                   FMODE_READ | FMODE_WRITE | FMODE_EXCL, mdev);
1366         if (IS_ERR(bdev)) {
1367                 dev_err(DEV, "open(\"%s\") failed with %ld\n", new_disk_conf->backing_dev,
1368                         PTR_ERR(bdev));
1369                 retcode = ERR_OPEN_DISK;
1370                 goto fail;
1371         }
1372         nbc->backing_bdev = bdev;
1373
1374         /*
1375          * meta_dev_idx >= 0: external fixed size, possibly multiple
1376          * drbd sharing one meta device.  TODO in that case, paranoia
1377          * check that [md_bdev, meta_dev_idx] is not yet used by some
1378          * other drbd minor!  (if you use drbd.conf + drbdadm, that
1379          * should check it for you already; but if you don't, or
1380          * someone fooled it, we need to double check here)
1381          */
1382         bdev = blkdev_get_by_path(new_disk_conf->meta_dev,
1383                                   FMODE_READ | FMODE_WRITE | FMODE_EXCL,
1384                                   (new_disk_conf->meta_dev_idx < 0) ?
1385                                   (void *)mdev : (void *)drbd_m_holder);
1386         if (IS_ERR(bdev)) {
1387                 dev_err(DEV, "open(\"%s\") failed with %ld\n", new_disk_conf->meta_dev,
1388                         PTR_ERR(bdev));
1389                 retcode = ERR_OPEN_MD_DISK;
1390                 goto fail;
1391         }
1392         nbc->md_bdev = bdev;
1393
1394         if ((nbc->backing_bdev == nbc->md_bdev) !=
1395             (new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
1396              new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)) {
1397                 retcode = ERR_MD_IDX_INVALID;
1398                 goto fail;
1399         }
1400
1401         resync_lru = lc_create("resync", drbd_bm_ext_cache,
1402                         1, 61, sizeof(struct bm_extent),
1403                         offsetof(struct bm_extent, lce));
1404         if (!resync_lru) {
1405                 retcode = ERR_NOMEM;
1406                 goto fail;
1407         }
1408
1409         /* RT - for drbd_get_max_capacity() DRBD_MD_INDEX_FLEX_INT */
1410         drbd_md_set_sector_offsets(mdev, nbc);
1411
1412         if (drbd_get_max_capacity(nbc) < new_disk_conf->disk_size) {
1413                 dev_err(DEV, "max capacity %llu smaller than disk size %llu\n",
1414                         (unsigned long long) drbd_get_max_capacity(nbc),
1415                         (unsigned long long) new_disk_conf->disk_size);
1416                 retcode = ERR_DISK_TOO_SMALL;
1417                 goto fail;
1418         }
1419
1420         if (new_disk_conf->meta_dev_idx < 0) {
1421                 max_possible_sectors = DRBD_MAX_SECTORS_FLEX;
1422                 /* at least one MB, otherwise it does not make sense */
1423                 min_md_device_sectors = (2<<10);
1424         } else {
1425                 max_possible_sectors = DRBD_MAX_SECTORS;
1426                 min_md_device_sectors = MD_RESERVED_SECT * (new_disk_conf->meta_dev_idx + 1);
1427         }
1428
1429         if (drbd_get_capacity(nbc->md_bdev) < min_md_device_sectors) {
1430                 retcode = ERR_MD_DISK_TOO_SMALL;
1431                 dev_warn(DEV, "refusing attach: md-device too small, "
1432                      "at least %llu sectors needed for this meta-disk type\n",
1433                      (unsigned long long) min_md_device_sectors);
1434                 goto fail;
1435         }
1436
1437         /* Make sure the new disk is big enough
1438          * (we may currently be R_PRIMARY with no local disk...) */
1439         if (drbd_get_max_capacity(nbc) <
1440             drbd_get_capacity(mdev->this_bdev)) {
1441                 retcode = ERR_DISK_TOO_SMALL;
1442                 goto fail;
1443         }
1444
1445         nbc->known_size = drbd_get_capacity(nbc->backing_bdev);
1446
1447         if (nbc->known_size > max_possible_sectors) {
1448                 dev_warn(DEV, "==> truncating very big lower level device "
1449                         "to currently maximum possible %llu sectors <==\n",
1450                         (unsigned long long) max_possible_sectors);
1451                 if (new_disk_conf->meta_dev_idx >= 0)
1452                         dev_warn(DEV, "==>> using internal or flexible "
1453                                       "meta data may help <<==\n");
1454         }
1455
1456         drbd_suspend_io(mdev);
1457         /* also wait for the last barrier ack. */
1458         /* FIXME see also https://daiquiri.linbit/cgi-bin/bugzilla/show_bug.cgi?id=171
1459          * We need a way to either ignore barrier acks for barriers sent before a device
1460          * was attached, or a way to wait for all pending barrier acks to come in.
1461          * As barriers are counted per resource,
1462          * we'd need to suspend io on all devices of a resource.
1463          */
1464         wait_event(mdev->misc_wait, !atomic_read(&mdev->ap_pending_cnt) || drbd_suspended(mdev));
1465         /* and for any other previously queued work */
1466         drbd_flush_workqueue(mdev);
1467
1468         rv = _drbd_request_state(mdev, NS(disk, D_ATTACHING), CS_VERBOSE);
1469         retcode = rv;  /* FIXME: Type mismatch. */
1470         drbd_resume_io(mdev);
1471         if (rv < SS_SUCCESS)
1472                 goto fail;
1473
1474         if (!get_ldev_if_state(mdev, D_ATTACHING))
1475                 goto force_diskless;
1476
1477         drbd_md_set_sector_offsets(mdev, nbc);
1478
1479         if (!mdev->bitmap) {
1480                 if (drbd_bm_init(mdev)) {
1481                         retcode = ERR_NOMEM;
1482                         goto force_diskless_dec;
1483                 }
1484         }
1485
1486         retcode = drbd_md_read(mdev, nbc);
1487         if (retcode != NO_ERROR)
1488                 goto force_diskless_dec;
1489
1490         if (mdev->state.conn < C_CONNECTED &&
1491             mdev->state.role == R_PRIMARY &&
1492             (mdev->ed_uuid & ~((u64)1)) != (nbc->md.uuid[UI_CURRENT] & ~((u64)1))) {
1493                 dev_err(DEV, "Can only attach to data with current UUID=%016llX\n",
1494                     (unsigned long long)mdev->ed_uuid);
1495                 retcode = ERR_DATA_NOT_CURRENT;
1496                 goto force_diskless_dec;
1497         }
1498
1499         /* Since we are diskless, fix the activity log first... */
1500         if (drbd_check_al_size(mdev, new_disk_conf)) {
1501                 retcode = ERR_NOMEM;
1502                 goto force_diskless_dec;
1503         }
1504
1505         /* Prevent shrinking of consistent devices ! */
1506         if (drbd_md_test_flag(nbc, MDF_CONSISTENT) &&
1507             drbd_new_dev_size(mdev, nbc, nbc->disk_conf->disk_size, 0) < nbc->md.la_size_sect) {
1508                 dev_warn(DEV, "refusing to truncate a consistent device\n");
1509                 retcode = ERR_DISK_TOO_SMALL;
1510                 goto force_diskless_dec;
1511         }
1512
1513         /* Reset the "barriers don't work" bits here, then force meta data to
1514          * be written, to ensure we determine if barriers are supported. */
1515         if (new_disk_conf->md_flushes)
1516                 clear_bit(MD_NO_FUA, &mdev->flags);
1517         else
1518                 set_bit(MD_NO_FUA, &mdev->flags);
1519
1520         /* Point of no return reached.
1521          * Devices and memory are no longer released by error cleanup below.
1522          * now mdev takes over responsibility, and the state engine should
1523          * clean it up somewhere.  */
1524         D_ASSERT(mdev->ldev == NULL);
1525         mdev->ldev = nbc;
1526         mdev->resync = resync_lru;
1527         mdev->rs_plan_s = new_plan;
1528         nbc = NULL;
1529         resync_lru = NULL;
1530         new_disk_conf = NULL;
1531         new_plan = NULL;
1532
1533         drbd_bump_write_ordering(mdev->tconn, WO_bdev_flush);
1534
1535         if (drbd_md_test_flag(mdev->ldev, MDF_CRASHED_PRIMARY))
1536                 set_bit(CRASHED_PRIMARY, &mdev->flags);
1537         else
1538                 clear_bit(CRASHED_PRIMARY, &mdev->flags);
1539
1540         if (drbd_md_test_flag(mdev->ldev, MDF_PRIMARY_IND) &&
1541             !(mdev->state.role == R_PRIMARY && mdev->tconn->susp_nod))
1542                 set_bit(CRASHED_PRIMARY, &mdev->flags);
1543
1544         mdev->send_cnt = 0;
1545         mdev->recv_cnt = 0;
1546         mdev->read_cnt = 0;
1547         mdev->writ_cnt = 0;
1548
1549         drbd_reconsider_max_bio_size(mdev);
1550
1551         /* If I am currently not R_PRIMARY,
1552          * but meta data primary indicator is set,
1553          * I just now recover from a hard crash,
1554          * and have been R_PRIMARY before that crash.
1555          *
1556          * Now, if I had no connection before that crash
1557          * (have been degraded R_PRIMARY), chances are that
1558          * I won't find my peer now either.
1559          *
1560          * In that case, and _only_ in that case,
1561          * we use the degr-wfc-timeout instead of the default,
1562          * so we can automatically recover from a crash of a
1563          * degraded but active "cluster" after a certain timeout.
1564          */
1565         clear_bit(USE_DEGR_WFC_T, &mdev->flags);
1566         if (mdev->state.role != R_PRIMARY &&
1567              drbd_md_test_flag(mdev->ldev, MDF_PRIMARY_IND) &&
1568             !drbd_md_test_flag(mdev->ldev, MDF_CONNECTED_IND))
1569                 set_bit(USE_DEGR_WFC_T, &mdev->flags);
1570
1571         dd = drbd_determine_dev_size(mdev, 0);
1572         if (dd == dev_size_error) {
1573                 retcode = ERR_NOMEM_BITMAP;
1574                 goto force_diskless_dec;
1575         } else if (dd == grew)
1576                 set_bit(RESYNC_AFTER_NEG, &mdev->flags);
1577
1578         if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC) ||
1579             (test_bit(CRASHED_PRIMARY, &mdev->flags) &&
1580              drbd_md_test_flag(mdev->ldev, MDF_AL_DISABLED))) {
1581                 dev_info(DEV, "Assuming that all blocks are out of sync "
1582                      "(aka FullSync)\n");
1583                 if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write,
1584                         "set_n_write from attaching", BM_LOCKED_MASK)) {
1585                         retcode = ERR_IO_MD_DISK;
1586                         goto force_diskless_dec;
1587                 }
1588         } else {
1589                 if (drbd_bitmap_io(mdev, &drbd_bm_read,
1590                         "read from attaching", BM_LOCKED_MASK)) {
1591                         retcode = ERR_IO_MD_DISK;
1592                         goto force_diskless_dec;
1593                 }
1594         }
1595
1596         if (_drbd_bm_total_weight(mdev) == drbd_bm_bits(mdev))
1597                 drbd_suspend_al(mdev); /* IO is still suspended here... */
1598
1599         spin_lock_irq(&mdev->tconn->req_lock);
1600         os = drbd_read_state(mdev);
1601         ns = os;
1602         /* If MDF_CONSISTENT is not set go into inconsistent state,
1603            otherwise investigate MDF_WasUpToDate...
1604            If MDF_WAS_UP_TO_DATE is not set go into D_OUTDATED disk state,
1605            otherwise into D_CONSISTENT state.
1606         */
1607         if (drbd_md_test_flag(mdev->ldev, MDF_CONSISTENT)) {
1608                 if (drbd_md_test_flag(mdev->ldev, MDF_WAS_UP_TO_DATE))
1609                         ns.disk = D_CONSISTENT;
1610                 else
1611                         ns.disk = D_OUTDATED;
1612         } else {
1613                 ns.disk = D_INCONSISTENT;
1614         }
1615
1616         if (drbd_md_test_flag(mdev->ldev, MDF_PEER_OUT_DATED))
1617                 ns.pdsk = D_OUTDATED;
1618
1619         rcu_read_lock();
1620         if (ns.disk == D_CONSISTENT &&
1621             (ns.pdsk == D_OUTDATED || rcu_dereference(mdev->ldev->disk_conf)->fencing == FP_DONT_CARE))
1622                 ns.disk = D_UP_TO_DATE;
1623
1624         /* All tests on MDF_PRIMARY_IND, MDF_CONNECTED_IND,
1625            MDF_CONSISTENT and MDF_WAS_UP_TO_DATE must happen before
1626            this point, because drbd_request_state() modifies these
1627            flags. */
1628
1629         if (rcu_dereference(mdev->ldev->disk_conf)->al_updates)
1630                 mdev->ldev->md.flags &= MDF_AL_DISABLED;
1631         else
1632                 mdev->ldev->md.flags |= MDF_AL_DISABLED;
1633
1634         rcu_read_unlock();
1635
1636         /* In case we are C_CONNECTED postpone any decision on the new disk
1637            state after the negotiation phase. */
1638         if (mdev->state.conn == C_CONNECTED) {
1639                 mdev->new_state_tmp.i = ns.i;
1640                 ns.i = os.i;
1641                 ns.disk = D_NEGOTIATING;
1642
1643                 /* We expect to receive up-to-date UUIDs soon.
1644                    To avoid a race in receive_state, free p_uuid while
1645                    holding req_lock. I.e. atomic with the state change */
1646                 kfree(mdev->p_uuid);
1647                 mdev->p_uuid = NULL;
1648         }
1649
1650         rv = _drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
1651         spin_unlock_irq(&mdev->tconn->req_lock);
1652
1653         if (rv < SS_SUCCESS)
1654                 goto force_diskless_dec;
1655
1656         mod_timer(&mdev->request_timer, jiffies + HZ);
1657
1658         if (mdev->state.role == R_PRIMARY)
1659                 mdev->ldev->md.uuid[UI_CURRENT] |=  (u64)1;
1660         else
1661                 mdev->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
1662
1663         drbd_md_mark_dirty(mdev);
1664         drbd_md_sync(mdev);
1665
1666         kobject_uevent(&disk_to_dev(mdev->vdisk)->kobj, KOBJ_CHANGE);
1667         put_ldev(mdev);
1668         conn_reconfig_done(mdev->tconn);
1669         drbd_adm_finish(info, retcode);
1670         return 0;
1671
1672  force_diskless_dec:
1673         put_ldev(mdev);
1674  force_diskless:
1675         drbd_force_state(mdev, NS(disk, D_DISKLESS));
1676         drbd_md_sync(mdev);
1677  fail:
1678         conn_reconfig_done(mdev->tconn);
1679         if (nbc) {
1680                 if (nbc->backing_bdev)
1681                         blkdev_put(nbc->backing_bdev,
1682                                    FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1683                 if (nbc->md_bdev)
1684                         blkdev_put(nbc->md_bdev,
1685                                    FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1686                 kfree(nbc);
1687         }
1688         kfree(new_disk_conf);
1689         lc_destroy(resync_lru);
1690         kfree(new_plan);
1691
1692  finish:
1693         drbd_adm_finish(info, retcode);
1694         return 0;
1695 }
1696
1697 static int adm_detach(struct drbd_conf *mdev, int force)
1698 {
1699         enum drbd_state_rv retcode;
1700         int ret;
1701
1702         if (force) {
1703                 set_bit(FORCE_DETACH, &mdev->flags);
1704                 drbd_force_state(mdev, NS(disk, D_FAILED));
1705                 retcode = SS_SUCCESS;
1706                 goto out;
1707         }
1708
1709         drbd_suspend_io(mdev); /* so no-one is stuck in drbd_al_begin_io */
1710         drbd_md_get_buffer(mdev); /* make sure there is no in-flight meta-data IO */
1711         retcode = drbd_request_state(mdev, NS(disk, D_FAILED));
1712         drbd_md_put_buffer(mdev);
1713         /* D_FAILED will transition to DISKLESS. */
1714         ret = wait_event_interruptible(mdev->misc_wait,
1715                         mdev->state.disk != D_FAILED);
1716         drbd_resume_io(mdev);
1717         if ((int)retcode == (int)SS_IS_DISKLESS)
1718                 retcode = SS_NOTHING_TO_DO;
1719         if (ret)
1720                 retcode = ERR_INTR;
1721 out:
1722         return retcode;
1723 }
1724
1725 /* Detaching the disk is a process in multiple stages.  First we need to lock
1726  * out application IO, in-flight IO, IO stuck in drbd_al_begin_io.
1727  * Then we transition to D_DISKLESS, and wait for put_ldev() to return all
1728  * internal references as well.
1729  * Only then we have finally detached. */
1730 int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info)
1731 {
1732         enum drbd_ret_code retcode;
1733         struct detach_parms parms = { };
1734         int err;
1735
1736         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
1737         if (!adm_ctx.reply_skb)
1738                 return retcode;
1739         if (retcode != NO_ERROR)
1740                 goto out;
1741
1742         if (info->attrs[DRBD_NLA_DETACH_PARMS]) {
1743                 err = detach_parms_from_attrs(&parms, info);
1744                 if (err) {
1745                         retcode = ERR_MANDATORY_TAG;
1746                         drbd_msg_put_info(from_attrs_err_to_txt(err));
1747                         goto out;
1748                 }
1749         }
1750
1751         retcode = adm_detach(adm_ctx.mdev, parms.force_detach);
1752 out:
1753         drbd_adm_finish(info, retcode);
1754         return 0;
1755 }
1756
1757 static bool conn_resync_running(struct drbd_tconn *tconn)
1758 {
1759         struct drbd_conf *mdev;
1760         bool rv = false;
1761         int vnr;
1762
1763         rcu_read_lock();
1764         idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1765                 if (mdev->state.conn == C_SYNC_SOURCE ||
1766                     mdev->state.conn == C_SYNC_TARGET ||
1767                     mdev->state.conn == C_PAUSED_SYNC_S ||
1768                     mdev->state.conn == C_PAUSED_SYNC_T) {
1769                         rv = true;
1770                         break;
1771                 }
1772         }
1773         rcu_read_unlock();
1774
1775         return rv;
1776 }
1777
1778 static bool conn_ov_running(struct drbd_tconn *tconn)
1779 {
1780         struct drbd_conf *mdev;
1781         bool rv = false;
1782         int vnr;
1783
1784         rcu_read_lock();
1785         idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1786                 if (mdev->state.conn == C_VERIFY_S ||
1787                     mdev->state.conn == C_VERIFY_T) {
1788                         rv = true;
1789                         break;
1790                 }
1791         }
1792         rcu_read_unlock();
1793
1794         return rv;
1795 }
1796
1797 static enum drbd_ret_code
1798 _check_net_options(struct drbd_tconn *tconn, struct net_conf *old_conf, struct net_conf *new_conf)
1799 {
1800         struct drbd_conf *mdev;
1801         int i;
1802
1803         if (old_conf && tconn->cstate == C_WF_REPORT_PARAMS && tconn->agreed_pro_version < 100) {
1804                 if (new_conf->wire_protocol != old_conf->wire_protocol)
1805                         return ERR_NEED_APV_100;
1806
1807                 if (new_conf->two_primaries != old_conf->two_primaries)
1808                         return ERR_NEED_APV_100;
1809
1810                 if (!new_conf->integrity_alg != !old_conf->integrity_alg)
1811                         return ERR_NEED_APV_100;
1812
1813                 if (strcmp(new_conf->integrity_alg, old_conf->integrity_alg))
1814                         return ERR_NEED_APV_100;
1815         }
1816
1817         if (!new_conf->two_primaries &&
1818             conn_highest_role(tconn) == R_PRIMARY &&
1819             conn_highest_peer(tconn) == R_PRIMARY)
1820                 return ERR_NEED_ALLOW_TWO_PRI;
1821
1822         if (new_conf->two_primaries &&
1823             (new_conf->wire_protocol != DRBD_PROT_C))
1824                 return ERR_NOT_PROTO_C;
1825
1826         idr_for_each_entry(&tconn->volumes, mdev, i) {
1827                 if (get_ldev(mdev)) {
1828                         enum drbd_fencing_p fp = rcu_dereference(mdev->ldev->disk_conf)->fencing;
1829                         put_ldev(mdev);
1830                         if (new_conf->wire_protocol == DRBD_PROT_A && fp == FP_STONITH)
1831                                 return ERR_STONITH_AND_PROT_A;
1832                 }
1833                 if (mdev->state.role == R_PRIMARY && new_conf->discard_my_data)
1834                         return ERR_DISCARD_IMPOSSIBLE;
1835         }
1836
1837         if (new_conf->on_congestion != OC_BLOCK && new_conf->wire_protocol != DRBD_PROT_A)
1838                 return ERR_CONG_NOT_PROTO_A;
1839
1840         return NO_ERROR;
1841 }
1842
1843 static enum drbd_ret_code
1844 check_net_options(struct drbd_tconn *tconn, struct net_conf *new_conf)
1845 {
1846         static enum drbd_ret_code rv;
1847         struct drbd_conf *mdev;
1848         int i;
1849
1850         rcu_read_lock();
1851         rv = _check_net_options(tconn, rcu_dereference(tconn->net_conf), new_conf);
1852         rcu_read_unlock();
1853
1854         /* tconn->volumes protected by genl_lock() here */
1855         idr_for_each_entry(&tconn->volumes, mdev, i) {
1856                 if (!mdev->bitmap) {
1857                         if(drbd_bm_init(mdev))
1858                                 return ERR_NOMEM;
1859                 }
1860         }
1861
1862         return rv;
1863 }
1864
1865 struct crypto {
1866         struct crypto_hash *verify_tfm;
1867         struct crypto_hash *csums_tfm;
1868         struct crypto_hash *cram_hmac_tfm;
1869         struct crypto_hash *integrity_tfm;
1870 };
1871
1872 static int
1873 alloc_hash(struct crypto_hash **tfm, char *tfm_name, int err_alg)
1874 {
1875         if (!tfm_name[0])
1876                 return NO_ERROR;
1877
1878         *tfm = crypto_alloc_hash(tfm_name, 0, CRYPTO_ALG_ASYNC);
1879         if (IS_ERR(*tfm)) {
1880                 *tfm = NULL;
1881                 return err_alg;
1882         }
1883
1884         return NO_ERROR;
1885 }
1886
1887 static enum drbd_ret_code
1888 alloc_crypto(struct crypto *crypto, struct net_conf *new_conf)
1889 {
1890         char hmac_name[CRYPTO_MAX_ALG_NAME];
1891         enum drbd_ret_code rv;
1892
1893         rv = alloc_hash(&crypto->csums_tfm, new_conf->csums_alg,
1894                        ERR_CSUMS_ALG);
1895         if (rv != NO_ERROR)
1896                 return rv;
1897         rv = alloc_hash(&crypto->verify_tfm, new_conf->verify_alg,
1898                        ERR_VERIFY_ALG);
1899         if (rv != NO_ERROR)
1900                 return rv;
1901         rv = alloc_hash(&crypto->integrity_tfm, new_conf->integrity_alg,
1902                        ERR_INTEGRITY_ALG);
1903         if (rv != NO_ERROR)
1904                 return rv;
1905         if (new_conf->cram_hmac_alg[0] != 0) {
1906                 snprintf(hmac_name, CRYPTO_MAX_ALG_NAME, "hmac(%s)",
1907                          new_conf->cram_hmac_alg);
1908
1909                 rv = alloc_hash(&crypto->cram_hmac_tfm, hmac_name,
1910                                ERR_AUTH_ALG);
1911         }
1912
1913         return rv;
1914 }
1915
1916 static void free_crypto(struct crypto *crypto)
1917 {
1918         crypto_free_hash(crypto->cram_hmac_tfm);
1919         crypto_free_hash(crypto->integrity_tfm);
1920         crypto_free_hash(crypto->csums_tfm);
1921         crypto_free_hash(crypto->verify_tfm);
1922 }
1923
1924 int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info)
1925 {
1926         enum drbd_ret_code retcode;
1927         struct drbd_tconn *tconn;
1928         struct net_conf *old_conf, *new_conf = NULL;
1929         int err;
1930         int ovr; /* online verify running */
1931         int rsr; /* re-sync running */
1932         struct crypto crypto = { };
1933
1934         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_CONNECTION);
1935         if (!adm_ctx.reply_skb)
1936                 return retcode;
1937         if (retcode != NO_ERROR)
1938                 goto out;
1939
1940         tconn = adm_ctx.tconn;
1941
1942         new_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
1943         if (!new_conf) {
1944                 retcode = ERR_NOMEM;
1945                 goto out;
1946         }
1947
1948         conn_reconfig_start(tconn);
1949
1950         mutex_lock(&tconn->data.mutex);
1951         mutex_lock(&tconn->conf_update);
1952         old_conf = tconn->net_conf;
1953
1954         if (!old_conf) {
1955                 drbd_msg_put_info("net conf missing, try connect");
1956                 retcode = ERR_INVALID_REQUEST;
1957                 goto fail;
1958         }
1959
1960         *new_conf = *old_conf;
1961         if (should_set_defaults(info))
1962                 set_net_conf_defaults(new_conf);
1963
1964         err = net_conf_from_attrs_for_change(new_conf, info);
1965         if (err && err != -ENOMSG) {
1966                 retcode = ERR_MANDATORY_TAG;
1967                 drbd_msg_put_info(from_attrs_err_to_txt(err));
1968                 goto fail;
1969         }
1970
1971         retcode = check_net_options(tconn, new_conf);
1972         if (retcode != NO_ERROR)
1973                 goto fail;
1974
1975         /* re-sync running */
1976         rsr = conn_resync_running(tconn);
1977         if (rsr && strcmp(new_conf->csums_alg, old_conf->csums_alg)) {
1978                 retcode = ERR_CSUMS_RESYNC_RUNNING;
1979                 goto fail;
1980         }
1981
1982         /* online verify running */
1983         ovr = conn_ov_running(tconn);
1984         if (ovr && strcmp(new_conf->verify_alg, old_conf->verify_alg)) {
1985                 retcode = ERR_VERIFY_RUNNING;
1986                 goto fail;
1987         }
1988
1989         retcode = alloc_crypto(&crypto, new_conf);
1990         if (retcode != NO_ERROR)
1991                 goto fail;
1992
1993         rcu_assign_pointer(tconn->net_conf, new_conf);
1994
1995         if (!rsr) {
1996                 crypto_free_hash(tconn->csums_tfm);
1997                 tconn->csums_tfm = crypto.csums_tfm;
1998                 crypto.csums_tfm = NULL;
1999         }
2000         if (!ovr) {
2001                 crypto_free_hash(tconn->verify_tfm);
2002                 tconn->verify_tfm = crypto.verify_tfm;
2003                 crypto.verify_tfm = NULL;
2004         }
2005
2006         crypto_free_hash(tconn->integrity_tfm);
2007         tconn->integrity_tfm = crypto.integrity_tfm;
2008         if (tconn->cstate >= C_WF_REPORT_PARAMS && tconn->agreed_pro_version >= 100)
2009                 /* Do this without trying to take tconn->data.mutex again.  */
2010                 __drbd_send_protocol(tconn, P_PROTOCOL_UPDATE);
2011
2012         crypto_free_hash(tconn->cram_hmac_tfm);
2013         tconn->cram_hmac_tfm = crypto.cram_hmac_tfm;
2014
2015         mutex_unlock(&tconn->conf_update);
2016         mutex_unlock(&tconn->data.mutex);
2017         synchronize_rcu();
2018         kfree(old_conf);
2019
2020         if (tconn->cstate >= C_WF_REPORT_PARAMS)
2021                 drbd_send_sync_param(minor_to_mdev(conn_lowest_minor(tconn)));
2022
2023         goto done;
2024
2025  fail:
2026         mutex_unlock(&tconn->conf_update);
2027         mutex_unlock(&tconn->data.mutex);
2028         free_crypto(&crypto);
2029         kfree(new_conf);
2030  done:
2031         conn_reconfig_done(tconn);
2032  out:
2033         drbd_adm_finish(info, retcode);
2034         return 0;
2035 }
2036
2037 int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
2038 {
2039         struct drbd_conf *mdev;
2040         struct net_conf *old_conf, *new_conf = NULL;
2041         struct crypto crypto = { };
2042         struct drbd_tconn *tconn;
2043         enum drbd_ret_code retcode;
2044         int i;
2045         int err;
2046
2047         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
2048
2049         if (!adm_ctx.reply_skb)
2050                 return retcode;
2051         if (retcode != NO_ERROR)
2052                 goto out;
2053         if (!(adm_ctx.my_addr && adm_ctx.peer_addr)) {
2054                 drbd_msg_put_info("connection endpoint(s) missing");
2055                 retcode = ERR_INVALID_REQUEST;
2056                 goto out;
2057         }
2058
2059         /* No need for _rcu here. All reconfiguration is
2060          * strictly serialized on genl_lock(). We are protected against
2061          * concurrent reconfiguration/addition/deletion */
2062         list_for_each_entry(tconn, &drbd_tconns, all_tconn) {
2063                 if (nla_len(adm_ctx.my_addr) == tconn->my_addr_len &&
2064                     !memcmp(nla_data(adm_ctx.my_addr), &tconn->my_addr, tconn->my_addr_len)) {
2065                         retcode = ERR_LOCAL_ADDR;
2066                         goto out;
2067                 }
2068
2069                 if (nla_len(adm_ctx.peer_addr) == tconn->peer_addr_len &&
2070                     !memcmp(nla_data(adm_ctx.peer_addr), &tconn->peer_addr, tconn->peer_addr_len)) {
2071                         retcode = ERR_PEER_ADDR;
2072                         goto out;
2073                 }
2074         }
2075
2076         tconn = adm_ctx.tconn;
2077         conn_reconfig_start(tconn);
2078
2079         if (tconn->cstate > C_STANDALONE) {
2080                 retcode = ERR_NET_CONFIGURED;
2081                 goto fail;
2082         }
2083
2084         /* allocation not in the IO path, drbdsetup / netlink process context */
2085         new_conf = kzalloc(sizeof(*new_conf), GFP_KERNEL);
2086         if (!new_conf) {
2087                 retcode = ERR_NOMEM;
2088                 goto fail;
2089         }
2090
2091         set_net_conf_defaults(new_conf);
2092
2093         err = net_conf_from_attrs(new_conf, info);
2094         if (err && err != -ENOMSG) {
2095                 retcode = ERR_MANDATORY_TAG;
2096                 drbd_msg_put_info(from_attrs_err_to_txt(err));
2097                 goto fail;
2098         }
2099
2100         retcode = check_net_options(tconn, new_conf);
2101         if (retcode != NO_ERROR)
2102                 goto fail;
2103
2104         retcode = alloc_crypto(&crypto, new_conf);
2105         if (retcode != NO_ERROR)
2106                 goto fail;
2107
2108         ((char *)new_conf->shared_secret)[SHARED_SECRET_MAX-1] = 0;
2109
2110         conn_flush_workqueue(tconn);
2111
2112         mutex_lock(&tconn->conf_update);
2113         old_conf = tconn->net_conf;
2114         if (old_conf) {
2115                 retcode = ERR_NET_CONFIGURED;
2116                 mutex_unlock(&tconn->conf_update);
2117                 goto fail;
2118         }
2119         rcu_assign_pointer(tconn->net_conf, new_conf);
2120
2121         conn_free_crypto(tconn);
2122         tconn->cram_hmac_tfm = crypto.cram_hmac_tfm;
2123         tconn->integrity_tfm = crypto.integrity_tfm;
2124         tconn->csums_tfm = crypto.csums_tfm;
2125         tconn->verify_tfm = crypto.verify_tfm;
2126
2127         tconn->my_addr_len = nla_len(adm_ctx.my_addr);
2128         memcpy(&tconn->my_addr, nla_data(adm_ctx.my_addr), tconn->my_addr_len);
2129         tconn->peer_addr_len = nla_len(adm_ctx.peer_addr);
2130         memcpy(&tconn->peer_addr, nla_data(adm_ctx.peer_addr), tconn->peer_addr_len);
2131
2132         mutex_unlock(&tconn->conf_update);
2133
2134         rcu_read_lock();
2135         idr_for_each_entry(&tconn->volumes, mdev, i) {
2136                 mdev->send_cnt = 0;
2137                 mdev->recv_cnt = 0;
2138         }
2139         rcu_read_unlock();
2140
2141         retcode = conn_request_state(tconn, NS(conn, C_UNCONNECTED), CS_VERBOSE);
2142
2143         conn_reconfig_done(tconn);
2144         drbd_adm_finish(info, retcode);
2145         return 0;
2146
2147 fail:
2148         free_crypto(&crypto);
2149         kfree(new_conf);
2150
2151         conn_reconfig_done(tconn);
2152 out:
2153         drbd_adm_finish(info, retcode);
2154         return 0;
2155 }
2156
2157 static enum drbd_state_rv conn_try_disconnect(struct drbd_tconn *tconn, bool force)
2158 {
2159         enum drbd_state_rv rv;
2160
2161         rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING),
2162                         force ? CS_HARD : 0);
2163
2164         switch (rv) {
2165         case SS_NOTHING_TO_DO:
2166                 break;
2167         case SS_ALREADY_STANDALONE:
2168                 return SS_SUCCESS;
2169         case SS_PRIMARY_NOP:
2170                 /* Our state checking code wants to see the peer outdated. */
2171                 rv = conn_request_state(tconn, NS2(conn, C_DISCONNECTING,
2172                                                 pdsk, D_OUTDATED), CS_VERBOSE);
2173                 break;
2174         case SS_CW_FAILED_BY_PEER:
2175                 /* The peer probably wants to see us outdated. */
2176                 rv = conn_request_state(tconn, NS2(conn, C_DISCONNECTING,
2177                                                         disk, D_OUTDATED), 0);
2178                 if (rv == SS_IS_DISKLESS || rv == SS_LOWER_THAN_OUTDATED) {
2179                         rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING),
2180                                         CS_HARD);
2181                 }
2182                 break;
2183         default:;
2184                 /* no special handling necessary */
2185         }
2186
2187         if (rv >= SS_SUCCESS) {
2188                 enum drbd_state_rv rv2;
2189                 /* No one else can reconfigure the network while I am here.
2190                  * The state handling only uses drbd_thread_stop_nowait(),
2191                  * we want to really wait here until the receiver is no more.
2192                  */
2193                 drbd_thread_stop(&adm_ctx.tconn->receiver);
2194
2195                 /* Race breaker.  This additional state change request may be
2196                  * necessary, if this was a forced disconnect during a receiver
2197                  * restart.  We may have "killed" the receiver thread just
2198                  * after drbdd_init() returned.  Typically, we should be
2199                  * C_STANDALONE already, now, and this becomes a no-op.
2200                  */
2201                 rv2 = conn_request_state(tconn, NS(conn, C_STANDALONE),
2202                                 CS_VERBOSE | CS_HARD);
2203                 if (rv2 < SS_SUCCESS)
2204                         conn_err(tconn,
2205                                 "unexpected rv2=%d in conn_try_disconnect()\n",
2206                                 rv2);
2207         }
2208         return rv;
2209 }
2210
2211 int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info)
2212 {
2213         struct disconnect_parms parms;
2214         struct drbd_tconn *tconn;
2215         enum drbd_state_rv rv;
2216         enum drbd_ret_code retcode;
2217         int err;
2218
2219         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_CONNECTION);
2220         if (!adm_ctx.reply_skb)
2221                 return retcode;
2222         if (retcode != NO_ERROR)
2223                 goto fail;
2224
2225         tconn = adm_ctx.tconn;
2226         memset(&parms, 0, sizeof(parms));
2227         if (info->attrs[DRBD_NLA_DISCONNECT_PARMS]) {
2228                 err = disconnect_parms_from_attrs(&parms, info);
2229                 if (err) {
2230                         retcode = ERR_MANDATORY_TAG;
2231                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2232                         goto fail;
2233                 }
2234         }
2235
2236         rv = conn_try_disconnect(tconn, parms.force_disconnect);
2237         if (rv < SS_SUCCESS)
2238                 retcode = rv;  /* FIXME: Type mismatch. */
2239         else
2240                 retcode = NO_ERROR;
2241  fail:
2242         drbd_adm_finish(info, retcode);
2243         return 0;
2244 }
2245
2246 void resync_after_online_grow(struct drbd_conf *mdev)
2247 {
2248         int iass; /* I am sync source */
2249
2250         dev_info(DEV, "Resync of new storage after online grow\n");
2251         if (mdev->state.role != mdev->state.peer)
2252                 iass = (mdev->state.role == R_PRIMARY);
2253         else
2254                 iass = test_bit(RESOLVE_CONFLICTS, &mdev->tconn->flags);
2255
2256         if (iass)
2257                 drbd_start_resync(mdev, C_SYNC_SOURCE);
2258         else
2259                 _drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE + CS_SERIALIZE);
2260 }
2261
2262 int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info)
2263 {
2264         struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
2265         struct resize_parms rs;
2266         struct drbd_conf *mdev;
2267         enum drbd_ret_code retcode;
2268         enum determine_dev_size dd;
2269         enum dds_flags ddsf;
2270         sector_t u_size;
2271         int err;
2272
2273         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2274         if (!adm_ctx.reply_skb)
2275                 return retcode;
2276         if (retcode != NO_ERROR)
2277                 goto fail;
2278
2279         memset(&rs, 0, sizeof(struct resize_parms));
2280         if (info->attrs[DRBD_NLA_RESIZE_PARMS]) {
2281                 err = resize_parms_from_attrs(&rs, info);
2282                 if (err) {
2283                         retcode = ERR_MANDATORY_TAG;
2284                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2285                         goto fail;
2286                 }
2287         }
2288
2289         mdev = adm_ctx.mdev;
2290         if (mdev->state.conn > C_CONNECTED) {
2291                 retcode = ERR_RESIZE_RESYNC;
2292                 goto fail;
2293         }
2294
2295         if (mdev->state.role == R_SECONDARY &&
2296             mdev->state.peer == R_SECONDARY) {
2297                 retcode = ERR_NO_PRIMARY;
2298                 goto fail;
2299         }
2300
2301         if (!get_ldev(mdev)) {
2302                 retcode = ERR_NO_DISK;
2303                 goto fail;
2304         }
2305
2306         if (rs.no_resync && mdev->tconn->agreed_pro_version < 93) {
2307                 retcode = ERR_NEED_APV_93;
2308                 goto fail_ldev;
2309         }
2310
2311         rcu_read_lock();
2312         u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
2313         rcu_read_unlock();
2314         if (u_size != (sector_t)rs.resize_size) {
2315                 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
2316                 if (!new_disk_conf) {
2317                         retcode = ERR_NOMEM;
2318                         goto fail_ldev;
2319                 }
2320         }
2321
2322         if (mdev->ldev->known_size != drbd_get_capacity(mdev->ldev->backing_bdev))
2323                 mdev->ldev->known_size = drbd_get_capacity(mdev->ldev->backing_bdev);
2324
2325         if (new_disk_conf) {
2326                 mutex_lock(&mdev->tconn->conf_update);
2327                 old_disk_conf = mdev->ldev->disk_conf;
2328                 *new_disk_conf = *old_disk_conf;
2329                 new_disk_conf->disk_size = (sector_t)rs.resize_size;
2330                 rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
2331                 mutex_unlock(&mdev->tconn->conf_update);
2332                 synchronize_rcu();
2333                 kfree(old_disk_conf);
2334         }
2335
2336         ddsf = (rs.resize_force ? DDSF_FORCED : 0) | (rs.no_resync ? DDSF_NO_RESYNC : 0);
2337         dd = drbd_determine_dev_size(mdev, ddsf);
2338         drbd_md_sync(mdev);
2339         put_ldev(mdev);
2340         if (dd == dev_size_error) {
2341                 retcode = ERR_NOMEM_BITMAP;
2342                 goto fail;
2343         }
2344
2345         if (mdev->state.conn == C_CONNECTED) {
2346                 if (dd == grew)
2347                         set_bit(RESIZE_PENDING, &mdev->flags);
2348
2349                 drbd_send_uuids(mdev);
2350                 drbd_send_sizes(mdev, 1, ddsf);
2351         }
2352
2353  fail:
2354         drbd_adm_finish(info, retcode);
2355         return 0;
2356
2357  fail_ldev:
2358         put_ldev(mdev);
2359         goto fail;
2360 }
2361
2362 int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info)
2363 {
2364         enum drbd_ret_code retcode;
2365         struct drbd_tconn *tconn;
2366         struct res_opts res_opts;
2367         int err;
2368
2369         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
2370         if (!adm_ctx.reply_skb)
2371                 return retcode;
2372         if (retcode != NO_ERROR)
2373                 goto fail;
2374         tconn = adm_ctx.tconn;
2375
2376         res_opts = tconn->res_opts;
2377         if (should_set_defaults(info))
2378                 set_res_opts_defaults(&res_opts);
2379
2380         err = res_opts_from_attrs(&res_opts, info);
2381         if (err && err != -ENOMSG) {
2382                 retcode = ERR_MANDATORY_TAG;
2383                 drbd_msg_put_info(from_attrs_err_to_txt(err));
2384                 goto fail;
2385         }
2386
2387         err = set_resource_options(tconn, &res_opts);
2388         if (err) {
2389                 retcode = ERR_INVALID_REQUEST;
2390                 if (err == -ENOMEM)
2391                         retcode = ERR_NOMEM;
2392         }
2393
2394 fail:
2395         drbd_adm_finish(info, retcode);
2396         return 0;
2397 }
2398
2399 int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info)
2400 {
2401         struct drbd_conf *mdev;
2402         int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2403
2404         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2405         if (!adm_ctx.reply_skb)
2406                 return retcode;
2407         if (retcode != NO_ERROR)
2408                 goto out;
2409
2410         mdev = adm_ctx.mdev;
2411
2412         /* If there is still bitmap IO pending, probably because of a previous
2413          * resync just being finished, wait for it before requesting a new resync.
2414          * Also wait for it's after_state_ch(). */
2415         drbd_suspend_io(mdev);
2416         wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2417         drbd_flush_workqueue(mdev);
2418
2419         retcode = _drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T), CS_ORDERED);
2420
2421         if (retcode < SS_SUCCESS && retcode != SS_NEED_CONNECTION)
2422                 retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T));
2423
2424         while (retcode == SS_NEED_CONNECTION) {
2425                 spin_lock_irq(&mdev->tconn->req_lock);
2426                 if (mdev->state.conn < C_CONNECTED)
2427                         retcode = _drbd_set_state(_NS(mdev, disk, D_INCONSISTENT), CS_VERBOSE, NULL);
2428                 spin_unlock_irq(&mdev->tconn->req_lock);
2429
2430                 if (retcode != SS_NEED_CONNECTION)
2431                         break;
2432
2433                 retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T));
2434         }
2435         drbd_resume_io(mdev);
2436
2437 out:
2438         drbd_adm_finish(info, retcode);
2439         return 0;
2440 }
2441
2442 static int drbd_adm_simple_request_state(struct sk_buff *skb, struct genl_info *info,
2443                 union drbd_state mask, union drbd_state val)
2444 {
2445         enum drbd_ret_code retcode;
2446
2447         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2448         if (!adm_ctx.reply_skb)
2449                 return retcode;
2450         if (retcode != NO_ERROR)
2451                 goto out;
2452
2453         retcode = drbd_request_state(adm_ctx.mdev, mask, val);
2454 out:
2455         drbd_adm_finish(info, retcode);
2456         return 0;
2457 }
2458
2459 static int drbd_bmio_set_susp_al(struct drbd_conf *mdev)
2460 {
2461         int rv;
2462
2463         rv = drbd_bmio_set_n_write(mdev);
2464         drbd_suspend_al(mdev);
2465         return rv;
2466 }
2467
2468 int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info)
2469 {
2470         int retcode; /* drbd_ret_code, drbd_state_rv */
2471         struct drbd_conf *mdev;
2472
2473         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2474         if (!adm_ctx.reply_skb)
2475                 return retcode;
2476         if (retcode != NO_ERROR)
2477                 goto out;
2478
2479         mdev = adm_ctx.mdev;
2480
2481         /* If there is still bitmap IO pending, probably because of a previous
2482          * resync just being finished, wait for it before requesting a new resync.
2483          * Also wait for it's after_state_ch(). */
2484         drbd_suspend_io(mdev);
2485         wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2486         drbd_flush_workqueue(mdev);
2487
2488         retcode = _drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_S), CS_ORDERED);
2489         if (retcode < SS_SUCCESS) {
2490                 if (retcode == SS_NEED_CONNECTION && mdev->state.role == R_PRIMARY) {
2491                         /* The peer will get a resync upon connect anyways.
2492                          * Just make that into a full resync. */
2493                         retcode = drbd_request_state(mdev, NS(pdsk, D_INCONSISTENT));
2494                         if (retcode >= SS_SUCCESS) {
2495                                 if (drbd_bitmap_io(mdev, &drbd_bmio_set_susp_al,
2496                                                    "set_n_write from invalidate_peer",
2497                                                    BM_LOCKED_SET_ALLOWED))
2498                                         retcode = ERR_IO_MD_DISK;
2499                         }
2500                 } else
2501                         retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_S));
2502         }
2503         drbd_resume_io(mdev);
2504
2505 out:
2506         drbd_adm_finish(info, retcode);
2507         return 0;
2508 }
2509
2510 int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info)
2511 {
2512         enum drbd_ret_code retcode;
2513
2514         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2515         if (!adm_ctx.reply_skb)
2516                 return retcode;
2517         if (retcode != NO_ERROR)
2518                 goto out;
2519
2520         if (drbd_request_state(adm_ctx.mdev, NS(user_isp, 1)) == SS_NOTHING_TO_DO)
2521                 retcode = ERR_PAUSE_IS_SET;
2522 out:
2523         drbd_adm_finish(info, retcode);
2524         return 0;
2525 }
2526
2527 int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info)
2528 {
2529         union drbd_dev_state s;
2530         enum drbd_ret_code retcode;
2531
2532         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2533         if (!adm_ctx.reply_skb)
2534                 return retcode;
2535         if (retcode != NO_ERROR)
2536                 goto out;
2537
2538         if (drbd_request_state(adm_ctx.mdev, NS(user_isp, 0)) == SS_NOTHING_TO_DO) {
2539                 s = adm_ctx.mdev->state;
2540                 if (s.conn == C_PAUSED_SYNC_S || s.conn == C_PAUSED_SYNC_T) {
2541                         retcode = s.aftr_isp ? ERR_PIC_AFTER_DEP :
2542                                   s.peer_isp ? ERR_PIC_PEER_DEP : ERR_PAUSE_IS_CLEAR;
2543                 } else {
2544                         retcode = ERR_PAUSE_IS_CLEAR;
2545                 }
2546         }
2547
2548 out:
2549         drbd_adm_finish(info, retcode);
2550         return 0;
2551 }
2552
2553 int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info)
2554 {
2555         return drbd_adm_simple_request_state(skb, info, NS(susp, 1));
2556 }
2557
2558 int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info)
2559 {
2560         struct drbd_conf *mdev;
2561         int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2562
2563         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2564         if (!adm_ctx.reply_skb)
2565                 return retcode;
2566         if (retcode != NO_ERROR)
2567                 goto out;
2568
2569         mdev = adm_ctx.mdev;
2570         if (test_bit(NEW_CUR_UUID, &mdev->flags)) {
2571                 drbd_uuid_new_current(mdev);
2572                 clear_bit(NEW_CUR_UUID, &mdev->flags);
2573         }
2574         drbd_suspend_io(mdev);
2575         retcode = drbd_request_state(mdev, NS3(susp, 0, susp_nod, 0, susp_fen, 0));
2576         if (retcode == SS_SUCCESS) {
2577                 if (mdev->state.conn < C_CONNECTED)
2578                         tl_clear(mdev->tconn);
2579                 if (mdev->state.disk == D_DISKLESS || mdev->state.disk == D_FAILED)
2580                         tl_restart(mdev->tconn, FAIL_FROZEN_DISK_IO);
2581         }
2582         drbd_resume_io(mdev);
2583
2584 out:
2585         drbd_adm_finish(info, retcode);
2586         return 0;
2587 }
2588
2589 int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info)
2590 {
2591         return drbd_adm_simple_request_state(skb, info, NS(disk, D_OUTDATED));
2592 }
2593
2594 int nla_put_drbd_cfg_context(struct sk_buff *skb, struct drbd_tconn *tconn, unsigned vnr)
2595 {
2596         struct nlattr *nla;
2597         nla = nla_nest_start(skb, DRBD_NLA_CFG_CONTEXT);
2598         if (!nla)
2599                 goto nla_put_failure;
2600         if (vnr != VOLUME_UNSPECIFIED &&
2601             nla_put_u32(skb, T_ctx_volume, vnr))
2602                 goto nla_put_failure;
2603         if (nla_put_string(skb, T_ctx_resource_name, tconn->name))
2604                 goto nla_put_failure;
2605         if (tconn->my_addr_len &&
2606             nla_put(skb, T_ctx_my_addr, tconn->my_addr_len, &tconn->my_addr))
2607                 goto nla_put_failure;
2608         if (tconn->peer_addr_len &&
2609             nla_put(skb, T_ctx_peer_addr, tconn->peer_addr_len, &tconn->peer_addr))
2610                 goto nla_put_failure;
2611         nla_nest_end(skb, nla);
2612         return 0;
2613
2614 nla_put_failure:
2615         if (nla)
2616                 nla_nest_cancel(skb, nla);
2617         return -EMSGSIZE;
2618 }
2619
2620 int nla_put_status_info(struct sk_buff *skb, struct drbd_conf *mdev,
2621                 const struct sib_info *sib)
2622 {
2623         struct state_info *si = NULL; /* for sizeof(si->member); */
2624         struct net_conf *nc;
2625         struct nlattr *nla;
2626         int got_ldev;
2627         int err = 0;
2628         int exclude_sensitive;
2629
2630         /* If sib != NULL, this is drbd_bcast_event, which anyone can listen
2631          * to.  So we better exclude_sensitive information.
2632          *
2633          * If sib == NULL, this is drbd_adm_get_status, executed synchronously
2634          * in the context of the requesting user process. Exclude sensitive
2635          * information, unless current has superuser.
2636          *
2637          * NOTE: for drbd_adm_get_status_all(), this is a netlink dump, and
2638          * relies on the current implementation of netlink_dump(), which
2639          * executes the dump callback successively from netlink_recvmsg(),
2640          * always in the context of the receiving process */
2641         exclude_sensitive = sib || !capable(CAP_SYS_ADMIN);
2642
2643         got_ldev = get_ldev(mdev);
2644
2645         /* We need to add connection name and volume number information still.
2646          * Minor number is in drbd_genlmsghdr. */
2647         if (nla_put_drbd_cfg_context(skb, mdev->tconn, mdev->vnr))
2648                 goto nla_put_failure;
2649
2650         if (res_opts_to_skb(skb, &mdev->tconn->res_opts, exclude_sensitive))
2651                 goto nla_put_failure;
2652
2653         rcu_read_lock();
2654         if (got_ldev)
2655                 if (disk_conf_to_skb(skb, rcu_dereference(mdev->ldev->disk_conf), exclude_sensitive))
2656                         goto nla_put_failure;
2657
2658         nc = rcu_dereference(mdev->tconn->net_conf);
2659         if (nc)
2660                 err = net_conf_to_skb(skb, nc, exclude_sensitive);
2661         rcu_read_unlock();
2662         if (err)
2663                 goto nla_put_failure;
2664
2665         nla = nla_nest_start(skb, DRBD_NLA_STATE_INFO);
2666         if (!nla)
2667                 goto nla_put_failure;
2668         if (nla_put_u32(skb, T_sib_reason, sib ? sib->sib_reason : SIB_GET_STATUS_REPLY) ||
2669             nla_put_u32(skb, T_current_state, mdev->state.i) ||
2670             nla_put_u64(skb, T_ed_uuid, mdev->ed_uuid) ||
2671             nla_put_u64(skb, T_capacity, drbd_get_capacity(mdev->this_bdev)) ||
2672             nla_put_u64(skb, T_send_cnt, mdev->send_cnt) ||
2673             nla_put_u64(skb, T_recv_cnt, mdev->recv_cnt) ||
2674             nla_put_u64(skb, T_read_cnt, mdev->read_cnt) ||
2675             nla_put_u64(skb, T_writ_cnt, mdev->writ_cnt) ||
2676             nla_put_u64(skb, T_al_writ_cnt, mdev->al_writ_cnt) ||
2677             nla_put_u64(skb, T_bm_writ_cnt, mdev->bm_writ_cnt) ||
2678             nla_put_u32(skb, T_ap_bio_cnt, atomic_read(&mdev->ap_bio_cnt)) ||
2679             nla_put_u32(skb, T_ap_pending_cnt, atomic_read(&mdev->ap_pending_cnt)) ||
2680             nla_put_u32(skb, T_rs_pending_cnt, atomic_read(&mdev->rs_pending_cnt)))
2681                 goto nla_put_failure;
2682
2683         if (got_ldev) {
2684                 int err;
2685
2686                 spin_lock_irq(&mdev->ldev->md.uuid_lock);
2687                 err = nla_put(skb, T_uuids, sizeof(si->uuids), mdev->ldev->md.uuid);
2688                 spin_unlock_irq(&mdev->ldev->md.uuid_lock);
2689
2690                 if (err)
2691                         goto nla_put_failure;
2692
2693                 if (nla_put_u32(skb, T_disk_flags, mdev->ldev->md.flags) ||
2694                     nla_put_u64(skb, T_bits_total, drbd_bm_bits(mdev)) ||
2695                     nla_put_u64(skb, T_bits_oos, drbd_bm_total_weight(mdev)))
2696                         goto nla_put_failure;
2697                 if (C_SYNC_SOURCE <= mdev->state.conn &&
2698                     C_PAUSED_SYNC_T >= mdev->state.conn) {
2699                         if (nla_put_u64(skb, T_bits_rs_total, mdev->rs_total) ||
2700                             nla_put_u64(skb, T_bits_rs_failed, mdev->rs_failed))
2701                                 goto nla_put_failure;
2702                 }
2703         }
2704
2705         if (sib) {
2706                 switch(sib->sib_reason) {
2707                 case SIB_SYNC_PROGRESS:
2708                 case SIB_GET_STATUS_REPLY:
2709                         break;
2710                 case SIB_STATE_CHANGE:
2711                         if (nla_put_u32(skb, T_prev_state, sib->os.i) ||
2712                             nla_put_u32(skb, T_new_state, sib->ns.i))
2713                                 goto nla_put_failure;
2714                         break;
2715                 case SIB_HELPER_POST:
2716                         if (nla_put_u32(skb, T_helper_exit_code,
2717                                         sib->helper_exit_code))
2718                                 goto nla_put_failure;
2719                         /* fall through */
2720                 case SIB_HELPER_PRE:
2721                         if (nla_put_string(skb, T_helper, sib->helper_name))
2722                                 goto nla_put_failure;
2723                         break;
2724                 }
2725         }
2726         nla_nest_end(skb, nla);
2727
2728         if (0)
2729 nla_put_failure:
2730                 err = -EMSGSIZE;
2731         if (got_ldev)
2732                 put_ldev(mdev);
2733         return err;
2734 }
2735
2736 int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info)
2737 {
2738         enum drbd_ret_code retcode;
2739         int err;
2740
2741         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2742         if (!adm_ctx.reply_skb)
2743                 return retcode;
2744         if (retcode != NO_ERROR)
2745                 goto out;
2746
2747         err = nla_put_status_info(adm_ctx.reply_skb, adm_ctx.mdev, NULL);
2748         if (err) {
2749                 nlmsg_free(adm_ctx.reply_skb);
2750                 return err;
2751         }
2752 out:
2753         drbd_adm_finish(info, retcode);
2754         return 0;
2755 }
2756
2757 int get_one_status(struct sk_buff *skb, struct netlink_callback *cb)
2758 {
2759         struct drbd_conf *mdev;
2760         struct drbd_genlmsghdr *dh;
2761         struct drbd_tconn *pos = (struct drbd_tconn*)cb->args[0];
2762         struct drbd_tconn *tconn = NULL;
2763         struct drbd_tconn *tmp;
2764         unsigned volume = cb->args[1];
2765
2766         /* Open coded, deferred, iteration:
2767          * list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
2768          *      idr_for_each_entry(&tconn->volumes, mdev, i) {
2769          *        ...
2770          *      }
2771          * }
2772          * where tconn is cb->args[0];
2773          * and i is cb->args[1];
2774          *
2775          * cb->args[2] indicates if we shall loop over all resources,
2776          * or just dump all volumes of a single resource.
2777          *
2778          * This may miss entries inserted after this dump started,
2779          * or entries deleted before they are reached.
2780          *
2781          * We need to make sure the mdev won't disappear while
2782          * we are looking at it, and revalidate our iterators
2783          * on each iteration.
2784          */
2785
2786         /* synchronize with conn_create()/conn_destroy() */
2787         rcu_read_lock();
2788         /* revalidate iterator position */
2789         list_for_each_entry_rcu(tmp, &drbd_tconns, all_tconn) {
2790                 if (pos == NULL) {
2791                         /* first iteration */
2792                         pos = tmp;
2793                         tconn = pos;
2794                         break;
2795                 }
2796                 if (tmp == pos) {
2797                         tconn = pos;
2798                         break;
2799                 }
2800         }
2801         if (tconn) {
2802 next_tconn:
2803                 mdev = idr_get_next(&tconn->volumes, &volume);
2804                 if (!mdev) {
2805                         /* No more volumes to dump on this tconn.
2806                          * Advance tconn iterator. */
2807                         pos = list_entry_rcu(tconn->all_tconn.next,
2808                                              struct drbd_tconn, all_tconn);
2809                         /* Did we dump any volume on this tconn yet? */
2810                         if (volume != 0) {
2811                                 /* If we reached the end of the list,
2812                                  * or only a single resource dump was requested,
2813                                  * we are done. */
2814                                 if (&pos->all_tconn == &drbd_tconns || cb->args[2])
2815                                         goto out;
2816                                 volume = 0;
2817                                 tconn = pos;
2818                                 goto next_tconn;
2819                         }
2820                 }
2821
2822                 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).pid,
2823                                 cb->nlh->nlmsg_seq, &drbd_genl_family,
2824                                 NLM_F_MULTI, DRBD_ADM_GET_STATUS);
2825                 if (!dh)
2826                         goto out;
2827
2828                 if (!mdev) {
2829                         /* This is a tconn without a single volume.
2830                          * Suprisingly enough, it may have a network
2831                          * configuration. */
2832                         struct net_conf *nc;
2833                         dh->minor = -1U;
2834                         dh->ret_code = NO_ERROR;
2835                         if (nla_put_drbd_cfg_context(skb, tconn, VOLUME_UNSPECIFIED))
2836                                 goto cancel;
2837                         nc = rcu_dereference(tconn->net_conf);
2838                         if (nc && net_conf_to_skb(skb, nc, 1) != 0)
2839                                 goto cancel;
2840                         goto done;
2841                 }
2842
2843                 D_ASSERT(mdev->vnr == volume);
2844                 D_ASSERT(mdev->tconn == tconn);
2845
2846                 dh->minor = mdev_to_minor(mdev);
2847                 dh->ret_code = NO_ERROR;
2848
2849                 if (nla_put_status_info(skb, mdev, NULL)) {
2850 cancel:
2851                         genlmsg_cancel(skb, dh);
2852                         goto out;
2853                 }
2854 done:
2855                 genlmsg_end(skb, dh);
2856         }
2857
2858 out:
2859         rcu_read_unlock();
2860         /* where to start the next iteration */
2861         cb->args[0] = (long)pos;
2862         cb->args[1] = (pos == tconn) ? volume + 1 : 0;
2863
2864         /* No more tconns/volumes/minors found results in an empty skb.
2865          * Which will terminate the dump. */
2866         return skb->len;
2867 }
2868
2869 /*
2870  * Request status of all resources, or of all volumes within a single resource.
2871  *
2872  * This is a dump, as the answer may not fit in a single reply skb otherwise.
2873  * Which means we cannot use the family->attrbuf or other such members, because
2874  * dump is NOT protected by the genl_lock().  During dump, we only have access
2875  * to the incoming skb, and need to opencode "parsing" of the nlattr payload.
2876  *
2877  * Once things are setup properly, we call into get_one_status().
2878  */
2879 int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb)
2880 {
2881         const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
2882         struct nlattr *nla;
2883         const char *resource_name;
2884         struct drbd_tconn *tconn;
2885         int maxtype;
2886
2887         /* Is this a followup call? */
2888         if (cb->args[0]) {
2889                 /* ... of a single resource dump,
2890                  * and the resource iterator has been advanced already? */
2891                 if (cb->args[2] && cb->args[2] != cb->args[0])
2892                         return 0; /* DONE. */
2893                 goto dump;
2894         }
2895
2896         /* First call (from netlink_dump_start).  We need to figure out
2897          * which resource(s) the user wants us to dump. */
2898         nla = nla_find(nlmsg_attrdata(cb->nlh, hdrlen),
2899                         nlmsg_attrlen(cb->nlh, hdrlen),
2900                         DRBD_NLA_CFG_CONTEXT);
2901
2902         /* No explicit context given.  Dump all. */
2903         if (!nla)
2904                 goto dump;
2905         maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
2906         nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name));
2907         if (IS_ERR(nla))
2908                 return PTR_ERR(nla);
2909         /* context given, but no name present? */
2910         if (!nla)
2911                 return -EINVAL;
2912         resource_name = nla_data(nla);
2913         tconn = conn_get_by_name(resource_name);
2914
2915         if (!tconn)
2916                 return -ENODEV;
2917
2918         kref_put(&tconn->kref, &conn_destroy); /* get_one_status() (re)validates tconn by itself */
2919
2920         /* prime iterators, and set "filter" mode mark:
2921          * only dump this tconn. */
2922         cb->args[0] = (long)tconn;
2923         /* cb->args[1] = 0; passed in this way. */
2924         cb->args[2] = (long)tconn;
2925
2926 dump:
2927         return get_one_status(skb, cb);
2928 }
2929
2930 int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info)
2931 {
2932         enum drbd_ret_code retcode;
2933         struct timeout_parms tp;
2934         int err;
2935
2936         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2937         if (!adm_ctx.reply_skb)
2938                 return retcode;
2939         if (retcode != NO_ERROR)
2940                 goto out;
2941
2942         tp.timeout_type =
2943                 adm_ctx.mdev->state.pdsk == D_OUTDATED ? UT_PEER_OUTDATED :
2944                 test_bit(USE_DEGR_WFC_T, &adm_ctx.mdev->flags) ? UT_DEGRADED :
2945                 UT_DEFAULT;
2946
2947         err = timeout_parms_to_priv_skb(adm_ctx.reply_skb, &tp);
2948         if (err) {
2949                 nlmsg_free(adm_ctx.reply_skb);
2950                 return err;
2951         }
2952 out:
2953         drbd_adm_finish(info, retcode);
2954         return 0;
2955 }
2956
2957 int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info)
2958 {
2959         struct drbd_conf *mdev;
2960         enum drbd_ret_code retcode;
2961         struct start_ov_parms parms;
2962
2963         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
2964         if (!adm_ctx.reply_skb)
2965                 return retcode;
2966         if (retcode != NO_ERROR)
2967                 goto out;
2968
2969         mdev = adm_ctx.mdev;
2970
2971         /* resume from last known position, if possible */
2972         parms.ov_start_sector = mdev->ov_start_sector;
2973         parms.ov_stop_sector = ULLONG_MAX;
2974         if (info->attrs[DRBD_NLA_START_OV_PARMS]) {
2975                 int err = start_ov_parms_from_attrs(&parms, info);
2976                 if (err) {
2977                         retcode = ERR_MANDATORY_TAG;
2978                         drbd_msg_put_info(from_attrs_err_to_txt(err));
2979                         goto out;
2980                 }
2981         }
2982         /* w_make_ov_request expects position to be aligned */
2983         mdev->ov_start_sector = parms.ov_start_sector & ~(BM_SECT_PER_BIT-1);
2984         mdev->ov_stop_sector = parms.ov_stop_sector;
2985
2986         /* If there is still bitmap IO pending, e.g. previous resync or verify
2987          * just being finished, wait for it before requesting a new resync. */
2988         drbd_suspend_io(mdev);
2989         wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2990         retcode = drbd_request_state(mdev,NS(conn,C_VERIFY_S));
2991         drbd_resume_io(mdev);
2992 out:
2993         drbd_adm_finish(info, retcode);
2994         return 0;
2995 }
2996
2997
2998 int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info)
2999 {
3000         struct drbd_conf *mdev;
3001         enum drbd_ret_code retcode;
3002         int skip_initial_sync = 0;
3003         int err;
3004         struct new_c_uuid_parms args;
3005
3006         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
3007         if (!adm_ctx.reply_skb)
3008                 return retcode;
3009         if (retcode != NO_ERROR)
3010                 goto out_nolock;
3011
3012         mdev = adm_ctx.mdev;
3013         memset(&args, 0, sizeof(args));
3014         if (info->attrs[DRBD_NLA_NEW_C_UUID_PARMS]) {
3015                 err = new_c_uuid_parms_from_attrs(&args, info);
3016                 if (err) {
3017                         retcode = ERR_MANDATORY_TAG;
3018                         drbd_msg_put_info(from_attrs_err_to_txt(err));
3019                         goto out_nolock;
3020                 }
3021         }
3022
3023         mutex_lock(mdev->state_mutex); /* Protects us against serialized state changes. */
3024
3025         if (!get_ldev(mdev)) {
3026                 retcode = ERR_NO_DISK;
3027                 goto out;
3028         }
3029
3030         /* this is "skip initial sync", assume to be clean */
3031         if (mdev->state.conn == C_CONNECTED && mdev->tconn->agreed_pro_version >= 90 &&
3032             mdev->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED && args.clear_bm) {
3033                 dev_info(DEV, "Preparing to skip initial sync\n");
3034                 skip_initial_sync = 1;
3035         } else if (mdev->state.conn != C_STANDALONE) {
3036                 retcode = ERR_CONNECTED;
3037                 goto out_dec;
3038         }
3039
3040         drbd_uuid_set(mdev, UI_BITMAP, 0); /* Rotate UI_BITMAP to History 1, etc... */
3041         drbd_uuid_new_current(mdev); /* New current, previous to UI_BITMAP */
3042
3043         if (args.clear_bm) {
3044                 err = drbd_bitmap_io(mdev, &drbd_bmio_clear_n_write,
3045                         "clear_n_write from new_c_uuid", BM_LOCKED_MASK);
3046                 if (err) {
3047                         dev_err(DEV, "Writing bitmap failed with %d\n",err);
3048                         retcode = ERR_IO_MD_DISK;
3049                 }
3050                 if (skip_initial_sync) {
3051                         drbd_send_uuids_skip_initial_sync(mdev);
3052                         _drbd_uuid_set(mdev, UI_BITMAP, 0);
3053                         drbd_print_uuids(mdev, "cleared bitmap UUID");
3054                         spin_lock_irq(&mdev->tconn->req_lock);
3055                         _drbd_set_state(_NS2(mdev, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
3056                                         CS_VERBOSE, NULL);
3057                         spin_unlock_irq(&mdev->tconn->req_lock);
3058                 }
3059         }
3060
3061         drbd_md_sync(mdev);
3062 out_dec:
3063         put_ldev(mdev);
3064 out:
3065         mutex_unlock(mdev->state_mutex);
3066 out_nolock:
3067         drbd_adm_finish(info, retcode);
3068         return 0;
3069 }
3070
3071 static enum drbd_ret_code
3072 drbd_check_resource_name(const char *name)
3073 {
3074         if (!name || !name[0]) {
3075                 drbd_msg_put_info("resource name missing");
3076                 return ERR_MANDATORY_TAG;
3077         }
3078         /* if we want to use these in sysfs/configfs/debugfs some day,
3079          * we must not allow slashes */
3080         if (strchr(name, '/')) {
3081                 drbd_msg_put_info("invalid resource name");
3082                 return ERR_INVALID_REQUEST;
3083         }
3084         return NO_ERROR;
3085 }
3086
3087 int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info)
3088 {
3089         enum drbd_ret_code retcode;
3090         struct res_opts res_opts;
3091         int err;
3092
3093         retcode = drbd_adm_prepare(skb, info, 0);
3094         if (!adm_ctx.reply_skb)
3095                 return retcode;
3096         if (retcode != NO_ERROR)
3097                 goto out;
3098
3099         set_res_opts_defaults(&res_opts);
3100         err = res_opts_from_attrs(&res_opts, info);
3101         if (err && err != -ENOMSG) {
3102                 retcode = ERR_MANDATORY_TAG;
3103                 drbd_msg_put_info(from_attrs_err_to_txt(err));
3104                 goto out;
3105         }
3106
3107         retcode = drbd_check_resource_name(adm_ctx.resource_name);
3108         if (retcode != NO_ERROR)
3109                 goto out;
3110
3111         if (adm_ctx.tconn) {
3112                 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL) {
3113                         retcode = ERR_INVALID_REQUEST;
3114                         drbd_msg_put_info("resource exists");
3115                 }
3116                 /* else: still NO_ERROR */
3117                 goto out;
3118         }
3119
3120         if (!conn_create(adm_ctx.resource_name, &res_opts))
3121                 retcode = ERR_NOMEM;
3122 out:
3123         drbd_adm_finish(info, retcode);
3124         return 0;
3125 }
3126
3127 int drbd_adm_add_minor(struct sk_buff *skb, struct genl_info *info)
3128 {
3129         struct drbd_genlmsghdr *dh = info->userhdr;
3130         enum drbd_ret_code retcode;
3131
3132         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
3133         if (!adm_ctx.reply_skb)
3134                 return retcode;
3135         if (retcode != NO_ERROR)
3136                 goto out;
3137
3138         if (dh->minor > MINORMASK) {
3139                 drbd_msg_put_info("requested minor out of range");
3140                 retcode = ERR_INVALID_REQUEST;
3141                 goto out;
3142         }
3143         if (adm_ctx.volume > DRBD_VOLUME_MAX) {
3144                 drbd_msg_put_info("requested volume id out of range");
3145                 retcode = ERR_INVALID_REQUEST;
3146                 goto out;
3147         }
3148
3149         /* drbd_adm_prepare made sure already
3150          * that mdev->tconn and mdev->vnr match the request. */
3151         if (adm_ctx.mdev) {
3152                 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
3153                         retcode = ERR_MINOR_EXISTS;
3154                 /* else: still NO_ERROR */
3155                 goto out;
3156         }
3157
3158         retcode = conn_new_minor(adm_ctx.tconn, dh->minor, adm_ctx.volume);
3159 out:
3160         drbd_adm_finish(info, retcode);
3161         return 0;
3162 }
3163
3164 static enum drbd_ret_code adm_delete_minor(struct drbd_conf *mdev)
3165 {
3166         if (mdev->state.disk == D_DISKLESS &&
3167             /* no need to be mdev->state.conn == C_STANDALONE &&
3168              * we may want to delete a minor from a live replication group.
3169              */
3170             mdev->state.role == R_SECONDARY) {
3171                 _drbd_request_state(mdev, NS(conn, C_WF_REPORT_PARAMS),
3172                                     CS_VERBOSE + CS_WAIT_COMPLETE);
3173                 idr_remove(&mdev->tconn->volumes, mdev->vnr);
3174                 idr_remove(&minors, mdev_to_minor(mdev));
3175                 del_gendisk(mdev->vdisk);
3176                 synchronize_rcu();
3177                 kref_put(&mdev->kref, &drbd_minor_destroy);
3178                 return NO_ERROR;
3179         } else
3180                 return ERR_MINOR_CONFIGURED;
3181 }
3182
3183 int drbd_adm_delete_minor(struct sk_buff *skb, struct genl_info *info)
3184 {
3185         enum drbd_ret_code retcode;
3186
3187         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
3188         if (!adm_ctx.reply_skb)
3189                 return retcode;
3190         if (retcode != NO_ERROR)
3191                 goto out;
3192
3193         retcode = adm_delete_minor(adm_ctx.mdev);
3194 out:
3195         drbd_adm_finish(info, retcode);
3196         return 0;
3197 }
3198
3199 int drbd_adm_down(struct sk_buff *skb, struct genl_info *info)
3200 {
3201         int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
3202         struct drbd_conf *mdev;
3203         unsigned i;
3204
3205         retcode = drbd_adm_prepare(skb, info, 0);
3206         if (!adm_ctx.reply_skb)
3207                 return retcode;
3208         if (retcode != NO_ERROR)
3209                 goto out;
3210
3211         if (!adm_ctx.tconn) {
3212                 retcode = ERR_RES_NOT_KNOWN;
3213                 goto out;
3214         }
3215
3216         /* demote */
3217         idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3218                 retcode = drbd_set_role(mdev, R_SECONDARY, 0);
3219                 if (retcode < SS_SUCCESS) {
3220                         drbd_msg_put_info("failed to demote");
3221                         goto out;
3222                 }
3223         }
3224
3225         retcode = conn_try_disconnect(adm_ctx.tconn, 0);
3226         if (retcode < SS_SUCCESS) {
3227                 drbd_msg_put_info("failed to disconnect");
3228                 goto out;
3229         }
3230
3231         /* detach */
3232         idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3233                 retcode = adm_detach(mdev, 0);
3234                 if (retcode < SS_SUCCESS || retcode > NO_ERROR) {
3235                         drbd_msg_put_info("failed to detach");
3236                         goto out;
3237                 }
3238         }
3239
3240         /* If we reach this, all volumes (of this tconn) are Secondary,
3241          * Disconnected, Diskless, aka Unconfigured. Make sure all threads have
3242          * actually stopped, state handling only does drbd_thread_stop_nowait(). */
3243         drbd_thread_stop(&adm_ctx.tconn->worker);
3244
3245         /* Now, nothing can fail anymore */
3246
3247         /* delete volumes */
3248         idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3249                 retcode = adm_delete_minor(mdev);
3250                 if (retcode != NO_ERROR) {
3251                         /* "can not happen" */
3252                         drbd_msg_put_info("failed to delete volume");
3253                         goto out;
3254                 }
3255         }
3256
3257         /* delete connection */
3258         if (conn_lowest_minor(adm_ctx.tconn) < 0) {
3259                 list_del_rcu(&adm_ctx.tconn->all_tconn);
3260                 synchronize_rcu();
3261                 kref_put(&adm_ctx.tconn->kref, &conn_destroy);
3262
3263                 retcode = NO_ERROR;
3264         } else {
3265                 /* "can not happen" */
3266                 retcode = ERR_RES_IN_USE;
3267                 drbd_msg_put_info("failed to delete connection");
3268         }
3269         goto out;
3270 out:
3271         drbd_adm_finish(info, retcode);
3272         return 0;
3273 }
3274
3275 int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info)
3276 {
3277         enum drbd_ret_code retcode;
3278
3279         retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
3280         if (!adm_ctx.reply_skb)
3281                 return retcode;
3282         if (retcode != NO_ERROR)
3283                 goto out;
3284
3285         if (conn_lowest_minor(adm_ctx.tconn) < 0) {
3286                 list_del_rcu(&adm_ctx.tconn->all_tconn);
3287                 synchronize_rcu();
3288                 kref_put(&adm_ctx.tconn->kref, &conn_destroy);
3289
3290                 retcode = NO_ERROR;
3291         } else {
3292                 retcode = ERR_RES_IN_USE;
3293         }
3294
3295         if (retcode == NO_ERROR)
3296                 drbd_thread_stop(&adm_ctx.tconn->worker);
3297 out:
3298         drbd_adm_finish(info, retcode);
3299         return 0;
3300 }
3301
3302 void drbd_bcast_event(struct drbd_conf *mdev, const struct sib_info *sib)
3303 {
3304         static atomic_t drbd_genl_seq = ATOMIC_INIT(2); /* two. */
3305         struct sk_buff *msg;
3306         struct drbd_genlmsghdr *d_out;
3307         unsigned seq;
3308         int err = -ENOMEM;
3309
3310         seq = atomic_inc_return(&drbd_genl_seq);
3311         msg = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
3312         if (!msg)
3313                 goto failed;
3314
3315         err = -EMSGSIZE;
3316         d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT);
3317         if (!d_out) /* cannot happen, but anyways. */
3318                 goto nla_put_failure;
3319         d_out->minor = mdev_to_minor(mdev);
3320         d_out->ret_code = NO_ERROR;
3321
3322         if (nla_put_status_info(msg, mdev, sib))
3323                 goto nla_put_failure;
3324         genlmsg_end(msg, d_out);
3325         err = drbd_genl_multicast_events(msg, 0);
3326         /* msg has been consumed or freed in netlink_broadcast() */
3327         if (err && err != -ESRCH)
3328                 goto failed;
3329
3330         return;
3331
3332 nla_put_failure:
3333         nlmsg_free(msg);
3334 failed:
3335         dev_err(DEV, "Error %d while broadcasting event. "
3336                         "Event seq:%u sib_reason:%u\n",
3337                         err, seq, sib->sib_reason);
3338 }