blob: 4a30e2cae56d60e71d3f7fafb11ac22eb0783e8a [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_req.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
Philipp Reisnerb411b362009-09-25 16:07:19 -070026#include <linux/module.h>
27
28#include <linux/slab.h>
29#include <linux/drbd.h>
30#include "drbd_int.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070031#include "drbd_req.h"
32
33
34/* Update disk stats at start of I/O request */
35static void _drbd_start_io_acct(struct drbd_conf *mdev, struct drbd_request *req, struct bio *bio)
36{
37 const int rw = bio_data_dir(bio);
38 int cpu;
39 cpu = part_stat_lock();
40 part_stat_inc(cpu, &mdev->vdisk->part0, ios[rw]);
41 part_stat_add(cpu, &mdev->vdisk->part0, sectors[rw], bio_sectors(bio));
Philipp Reisner753c8912009-11-18 15:52:51 +010042 part_inc_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070043 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070044}
45
46/* Update disk stats when completing request upwards */
47static void _drbd_end_io_acct(struct drbd_conf *mdev, struct drbd_request *req)
48{
49 int rw = bio_data_dir(req->master_bio);
50 unsigned long duration = jiffies - req->start_time;
51 int cpu;
52 cpu = part_stat_lock();
53 part_stat_add(cpu, &mdev->vdisk->part0, ticks[rw], duration);
54 part_round_stats(cpu, &mdev->vdisk->part0);
Philipp Reisner753c8912009-11-18 15:52:51 +010055 part_dec_in_flight(&mdev->vdisk->part0, rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -070056 part_stat_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -070057}
58
59static void _req_is_done(struct drbd_conf *mdev, struct drbd_request *req, const int rw)
60{
61 const unsigned long s = req->rq_state;
Philipp Reisner288f4222010-05-27 15:07:43 +020062
63 /* remove it from the transfer log.
64 * well, only if it had been there in the first
65 * place... if it had not (local only or conflicting
66 * and never sent), it should still be "empty" as
67 * initialized in drbd_req_new(), so we can list_del() it
68 * here unconditionally */
69 list_del(&req->tl_requests);
70
Philipp Reisnerb411b362009-09-25 16:07:19 -070071 /* if it was a write, we may have to set the corresponding
72 * bit(s) out-of-sync first. If it had a local part, we need to
73 * release the reference to the activity log. */
74 if (rw == WRITE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -070075 /* Set out-of-sync unless both OK flags are set
76 * (local only or remote failed).
77 * Other places where we set out-of-sync:
78 * READ with local io-error */
79 if (!(s & RQ_NET_OK) || !(s & RQ_LOCAL_OK))
80 drbd_set_out_of_sync(mdev, req->sector, req->size);
81
82 if ((s & RQ_NET_OK) && (s & RQ_LOCAL_OK) && (s & RQ_NET_SIS))
83 drbd_set_in_sync(mdev, req->sector, req->size);
84
85 /* one might be tempted to move the drbd_al_complete_io
86 * to the local io completion callback drbd_endio_pri.
87 * but, if this was a mirror write, we may only
88 * drbd_al_complete_io after this is RQ_NET_DONE,
89 * otherwise the extent could be dropped from the al
90 * before it has actually been written on the peer.
91 * if we crash before our peer knows about the request,
92 * but after the extent has been dropped from the al,
93 * we would forget to resync the corresponding extent.
94 */
95 if (s & RQ_LOCAL_MASK) {
96 if (get_ldev_if_state(mdev, D_FAILED)) {
97 drbd_al_complete_io(mdev, req->sector);
98 put_ldev(mdev);
99 } else if (__ratelimit(&drbd_ratelimit_state)) {
100 dev_warn(DEV, "Should have called drbd_al_complete_io(, %llu), "
101 "but my Disk seems to have failed :(\n",
102 (unsigned long long) req->sector);
103 }
104 }
105 }
106
Philipp Reisner32fa7e92010-05-26 17:13:18 +0200107 drbd_req_free(req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700108}
109
110static void queue_barrier(struct drbd_conf *mdev)
111{
112 struct drbd_tl_epoch *b;
113
114 /* We are within the req_lock. Once we queued the barrier for sending,
115 * we set the CREATE_BARRIER bit. It is cleared as soon as a new
116 * barrier/epoch object is added. This is the only place this bit is
117 * set. It indicates that the barrier for this epoch is already queued,
118 * and no new epoch has been created yet. */
119 if (test_bit(CREATE_BARRIER, &mdev->flags))
120 return;
121
122 b = mdev->newest_tle;
123 b->w.cb = w_send_barrier;
124 /* inc_ap_pending done here, so we won't
125 * get imbalanced on connection loss.
126 * dec_ap_pending will be done in got_BarrierAck
127 * or (on connection loss) in tl_clear. */
128 inc_ap_pending(mdev);
129 drbd_queue_work(&mdev->data.work, &b->w);
130 set_bit(CREATE_BARRIER, &mdev->flags);
131}
132
133static void _about_to_complete_local_write(struct drbd_conf *mdev,
134 struct drbd_request *req)
135{
136 const unsigned long s = req->rq_state;
137 struct drbd_request *i;
138 struct drbd_epoch_entry *e;
139 struct hlist_node *n;
140 struct hlist_head *slot;
141
142 /* before we can signal completion to the upper layers,
143 * we may need to close the current epoch */
144 if (mdev->state.conn >= C_CONNECTED &&
145 req->epoch == mdev->newest_tle->br_number)
146 queue_barrier(mdev);
147
148 /* we need to do the conflict detection stuff,
149 * if we have the ee_hash (two_primaries) and
150 * this has been on the network */
151 if ((s & RQ_NET_DONE) && mdev->ee_hash != NULL) {
152 const sector_t sector = req->sector;
153 const int size = req->size;
154
155 /* ASSERT:
156 * there must be no conflicting requests, since
157 * they must have been failed on the spot */
158#define OVERLAPS overlaps(sector, size, i->sector, i->size)
159 slot = tl_hash_slot(mdev, sector);
160 hlist_for_each_entry(i, n, slot, colision) {
161 if (OVERLAPS) {
162 dev_alert(DEV, "LOGIC BUG: completed: %p %llus +%u; "
163 "other: %p %llus +%u\n",
164 req, (unsigned long long)sector, size,
165 i, (unsigned long long)i->sector, i->size);
166 }
167 }
168
169 /* maybe "wake" those conflicting epoch entries
170 * that wait for this request to finish.
171 *
172 * currently, there can be only _one_ such ee
173 * (well, or some more, which would be pending
174 * P_DISCARD_ACK not yet sent by the asender...),
175 * since we block the receiver thread upon the
176 * first conflict detection, which will wait on
177 * misc_wait. maybe we want to assert that?
178 *
179 * anyways, if we found one,
180 * we just have to do a wake_up. */
181#undef OVERLAPS
182#define OVERLAPS overlaps(sector, size, e->sector, e->size)
183 slot = ee_hash_slot(mdev, req->sector);
184 hlist_for_each_entry(e, n, slot, colision) {
185 if (OVERLAPS) {
186 wake_up(&mdev->misc_wait);
187 break;
188 }
189 }
190 }
191#undef OVERLAPS
192}
193
194void complete_master_bio(struct drbd_conf *mdev,
195 struct bio_and_error *m)
196{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700197 bio_endio(m->bio, m->error);
198 dec_ap_bio(mdev);
199}
200
201/* Helper for __req_mod().
202 * Set m->bio to the master bio, if it is fit to be completed,
203 * or leave it alone (it is initialized to NULL in __req_mod),
204 * if it has already been completed, or cannot be completed yet.
205 * If m->bio is set, the error status to be returned is placed in m->error.
206 */
207void _req_may_be_done(struct drbd_request *req, struct bio_and_error *m)
208{
209 const unsigned long s = req->rq_state;
210 struct drbd_conf *mdev = req->mdev;
211 /* only WRITES may end up here without a master bio (on barrier ack) */
212 int rw = req->master_bio ? bio_data_dir(req->master_bio) : WRITE;
213
Philipp Reisnerb411b362009-09-25 16:07:19 -0700214 /* we must not complete the master bio, while it is
215 * still being processed by _drbd_send_zc_bio (drbd_send_dblock)
216 * not yet acknowledged by the peer
217 * not yet completed by the local io subsystem
218 * these flags may get cleared in any order by
219 * the worker,
220 * the receiver,
221 * the bio_endio completion callbacks.
222 */
223 if (s & RQ_NET_QUEUED)
224 return;
225 if (s & RQ_NET_PENDING)
226 return;
227 if (s & RQ_LOCAL_PENDING)
228 return;
229
230 if (req->master_bio) {
231 /* this is data_received (remote read)
232 * or protocol C P_WRITE_ACK
233 * or protocol B P_RECV_ACK
234 * or protocol A "handed_over_to_network" (SendAck)
235 * or canceled or failed,
236 * or killed from the transfer log due to connection loss.
237 */
238
239 /*
240 * figure out whether to report success or failure.
241 *
242 * report success when at least one of the operations succeeded.
243 * or, to put the other way,
244 * only report failure, when both operations failed.
245 *
246 * what to do about the failures is handled elsewhere.
247 * what we need to do here is just: complete the master_bio.
248 *
249 * local completion error, if any, has been stored as ERR_PTR
250 * in private_bio within drbd_endio_pri.
251 */
252 int ok = (s & RQ_LOCAL_OK) || (s & RQ_NET_OK);
253 int error = PTR_ERR(req->private_bio);
254
255 /* remove the request from the conflict detection
256 * respective block_id verification hash */
257 if (!hlist_unhashed(&req->colision))
258 hlist_del(&req->colision);
259 else
260 D_ASSERT((s & RQ_NET_MASK) == 0);
261
262 /* for writes we need to do some extra housekeeping */
263 if (rw == WRITE)
264 _about_to_complete_local_write(mdev, req);
265
266 /* Update disk stats */
267 _drbd_end_io_acct(mdev, req);
268
269 m->error = ok ? 0 : (error ?: -EIO);
270 m->bio = req->master_bio;
271 req->master_bio = NULL;
272 }
273
274 if ((s & RQ_NET_MASK) == 0 || (s & RQ_NET_DONE)) {
275 /* this is disconnected (local only) operation,
276 * or protocol C P_WRITE_ACK,
277 * or protocol A or B P_BARRIER_ACK,
278 * or killed from the transfer log due to connection loss. */
279 _req_is_done(mdev, req, rw);
280 }
281 /* else: network part and not DONE yet. that is
282 * protocol A or B, barrier ack still pending... */
283}
284
285/*
286 * checks whether there was an overlapping request
287 * or ee already registered.
288 *
289 * if so, return 1, in which case this request is completed on the spot,
290 * without ever being submitted or send.
291 *
292 * return 0 if it is ok to submit this request.
293 *
294 * NOTE:
295 * paranoia: assume something above us is broken, and issues different write
296 * requests for the same block simultaneously...
297 *
298 * To ensure these won't be reordered differently on both nodes, resulting in
299 * diverging data sets, we discard the later one(s). Not that this is supposed
300 * to happen, but this is the rationale why we also have to check for
301 * conflicting requests with local origin, and why we have to do so regardless
302 * of whether we allowed multiple primaries.
303 *
304 * BTW, in case we only have one primary, the ee_hash is empty anyways, and the
305 * second hlist_for_each_entry becomes a noop. This is even simpler than to
306 * grab a reference on the net_conf, and check for the two_primaries flag...
307 */
308static int _req_conflicts(struct drbd_request *req)
309{
310 struct drbd_conf *mdev = req->mdev;
311 const sector_t sector = req->sector;
312 const int size = req->size;
313 struct drbd_request *i;
314 struct drbd_epoch_entry *e;
315 struct hlist_node *n;
316 struct hlist_head *slot;
317
318 D_ASSERT(hlist_unhashed(&req->colision));
319
320 if (!get_net_conf(mdev))
321 return 0;
322
323 /* BUG_ON */
324 ERR_IF (mdev->tl_hash_s == 0)
325 goto out_no_conflict;
326 BUG_ON(mdev->tl_hash == NULL);
327
328#define OVERLAPS overlaps(i->sector, i->size, sector, size)
329 slot = tl_hash_slot(mdev, sector);
330 hlist_for_each_entry(i, n, slot, colision) {
331 if (OVERLAPS) {
332 dev_alert(DEV, "%s[%u] Concurrent local write detected! "
333 "[DISCARD L] new: %llus +%u; "
334 "pending: %llus +%u\n",
335 current->comm, current->pid,
336 (unsigned long long)sector, size,
337 (unsigned long long)i->sector, i->size);
338 goto out_conflict;
339 }
340 }
341
342 if (mdev->ee_hash_s) {
343 /* now, check for overlapping requests with remote origin */
344 BUG_ON(mdev->ee_hash == NULL);
345#undef OVERLAPS
346#define OVERLAPS overlaps(e->sector, e->size, sector, size)
347 slot = ee_hash_slot(mdev, sector);
348 hlist_for_each_entry(e, n, slot, colision) {
349 if (OVERLAPS) {
350 dev_alert(DEV, "%s[%u] Concurrent remote write detected!"
351 " [DISCARD L] new: %llus +%u; "
352 "pending: %llus +%u\n",
353 current->comm, current->pid,
354 (unsigned long long)sector, size,
355 (unsigned long long)e->sector, e->size);
356 goto out_conflict;
357 }
358 }
359 }
360#undef OVERLAPS
361
362out_no_conflict:
363 /* this is like it should be, and what we expected.
364 * our users do behave after all... */
365 put_net_conf(mdev);
366 return 0;
367
368out_conflict:
369 put_net_conf(mdev);
370 return 1;
371}
372
373/* obviously this could be coded as many single functions
374 * instead of one huge switch,
375 * or by putting the code directly in the respective locations
376 * (as it has been before).
377 *
378 * but having it this way
379 * enforces that it is all in this one place, where it is easier to audit,
380 * it makes it obvious that whatever "event" "happens" to a request should
381 * happen "atomically" within the req_lock,
382 * and it enforces that we have to think in a very structured manner
383 * about the "events" that may happen to a request during its life time ...
384 */
385void __req_mod(struct drbd_request *req, enum drbd_req_event what,
386 struct bio_and_error *m)
387{
388 struct drbd_conf *mdev = req->mdev;
389 m->bio = NULL;
390
Philipp Reisnerb411b362009-09-25 16:07:19 -0700391 switch (what) {
392 default:
393 dev_err(DEV, "LOGIC BUG in %s:%u\n", __FILE__ , __LINE__);
394 break;
395
396 /* does not happen...
397 * initialization done in drbd_req_new
398 case created:
399 break;
400 */
401
402 case to_be_send: /* via network */
403 /* reached via drbd_make_request_common
404 * and from w_read_retry_remote */
405 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
406 req->rq_state |= RQ_NET_PENDING;
407 inc_ap_pending(mdev);
408 break;
409
410 case to_be_submitted: /* locally */
411 /* reached via drbd_make_request_common */
412 D_ASSERT(!(req->rq_state & RQ_LOCAL_MASK));
413 req->rq_state |= RQ_LOCAL_PENDING;
414 break;
415
416 case completed_ok:
417 if (bio_data_dir(req->master_bio) == WRITE)
418 mdev->writ_cnt += req->size>>9;
419 else
420 mdev->read_cnt += req->size>>9;
421
422 req->rq_state |= (RQ_LOCAL_COMPLETED|RQ_LOCAL_OK);
423 req->rq_state &= ~RQ_LOCAL_PENDING;
424
425 _req_may_be_done(req, m);
426 put_ldev(mdev);
427 break;
428
429 case write_completed_with_error:
430 req->rq_state |= RQ_LOCAL_COMPLETED;
431 req->rq_state &= ~RQ_LOCAL_PENDING;
432
Philipp Reisnerb411b362009-09-25 16:07:19 -0700433 __drbd_chk_io_error(mdev, FALSE);
434 _req_may_be_done(req, m);
435 put_ldev(mdev);
436 break;
437
438 case read_ahead_completed_with_error:
439 /* it is legal to fail READA */
440 req->rq_state |= RQ_LOCAL_COMPLETED;
441 req->rq_state &= ~RQ_LOCAL_PENDING;
442 _req_may_be_done(req, m);
443 put_ldev(mdev);
444 break;
445
446 case read_completed_with_error:
447 drbd_set_out_of_sync(mdev, req->sector, req->size);
448
449 req->rq_state |= RQ_LOCAL_COMPLETED;
450 req->rq_state &= ~RQ_LOCAL_PENDING;
451
Philipp Reisnerb411b362009-09-25 16:07:19 -0700452 D_ASSERT(!(req->rq_state & RQ_NET_MASK));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453
454 __drbd_chk_io_error(mdev, FALSE);
455 put_ldev(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700456
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200457 /* no point in retrying if there is no good remote data,
458 * or we have no connection. */
459 if (mdev->state.pdsk != D_UP_TO_DATE) {
460 _req_may_be_done(req, m);
461 break;
462 }
463
464 /* _req_mod(req,to_be_send); oops, recursion... */
465 req->rq_state |= RQ_NET_PENDING;
466 inc_ap_pending(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700467 /* fall through: _req_mod(req,queue_for_net_read); */
468
469 case queue_for_net_read:
470 /* READ or READA, and
471 * no local disk,
472 * or target area marked as invalid,
473 * or just got an io-error. */
474 /* from drbd_make_request_common
475 * or from bio_endio during read io-error recovery */
476
477 /* so we can verify the handle in the answer packet
478 * corresponding hlist_del is in _req_may_be_done() */
479 hlist_add_head(&req->colision, ar_hash_slot(mdev, req->sector));
480
Lars Ellenberg83c38832009-11-03 02:22:06 +0100481 set_bit(UNPLUG_REMOTE, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700482
483 D_ASSERT(req->rq_state & RQ_NET_PENDING);
484 req->rq_state |= RQ_NET_QUEUED;
485 req->w.cb = (req->rq_state & RQ_LOCAL_MASK)
486 ? w_read_retry_remote
487 : w_send_read_req;
488 drbd_queue_work(&mdev->data.work, &req->w);
489 break;
490
491 case queue_for_net_write:
492 /* assert something? */
493 /* from drbd_make_request_common only */
494
495 hlist_add_head(&req->colision, tl_hash_slot(mdev, req->sector));
496 /* corresponding hlist_del is in _req_may_be_done() */
497
498 /* NOTE
499 * In case the req ended up on the transfer log before being
500 * queued on the worker, it could lead to this request being
501 * missed during cleanup after connection loss.
502 * So we have to do both operations here,
503 * within the same lock that protects the transfer log.
504 *
505 * _req_add_to_epoch(req); this has to be after the
506 * _maybe_start_new_epoch(req); which happened in
507 * drbd_make_request_common, because we now may set the bit
508 * again ourselves to close the current epoch.
509 *
510 * Add req to the (now) current epoch (barrier). */
511
Lars Ellenberg83c38832009-11-03 02:22:06 +0100512 /* otherwise we may lose an unplug, which may cause some remote
513 * io-scheduler timeout to expire, increasing maximum latency,
514 * hurting performance. */
515 set_bit(UNPLUG_REMOTE, &mdev->flags);
516
Philipp Reisnerb411b362009-09-25 16:07:19 -0700517 /* see drbd_make_request_common,
518 * just after it grabs the req_lock */
519 D_ASSERT(test_bit(CREATE_BARRIER, &mdev->flags) == 0);
520
521 req->epoch = mdev->newest_tle->br_number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700522
523 /* increment size of current epoch */
Philipp Reisner7e602c02010-05-27 14:49:27 +0200524 mdev->newest_tle->n_writes++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700525
526 /* queue work item to send data */
527 D_ASSERT(req->rq_state & RQ_NET_PENDING);
528 req->rq_state |= RQ_NET_QUEUED;
529 req->w.cb = w_send_dblock;
530 drbd_queue_work(&mdev->data.work, &req->w);
531
532 /* close the epoch, in case it outgrew the limit */
Philipp Reisner7e602c02010-05-27 14:49:27 +0200533 if (mdev->newest_tle->n_writes >= mdev->net_conf->max_epoch_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700534 queue_barrier(mdev);
535
536 break;
537
538 case send_canceled:
539 /* treat it the same */
540 case send_failed:
541 /* real cleanup will be done from tl_clear. just update flags
542 * so it is no longer marked as on the worker queue */
543 req->rq_state &= ~RQ_NET_QUEUED;
544 /* if we did it right, tl_clear should be scheduled only after
545 * this, so this should not be necessary! */
546 _req_may_be_done(req, m);
547 break;
548
549 case handed_over_to_network:
550 /* assert something? */
551 if (bio_data_dir(req->master_bio) == WRITE &&
552 mdev->net_conf->wire_protocol == DRBD_PROT_A) {
553 /* this is what is dangerous about protocol A:
554 * pretend it was successfully written on the peer. */
555 if (req->rq_state & RQ_NET_PENDING) {
556 dec_ap_pending(mdev);
557 req->rq_state &= ~RQ_NET_PENDING;
558 req->rq_state |= RQ_NET_OK;
559 } /* else: neg-ack was faster... */
560 /* it is still not yet RQ_NET_DONE until the
561 * corresponding epoch barrier got acked as well,
562 * so we know what to dirty on connection loss */
563 }
564 req->rq_state &= ~RQ_NET_QUEUED;
565 req->rq_state |= RQ_NET_SENT;
566 /* because _drbd_send_zc_bio could sleep, and may want to
567 * dereference the bio even after the "write_acked_by_peer" and
568 * "completed_ok" events came in, once we return from
569 * _drbd_send_zc_bio (drbd_send_dblock), we have to check
570 * whether it is done already, and end it. */
571 _req_may_be_done(req, m);
572 break;
573
Lars Ellenbergd255e5f2010-05-27 09:45:45 +0200574 case read_retry_remote_canceled:
575 req->rq_state &= ~RQ_NET_QUEUED;
576 /* fall through, in case we raced with drbd_disconnect */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700577 case connection_lost_while_pending:
578 /* transfer log cleanup after connection loss */
579 /* assert something? */
580 if (req->rq_state & RQ_NET_PENDING)
581 dec_ap_pending(mdev);
582 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
583 req->rq_state |= RQ_NET_DONE;
584 /* if it is still queued, we may not complete it here.
585 * it will be canceled soon. */
586 if (!(req->rq_state & RQ_NET_QUEUED))
587 _req_may_be_done(req, m);
588 break;
589
590 case write_acked_by_peer_and_sis:
591 req->rq_state |= RQ_NET_SIS;
592 case conflict_discarded_by_peer:
593 /* for discarded conflicting writes of multiple primaries,
594 * there is no need to keep anything in the tl, potential
595 * node crashes are covered by the activity log. */
596 if (what == conflict_discarded_by_peer)
597 dev_alert(DEV, "Got DiscardAck packet %llus +%u!"
598 " DRBD is not a random data generator!\n",
599 (unsigned long long)req->sector, req->size);
600 req->rq_state |= RQ_NET_DONE;
601 /* fall through */
602 case write_acked_by_peer:
603 /* protocol C; successfully written on peer.
604 * Nothing to do here.
605 * We want to keep the tl in place for all protocols, to cater
606 * for volatile write-back caches on lower level devices.
607 *
608 * A barrier request is expected to have forced all prior
609 * requests onto stable storage, so completion of a barrier
610 * request could set NET_DONE right here, and not wait for the
611 * P_BARRIER_ACK, but that is an unnecessary optimization. */
612
613 /* this makes it effectively the same as for: */
614 case recv_acked_by_peer:
615 /* protocol B; pretends to be successfully written on peer.
616 * see also notes above in handed_over_to_network about
617 * protocol != C */
618 req->rq_state |= RQ_NET_OK;
619 D_ASSERT(req->rq_state & RQ_NET_PENDING);
620 dec_ap_pending(mdev);
621 req->rq_state &= ~RQ_NET_PENDING;
622 _req_may_be_done(req, m);
623 break;
624
625 case neg_acked:
626 /* assert something? */
627 if (req->rq_state & RQ_NET_PENDING)
628 dec_ap_pending(mdev);
629 req->rq_state &= ~(RQ_NET_OK|RQ_NET_PENDING);
630
631 req->rq_state |= RQ_NET_DONE;
632 _req_may_be_done(req, m);
633 /* else: done by handed_over_to_network */
634 break;
635
636 case barrier_acked:
Philipp Reisner288f4222010-05-27 15:07:43 +0200637 if (!(req->rq_state & RQ_WRITE))
638 break;
639
Philipp Reisnerb411b362009-09-25 16:07:19 -0700640 if (req->rq_state & RQ_NET_PENDING) {
641 /* barrier came in before all requests have been acked.
642 * this is bad, because if the connection is lost now,
643 * we won't be able to clean them up... */
644 dev_err(DEV, "FIXME (barrier_acked but pending)\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700645 list_move(&req->tl_requests, &mdev->out_of_sequence_requests);
646 }
647 D_ASSERT(req->rq_state & RQ_NET_SENT);
648 req->rq_state |= RQ_NET_DONE;
649 _req_may_be_done(req, m);
650 break;
651
652 case data_received:
653 D_ASSERT(req->rq_state & RQ_NET_PENDING);
654 dec_ap_pending(mdev);
655 req->rq_state &= ~RQ_NET_PENDING;
656 req->rq_state |= (RQ_NET_OK|RQ_NET_DONE);
657 _req_may_be_done(req, m);
658 break;
659 };
660}
661
662/* we may do a local read if:
663 * - we are consistent (of course),
664 * - or we are generally inconsistent,
665 * BUT we are still/already IN SYNC for this area.
666 * since size may be bigger than BM_BLOCK_SIZE,
667 * we may need to check several bits.
668 */
669static int drbd_may_do_local_read(struct drbd_conf *mdev, sector_t sector, int size)
670{
671 unsigned long sbnr, ebnr;
672 sector_t esector, nr_sectors;
673
674 if (mdev->state.disk == D_UP_TO_DATE)
675 return 1;
676 if (mdev->state.disk >= D_OUTDATED)
677 return 0;
678 if (mdev->state.disk < D_INCONSISTENT)
679 return 0;
680 /* state.disk == D_INCONSISTENT We will have a look at the BitMap */
681 nr_sectors = drbd_get_capacity(mdev->this_bdev);
682 esector = sector + (size >> 9) - 1;
683
684 D_ASSERT(sector < nr_sectors);
685 D_ASSERT(esector < nr_sectors);
686
687 sbnr = BM_SECT_TO_BIT(sector);
688 ebnr = BM_SECT_TO_BIT(esector);
689
690 return 0 == drbd_bm_count_bits(mdev, sbnr, ebnr);
691}
692
693static int drbd_make_request_common(struct drbd_conf *mdev, struct bio *bio)
694{
695 const int rw = bio_rw(bio);
696 const int size = bio->bi_size;
697 const sector_t sector = bio->bi_sector;
698 struct drbd_tl_epoch *b = NULL;
699 struct drbd_request *req;
700 int local, remote;
701 int err = -EIO;
Philipp Reisner9a25a042010-05-10 16:42:23 +0200702 int ret = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700703
704 /* allocate outside of all locks; */
705 req = drbd_req_new(mdev, bio);
706 if (!req) {
707 dec_ap_bio(mdev);
708 /* only pass the error to the upper layers.
709 * if user cannot handle io errors, that's not our business. */
710 dev_err(DEV, "could not kmalloc() req\n");
711 bio_endio(bio, -ENOMEM);
712 return 0;
713 }
714
Philipp Reisnerb411b362009-09-25 16:07:19 -0700715 local = get_ldev(mdev);
716 if (!local) {
717 bio_put(req->private_bio); /* or we get a bio leak */
718 req->private_bio = NULL;
719 }
720 if (rw == WRITE) {
721 remote = 1;
722 } else {
723 /* READ || READA */
724 if (local) {
725 if (!drbd_may_do_local_read(mdev, sector, size)) {
726 /* we could kick the syncer to
727 * sync this extent asap, wait for
728 * it, then continue locally.
729 * Or just issue the request remotely.
730 */
731 local = 0;
732 bio_put(req->private_bio);
733 req->private_bio = NULL;
734 put_ldev(mdev);
735 }
736 }
737 remote = !local && mdev->state.pdsk >= D_UP_TO_DATE;
738 }
739
740 /* If we have a disk, but a READA request is mapped to remote,
741 * we are R_PRIMARY, D_INCONSISTENT, SyncTarget.
742 * Just fail that READA request right here.
743 *
744 * THINK: maybe fail all READA when not local?
745 * or make this configurable...
746 * if network is slow, READA won't do any good.
747 */
748 if (rw == READA && mdev->state.disk >= D_INCONSISTENT && !local) {
749 err = -EWOULDBLOCK;
750 goto fail_and_free_req;
751 }
752
753 /* For WRITES going to the local disk, grab a reference on the target
754 * extent. This waits for any resync activity in the corresponding
755 * resync extent to finish, and, if necessary, pulls in the target
756 * extent into the activity log, which involves further disk io because
757 * of transactional on-disk meta data updates. */
758 if (rw == WRITE && local)
759 drbd_al_begin_io(mdev, sector);
760
761 remote = remote && (mdev->state.pdsk == D_UP_TO_DATE ||
762 (mdev->state.pdsk == D_INCONSISTENT &&
763 mdev->state.conn >= C_CONNECTED));
764
Philipp Reisner9a25a042010-05-10 16:42:23 +0200765 if (!(local || remote) && !mdev->state.susp) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700766 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
767 goto fail_free_complete;
768 }
769
770 /* For WRITE request, we have to make sure that we have an
771 * unused_spare_tle, in case we need to start a new epoch.
772 * I try to be smart and avoid to pre-allocate always "just in case",
773 * but there is a race between testing the bit and pointer outside the
774 * spinlock, and grabbing the spinlock.
775 * if we lost that race, we retry. */
776 if (rw == WRITE && remote &&
777 mdev->unused_spare_tle == NULL &&
778 test_bit(CREATE_BARRIER, &mdev->flags)) {
779allocate_barrier:
780 b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_NOIO);
781 if (!b) {
782 dev_err(DEV, "Failed to alloc barrier.\n");
783 err = -ENOMEM;
784 goto fail_free_complete;
785 }
786 }
787
788 /* GOOD, everything prepared, grab the spin_lock */
789 spin_lock_irq(&mdev->req_lock);
790
Philipp Reisner9a25a042010-05-10 16:42:23 +0200791 if (mdev->state.susp) {
792 /* If we got suspended, use the retry mechanism of
793 generic_make_request() to restart processing of this
794 bio. In the next call to drbd_make_request_26
795 we sleep in inc_ap_bio() */
796 ret = 1;
797 spin_unlock_irq(&mdev->req_lock);
798 goto fail_free_complete;
799 }
800
Philipp Reisnerb411b362009-09-25 16:07:19 -0700801 if (remote) {
802 remote = (mdev->state.pdsk == D_UP_TO_DATE ||
803 (mdev->state.pdsk == D_INCONSISTENT &&
804 mdev->state.conn >= C_CONNECTED));
805 if (!remote)
806 dev_warn(DEV, "lost connection while grabbing the req_lock!\n");
807 if (!(local || remote)) {
808 dev_err(DEV, "IO ERROR: neither local nor remote disk\n");
809 spin_unlock_irq(&mdev->req_lock);
810 goto fail_free_complete;
811 }
812 }
813
814 if (b && mdev->unused_spare_tle == NULL) {
815 mdev->unused_spare_tle = b;
816 b = NULL;
817 }
818 if (rw == WRITE && remote &&
819 mdev->unused_spare_tle == NULL &&
820 test_bit(CREATE_BARRIER, &mdev->flags)) {
821 /* someone closed the current epoch
822 * while we were grabbing the spinlock */
823 spin_unlock_irq(&mdev->req_lock);
824 goto allocate_barrier;
825 }
826
827
828 /* Update disk stats */
829 _drbd_start_io_acct(mdev, req, bio);
830
831 /* _maybe_start_new_epoch(mdev);
832 * If we need to generate a write barrier packet, we have to add the
833 * new epoch (barrier) object, and queue the barrier packet for sending,
834 * and queue the req's data after it _within the same lock_, otherwise
835 * we have race conditions were the reorder domains could be mixed up.
836 *
837 * Even read requests may start a new epoch and queue the corresponding
838 * barrier packet. To get the write ordering right, we only have to
839 * make sure that, if this is a write request and it triggered a
840 * barrier packet, this request is queued within the same spinlock. */
841 if (remote && mdev->unused_spare_tle &&
842 test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) {
843 _tl_add_barrier(mdev, mdev->unused_spare_tle);
844 mdev->unused_spare_tle = NULL;
845 } else {
846 D_ASSERT(!(remote && rw == WRITE &&
847 test_bit(CREATE_BARRIER, &mdev->flags)));
848 }
849
850 /* NOTE
851 * Actually, 'local' may be wrong here already, since we may have failed
852 * to write to the meta data, and may become wrong anytime because of
853 * local io-error for some other request, which would lead to us
854 * "detaching" the local disk.
855 *
856 * 'remote' may become wrong any time because the network could fail.
857 *
858 * This is a harmless race condition, though, since it is handled
859 * correctly at the appropriate places; so it just defers the failure
860 * of the respective operation.
861 */
862
863 /* mark them early for readability.
864 * this just sets some state flags. */
865 if (remote)
866 _req_mod(req, to_be_send);
867 if (local)
868 _req_mod(req, to_be_submitted);
869
870 /* check this request on the collision detection hash tables.
871 * if we have a conflict, just complete it here.
872 * THINK do we want to check reads, too? (I don't think so...) */
873 if (rw == WRITE && _req_conflicts(req)) {
874 /* this is a conflicting request.
875 * even though it may have been only _partially_
876 * overlapping with one of the currently pending requests,
877 * without even submitting or sending it, we will
878 * pretend that it was successfully served right now.
879 */
880 if (local) {
881 bio_put(req->private_bio);
882 req->private_bio = NULL;
883 drbd_al_complete_io(mdev, req->sector);
884 put_ldev(mdev);
885 local = 0;
886 }
887 if (remote)
888 dec_ap_pending(mdev);
889 _drbd_end_io_acct(mdev, req);
890 /* THINK: do we want to fail it (-EIO), or pretend success? */
891 bio_endio(req->master_bio, 0);
892 req->master_bio = NULL;
893 dec_ap_bio(mdev);
894 drbd_req_free(req);
895 remote = 0;
896 }
897
Philipp Reisner288f4222010-05-27 15:07:43 +0200898
899 list_add_tail(&req->tl_requests, &mdev->newest_tle->requests);
900
Philipp Reisnerb411b362009-09-25 16:07:19 -0700901 /* NOTE remote first: to get the concurrent write detection right,
902 * we must register the request before start of local IO. */
903 if (remote) {
904 /* either WRITE and C_CONNECTED,
905 * or READ, and no local disk,
906 * or READ, but not in sync.
907 */
908 _req_mod(req, (rw == WRITE)
909 ? queue_for_net_write
910 : queue_for_net_read);
911 }
912 spin_unlock_irq(&mdev->req_lock);
913 kfree(b); /* if someone else has beaten us to it... */
914
915 if (local) {
916 req->private_bio->bi_bdev = mdev->ldev->backing_bdev;
917
Philipp Reisnerb411b362009-09-25 16:07:19 -0700918 if (FAULT_ACTIVE(mdev, rw == WRITE ? DRBD_FAULT_DT_WR
919 : rw == READ ? DRBD_FAULT_DT_RD
920 : DRBD_FAULT_DT_RA))
921 bio_endio(req->private_bio, -EIO);
922 else
923 generic_make_request(req->private_bio);
924 }
925
926 /* we need to plug ALWAYS since we possibly need to kick lo_dev.
927 * we plug after submit, so we won't miss an unplug event */
928 drbd_plug_device(mdev);
929
930 return 0;
931
932fail_free_complete:
933 if (rw == WRITE && local)
934 drbd_al_complete_io(mdev, sector);
935fail_and_free_req:
936 if (local) {
937 bio_put(req->private_bio);
938 req->private_bio = NULL;
939 put_ldev(mdev);
940 }
Philipp Reisner9a25a042010-05-10 16:42:23 +0200941 if (!ret)
942 bio_endio(bio, err);
943
Philipp Reisnerb411b362009-09-25 16:07:19 -0700944 drbd_req_free(req);
945 dec_ap_bio(mdev);
946 kfree(b);
947
Philipp Reisner9a25a042010-05-10 16:42:23 +0200948 return ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700949}
950
951/* helper function for drbd_make_request
952 * if we can determine just by the mdev (state) that this request will fail,
953 * return 1
954 * otherwise return 0
955 */
956static int drbd_fail_request_early(struct drbd_conf *mdev, int is_write)
957{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958 if (mdev->state.role != R_PRIMARY &&
959 (!allow_oos || is_write)) {
960 if (__ratelimit(&drbd_ratelimit_state)) {
961 dev_err(DEV, "Process %s[%u] tried to %s; "
962 "since we are not in Primary state, "
963 "we cannot allow this\n",
964 current->comm, current->pid,
965 is_write ? "WRITE" : "READ");
966 }
967 return 1;
968 }
969
970 /*
971 * Paranoia: we might have been primary, but sync target, or
972 * even diskless, then lost the connection.
973 * This should have been handled (panic? suspend?) somewhere
974 * else. But maybe it was not, so check again here.
975 * Caution: as long as we do not have a read/write lock on mdev,
976 * to serialize state changes, this is racy, since we may lose
977 * the connection *after* we test for the cstate.
978 */
979 if (mdev->state.disk < D_UP_TO_DATE && mdev->state.pdsk < D_UP_TO_DATE) {
980 if (__ratelimit(&drbd_ratelimit_state))
981 dev_err(DEV, "Sorry, I have no access to good data anymore.\n");
982 return 1;
983 }
984
985 return 0;
986}
987
988int drbd_make_request_26(struct request_queue *q, struct bio *bio)
989{
990 unsigned int s_enr, e_enr;
991 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
992
993 if (drbd_fail_request_early(mdev, bio_data_dir(bio) & WRITE)) {
994 bio_endio(bio, -EPERM);
995 return 0;
996 }
997
998 /* Reject barrier requests if we know the underlying device does
999 * not support them.
1000 * XXX: Need to get this info from peer as well some how so we
1001 * XXX: reject if EITHER side/data/metadata area does not support them.
1002 *
1003 * because of those XXX, this is not yet enabled,
1004 * i.e. in drbd_init_set_defaults we set the NO_BARRIER_SUPP bit.
1005 */
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001006 if (unlikely(bio->bi_rw & REQ_HARDBARRIER) && test_bit(NO_BARRIER_SUPP, &mdev->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001007 /* dev_warn(DEV, "Rejecting barrier request as underlying device does not support\n"); */
1008 bio_endio(bio, -EOPNOTSUPP);
1009 return 0;
1010 }
1011
1012 /*
1013 * what we "blindly" assume:
1014 */
1015 D_ASSERT(bio->bi_size > 0);
1016 D_ASSERT((bio->bi_size & 0x1ff) == 0);
1017 D_ASSERT(bio->bi_idx == 0);
1018
1019 /* to make some things easier, force alignment of requests within the
1020 * granularity of our hash tables */
1021 s_enr = bio->bi_sector >> HT_SHIFT;
1022 e_enr = (bio->bi_sector+(bio->bi_size>>9)-1) >> HT_SHIFT;
1023
1024 if (likely(s_enr == e_enr)) {
1025 inc_ap_bio(mdev, 1);
1026 return drbd_make_request_common(mdev, bio);
1027 }
1028
1029 /* can this bio be split generically?
1030 * Maybe add our own split-arbitrary-bios function. */
1031 if (bio->bi_vcnt != 1 || bio->bi_idx != 0 || bio->bi_size > DRBD_MAX_SEGMENT_SIZE) {
1032 /* rather error out here than BUG in bio_split */
1033 dev_err(DEV, "bio would need to, but cannot, be split: "
1034 "(vcnt=%u,idx=%u,size=%u,sector=%llu)\n",
1035 bio->bi_vcnt, bio->bi_idx, bio->bi_size,
1036 (unsigned long long)bio->bi_sector);
1037 bio_endio(bio, -EINVAL);
1038 } else {
1039 /* This bio crosses some boundary, so we have to split it. */
1040 struct bio_pair *bp;
1041 /* works for the "do not cross hash slot boundaries" case
1042 * e.g. sector 262269, size 4096
1043 * s_enr = 262269 >> 6 = 4097
1044 * e_enr = (262269+8-1) >> 6 = 4098
1045 * HT_SHIFT = 6
1046 * sps = 64, mask = 63
1047 * first_sectors = 64 - (262269 & 63) = 3
1048 */
1049 const sector_t sect = bio->bi_sector;
1050 const int sps = 1 << HT_SHIFT; /* sectors per slot */
1051 const int mask = sps - 1;
1052 const sector_t first_sectors = sps - (sect & mask);
1053 bp = bio_split(bio,
1054#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28)
1055 bio_split_pool,
1056#endif
1057 first_sectors);
1058
1059 /* we need to get a "reference count" (ap_bio_cnt)
1060 * to avoid races with the disconnect/reconnect/suspend code.
Philipp Reisner9a25a042010-05-10 16:42:23 +02001061 * In case we need to split the bio here, we need to get three references
Philipp Reisnerb411b362009-09-25 16:07:19 -07001062 * atomically, otherwise we might deadlock when trying to submit the
1063 * second one! */
Philipp Reisner9a25a042010-05-10 16:42:23 +02001064 inc_ap_bio(mdev, 3);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001065
1066 D_ASSERT(e_enr == s_enr + 1);
1067
Philipp Reisner9a25a042010-05-10 16:42:23 +02001068 while (drbd_make_request_common(mdev, &bp->bio1))
1069 inc_ap_bio(mdev, 1);
1070
1071 while (drbd_make_request_common(mdev, &bp->bio2))
1072 inc_ap_bio(mdev, 1);
1073
1074 dec_ap_bio(mdev);
1075
Philipp Reisnerb411b362009-09-25 16:07:19 -07001076 bio_pair_release(bp);
1077 }
1078 return 0;
1079}
1080
1081/* This is called by bio_add_page(). With this function we reduce
1082 * the number of BIOs that span over multiple DRBD_MAX_SEGMENT_SIZEs
1083 * units (was AL_EXTENTs).
1084 *
1085 * we do the calculation within the lower 32bit of the byte offsets,
1086 * since we don't care for actual offset, but only check whether it
1087 * would cross "activity log extent" boundaries.
1088 *
1089 * As long as the BIO is empty we have to allow at least one bvec,
1090 * regardless of size and offset. so the resulting bio may still
1091 * cross extent boundaries. those are dealt with (bio_split) in
1092 * drbd_make_request_26.
1093 */
1094int drbd_merge_bvec(struct request_queue *q, struct bvec_merge_data *bvm, struct bio_vec *bvec)
1095{
1096 struct drbd_conf *mdev = (struct drbd_conf *) q->queuedata;
1097 unsigned int bio_offset =
1098 (unsigned int)bvm->bi_sector << 9; /* 32 bit */
1099 unsigned int bio_size = bvm->bi_size;
1100 int limit, backing_limit;
1101
1102 limit = DRBD_MAX_SEGMENT_SIZE
1103 - ((bio_offset & (DRBD_MAX_SEGMENT_SIZE-1)) + bio_size);
1104 if (limit < 0)
1105 limit = 0;
1106 if (bio_size == 0) {
1107 if (limit <= bvec->bv_len)
1108 limit = bvec->bv_len;
1109 } else if (limit && get_ldev(mdev)) {
1110 struct request_queue * const b =
1111 mdev->ldev->backing_bdev->bd_disk->queue;
Lars Ellenberga1c88d02010-05-14 19:16:41 +02001112 if (b->merge_bvec_fn) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001113 backing_limit = b->merge_bvec_fn(b, bvm, bvec);
1114 limit = min(limit, backing_limit);
1115 }
1116 put_ldev(mdev);
1117 }
1118 return limit;
1119}