Whamcloud - gitweb
de7e612af5131be2b06da406ae6f0f4e3b677e27
[fs/lustre-release.git] / lustre / ptlrpc / client.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2015, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  */
32
33 /** Implementation of client-side PortalRPC interfaces */
34
35 #define DEBUG_SUBSYSTEM S_RPC
36
37 #include <obd_support.h>
38 #include <obd_class.h>
39 #include <lustre_lib.h>
40 #include <lustre_ha.h>
41 #include <lustre_import.h>
42 #include <lustre_req_layout.h>
43
44 #include "ptlrpc_internal.h"
45
46 const struct ptlrpc_bulk_frag_ops ptlrpc_bulk_kiov_pin_ops = {
47         .add_kiov_frag  = ptlrpc_prep_bulk_page_pin,
48         .release_frags  = ptlrpc_release_bulk_page_pin,
49 };
50 EXPORT_SYMBOL(ptlrpc_bulk_kiov_pin_ops);
51
52 const struct ptlrpc_bulk_frag_ops ptlrpc_bulk_kiov_nopin_ops = {
53         .add_kiov_frag  = ptlrpc_prep_bulk_page_nopin,
54         .release_frags  = ptlrpc_release_bulk_noop,
55 };
56 EXPORT_SYMBOL(ptlrpc_bulk_kiov_nopin_ops);
57
58 const struct ptlrpc_bulk_frag_ops ptlrpc_bulk_kvec_ops = {
59         .add_iov_frag = ptlrpc_prep_bulk_frag,
60 };
61 EXPORT_SYMBOL(ptlrpc_bulk_kvec_ops);
62
63 static int ptlrpc_send_new_req(struct ptlrpc_request *req);
64 static int ptlrpcd_check_work(struct ptlrpc_request *req);
65 static int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async);
66
67 /**
68  * Initialize passed in client structure \a cl.
69  */
70 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
71                         struct ptlrpc_client *cl)
72 {
73         cl->cli_request_portal = req_portal;
74         cl->cli_reply_portal   = rep_portal;
75         cl->cli_name           = name;
76 }
77 EXPORT_SYMBOL(ptlrpc_init_client);
78
79 /**
80  * Return PortalRPC connection for remore uud \a uuid
81  */
82 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid)
83 {
84         struct ptlrpc_connection *c;
85         lnet_nid_t                self;
86         lnet_process_id_t         peer;
87         int                       err;
88
89         /* ptlrpc_uuid_to_peer() initializes its 2nd parameter
90          * before accessing its values. */
91         /* coverity[uninit_use_in_call] */
92         err = ptlrpc_uuid_to_peer(uuid, &peer, &self);
93         if (err != 0) {
94                 CNETERR("cannot find peer %s!\n", uuid->uuid);
95                 return NULL;
96         }
97
98         c = ptlrpc_connection_get(peer, self, uuid);
99         if (c) {
100                 memcpy(c->c_remote_uuid.uuid,
101                        uuid->uuid, sizeof(c->c_remote_uuid.uuid));
102         }
103
104         CDEBUG(D_INFO, "%s -> %p\n", uuid->uuid, c);
105
106         return c;
107 }
108
109 /**
110  * Allocate and initialize new bulk descriptor on the sender.
111  * Returns pointer to the descriptor or NULL on error.
112  */
113 struct ptlrpc_bulk_desc *ptlrpc_new_bulk(unsigned nfrags, unsigned max_brw,
114                                          enum ptlrpc_bulk_op_type type,
115                                          unsigned portal,
116                                          const struct ptlrpc_bulk_frag_ops *ops)
117 {
118         struct ptlrpc_bulk_desc *desc;
119         int i;
120
121         /* ensure that only one of KIOV or IOVEC is set but not both */
122         LASSERT((ptlrpc_is_bulk_desc_kiov(type) &&
123                  ops->add_kiov_frag != NULL) ||
124                 (ptlrpc_is_bulk_desc_kvec(type) &&
125                  ops->add_iov_frag != NULL));
126
127         OBD_ALLOC_PTR(desc);
128         if (desc == NULL)
129                 return NULL;
130         if (type & PTLRPC_BULK_BUF_KIOV) {
131                 OBD_ALLOC_LARGE(GET_KIOV(desc),
132                                 nfrags * sizeof(*GET_KIOV(desc)));
133                 if (GET_KIOV(desc) == NULL)
134                         goto out;
135         } else {
136                 OBD_ALLOC_LARGE(GET_KVEC(desc),
137                                 nfrags * sizeof(*GET_KVEC(desc)));
138                 if (GET_KVEC(desc) == NULL)
139                         goto out;
140         }
141
142         spin_lock_init(&desc->bd_lock);
143         init_waitqueue_head(&desc->bd_waitq);
144         desc->bd_max_iov = nfrags;
145         desc->bd_iov_count = 0;
146         desc->bd_portal = portal;
147         desc->bd_type = type;
148         desc->bd_md_count = 0;
149         desc->bd_frag_ops = (struct ptlrpc_bulk_frag_ops *) ops;
150         LASSERT(max_brw > 0);
151         desc->bd_md_max_brw = min(max_brw, PTLRPC_BULK_OPS_COUNT);
152         /* PTLRPC_BULK_OPS_COUNT is the compile-time transfer limit for this
153          * node. Negotiated ocd_brw_size will always be <= this number. */
154         for (i = 0; i < PTLRPC_BULK_OPS_COUNT; i++)
155                 LNetInvalidateHandle(&desc->bd_mds[i]);
156
157         return desc;
158 out:
159         OBD_FREE_PTR(desc);
160         return NULL;
161 }
162
163 /**
164  * Prepare bulk descriptor for specified outgoing request \a req that
165  * can fit \a nfrags * pages. \a type is bulk type. \a portal is where
166  * the bulk to be sent. Used on client-side.
167  * Returns pointer to newly allocatrd initialized bulk descriptor or NULL on
168  * error.
169  */
170 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp(struct ptlrpc_request *req,
171                                               unsigned nfrags, unsigned max_brw,
172                                               unsigned int type,
173                                               unsigned portal,
174                                               const struct ptlrpc_bulk_frag_ops
175                                                 *ops)
176 {
177         struct obd_import *imp = req->rq_import;
178         struct ptlrpc_bulk_desc *desc;
179
180         ENTRY;
181         LASSERT(ptlrpc_is_bulk_op_passive(type));
182
183         desc = ptlrpc_new_bulk(nfrags, max_brw, type, portal, ops);
184         if (desc == NULL)
185                 RETURN(NULL);
186
187         desc->bd_import_generation = req->rq_import_generation;
188         desc->bd_import = class_import_get(imp);
189         desc->bd_req = req;
190
191         desc->bd_cbid.cbid_fn  = client_bulk_callback;
192         desc->bd_cbid.cbid_arg = desc;
193
194         /* This makes req own desc, and free it when she frees herself */
195         req->rq_bulk = desc;
196
197         return desc;
198 }
199 EXPORT_SYMBOL(ptlrpc_prep_bulk_imp);
200
201 void __ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
202                              struct page *page, int pageoffset, int len,
203                              int pin)
204 {
205         lnet_kiov_t *kiov;
206
207         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
208         LASSERT(page != NULL);
209         LASSERT(pageoffset >= 0);
210         LASSERT(len > 0);
211         LASSERT(pageoffset + len <= PAGE_SIZE);
212         LASSERT(ptlrpc_is_bulk_desc_kiov(desc->bd_type));
213
214         kiov = &BD_GET_KIOV(desc, desc->bd_iov_count);
215
216         desc->bd_nob += len;
217
218         if (pin)
219                 get_page(page);
220
221         kiov->kiov_page = page;
222         kiov->kiov_offset = pageoffset;
223         kiov->kiov_len = len;
224
225         desc->bd_iov_count++;
226 }
227 EXPORT_SYMBOL(__ptlrpc_prep_bulk_page);
228
229 int ptlrpc_prep_bulk_frag(struct ptlrpc_bulk_desc *desc,
230                           void *frag, int len)
231 {
232         struct kvec *iovec;
233         ENTRY;
234
235         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
236         LASSERT(frag != NULL);
237         LASSERT(len > 0);
238         LASSERT(ptlrpc_is_bulk_desc_kvec(desc->bd_type));
239
240         iovec = &BD_GET_KVEC(desc, desc->bd_iov_count);
241
242         desc->bd_nob += len;
243
244         iovec->iov_base = frag;
245         iovec->iov_len = len;
246
247         desc->bd_iov_count++;
248
249         RETURN(desc->bd_nob);
250 }
251 EXPORT_SYMBOL(ptlrpc_prep_bulk_frag);
252
253 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *desc)
254 {
255         ENTRY;
256
257         LASSERT(desc != NULL);
258         LASSERT(desc->bd_iov_count != LI_POISON); /* not freed already */
259         LASSERT(desc->bd_md_count == 0);         /* network hands off */
260         LASSERT((desc->bd_export != NULL) ^ (desc->bd_import != NULL));
261         LASSERT(desc->bd_frag_ops != NULL);
262
263         if (ptlrpc_is_bulk_desc_kiov(desc->bd_type))
264                 sptlrpc_enc_pool_put_pages(desc);
265
266         if (desc->bd_export)
267                 class_export_put(desc->bd_export);
268         else
269                 class_import_put(desc->bd_import);
270
271         if (desc->bd_frag_ops->release_frags != NULL)
272                 desc->bd_frag_ops->release_frags(desc);
273
274         if (ptlrpc_is_bulk_desc_kiov(desc->bd_type))
275                 OBD_FREE_LARGE(GET_KIOV(desc),
276                         desc->bd_max_iov * sizeof(*GET_KIOV(desc)));
277         else
278                 OBD_FREE_LARGE(GET_KVEC(desc),
279                         desc->bd_max_iov * sizeof(*GET_KVEC(desc)));
280         OBD_FREE_PTR(desc);
281         EXIT;
282 }
283 EXPORT_SYMBOL(ptlrpc_free_bulk);
284
285 /**
286  * Set server timelimit for this req, i.e. how long are we willing to wait
287  * for reply before timing out this request.
288  */
289 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req)
290 {
291         __u32 serv_est;
292         int idx;
293         struct imp_at *at;
294
295         LASSERT(req->rq_import);
296
297         if (AT_OFF) {
298                 /* non-AT settings */
299                 /**
300                  * \a imp_server_timeout means this is reverse import and
301                  * we send (currently only) ASTs to the client and cannot afford
302                  * to wait too long for the reply, otherwise the other client
303                  * (because of which we are sending this request) would
304                  * timeout waiting for us
305                  */
306                 req->rq_timeout = req->rq_import->imp_server_timeout ?
307                                   obd_timeout / 2 : obd_timeout;
308         } else {
309                 at = &req->rq_import->imp_at;
310                 idx = import_at_get_index(req->rq_import,
311                                           req->rq_request_portal);
312                 serv_est = at_get(&at->iat_service_estimate[idx]);
313                 req->rq_timeout = at_est2timeout(serv_est);
314         }
315         /* We could get even fancier here, using history to predict increased
316            loading... */
317
318         /* Let the server know what this RPC timeout is by putting it in the
319            reqmsg*/
320         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
321 }
322 EXPORT_SYMBOL(ptlrpc_at_set_req_timeout);
323
324 /* Adjust max service estimate based on server value */
325 static void ptlrpc_at_adj_service(struct ptlrpc_request *req,
326                                   unsigned int serv_est)
327 {
328         int idx;
329         unsigned int oldse;
330         struct imp_at *at;
331
332         LASSERT(req->rq_import);
333         at = &req->rq_import->imp_at;
334
335         idx = import_at_get_index(req->rq_import, req->rq_request_portal);
336         /* max service estimates are tracked on the server side,
337            so just keep minimal history here */
338         oldse = at_measured(&at->iat_service_estimate[idx], serv_est);
339         if (oldse != 0)
340                 CDEBUG(D_ADAPTTO, "The RPC service estimate for %s ptl %d "
341                        "has changed from %d to %d\n",
342                        req->rq_import->imp_obd->obd_name,req->rq_request_portal,
343                        oldse, at_get(&at->iat_service_estimate[idx]));
344 }
345
346 /* Expected network latency per remote node (secs) */
347 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req)
348 {
349         return AT_OFF ? 0 : at_get(&req->rq_import->imp_at.iat_net_latency);
350 }
351
352 /* Adjust expected network latency */
353 void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req,
354                                unsigned int service_time)
355 {
356         unsigned int nl, oldnl;
357         struct imp_at *at;
358         time_t now = cfs_time_current_sec();
359
360         LASSERT(req->rq_import);
361
362         if (service_time > now - req->rq_sent + 3) {
363                 /* bz16408, however, this can also happen if early reply
364                  * is lost and client RPC is expired and resent, early reply
365                  * or reply of original RPC can still be fit in reply buffer
366                  * of resent RPC, now client is measuring time from the
367                  * resent time, but server sent back service time of original
368                  * RPC.
369                  */
370                 CDEBUG((lustre_msg_get_flags(req->rq_reqmsg) & MSG_RESENT) ?
371                        D_ADAPTTO : D_WARNING,
372                        "Reported service time %u > total measured time "
373                        CFS_DURATION_T"\n", service_time,
374                        cfs_time_sub(now, req->rq_sent));
375                 return;
376         }
377
378         /* Network latency is total time less server processing time */
379         nl = max_t(int, now - req->rq_sent -
380                         service_time, 0) + 1; /* st rounding */
381         at = &req->rq_import->imp_at;
382
383         oldnl = at_measured(&at->iat_net_latency, nl);
384         if (oldnl != 0)
385                 CDEBUG(D_ADAPTTO, "The network latency for %s (nid %s) "
386                        "has changed from %d to %d\n",
387                        req->rq_import->imp_obd->obd_name,
388                        obd_uuid2str(
389                                &req->rq_import->imp_connection->c_remote_uuid),
390                        oldnl, at_get(&at->iat_net_latency));
391 }
392
393 static int unpack_reply(struct ptlrpc_request *req)
394 {
395         int rc;
396
397         if (SPTLRPC_FLVR_POLICY(req->rq_flvr.sf_rpc) != SPTLRPC_POLICY_NULL) {
398                 rc = ptlrpc_unpack_rep_msg(req, req->rq_replen);
399                 if (rc) {
400                         DEBUG_REQ(D_ERROR, req, "unpack_rep failed: %d", rc);
401                         return(-EPROTO);
402                 }
403         }
404
405         rc = lustre_unpack_rep_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
406         if (rc) {
407                 DEBUG_REQ(D_ERROR, req, "unpack ptlrpc body failed: %d", rc);
408                 return(-EPROTO);
409         }
410         return 0;
411 }
412
413 /**
414  * Handle an early reply message, called with the rq_lock held.
415  * If anything goes wrong just ignore it - same as if it never happened
416  */
417 static int ptlrpc_at_recv_early_reply(struct ptlrpc_request *req)
418 __must_hold(&req->rq_lock)
419 {
420         struct ptlrpc_request *early_req;
421         time_t                 olddl;
422         int                    rc;
423         ENTRY;
424
425         req->rq_early = 0;
426         spin_unlock(&req->rq_lock);
427
428         rc = sptlrpc_cli_unwrap_early_reply(req, &early_req);
429         if (rc) {
430                 spin_lock(&req->rq_lock);
431                 RETURN(rc);
432         }
433
434         rc = unpack_reply(early_req);
435         if (rc != 0) {
436                 sptlrpc_cli_finish_early_reply(early_req);
437                 spin_lock(&req->rq_lock);
438                 RETURN(rc);
439         }
440
441         /* Use new timeout value just to adjust the local value for this
442          * request, don't include it into at_history. It is unclear yet why
443          * service time increased and should it be counted or skipped, e.g.
444          * that can be recovery case or some error or server, the real reply
445          * will add all new data if it is worth to add. */
446         req->rq_timeout = lustre_msg_get_timeout(early_req->rq_repmsg);
447         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
448
449         /* Network latency can be adjusted, it is pure network delays */
450         ptlrpc_at_adj_net_latency(req,
451                         lustre_msg_get_service_time(early_req->rq_repmsg));
452
453         sptlrpc_cli_finish_early_reply(early_req);
454
455         spin_lock(&req->rq_lock);
456         olddl = req->rq_deadline;
457         /* server assumes it now has rq_timeout from when the request
458          * arrived, so the client should give it at least that long.
459          * since we don't know the arrival time we'll use the original
460          * sent time */
461         req->rq_deadline = req->rq_sent + req->rq_timeout +
462                            ptlrpc_at_get_net_latency(req);
463
464         DEBUG_REQ(D_ADAPTTO, req,
465                   "Early reply #%d, new deadline in "CFS_DURATION_T"s "
466                   "("CFS_DURATION_T"s)", req->rq_early_count,
467                   cfs_time_sub(req->rq_deadline, cfs_time_current_sec()),
468                   cfs_time_sub(req->rq_deadline, olddl));
469
470         RETURN(rc);
471 }
472
473 static struct kmem_cache *request_cache;
474
475 int ptlrpc_request_cache_init(void)
476 {
477         request_cache = kmem_cache_create("ptlrpc_cache",
478                                           sizeof(struct ptlrpc_request),
479                                           0, SLAB_HWCACHE_ALIGN, NULL);
480         return request_cache == NULL ? -ENOMEM : 0;
481 }
482
483 void ptlrpc_request_cache_fini(void)
484 {
485         kmem_cache_destroy(request_cache);
486 }
487
488 struct ptlrpc_request *ptlrpc_request_cache_alloc(gfp_t flags)
489 {
490         struct ptlrpc_request *req;
491
492         OBD_SLAB_ALLOC_PTR_GFP(req, request_cache, flags);
493         return req;
494 }
495
496 void ptlrpc_request_cache_free(struct ptlrpc_request *req)
497 {
498         OBD_SLAB_FREE_PTR(req, request_cache);
499 }
500
501 /**
502  * Wind down request pool \a pool.
503  * Frees all requests from the pool too
504  */
505 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool)
506 {
507         struct list_head *l, *tmp;
508         struct ptlrpc_request *req;
509
510         LASSERT(pool != NULL);
511
512         spin_lock(&pool->prp_lock);
513         list_for_each_safe(l, tmp, &pool->prp_req_list) {
514                 req = list_entry(l, struct ptlrpc_request, rq_list);
515                 list_del(&req->rq_list);
516                 LASSERT(req->rq_reqbuf);
517                 LASSERT(req->rq_reqbuf_len == pool->prp_rq_size);
518                 OBD_FREE_LARGE(req->rq_reqbuf, pool->prp_rq_size);
519                 ptlrpc_request_cache_free(req);
520         }
521         spin_unlock(&pool->prp_lock);
522         OBD_FREE(pool, sizeof(*pool));
523 }
524 EXPORT_SYMBOL(ptlrpc_free_rq_pool);
525
526 /**
527  * Allocates, initializes and adds \a num_rq requests to the pool \a pool
528  */
529 int ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq)
530 {
531         int i;
532         int size = 1;
533
534         while (size < pool->prp_rq_size)
535                 size <<= 1;
536
537         LASSERTF(list_empty(&pool->prp_req_list) ||
538                  size == pool->prp_rq_size,
539                  "Trying to change pool size with nonempty pool "
540                  "from %d to %d bytes\n", pool->prp_rq_size, size);
541
542         spin_lock(&pool->prp_lock);
543         pool->prp_rq_size = size;
544         for (i = 0; i < num_rq; i++) {
545                 struct ptlrpc_request *req;
546                 struct lustre_msg *msg;
547
548                 spin_unlock(&pool->prp_lock);
549                 req = ptlrpc_request_cache_alloc(GFP_NOFS);
550                 if (!req)
551                         return i;
552                 OBD_ALLOC_LARGE(msg, size);
553                 if (!msg) {
554                         ptlrpc_request_cache_free(req);
555                         return i;
556                 }
557                 req->rq_reqbuf = msg;
558                 req->rq_reqbuf_len = size;
559                 req->rq_pool = pool;
560                 spin_lock(&pool->prp_lock);
561                 list_add_tail(&req->rq_list, &pool->prp_req_list);
562         }
563         spin_unlock(&pool->prp_lock);
564         return num_rq;
565 }
566 EXPORT_SYMBOL(ptlrpc_add_rqs_to_pool);
567
568 /**
569  * Create and initialize new request pool with given attributes:
570  * \a num_rq - initial number of requests to create for the pool
571  * \a msgsize - maximum message size possible for requests in thid pool
572  * \a populate_pool - function to be called when more requests need to be added
573  *                    to the pool
574  * Returns pointer to newly created pool or NULL on error.
575  */
576 struct ptlrpc_request_pool *
577 ptlrpc_init_rq_pool(int num_rq, int msgsize,
578                     int (*populate_pool)(struct ptlrpc_request_pool *, int))
579 {
580         struct ptlrpc_request_pool *pool;
581
582         OBD_ALLOC(pool, sizeof(struct ptlrpc_request_pool));
583         if (!pool)
584                 return NULL;
585
586         /* Request next power of two for the allocation, because internally
587            kernel would do exactly this */
588
589         spin_lock_init(&pool->prp_lock);
590         INIT_LIST_HEAD(&pool->prp_req_list);
591         pool->prp_rq_size = msgsize + SPTLRPC_MAX_PAYLOAD;
592         pool->prp_populate = populate_pool;
593
594         populate_pool(pool, num_rq);
595
596         return pool;
597 }
598 EXPORT_SYMBOL(ptlrpc_init_rq_pool);
599
600 /**
601  * Fetches one request from pool \a pool
602  */
603 static struct ptlrpc_request *
604 ptlrpc_prep_req_from_pool(struct ptlrpc_request_pool *pool)
605 {
606         struct ptlrpc_request *request;
607         struct lustre_msg *reqbuf;
608
609         if (!pool)
610                 return NULL;
611
612         spin_lock(&pool->prp_lock);
613
614         /* See if we have anything in a pool, and bail out if nothing,
615          * in writeout path, where this matters, this is safe to do, because
616          * nothing is lost in this case, and when some in-flight requests
617          * complete, this code will be called again. */
618         if (unlikely(list_empty(&pool->prp_req_list))) {
619                 spin_unlock(&pool->prp_lock);
620                 return NULL;
621         }
622
623         request = list_entry(pool->prp_req_list.next, struct ptlrpc_request,
624                              rq_list);
625         list_del_init(&request->rq_list);
626         spin_unlock(&pool->prp_lock);
627
628         LASSERT(request->rq_reqbuf);
629         LASSERT(request->rq_pool);
630
631         reqbuf = request->rq_reqbuf;
632         memset(request, 0, sizeof(*request));
633         request->rq_reqbuf = reqbuf;
634         request->rq_reqbuf_len = pool->prp_rq_size;
635         request->rq_pool = pool;
636
637         return request;
638 }
639
640 /**
641  * Returns freed \a request to pool.
642  */
643 static void __ptlrpc_free_req_to_pool(struct ptlrpc_request *request)
644 {
645         struct ptlrpc_request_pool *pool = request->rq_pool;
646
647         spin_lock(&pool->prp_lock);
648         LASSERT(list_empty(&request->rq_list));
649         LASSERT(!request->rq_receiving_reply);
650         list_add_tail(&request->rq_list, &pool->prp_req_list);
651         spin_unlock(&pool->prp_lock);
652 }
653
654 void ptlrpc_add_unreplied(struct ptlrpc_request *req)
655 {
656         struct obd_import       *imp = req->rq_import;
657         struct list_head        *tmp;
658         struct ptlrpc_request   *iter;
659
660         assert_spin_locked(&imp->imp_lock);
661         LASSERT(list_empty(&req->rq_unreplied_list));
662
663         /* unreplied list is sorted by xid in ascending order */
664         list_for_each_prev(tmp, &imp->imp_unreplied_list) {
665                 iter = list_entry(tmp, struct ptlrpc_request,
666                                   rq_unreplied_list);
667
668                 LASSERT(req->rq_xid != iter->rq_xid);
669                 if (req->rq_xid < iter->rq_xid)
670                         continue;
671                 list_add(&req->rq_unreplied_list, &iter->rq_unreplied_list);
672                 return;
673         }
674         list_add(&req->rq_unreplied_list, &imp->imp_unreplied_list);
675 }
676
677 void ptlrpc_assign_next_xid_nolock(struct ptlrpc_request *req)
678 {
679         req->rq_xid = ptlrpc_next_xid();
680         ptlrpc_add_unreplied(req);
681 }
682
683 static inline void ptlrpc_assign_next_xid(struct ptlrpc_request *req)
684 {
685         spin_lock(&req->rq_import->imp_lock);
686         ptlrpc_assign_next_xid_nolock(req);
687         spin_unlock(&req->rq_import->imp_lock);
688 }
689
690 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
691                              __u32 version, int opcode, char **bufs,
692                              struct ptlrpc_cli_ctx *ctx)
693 {
694         int count;
695         struct obd_import *imp;
696         __u32 *lengths;
697         int rc;
698
699         ENTRY;
700
701         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
702         imp = request->rq_import;
703         lengths = request->rq_pill.rc_area[RCL_CLIENT];
704
705         if (ctx != NULL) {
706                 request->rq_cli_ctx = sptlrpc_cli_ctx_get(ctx);
707         } else {
708                 rc = sptlrpc_req_get_ctx(request);
709                 if (rc)
710                         GOTO(out_free, rc);
711         }
712         sptlrpc_req_set_flavor(request, opcode);
713
714         rc = lustre_pack_request(request, imp->imp_msg_magic, count,
715                                  lengths, bufs);
716         if (rc)
717                 GOTO(out_ctx, rc);
718
719         lustre_msg_add_version(request->rq_reqmsg, version);
720         request->rq_send_state = LUSTRE_IMP_FULL;
721         request->rq_type = PTL_RPC_MSG_REQUEST;
722
723         request->rq_req_cbid.cbid_fn  = request_out_callback;
724         request->rq_req_cbid.cbid_arg = request;
725
726         request->rq_reply_cbid.cbid_fn  = reply_in_callback;
727         request->rq_reply_cbid.cbid_arg = request;
728
729         request->rq_reply_deadline = 0;
730         request->rq_bulk_deadline = 0;
731         request->rq_req_deadline = 0;
732         request->rq_phase = RQ_PHASE_NEW;
733         request->rq_next_phase = RQ_PHASE_UNDEFINED;
734
735         request->rq_request_portal = imp->imp_client->cli_request_portal;
736         request->rq_reply_portal = imp->imp_client->cli_reply_portal;
737
738         ptlrpc_at_set_req_timeout(request);
739
740         lustre_msg_set_opc(request->rq_reqmsg, opcode);
741         ptlrpc_assign_next_xid(request);
742
743         /* Let's setup deadline for req/reply/bulk unlink for opcode. */
744         if (cfs_fail_val == opcode) {
745                 time_t *fail_t = NULL, *fail2_t = NULL;
746
747                 if (CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK))
748                         fail_t = &request->rq_bulk_deadline;
749                 else if (CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK))
750                         fail_t = &request->rq_reply_deadline;
751                 else if (CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REQ_UNLINK))
752                         fail_t = &request->rq_req_deadline;
753                 else if (CFS_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BOTH_UNLINK)) {
754                         fail_t = &request->rq_reply_deadline;
755                         fail2_t = &request->rq_bulk_deadline;
756                 }
757
758                 if (fail_t) {
759                         *fail_t = cfs_time_current_sec() + LONG_UNLINK;
760
761                         if (fail2_t)
762                                 *fail2_t = cfs_time_current_sec() + LONG_UNLINK;
763
764                         /* The RPC is infected, let the test to change the
765                          * fail_loc */
766                         set_current_state(TASK_UNINTERRUPTIBLE);
767                         schedule_timeout(cfs_time_seconds(2));
768                         set_current_state(TASK_RUNNING);
769                 }
770         }
771
772         RETURN(0);
773
774 out_ctx:
775         LASSERT(!request->rq_pool);
776         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
777 out_free:
778         class_import_put(imp);
779
780         return rc;
781
782 }
783 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
784
785 /**
786  * Pack request buffers for network transfer, performing necessary encryption
787  * steps if necessary.
788  */
789 int ptlrpc_request_pack(struct ptlrpc_request *request,
790                         __u32 version, int opcode)
791 {
792         int rc;
793         rc = ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
794         if (rc)
795                 return rc;
796
797         /* For some old 1.8 clients (< 1.8.7), they will LASSERT the size of
798          * ptlrpc_body sent from server equal to local ptlrpc_body size, so we
799          * have to send old ptlrpc_body to keep interoprability with these
800          * clients.
801          *
802          * Only three kinds of server->client RPCs so far:
803          *  - LDLM_BL_CALLBACK
804          *  - LDLM_CP_CALLBACK
805          *  - LDLM_GL_CALLBACK
806          *
807          * XXX This should be removed whenever we drop the interoprability with
808          *     the these old clients.
809          */
810         if (opcode == LDLM_BL_CALLBACK || opcode == LDLM_CP_CALLBACK ||
811             opcode == LDLM_GL_CALLBACK)
812                 req_capsule_shrink(&request->rq_pill, &RMF_PTLRPC_BODY,
813                                    sizeof(struct ptlrpc_body_v2), RCL_CLIENT);
814
815         return rc;
816 }
817 EXPORT_SYMBOL(ptlrpc_request_pack);
818
819 /**
820  * Helper function to allocate new request on import \a imp
821  * and possibly using existing request from pool \a pool if provided.
822  * Returns allocated request structure with import field filled or
823  * NULL on error.
824  */
825 static inline
826 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
827                                               struct ptlrpc_request_pool *pool)
828 {
829         struct ptlrpc_request *request = NULL;
830
831         request = ptlrpc_request_cache_alloc(GFP_NOFS);
832
833         if (!request && pool)
834                 request = ptlrpc_prep_req_from_pool(pool);
835
836         if (request) {
837                 ptlrpc_cli_req_init(request);
838
839                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
840                 LASSERT(imp != LP_POISON);
841                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p\n",
842                         imp->imp_client);
843                 LASSERT(imp->imp_client != LP_POISON);
844
845                 request->rq_import = class_import_get(imp);
846         } else {
847                 CERROR("request allocation out of memory\n");
848         }
849
850         return request;
851 }
852
853 /**
854  * Helper function for creating a request.
855  * Calls __ptlrpc_request_alloc to allocate new request sturcture and inits
856  * buffer structures according to capsule template \a format.
857  * Returns allocated request structure pointer or NULL on error.
858  */
859 static struct ptlrpc_request *
860 ptlrpc_request_alloc_internal(struct obd_import *imp,
861                               struct ptlrpc_request_pool * pool,
862                               const struct req_format *format)
863 {
864         struct ptlrpc_request *request;
865
866         request = __ptlrpc_request_alloc(imp, pool);
867         if (request == NULL)
868                 return NULL;
869
870         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
871         req_capsule_set(&request->rq_pill, format);
872         return request;
873 }
874
875 /**
876  * Allocate new request structure for import \a imp and initialize its
877  * buffer structure according to capsule template \a format.
878  */
879 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
880                                             const struct req_format *format)
881 {
882         return ptlrpc_request_alloc_internal(imp, NULL, format);
883 }
884 EXPORT_SYMBOL(ptlrpc_request_alloc);
885
886 /**
887  * Allocate new request structure for import \a imp from pool \a pool and
888  * initialize its buffer structure according to capsule template \a format.
889  */
890 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
891                                             struct ptlrpc_request_pool * pool,
892                                             const struct req_format *format)
893 {
894         return ptlrpc_request_alloc_internal(imp, pool, format);
895 }
896 EXPORT_SYMBOL(ptlrpc_request_alloc_pool);
897
898 /**
899  * For requests not from pool, free memory of the request structure.
900  * For requests obtained from a pool earlier, return request back to pool.
901  */
902 void ptlrpc_request_free(struct ptlrpc_request *request)
903 {
904         if (request->rq_pool)
905                 __ptlrpc_free_req_to_pool(request);
906         else
907                 ptlrpc_request_cache_free(request);
908 }
909 EXPORT_SYMBOL(ptlrpc_request_free);
910
911 /**
912  * Allocate new request for operatione \a opcode and immediatelly pack it for
913  * network transfer.
914  * Only used for simple requests like OBD_PING where the only important
915  * part of the request is operation itself.
916  * Returns allocated request or NULL on error.
917  */
918 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
919                                                 const struct req_format *format,
920                                                 __u32 version, int opcode)
921 {
922         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
923         int                    rc;
924
925         if (req) {
926                 rc = ptlrpc_request_pack(req, version, opcode);
927                 if (rc) {
928                         ptlrpc_request_free(req);
929                         req = NULL;
930                 }
931         }
932         return req;
933 }
934 EXPORT_SYMBOL(ptlrpc_request_alloc_pack);
935
936 /**
937  * Allocate and initialize new request set structure on the current CPT.
938  * Returns a pointer to the newly allocated set structure or NULL on error.
939  */
940 struct ptlrpc_request_set *ptlrpc_prep_set(void)
941 {
942         struct ptlrpc_request_set       *set;
943         int                             cpt;
944
945         ENTRY;
946         cpt = cfs_cpt_current(cfs_cpt_table, 0);
947         OBD_CPT_ALLOC(set, cfs_cpt_table, cpt, sizeof *set);
948         if (!set)
949                 RETURN(NULL);
950         atomic_set(&set->set_refcount, 1);
951         INIT_LIST_HEAD(&set->set_requests);
952         init_waitqueue_head(&set->set_waitq);
953         atomic_set(&set->set_new_count, 0);
954         atomic_set(&set->set_remaining, 0);
955         spin_lock_init(&set->set_new_req_lock);
956         INIT_LIST_HEAD(&set->set_new_requests);
957         INIT_LIST_HEAD(&set->set_cblist);
958         set->set_max_inflight = UINT_MAX;
959         set->set_producer     = NULL;
960         set->set_producer_arg = NULL;
961         set->set_rc           = 0;
962
963         RETURN(set);
964 }
965 EXPORT_SYMBOL(ptlrpc_prep_set);
966
967 /**
968  * Allocate and initialize new request set structure with flow control
969  * extension. This extension allows to control the number of requests in-flight
970  * for the whole set. A callback function to generate requests must be provided
971  * and the request set will keep the number of requests sent over the wire to
972  * @max_inflight.
973  * Returns a pointer to the newly allocated set structure or NULL on error.
974  */
975 struct ptlrpc_request_set *ptlrpc_prep_fcset(int max, set_producer_func func,
976                                              void *arg)
977
978 {
979         struct ptlrpc_request_set *set;
980
981         set = ptlrpc_prep_set();
982         if (!set)
983                 RETURN(NULL);
984
985         set->set_max_inflight  = max;
986         set->set_producer      = func;
987         set->set_producer_arg  = arg;
988
989         RETURN(set);
990 }
991
992 /**
993  * Wind down and free request set structure previously allocated with
994  * ptlrpc_prep_set.
995  * Ensures that all requests on the set have completed and removes
996  * all requests from the request list in a set.
997  * If any unsent request happen to be on the list, pretends that they got
998  * an error in flight and calls their completion handler.
999  */
1000 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
1001 {
1002         struct list_head        *tmp;
1003         struct list_head        *next;
1004         int                      expected_phase;
1005         int                      n = 0;
1006         ENTRY;
1007
1008         /* Requests on the set should either all be completed, or all be new */
1009         expected_phase = (atomic_read(&set->set_remaining) == 0) ?
1010                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
1011         list_for_each(tmp, &set->set_requests) {
1012                 struct ptlrpc_request *req =
1013                         list_entry(tmp, struct ptlrpc_request,
1014                                    rq_set_chain);
1015
1016                 LASSERT(req->rq_phase == expected_phase);
1017                 n++;
1018         }
1019
1020         LASSERTF(atomic_read(&set->set_remaining) == 0 ||
1021                  atomic_read(&set->set_remaining) == n, "%d / %d\n",
1022                  atomic_read(&set->set_remaining), n);
1023
1024         list_for_each_safe(tmp, next, &set->set_requests) {
1025                 struct ptlrpc_request *req =
1026                         list_entry(tmp, struct ptlrpc_request,
1027                                    rq_set_chain);
1028                 list_del_init(&req->rq_set_chain);
1029
1030                 LASSERT(req->rq_phase == expected_phase);
1031
1032                 if (req->rq_phase == RQ_PHASE_NEW) {
1033                         ptlrpc_req_interpret(NULL, req, -EBADR);
1034                         atomic_dec(&set->set_remaining);
1035                 }
1036
1037                 spin_lock(&req->rq_lock);
1038                 req->rq_set = NULL;
1039                 req->rq_invalid_rqset = 0;
1040                 spin_unlock(&req->rq_lock);
1041
1042                 ptlrpc_req_finished (req);
1043         }
1044
1045         LASSERT(atomic_read(&set->set_remaining) == 0);
1046
1047         ptlrpc_reqset_put(set);
1048         EXIT;
1049 }
1050 EXPORT_SYMBOL(ptlrpc_set_destroy);
1051
1052 /**
1053  * Add a callback function \a fn to the set.
1054  * This function would be called when all requests on this set are completed.
1055  * The function will be passed \a data argument.
1056  */
1057 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
1058                       set_interpreter_func fn, void *data)
1059 {
1060         struct ptlrpc_set_cbdata *cbdata;
1061
1062         OBD_ALLOC_PTR(cbdata);
1063         if (cbdata == NULL)
1064                 RETURN(-ENOMEM);
1065
1066         cbdata->psc_interpret = fn;
1067         cbdata->psc_data = data;
1068         list_add_tail(&cbdata->psc_item, &set->set_cblist);
1069
1070         RETURN(0);
1071 }
1072
1073 /**
1074  * Add a new request to the general purpose request set.
1075  * Assumes request reference from the caller.
1076  */
1077 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
1078                         struct ptlrpc_request *req)
1079 {
1080         LASSERT(list_empty(&req->rq_set_chain));
1081
1082         if (req->rq_allow_intr)
1083                 set->set_allow_intr = 1;
1084
1085         /* The set takes over the caller's request reference */
1086         list_add_tail(&req->rq_set_chain, &set->set_requests);
1087         req->rq_set = set;
1088         atomic_inc(&set->set_remaining);
1089         req->rq_queued_time = cfs_time_current();
1090
1091         if (req->rq_reqmsg != NULL)
1092                 lustre_msg_set_jobid(req->rq_reqmsg, NULL);
1093
1094         if (set->set_producer != NULL)
1095                 /* If the request set has a producer callback, the RPC must be
1096                  * sent straight away */
1097                 ptlrpc_send_new_req(req);
1098 }
1099 EXPORT_SYMBOL(ptlrpc_set_add_req);
1100
1101 /**
1102  * Add a request to a request with dedicated server thread
1103  * and wake the thread to make any necessary processing.
1104  * Currently only used for ptlrpcd.
1105  */
1106 void ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
1107                            struct ptlrpc_request *req)
1108 {
1109         struct ptlrpc_request_set *set = pc->pc_set;
1110         int count, i;
1111
1112         LASSERT(req->rq_set == NULL);
1113         LASSERT(test_bit(LIOD_STOP, &pc->pc_flags) == 0);
1114
1115         spin_lock(&set->set_new_req_lock);
1116         /*
1117          * The set takes over the caller's request reference.
1118          */
1119         req->rq_set = set;
1120         req->rq_queued_time = cfs_time_current();
1121         list_add_tail(&req->rq_set_chain, &set->set_new_requests);
1122         count = atomic_inc_return(&set->set_new_count);
1123         spin_unlock(&set->set_new_req_lock);
1124
1125         /* Only need to call wakeup once for the first entry. */
1126         if (count == 1) {
1127                 wake_up(&set->set_waitq);
1128
1129                 /* XXX: It maybe unnecessary to wakeup all the partners. But to
1130                  *      guarantee the async RPC can be processed ASAP, we have
1131                  *      no other better choice. It maybe fixed in future. */
1132                 for (i = 0; i < pc->pc_npartners; i++)
1133                         wake_up(&pc->pc_partners[i]->pc_set->set_waitq);
1134         }
1135 }
1136
1137 /**
1138  * Based on the current state of the import, determine if the request
1139  * can be sent, is an error, or should be delayed.
1140  *
1141  * Returns true if this request should be delayed. If false, and
1142  * *status is set, then the request can not be sent and *status is the
1143  * error code.  If false and status is 0, then request can be sent.
1144  *
1145  * The imp->imp_lock must be held.
1146  */
1147 static int ptlrpc_import_delay_req(struct obd_import *imp,
1148                                    struct ptlrpc_request *req, int *status)
1149 {
1150         int delay = 0;
1151         ENTRY;
1152
1153         LASSERT (status != NULL);
1154         *status = 0;
1155
1156         if (req->rq_ctx_init || req->rq_ctx_fini) {
1157                 /* always allow ctx init/fini rpc go through */
1158         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
1159                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
1160                 *status = -EIO;
1161         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
1162                 /* pings may safely race with umount */
1163                 DEBUG_REQ(lustre_msg_get_opc(req->rq_reqmsg) == OBD_PING ?
1164                           D_HA : D_ERROR, req, "IMP_CLOSED ");
1165                 *status = -EIO;
1166         } else if (ptlrpc_send_limit_expired(req)) {
1167                 /* probably doesn't need to be a D_ERROR after initial testing*/
1168                 DEBUG_REQ(D_HA, req, "send limit expired ");
1169                 *status = -ETIMEDOUT;
1170         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
1171                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
1172                 /* allow CONNECT even if import is invalid */ ;
1173                 if (atomic_read(&imp->imp_inval_count) != 0) {
1174                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
1175                         *status = -EIO;
1176                 }
1177         } else if (imp->imp_invalid || imp->imp_obd->obd_no_recov) {
1178                 if (!imp->imp_deactive)
1179                         DEBUG_REQ(D_NET, req, "IMP_INVALID");
1180                 *status = -ESHUTDOWN; /* bz 12940 */
1181         } else if (req->rq_import_generation != imp->imp_generation) {
1182                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
1183                 *status = -EIO;
1184         } else if (req->rq_send_state != imp->imp_state) {
1185                 /* invalidate in progress - any requests should be drop */
1186                 if (atomic_read(&imp->imp_inval_count) != 0) {
1187                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
1188                         *status = -EIO;
1189                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
1190                         *status = -EWOULDBLOCK;
1191                 } else if (req->rq_allow_replay &&
1192                           (imp->imp_state == LUSTRE_IMP_REPLAY ||
1193                            imp->imp_state == LUSTRE_IMP_REPLAY_LOCKS ||
1194                            imp->imp_state == LUSTRE_IMP_REPLAY_WAIT ||
1195                            imp->imp_state == LUSTRE_IMP_RECOVER)) {
1196                         DEBUG_REQ(D_HA, req, "allow during recovery.\n");
1197                 } else {
1198                         delay = 1;
1199                 }
1200         }
1201
1202         RETURN(delay);
1203 }
1204
1205 /**
1206  * Decide if the error message should be printed to the console or not.
1207  * Makes its decision based on request type, status, and failure frequency.
1208  *
1209  * \param[in] req  request that failed and may need a console message
1210  *
1211  * \retval false if no message should be printed
1212  * \retval true  if console message should be printed
1213  */
1214 static bool ptlrpc_console_allow(struct ptlrpc_request *req)
1215 {
1216         __u32 opc;
1217
1218         LASSERT(req->rq_reqmsg != NULL);
1219         opc = lustre_msg_get_opc(req->rq_reqmsg);
1220
1221         /* Suppress particular reconnect errors which are to be expected. */
1222         if (opc == OST_CONNECT || opc == MDS_CONNECT || opc == MGS_CONNECT) {
1223                 int err;
1224
1225                 /* Suppress timed out reconnect requests */
1226                 if (lustre_handle_is_used(&req->rq_import->imp_remote_handle) ||
1227                     req->rq_timedout)
1228                         return false;
1229
1230                 /* Suppress most unavailable/again reconnect requests, but
1231                  * print occasionally so it is clear client is trying to
1232                  * connect to a server where no target is running. */
1233                 err = lustre_msg_get_status(req->rq_repmsg);
1234                 if ((err == -ENODEV || err == -EAGAIN) &&
1235                     req->rq_import->imp_conn_cnt % 30 != 20)
1236                         return false;
1237         }
1238
1239         return true;
1240 }
1241
1242 /**
1243  * Check request processing status.
1244  * Returns the status.
1245  */
1246 static int ptlrpc_check_status(struct ptlrpc_request *req)
1247 {
1248         int err;
1249         ENTRY;
1250
1251         err = lustre_msg_get_status(req->rq_repmsg);
1252         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
1253                 struct obd_import *imp = req->rq_import;
1254                 lnet_nid_t nid = imp->imp_connection->c_peer.nid;
1255                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
1256
1257                 if (ptlrpc_console_allow(req))
1258                         LCONSOLE_ERROR_MSG(0x11, "%s: operation %s to node %s "
1259                                            "failed: rc = %d\n",
1260                                            imp->imp_obd->obd_name,
1261                                            ll_opcode2str(opc),
1262                                            libcfs_nid2str(nid), err);
1263                 RETURN(err < 0 ? err : -EINVAL);
1264         }
1265
1266         if (err < 0) {
1267                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1268         } else if (err > 0) {
1269                 /* XXX: translate this error from net to host */
1270                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1271         }
1272
1273         RETURN(err);
1274 }
1275
1276 /**
1277  * save pre-versions of objects into request for replay.
1278  * Versions are obtained from server reply.
1279  * used for VBR.
1280  */
1281 static void ptlrpc_save_versions(struct ptlrpc_request *req)
1282 {
1283         struct lustre_msg *repmsg = req->rq_repmsg;
1284         struct lustre_msg *reqmsg = req->rq_reqmsg;
1285         __u64 *versions = lustre_msg_get_versions(repmsg);
1286         ENTRY;
1287
1288         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1289                 return;
1290
1291         LASSERT(versions);
1292         lustre_msg_set_versions(reqmsg, versions);
1293         CDEBUG(D_INFO, "Client save versions [%#llx/%#llx]\n",
1294                versions[0], versions[1]);
1295
1296         EXIT;
1297 }
1298
1299 __u64 ptlrpc_known_replied_xid(struct obd_import *imp)
1300 {
1301         struct ptlrpc_request *req;
1302
1303         assert_spin_locked(&imp->imp_lock);
1304         if (list_empty(&imp->imp_unreplied_list))
1305                 return 0;
1306
1307         req = list_entry(imp->imp_unreplied_list.next, struct ptlrpc_request,
1308                          rq_unreplied_list);
1309         LASSERTF(req->rq_xid >= 1, "XID:%llu\n", req->rq_xid);
1310
1311         if (imp->imp_known_replied_xid < req->rq_xid - 1)
1312                 imp->imp_known_replied_xid = req->rq_xid - 1;
1313
1314         return req->rq_xid - 1;
1315 }
1316
1317 /**
1318  * Callback function called when client receives RPC reply for \a req.
1319  * Returns 0 on success or error code.
1320  * The return alue would be assigned to req->rq_status by the caller
1321  * as request processing status.
1322  * This function also decides if the request needs to be saved for later replay.
1323  */
1324 static int after_reply(struct ptlrpc_request *req)
1325 {
1326         struct obd_import *imp = req->rq_import;
1327         struct obd_device *obd = req->rq_import->imp_obd;
1328         int rc;
1329         struct timeval work_start;
1330         __u64 committed;
1331         long timediff;
1332         ENTRY;
1333
1334         LASSERT(obd != NULL);
1335         /* repbuf must be unlinked */
1336         LASSERT(!req->rq_receiving_reply && req->rq_reply_unlinked);
1337
1338         if (req->rq_reply_truncated) {
1339                 if (ptlrpc_no_resend(req)) {
1340                         DEBUG_REQ(D_ERROR, req, "reply buffer overflow,"
1341                                   " expected: %d, actual size: %d",
1342                                   req->rq_nob_received, req->rq_repbuf_len);
1343                         RETURN(-EOVERFLOW);
1344                 }
1345
1346                 sptlrpc_cli_free_repbuf(req);
1347                 /* Pass the required reply buffer size (include
1348                  * space for early reply).
1349                  * NB: no need to roundup because alloc_repbuf
1350                  * will roundup it */
1351                 req->rq_replen       = req->rq_nob_received;
1352                 req->rq_nob_received = 0;
1353                 spin_lock(&req->rq_lock);
1354                 req->rq_resend       = 1;
1355                 spin_unlock(&req->rq_lock);
1356                 RETURN(0);
1357         }
1358
1359         do_gettimeofday(&work_start);
1360         timediff = cfs_timeval_sub(&work_start, &req->rq_sent_tv, NULL);
1361
1362         /*
1363          * NB Until this point, the whole of the incoming message,
1364          * including buflens, status etc is in the sender's byte order.
1365          */
1366         rc = sptlrpc_cli_unwrap_reply(req);
1367         if (rc) {
1368                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1369                 RETURN(rc);
1370         }
1371
1372         /*
1373          * Security layer unwrap might ask resend this request.
1374          */
1375         if (req->rq_resend)
1376                 RETURN(0);
1377
1378         rc = unpack_reply(req);
1379         if (rc)
1380                 RETURN(rc);
1381
1382         /* retry indefinitely on EINPROGRESS */
1383         if (lustre_msg_get_status(req->rq_repmsg) == -EINPROGRESS &&
1384             ptlrpc_no_resend(req) == 0 && !req->rq_no_retry_einprogress) {
1385                 time_t  now = cfs_time_current_sec();
1386
1387                 DEBUG_REQ(D_RPCTRACE, req, "Resending request on EINPROGRESS");
1388                 spin_lock(&req->rq_lock);
1389                 req->rq_resend = 1;
1390                 spin_unlock(&req->rq_lock);
1391                 req->rq_nr_resend++;
1392
1393                 /* Readjust the timeout for current conditions */
1394                 ptlrpc_at_set_req_timeout(req);
1395                 /* delay resend to give a chance to the server to get ready.
1396                  * The delay is increased by 1s on every resend and is capped to
1397                  * the current request timeout (i.e. obd_timeout if AT is off,
1398                  * or AT service time x 125% + 5s, see at_est2timeout) */
1399                 if (req->rq_nr_resend > req->rq_timeout)
1400                         req->rq_sent = now + req->rq_timeout;
1401                 else
1402                         req->rq_sent = now + req->rq_nr_resend;
1403
1404                 /* Resend for EINPROGRESS will use a new XID */
1405                 spin_lock(&imp->imp_lock);
1406                 list_del_init(&req->rq_unreplied_list);
1407                 spin_unlock(&imp->imp_lock);
1408
1409                 RETURN(0);
1410         }
1411
1412         if (obd->obd_svc_stats != NULL) {
1413                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1414                                     timediff);
1415                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1416         }
1417
1418         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1419             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1420                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1421                           lustre_msg_get_type(req->rq_repmsg));
1422                 RETURN(-EPROTO);
1423         }
1424
1425         if (lustre_msg_get_opc(req->rq_reqmsg) != OBD_PING)
1426                 CFS_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, cfs_fail_val);
1427         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1428         ptlrpc_at_adj_net_latency(req,
1429                                   lustre_msg_get_service_time(req->rq_repmsg));
1430
1431         rc = ptlrpc_check_status(req);
1432         imp->imp_connect_error = rc;
1433
1434         if (rc) {
1435                 /*
1436                  * Either we've been evicted, or the server has failed for
1437                  * some reason. Try to reconnect, and if that fails, punt to
1438                  * the upcall.
1439                  */
1440                 if (ptlrpc_recoverable_error(rc)) {
1441                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1442                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1443                                 RETURN(rc);
1444                         }
1445                         ptlrpc_request_handle_notconn(req);
1446                         RETURN(rc);
1447                 }
1448         } else {
1449                 /*
1450                  * Let's look if server sent slv. Do it only for RPC with
1451                  * rc == 0.
1452                  */
1453                 ldlm_cli_update_pool(req);
1454         }
1455
1456         /*
1457          * Store transno in reqmsg for replay.
1458          */
1459         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1460                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1461                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1462         }
1463
1464         if (imp->imp_replayable) {
1465                 spin_lock(&imp->imp_lock);
1466                 /*
1467                  * No point in adding already-committed requests to the replay
1468                  * list, we will just remove them immediately. b=9829
1469                  */
1470                 if (req->rq_transno != 0 &&
1471                     (req->rq_transno >
1472                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1473                      req->rq_replay)) {
1474                         /** version recovery */
1475                         ptlrpc_save_versions(req);
1476                         ptlrpc_retain_replayable_request(req, imp);
1477                 } else if (req->rq_commit_cb != NULL &&
1478                            list_empty(&req->rq_replay_list)) {
1479                         /* NB: don't call rq_commit_cb if it's already on
1480                          * rq_replay_list, ptlrpc_free_committed() will call
1481                          * it later, see LU-3618 for details */
1482                         spin_unlock(&imp->imp_lock);
1483                         req->rq_commit_cb(req);
1484                         spin_lock(&imp->imp_lock);
1485                 }
1486
1487                 /*
1488                  * Replay-enabled imports return commit-status information.
1489                  */
1490                 committed = lustre_msg_get_last_committed(req->rq_repmsg);
1491                 if (likely(committed > imp->imp_peer_committed_transno))
1492                         imp->imp_peer_committed_transno = committed;
1493
1494                 ptlrpc_free_committed(imp);
1495
1496                 if (!list_empty(&imp->imp_replay_list)) {
1497                         struct ptlrpc_request *last;
1498
1499                         last = list_entry(imp->imp_replay_list.prev,
1500                                           struct ptlrpc_request,
1501                                           rq_replay_list);
1502                         /*
1503                          * Requests with rq_replay stay on the list even if no
1504                          * commit is expected.
1505                          */
1506                         if (last->rq_transno > imp->imp_peer_committed_transno)
1507                                 ptlrpc_pinger_commit_expected(imp);
1508                 }
1509
1510                 spin_unlock(&imp->imp_lock);
1511         }
1512
1513         RETURN(rc);
1514 }
1515
1516 /**
1517  * Helper function to send request \a req over the network for the first time
1518  * Also adjusts request phase.
1519  * Returns 0 on success or error code.
1520  */
1521 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1522 {
1523         struct obd_import     *imp = req->rq_import;
1524         __u64                  min_xid = 0;
1525         int rc;
1526         ENTRY;
1527
1528         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1529
1530         /* do not try to go further if there is not enough memory in enc_pool */
1531         if (req->rq_sent && req->rq_bulk != NULL)
1532                 if (req->rq_bulk->bd_iov_count > get_free_pages_in_pool() &&
1533                     pool_is_at_full_capacity())
1534                         RETURN(-ENOMEM);
1535
1536         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()) &&
1537             (!req->rq_generation_set ||
1538              req->rq_import_generation == imp->imp_generation))
1539                 RETURN (0);
1540
1541         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1542
1543         spin_lock(&imp->imp_lock);
1544
1545         LASSERT(req->rq_xid != 0);
1546         LASSERT(!list_empty(&req->rq_unreplied_list));
1547
1548         if (!req->rq_generation_set)
1549                 req->rq_import_generation = imp->imp_generation;
1550
1551         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1552                 spin_lock(&req->rq_lock);
1553                 req->rq_waiting = 1;
1554                 spin_unlock(&req->rq_lock);
1555
1556                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1557                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1558                           ptlrpc_import_state_name(req->rq_send_state),
1559                           ptlrpc_import_state_name(imp->imp_state));
1560                 LASSERT(list_empty(&req->rq_list));
1561                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1562                 atomic_inc(&req->rq_import->imp_inflight);
1563                 spin_unlock(&imp->imp_lock);
1564                 RETURN(0);
1565         }
1566
1567         if (rc != 0) {
1568                 spin_unlock(&imp->imp_lock);
1569                 req->rq_status = rc;
1570                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1571                 RETURN(rc);
1572         }
1573
1574         LASSERT(list_empty(&req->rq_list));
1575         list_add_tail(&req->rq_list, &imp->imp_sending_list);
1576         atomic_inc(&req->rq_import->imp_inflight);
1577
1578         /* find the known replied XID from the unreplied list, CONNECT
1579          * and DISCONNECT requests are skipped to make the sanity check
1580          * on server side happy. see process_req_last_xid().
1581          *
1582          * For CONNECT: Because replay requests have lower XID, it'll
1583          * break the sanity check if CONNECT bump the exp_last_xid on
1584          * server.
1585          *
1586          * For DISCONNECT: Since client will abort inflight RPC before
1587          * sending DISCONNECT, DISCONNECT may carry an XID which higher
1588          * than the inflight RPC.
1589          */
1590         if (!ptlrpc_req_is_connect(req) && !ptlrpc_req_is_disconnect(req))
1591                 min_xid = ptlrpc_known_replied_xid(imp);
1592         spin_unlock(&imp->imp_lock);
1593
1594         lustre_msg_set_last_xid(req->rq_reqmsg, min_xid);
1595
1596         lustre_msg_set_status(req->rq_reqmsg, current_pid());
1597
1598         rc = sptlrpc_req_refresh_ctx(req, -1);
1599         if (rc) {
1600                 if (req->rq_err) {
1601                         req->rq_status = rc;
1602                         RETURN(1);
1603                 } else {
1604                         spin_lock(&req->rq_lock);
1605                         req->rq_wait_ctx = 1;
1606                         spin_unlock(&req->rq_lock);
1607                         RETURN(0);
1608                 }
1609         }
1610
1611         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1612                " %s:%s:%d:%llu:%s:%d\n", current_comm(),
1613                imp->imp_obd->obd_uuid.uuid,
1614                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1615                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1616                lustre_msg_get_opc(req->rq_reqmsg));
1617
1618         rc = ptl_send_rpc(req, 0);
1619         if (rc == -ENOMEM) {
1620                 spin_lock(&imp->imp_lock);
1621                 if (!list_empty(&req->rq_list)) {
1622                         list_del_init(&req->rq_list);
1623                         atomic_dec(&req->rq_import->imp_inflight);
1624                 }
1625                 spin_unlock(&imp->imp_lock);
1626                 ptlrpc_rqphase_move(req, RQ_PHASE_NEW);
1627                 RETURN(rc);
1628         }
1629         if (rc) {
1630                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1631                 spin_lock(&req->rq_lock);
1632                 req->rq_net_err = 1;
1633                 spin_unlock(&req->rq_lock);
1634                 RETURN(rc);
1635         }
1636         RETURN(0);
1637 }
1638
1639 static inline int ptlrpc_set_producer(struct ptlrpc_request_set *set)
1640 {
1641         int remaining, rc;
1642         ENTRY;
1643
1644         LASSERT(set->set_producer != NULL);
1645
1646         remaining = atomic_read(&set->set_remaining);
1647
1648         /* populate the ->set_requests list with requests until we
1649          * reach the maximum number of RPCs in flight for this set */
1650         while (atomic_read(&set->set_remaining) < set->set_max_inflight) {
1651                 rc = set->set_producer(set, set->set_producer_arg);
1652                 if (rc == -ENOENT) {
1653                         /* no more RPC to produce */
1654                         set->set_producer     = NULL;
1655                         set->set_producer_arg = NULL;
1656                         RETURN(0);
1657                 }
1658         }
1659
1660         RETURN((atomic_read(&set->set_remaining) - remaining));
1661 }
1662
1663 /**
1664  * this sends any unsent RPCs in \a set and returns 1 if all are sent
1665  * and no more replies are expected.
1666  * (it is possible to get less replies than requests sent e.g. due to timed out
1667  * requests or requests that we had trouble to send out)
1668  *
1669  * NOTE: This function contains a potential schedule point (cond_resched()).
1670  */
1671 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1672 {
1673         struct list_head *tmp, *next;
1674         struct list_head  comp_reqs;
1675         int force_timer_recalc = 0;
1676         ENTRY;
1677
1678         if (atomic_read(&set->set_remaining) == 0)
1679                 RETURN(1);
1680
1681         INIT_LIST_HEAD(&comp_reqs);
1682         list_for_each_safe(tmp, next, &set->set_requests) {
1683                 struct ptlrpc_request *req =
1684                         list_entry(tmp, struct ptlrpc_request,
1685                                    rq_set_chain);
1686                 struct obd_import *imp = req->rq_import;
1687                 int unregistered = 0;
1688                 int async = 1;
1689                 int rc = 0;
1690
1691                 if (req->rq_phase == RQ_PHASE_COMPLETE) {
1692                         list_move_tail(&req->rq_set_chain, &comp_reqs);
1693                         continue;
1694                 }
1695
1696                 /* This schedule point is mainly for the ptlrpcd caller of this
1697                  * function.  Most ptlrpc sets are not long-lived and unbounded
1698                  * in length, but at the least the set used by the ptlrpcd is.
1699                  * Since the processing time is unbounded, we need to insert an
1700                  * explicit schedule point to make the thread well-behaved.
1701                  */
1702                 cond_resched();
1703
1704                 /* If the caller requires to allow to be interpreted by force
1705                  * and it has really been interpreted, then move the request
1706                  * to RQ_PHASE_INTERPRET phase in spite of what the current
1707                  * phase is. */
1708                 if (unlikely(req->rq_allow_intr && req->rq_intr)) {
1709                         req->rq_status = -EINTR;
1710                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1711
1712                         /* Since it is interpreted and we have to wait for
1713                          * the reply to be unlinked, then use sync mode. */
1714                         async = 0;
1715
1716                         GOTO(interpret, req->rq_status);
1717                 }
1718
1719                 if (req->rq_phase == RQ_PHASE_NEW && ptlrpc_send_new_req(req))
1720                         force_timer_recalc = 1;
1721
1722                 /* delayed send - skip */
1723                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1724                         continue;
1725
1726                 /* delayed resend - skip */
1727                 if (req->rq_phase == RQ_PHASE_RPC && req->rq_resend &&
1728                     req->rq_sent > cfs_time_current_sec())
1729                         continue;
1730
1731                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1732                       req->rq_phase == RQ_PHASE_BULK ||
1733                       req->rq_phase == RQ_PHASE_INTERPRET ||
1734                       req->rq_phase == RQ_PHASE_UNREG_RPC ||
1735                       req->rq_phase == RQ_PHASE_UNREG_BULK)) {
1736                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1737                         LBUG();
1738                 }
1739
1740                 if (req->rq_phase == RQ_PHASE_UNREG_RPC ||
1741                     req->rq_phase == RQ_PHASE_UNREG_BULK) {
1742                         LASSERT(req->rq_next_phase != req->rq_phase);
1743                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1744
1745                         if (req->rq_req_deadline &&
1746                             !OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REQ_UNLINK))
1747                                 req->rq_req_deadline = 0;
1748                         if (req->rq_reply_deadline &&
1749                             !OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK))
1750                                 req->rq_reply_deadline = 0;
1751                         if (req->rq_bulk_deadline &&
1752                             !OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK))
1753                                 req->rq_bulk_deadline = 0;
1754
1755                         /*
1756                          * Skip processing until reply is unlinked. We
1757                          * can't return to pool before that and we can't
1758                          * call interpret before that. We need to make
1759                          * sure that all rdma transfers finished and will
1760                          * not corrupt any data.
1761                          */
1762                         if (req->rq_phase == RQ_PHASE_UNREG_RPC &&
1763                             ptlrpc_client_recv_or_unlink(req))
1764                                 continue;
1765                         if (req->rq_phase == RQ_PHASE_UNREG_BULK &&
1766                             ptlrpc_client_bulk_active(req))
1767                                 continue;
1768
1769                         /*
1770                          * Turn fail_loc off to prevent it from looping
1771                          * forever.
1772                          */
1773                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1774                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1775                                                      OBD_FAIL_ONCE);
1776                         }
1777                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1778                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1779                                                      OBD_FAIL_ONCE);
1780                         }
1781
1782                         /*
1783                          * Move to next phase if reply was successfully
1784                          * unlinked.
1785                          */
1786                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1787                 }
1788
1789                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1790                         GOTO(interpret, req->rq_status);
1791
1792                 /*
1793                  * Note that this also will start async reply unlink.
1794                  */
1795                 if (req->rq_net_err && !req->rq_timedout) {
1796                         ptlrpc_expire_one_request(req, 1);
1797
1798                         /*
1799                          * Check if we still need to wait for unlink.
1800                          */
1801                         if (ptlrpc_client_recv_or_unlink(req) ||
1802                             ptlrpc_client_bulk_active(req))
1803                                 continue;
1804                         /* If there is no need to resend, fail it now. */
1805                         if (req->rq_no_resend) {
1806                                 if (req->rq_status == 0)
1807                                         req->rq_status = -EIO;
1808                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1809                                 GOTO(interpret, req->rq_status);
1810                         } else {
1811                                 continue;
1812                         }
1813                 }
1814
1815                 if (req->rq_err) {
1816                         spin_lock(&req->rq_lock);
1817                         req->rq_replied = 0;
1818                         spin_unlock(&req->rq_lock);
1819                         if (req->rq_status == 0)
1820                                 req->rq_status = -EIO;
1821                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1822                         GOTO(interpret, req->rq_status);
1823                 }
1824
1825                 /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
1826                  * so it sets rq_intr regardless of individual rpc
1827                  * timeouts. The synchronous IO waiting path sets
1828                  * rq_intr irrespective of whether ptlrpcd
1829                  * has seen a timeout.  Our policy is to only interpret
1830                  * interrupted rpcs after they have timed out, so we
1831                  * need to enforce that here.
1832                  */
1833
1834                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1835                                      req->rq_wait_ctx)) {
1836                         req->rq_status = -EINTR;
1837                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1838                         GOTO(interpret, req->rq_status);
1839                 }
1840
1841                 if (req->rq_phase == RQ_PHASE_RPC) {
1842                         if (req->rq_timedout || req->rq_resend ||
1843                             req->rq_waiting || req->rq_wait_ctx) {
1844                                 int status;
1845
1846                                 if (!ptlrpc_unregister_reply(req, 1)) {
1847                                         ptlrpc_unregister_bulk(req, 1);
1848                                         continue;
1849                                 }
1850
1851                                 spin_lock(&imp->imp_lock);
1852                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1853                                         /* put on delay list - only if we wait
1854                                          * recovery finished - before send */
1855                                         list_del_init(&req->rq_list);
1856                                         list_add_tail(&req->rq_list,
1857                                                           &imp->
1858                                                           imp_delayed_list);
1859                                         spin_unlock(&imp->imp_lock);
1860                                         continue;
1861                                 }
1862
1863                                 if (status != 0)  {
1864                                         req->rq_status = status;
1865                                         ptlrpc_rqphase_move(req,
1866                                                 RQ_PHASE_INTERPRET);
1867                                         spin_unlock(&imp->imp_lock);
1868                                         GOTO(interpret, req->rq_status);
1869                                 }
1870                                 if (ptlrpc_no_resend(req) &&
1871                                     !req->rq_wait_ctx) {
1872                                         req->rq_status = -ENOTCONN;
1873                                         ptlrpc_rqphase_move(req,
1874                                                             RQ_PHASE_INTERPRET);
1875                                         spin_unlock(&imp->imp_lock);
1876                                         GOTO(interpret, req->rq_status);
1877                                 }
1878
1879                                 list_del_init(&req->rq_list);
1880                                 list_add_tail(&req->rq_list,
1881                                                   &imp->imp_sending_list);
1882
1883                                 spin_unlock(&imp->imp_lock);
1884
1885                                 spin_lock(&req->rq_lock);
1886                                 req->rq_waiting = 0;
1887                                 spin_unlock(&req->rq_lock);
1888
1889                                 if (req->rq_timedout || req->rq_resend) {
1890                                         /* This is re-sending anyways,
1891                                          * let's mark req as resend. */
1892                                         spin_lock(&req->rq_lock);
1893                                         req->rq_resend = 1;
1894                                         spin_unlock(&req->rq_lock);
1895
1896                                         if (req->rq_bulk != NULL &&
1897                                             !ptlrpc_unregister_bulk(req, 1))
1898                                                 continue;
1899                                 }
1900                                 /*
1901                                  * rq_wait_ctx is only touched by ptlrpcd,
1902                                  * so no lock is needed here.
1903                                  */
1904                                 status = sptlrpc_req_refresh_ctx(req, -1);
1905                                 if (status) {
1906                                         if (req->rq_err) {
1907                                                 req->rq_status = status;
1908                                                 spin_lock(&req->rq_lock);
1909                                                 req->rq_wait_ctx = 0;
1910                                                 spin_unlock(&req->rq_lock);
1911                                                 force_timer_recalc = 1;
1912                                         } else {
1913                                                 spin_lock(&req->rq_lock);
1914                                                 req->rq_wait_ctx = 1;
1915                                                 spin_unlock(&req->rq_lock);
1916                                         }
1917
1918                                         continue;
1919                                 } else {
1920                                         spin_lock(&req->rq_lock);
1921                                         req->rq_wait_ctx = 0;
1922                                         spin_unlock(&req->rq_lock);
1923                                 }
1924
1925                                 rc = ptl_send_rpc(req, 0);
1926                                 if (rc == -ENOMEM) {
1927                                         spin_lock(&imp->imp_lock);
1928                                         if (!list_empty(&req->rq_list))
1929                                                 list_del_init(&req->rq_list);
1930                                         spin_unlock(&imp->imp_lock);
1931                                         ptlrpc_rqphase_move(req, RQ_PHASE_NEW);
1932                                         continue;
1933                                 }
1934                                 if (rc) {
1935                                         DEBUG_REQ(D_HA, req,
1936                                                   "send failed: rc = %d", rc);
1937                                         force_timer_recalc = 1;
1938                                         spin_lock(&req->rq_lock);
1939                                         req->rq_net_err = 1;
1940                                         spin_unlock(&req->rq_lock);
1941                                         continue;
1942                                 }
1943                                 /* need to reset the timeout */
1944                                 force_timer_recalc = 1;
1945                         }
1946
1947                         spin_lock(&req->rq_lock);
1948
1949                         if (ptlrpc_client_early(req)) {
1950                                 ptlrpc_at_recv_early_reply(req);
1951                                 spin_unlock(&req->rq_lock);
1952                                 continue;
1953                         }
1954
1955                         /* Still waiting for a reply? */
1956                         if (ptlrpc_client_recv(req)) {
1957                                 spin_unlock(&req->rq_lock);
1958                                 continue;
1959                         }
1960
1961                         /* Did we actually receive a reply? */
1962                         if (!ptlrpc_client_replied(req)) {
1963                                 spin_unlock(&req->rq_lock);
1964                                 continue;
1965                         }
1966
1967                         spin_unlock(&req->rq_lock);
1968
1969                         /* unlink from net because we are going to
1970                          * swab in-place of reply buffer */
1971                         unregistered = ptlrpc_unregister_reply(req, 1);
1972                         if (!unregistered)
1973                                 continue;
1974
1975                         req->rq_status = after_reply(req);
1976                         if (req->rq_resend)
1977                                 continue;
1978
1979                         /* If there is no bulk associated with this request,
1980                          * then we're done and should let the interpreter
1981                          * process the reply. Similarly if the RPC returned
1982                          * an error, and therefore the bulk will never arrive.
1983                          */
1984                         if (req->rq_bulk == NULL || req->rq_status < 0) {
1985                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1986                                 GOTO(interpret, req->rq_status);
1987                         }
1988
1989                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1990                 }
1991
1992                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1993                 if (ptlrpc_client_bulk_active(req))
1994                         continue;
1995
1996                 if (req->rq_bulk->bd_failure) {
1997                         /* The RPC reply arrived OK, but the bulk screwed
1998                          * up!  Dead weird since the server told us the RPC
1999                          * was good after getting the REPLY for her GET or
2000                          * the ACK for her PUT. */
2001                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
2002                         req->rq_status = -EIO;
2003                 }
2004
2005                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
2006
2007         interpret:
2008                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
2009
2010                 /* This moves to "unregistering" phase we need to wait for
2011                  * reply unlink. */
2012                 if (!unregistered && !ptlrpc_unregister_reply(req, async)) {
2013                         /* start async bulk unlink too */
2014                         ptlrpc_unregister_bulk(req, 1);
2015                         continue;
2016                 }
2017
2018                 if (!ptlrpc_unregister_bulk(req, async))
2019                         continue;
2020
2021                 /* When calling interpret receiving already should be
2022                  * finished. */
2023                 LASSERT(!req->rq_receiving_reply);
2024
2025                 ptlrpc_req_interpret(env, req, req->rq_status);
2026
2027                 if (ptlrpcd_check_work(req)) {
2028                         atomic_dec(&set->set_remaining);
2029                         continue;
2030                 }
2031                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
2032
2033                 CDEBUG(req->rq_reqmsg != NULL ? D_RPCTRACE : 0,
2034                         "Completed RPC pname:cluuid:pid:xid:nid:"
2035                         "opc %s:%s:%d:%llu:%s:%d\n",
2036                         current_comm(), imp->imp_obd->obd_uuid.uuid,
2037                         lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
2038                         libcfs_nid2str(imp->imp_connection->c_peer.nid),
2039                         lustre_msg_get_opc(req->rq_reqmsg));
2040
2041                 spin_lock(&imp->imp_lock);
2042                 /* Request already may be not on sending or delaying list. This
2043                  * may happen in the case of marking it erroneous for the case
2044                  * ptlrpc_import_delay_req(req, status) find it impossible to
2045                  * allow sending this rpc and returns *status != 0. */
2046                 if (!list_empty(&req->rq_list)) {
2047                         list_del_init(&req->rq_list);
2048                         atomic_dec(&imp->imp_inflight);
2049                 }
2050                 list_del_init(&req->rq_unreplied_list);
2051                 spin_unlock(&imp->imp_lock);
2052
2053                 atomic_dec(&set->set_remaining);
2054                 wake_up_all(&imp->imp_recovery_waitq);
2055
2056                 if (set->set_producer) {
2057                         /* produce a new request if possible */
2058                         if (ptlrpc_set_producer(set) > 0)
2059                                 force_timer_recalc = 1;
2060
2061                         /* free the request that has just been completed
2062                          * in order not to pollute set->set_requests */
2063                         list_del_init(&req->rq_set_chain);
2064                         spin_lock(&req->rq_lock);
2065                         req->rq_set = NULL;
2066                         req->rq_invalid_rqset = 0;
2067                         spin_unlock(&req->rq_lock);
2068
2069                         /* record rq_status to compute the final status later */
2070                         if (req->rq_status != 0)
2071                                 set->set_rc = req->rq_status;
2072                         ptlrpc_req_finished(req);
2073                 } else {
2074                         list_move_tail(&req->rq_set_chain, &comp_reqs);
2075                 }
2076         }
2077
2078         /* move completed request at the head of list so it's easier for
2079          * caller to find them */
2080         list_splice(&comp_reqs, &set->set_requests);
2081
2082         /* If we hit an error, we want to recover promptly. */
2083         RETURN(atomic_read(&set->set_remaining) == 0 || force_timer_recalc);
2084 }
2085 EXPORT_SYMBOL(ptlrpc_check_set);
2086
2087 /**
2088  * Time out request \a req. is \a async_unlink is set, that means do not wait
2089  * until LNet actually confirms network buffer unlinking.
2090  * Return 1 if we should give up further retrying attempts or 0 otherwise.
2091  */
2092 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
2093 {
2094         struct obd_import *imp = req->rq_import;
2095         int rc = 0;
2096         ENTRY;
2097
2098         spin_lock(&req->rq_lock);
2099         req->rq_timedout = 1;
2100         spin_unlock(&req->rq_lock);
2101
2102         DEBUG_REQ(D_WARNING, req, "Request sent has %s: [sent "CFS_DURATION_T
2103                   "/real "CFS_DURATION_T"]",
2104                   req->rq_net_err ? "failed due to network error" :
2105                      ((req->rq_real_sent == 0 ||
2106                        cfs_time_before(req->rq_real_sent, req->rq_sent) ||
2107                        cfs_time_aftereq(req->rq_real_sent, req->rq_deadline)) ?
2108                       "timed out for sent delay" : "timed out for slow reply"),
2109                   req->rq_sent, req->rq_real_sent);
2110
2111         if (imp != NULL && obd_debug_peer_on_timeout)
2112                 LNetDebugPeer(imp->imp_connection->c_peer);
2113
2114         ptlrpc_unregister_reply(req, async_unlink);
2115         ptlrpc_unregister_bulk(req, async_unlink);
2116
2117         if (obd_dump_on_timeout)
2118                 libcfs_debug_dumplog();
2119
2120         if (imp == NULL) {
2121                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
2122                 RETURN(1);
2123         }
2124
2125         atomic_inc(&imp->imp_timeouts);
2126
2127         /* The DLM server doesn't want recovery run on its imports. */
2128         if (imp->imp_dlm_fake)
2129                 RETURN(1);
2130
2131         /* If this request is for recovery or other primordial tasks,
2132          * then error it out here. */
2133         if (req->rq_ctx_init || req->rq_ctx_fini ||
2134             req->rq_send_state != LUSTRE_IMP_FULL ||
2135             imp->imp_obd->obd_no_recov) {
2136                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
2137                           ptlrpc_import_state_name(req->rq_send_state),
2138                           ptlrpc_import_state_name(imp->imp_state));
2139                 spin_lock(&req->rq_lock);
2140                 req->rq_status = -ETIMEDOUT;
2141                 req->rq_err = 1;
2142                 spin_unlock(&req->rq_lock);
2143                 RETURN(1);
2144         }
2145
2146         /* if a request can't be resent we can't wait for an answer after
2147            the timeout */
2148         if (ptlrpc_no_resend(req)) {
2149                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
2150                 rc = 1;
2151         }
2152
2153         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
2154
2155         RETURN(rc);
2156 }
2157
2158 /**
2159  * Time out all uncompleted requests in request set pointed by \a data
2160  * Callback used when waiting on sets with l_wait_event.
2161  * Always returns 1.
2162  */
2163 int ptlrpc_expired_set(void *data)
2164 {
2165         struct ptlrpc_request_set       *set = data;
2166         struct list_head                *tmp;
2167         time_t                          now = cfs_time_current_sec();
2168         ENTRY;
2169
2170         LASSERT(set != NULL);
2171
2172         /*
2173          * A timeout expired. See which reqs it applies to...
2174          */
2175         list_for_each(tmp, &set->set_requests) {
2176                 struct ptlrpc_request *req =
2177                         list_entry(tmp, struct ptlrpc_request,
2178                                    rq_set_chain);
2179
2180                 /* don't expire request waiting for context */
2181                 if (req->rq_wait_ctx)
2182                         continue;
2183
2184                 /* Request in-flight? */
2185                 if (!((req->rq_phase == RQ_PHASE_RPC &&
2186                        !req->rq_waiting && !req->rq_resend) ||
2187                       (req->rq_phase == RQ_PHASE_BULK)))
2188                         continue;
2189
2190                 if (req->rq_timedout ||     /* already dealt with */
2191                     req->rq_deadline > now) /* not expired */
2192                         continue;
2193
2194                 /* Deal with this guy. Do it asynchronously to not block
2195                  * ptlrpcd thread. */
2196                 ptlrpc_expire_one_request(req, 1);
2197         }
2198
2199         /*
2200          * When waiting for a whole set, we always break out of the
2201          * sleep so we can recalculate the timeout, or enable interrupts
2202          * if everyone's timed out.
2203          */
2204         RETURN(1);
2205 }
2206
2207 /**
2208  * Sets rq_intr flag in \a req under spinlock.
2209  */
2210 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
2211 {
2212         spin_lock(&req->rq_lock);
2213         req->rq_intr = 1;
2214         spin_unlock(&req->rq_lock);
2215 }
2216 EXPORT_SYMBOL(ptlrpc_mark_interrupted);
2217
2218 /**
2219  * Interrupts (sets interrupted flag) all uncompleted requests in
2220  * a set \a data. Callback for l_wait_event for interruptible waits.
2221  */
2222 static void ptlrpc_interrupted_set(void *data)
2223 {
2224         struct ptlrpc_request_set *set = data;
2225         struct list_head *tmp;
2226
2227         LASSERT(set != NULL);
2228         CDEBUG(D_RPCTRACE, "INTERRUPTED SET %p\n", set);
2229
2230         list_for_each(tmp, &set->set_requests) {
2231                 struct ptlrpc_request *req =
2232                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2233
2234                 if (req->rq_intr)
2235                         continue;
2236
2237                 if (req->rq_phase != RQ_PHASE_RPC &&
2238                     req->rq_phase != RQ_PHASE_UNREG_RPC &&
2239                     !req->rq_allow_intr)
2240                         continue;
2241
2242                 ptlrpc_mark_interrupted(req);
2243         }
2244 }
2245
2246 /**
2247  * Get the smallest timeout in the set; this does NOT set a timeout.
2248  */
2249 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
2250 {
2251         struct list_head        *tmp;
2252         time_t                   now = cfs_time_current_sec();
2253         int                      timeout = 0;
2254         struct ptlrpc_request   *req;
2255         int                      deadline;
2256         ENTRY;
2257
2258         list_for_each(tmp, &set->set_requests) {
2259                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2260
2261                 /*
2262                  * Request in-flight?
2263                  */
2264                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
2265                       (req->rq_phase == RQ_PHASE_BULK) ||
2266                       (req->rq_phase == RQ_PHASE_NEW)))
2267                         continue;
2268
2269                 /*
2270                  * Already timed out.
2271                  */
2272                 if (req->rq_timedout)
2273                         continue;
2274
2275                 /*
2276                  * Waiting for ctx.
2277                  */
2278                 if (req->rq_wait_ctx)
2279                         continue;
2280
2281                 if (req->rq_phase == RQ_PHASE_NEW)
2282                         deadline = req->rq_sent;
2283                 else if (req->rq_phase == RQ_PHASE_RPC && req->rq_resend)
2284                         deadline = req->rq_sent;
2285                 else
2286                         deadline = req->rq_sent + req->rq_timeout;
2287
2288                 if (deadline <= now)    /* actually expired already */
2289                         timeout = 1;    /* ASAP */
2290                 else if (timeout == 0 || timeout > deadline - now)
2291                         timeout = deadline - now;
2292         }
2293         RETURN(timeout);
2294 }
2295
2296 /**
2297  * Send all unset request from the set and then wait untill all
2298  * requests in the set complete (either get a reply, timeout, get an
2299  * error or otherwise be interrupted).
2300  * Returns 0 on success or error code otherwise.
2301  */
2302 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
2303 {
2304         struct list_head            *tmp;
2305         struct ptlrpc_request *req;
2306         struct l_wait_info     lwi;
2307         int                    rc, timeout;
2308         ENTRY;
2309
2310         if (set->set_producer)
2311                 (void)ptlrpc_set_producer(set);
2312         else
2313                 list_for_each(tmp, &set->set_requests) {
2314                         req = list_entry(tmp, struct ptlrpc_request,
2315                                          rq_set_chain);
2316                         if (req->rq_phase == RQ_PHASE_NEW)
2317                                 (void)ptlrpc_send_new_req(req);
2318                 }
2319
2320         if (list_empty(&set->set_requests))
2321                 RETURN(0);
2322
2323         do {
2324                 timeout = ptlrpc_set_next_timeout(set);
2325
2326                 /* wait until all complete, interrupted, or an in-flight
2327                  * req times out */
2328                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
2329                        set, timeout);
2330
2331                 if ((timeout == 0 && !signal_pending(current)) ||
2332                     set->set_allow_intr)
2333                         /* No requests are in-flight (ether timed out
2334                          * or delayed), so we can allow interrupts.
2335                          * We still want to block for a limited time,
2336                          * so we allow interrupts during the timeout. */
2337                         lwi = LWI_TIMEOUT_INTR_ALL(
2338                                         cfs_time_seconds(timeout ? timeout : 1),
2339                                         ptlrpc_expired_set,
2340                                         ptlrpc_interrupted_set, set);
2341                 else
2342                         /*
2343                          * At least one request is in flight, so no
2344                          * interrupts are allowed. Wait until all
2345                          * complete, or an in-flight req times out.
2346                          */
2347                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
2348                                           ptlrpc_expired_set, set);
2349
2350                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
2351
2352                 /* LU-769 - if we ignored the signal because it was already
2353                  * pending when we started, we need to handle it now or we risk
2354                  * it being ignored forever */
2355                 if (rc == -ETIMEDOUT &&
2356                     (!lwi.lwi_allow_intr || set->set_allow_intr) &&
2357                     signal_pending(current)) {
2358                         sigset_t blocked_sigs =
2359                                            cfs_block_sigsinv(LUSTRE_FATAL_SIGS);
2360
2361                         /* In fact we only interrupt for the "fatal" signals
2362                          * like SIGINT or SIGKILL. We still ignore less
2363                          * important signals since ptlrpc set is not easily
2364                          * reentrant from userspace again */
2365                         if (signal_pending(current))
2366                                 ptlrpc_interrupted_set(set);
2367                         cfs_restore_sigs(blocked_sigs);
2368                 }
2369
2370                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
2371
2372                 /* -EINTR => all requests have been flagged rq_intr so next
2373                  * check completes.
2374                  * -ETIMEDOUT => someone timed out.  When all reqs have
2375                  * timed out, signals are enabled allowing completion with
2376                  * EINTR.
2377                  * I don't really care if we go once more round the loop in
2378                  * the error cases -eeb. */
2379                 if (rc == 0 && atomic_read(&set->set_remaining) == 0) {
2380                         list_for_each(tmp, &set->set_requests) {
2381                                 req = list_entry(tmp, struct ptlrpc_request,
2382                                                  rq_set_chain);
2383                                 spin_lock(&req->rq_lock);
2384                                 req->rq_invalid_rqset = 1;
2385                                 spin_unlock(&req->rq_lock);
2386                         }
2387                 }
2388         } while (rc != 0 || atomic_read(&set->set_remaining) != 0);
2389
2390         LASSERT(atomic_read(&set->set_remaining) == 0);
2391
2392         rc = set->set_rc; /* rq_status of already freed requests if any */
2393         list_for_each(tmp, &set->set_requests) {
2394                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2395
2396                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
2397                 if (req->rq_status != 0)
2398                         rc = req->rq_status;
2399         }
2400
2401         if (set->set_interpret != NULL) {
2402                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
2403                         set->set_interpret;
2404                 rc = interpreter (set, set->set_arg, rc);
2405         } else {
2406                 struct ptlrpc_set_cbdata *cbdata, *n;
2407                 int err;
2408
2409                 list_for_each_entry_safe(cbdata, n,
2410                                          &set->set_cblist, psc_item) {
2411                         list_del_init(&cbdata->psc_item);
2412                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
2413                         if (err && !rc)
2414                                 rc = err;
2415                         OBD_FREE_PTR(cbdata);
2416                 }
2417         }
2418
2419         RETURN(rc);
2420 }
2421 EXPORT_SYMBOL(ptlrpc_set_wait);
2422
2423 /**
2424  * Helper fuction for request freeing.
2425  * Called when request count reached zero and request needs to be freed.
2426  * Removes request from all sorts of sending/replay lists it might be on,
2427  * frees network buffers if any are present.
2428  * If \a locked is set, that means caller is already holding import imp_lock
2429  * and so we no longer need to reobtain it (for certain lists manipulations)
2430  */
2431 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
2432 {
2433         ENTRY;
2434
2435         if (request == NULL)
2436                 RETURN_EXIT;
2437
2438         LASSERT(!request->rq_srv_req);
2439         LASSERT(request->rq_export == NULL);
2440         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
2441         LASSERTF(list_empty(&request->rq_list), "req %p\n", request);
2442         LASSERTF(list_empty(&request->rq_set_chain), "req %p\n", request);
2443         LASSERTF(!request->rq_replay, "req %p\n", request);
2444
2445         req_capsule_fini(&request->rq_pill);
2446
2447         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
2448          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
2449         if (request->rq_import != NULL) {
2450                 if (!locked)
2451                         spin_lock(&request->rq_import->imp_lock);
2452                 list_del_init(&request->rq_replay_list);
2453                 list_del_init(&request->rq_unreplied_list);
2454                 if (!locked)
2455                         spin_unlock(&request->rq_import->imp_lock);
2456         }
2457         LASSERTF(list_empty(&request->rq_replay_list), "req %p\n", request);
2458
2459         if (atomic_read(&request->rq_refcount) != 0) {
2460                 DEBUG_REQ(D_ERROR, request,
2461                           "freeing request with nonzero refcount");
2462                 LBUG();
2463         }
2464
2465         if (request->rq_repbuf != NULL)
2466                 sptlrpc_cli_free_repbuf(request);
2467
2468         if (request->rq_import != NULL) {
2469                 class_import_put(request->rq_import);
2470                 request->rq_import = NULL;
2471         }
2472         if (request->rq_bulk != NULL)
2473                 ptlrpc_free_bulk(request->rq_bulk);
2474
2475         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
2476                 sptlrpc_cli_free_reqbuf(request);
2477
2478         if (request->rq_cli_ctx)
2479                 sptlrpc_req_put_ctx(request, !locked);
2480
2481         if (request->rq_pool)
2482                 __ptlrpc_free_req_to_pool(request);
2483         else
2484                 ptlrpc_request_cache_free(request);
2485         EXIT;
2486 }
2487
2488 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
2489 /**
2490  * Drop one request reference. Must be called with import imp_lock held.
2491  * When reference count drops to zero, request is freed.
2492  */
2493 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
2494 {
2495         assert_spin_locked(&request->rq_import->imp_lock);
2496         (void)__ptlrpc_req_finished(request, 1);
2497 }
2498
2499 /**
2500  * Helper function
2501  * Drops one reference count for request \a request.
2502  * \a locked set indicates that caller holds import imp_lock.
2503  * Frees the request whe reference count reaches zero.
2504  */
2505 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
2506 {
2507         ENTRY;
2508         if (request == NULL)
2509                 RETURN(1);
2510
2511         if (request == LP_POISON ||
2512             request->rq_reqmsg == LP_POISON) {
2513                 CERROR("dereferencing freed request (bug 575)\n");
2514                 LBUG();
2515                 RETURN(1);
2516         }
2517
2518         DEBUG_REQ(D_INFO, request, "refcount now %u",
2519                   atomic_read(&request->rq_refcount) - 1);
2520
2521         if (atomic_dec_and_test(&request->rq_refcount)) {
2522                 __ptlrpc_free_req(request, locked);
2523                 RETURN(1);
2524         }
2525
2526         RETURN(0);
2527 }
2528
2529 /**
2530  * Drops one reference count for a request.
2531  */
2532 void ptlrpc_req_finished(struct ptlrpc_request *request)
2533 {
2534         __ptlrpc_req_finished(request, 0);
2535 }
2536 EXPORT_SYMBOL(ptlrpc_req_finished);
2537
2538 /**
2539  * Returns xid of a \a request
2540  */
2541 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
2542 {
2543         return request->rq_xid;
2544 }
2545 EXPORT_SYMBOL(ptlrpc_req_xid);
2546
2547 /**
2548  * Disengage the client's reply buffer from the network
2549  * NB does _NOT_ unregister any client-side bulk.
2550  * IDEMPOTENT, but _not_ safe against concurrent callers.
2551  * The request owner (i.e. the thread doing the I/O) must call...
2552  * Returns 0 on success or 1 if unregistering cannot be made.
2553  */
2554 static int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
2555 {
2556         int                rc;
2557         struct l_wait_info lwi;
2558
2559         /*
2560          * Might sleep.
2561          */
2562         LASSERT(!in_interrupt());
2563
2564         /* Let's setup deadline for reply unlink. */
2565         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
2566             async && request->rq_reply_deadline == 0 && cfs_fail_val == 0)
2567                 request->rq_reply_deadline =
2568                         cfs_time_current_sec() + LONG_UNLINK;
2569
2570         /*
2571          * Nothing left to do.
2572          */
2573         if (!ptlrpc_client_recv_or_unlink(request))
2574                 RETURN(1);
2575
2576         LNetMDUnlink(request->rq_reply_md_h);
2577
2578         /*
2579          * Let's check it once again.
2580          */
2581         if (!ptlrpc_client_recv_or_unlink(request))
2582                 RETURN(1);
2583
2584         /* Move to "Unregistering" phase as reply was not unlinked yet. */
2585         ptlrpc_rqphase_move(request, RQ_PHASE_UNREG_RPC);
2586
2587         /*
2588          * Do not wait for unlink to finish.
2589          */
2590         if (async)
2591                 RETURN(0);
2592
2593         /*
2594          * We have to l_wait_event() whatever the result, to give liblustre
2595          * a chance to run reply_in_callback(), and to make sure we've
2596          * unlinked before returning a req to the pool.
2597          */
2598         for (;;) {
2599                 /* The wq argument is ignored by user-space wait_event macros */
2600                 wait_queue_head_t *wq = (request->rq_set != NULL) ?
2601                                         &request->rq_set->set_waitq :
2602                                         &request->rq_reply_waitq;
2603                 /* Network access will complete in finite time but the HUGE
2604                  * timeout lets us CWARN for visibility of sluggish NALs */
2605                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2606                                            cfs_time_seconds(1), NULL, NULL);
2607                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
2608                                   &lwi);
2609                 if (rc == 0) {
2610                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2611                         RETURN(1);
2612                 }
2613
2614                 LASSERT(rc == -ETIMEDOUT);
2615                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2616                           "receiving_reply=%d req_ulinked=%d reply_unlinked=%d",
2617                           request->rq_receiving_reply,
2618                           request->rq_req_unlinked,
2619                           request->rq_reply_unlinked);
2620         }
2621         RETURN(0);
2622 }
2623
2624 static void ptlrpc_free_request(struct ptlrpc_request *req)
2625 {
2626         spin_lock(&req->rq_lock);
2627         req->rq_replay = 0;
2628         spin_unlock(&req->rq_lock);
2629
2630         if (req->rq_commit_cb != NULL)
2631                 req->rq_commit_cb(req);
2632         list_del_init(&req->rq_replay_list);
2633
2634         __ptlrpc_req_finished(req, 1);
2635 }
2636
2637 /**
2638  * the request is committed and dropped from the replay list of its import
2639  */
2640 void ptlrpc_request_committed(struct ptlrpc_request *req, int force)
2641 {
2642         struct obd_import       *imp = req->rq_import;
2643
2644         spin_lock(&imp->imp_lock);
2645         if (list_empty(&req->rq_replay_list)) {
2646                 spin_unlock(&imp->imp_lock);
2647                 return;
2648         }
2649
2650         if (force || req->rq_transno <= imp->imp_peer_committed_transno)
2651                 ptlrpc_free_request(req);
2652
2653         spin_unlock(&imp->imp_lock);
2654 }
2655 EXPORT_SYMBOL(ptlrpc_request_committed);
2656
2657 /**
2658  * Iterates through replay_list on import and prunes
2659  * all requests have transno smaller than last_committed for the
2660  * import and don't have rq_replay set.
2661  * Since requests are sorted in transno order, stops when meetign first
2662  * transno bigger than last_committed.
2663  * caller must hold imp->imp_lock
2664  */
2665 void ptlrpc_free_committed(struct obd_import *imp)
2666 {
2667         struct ptlrpc_request   *req, *saved;
2668         struct ptlrpc_request   *last_req = NULL; /* temporary fire escape */
2669         bool                     skip_committed_list = true;
2670         ENTRY;
2671
2672         LASSERT(imp != NULL);
2673         assert_spin_locked(&imp->imp_lock);
2674
2675         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2676             imp->imp_generation == imp->imp_last_generation_checked) {
2677                 CDEBUG(D_INFO, "%s: skip recheck: last_committed %llu\n",
2678                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2679                 RETURN_EXIT;
2680         }
2681         CDEBUG(D_RPCTRACE, "%s: committing for last_committed %llu gen %d\n",
2682                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2683                imp->imp_generation);
2684
2685         if (imp->imp_generation != imp->imp_last_generation_checked ||
2686             imp->imp_last_transno_checked == 0)
2687                 skip_committed_list = false;
2688
2689         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2690         imp->imp_last_generation_checked = imp->imp_generation;
2691
2692         list_for_each_entry_safe(req, saved, &imp->imp_replay_list,
2693                                      rq_replay_list) {
2694                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2695                 LASSERT(req != last_req);
2696                 last_req = req;
2697
2698                 if (req->rq_transno == 0) {
2699                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2700                         LBUG();
2701                 }
2702                 if (req->rq_import_generation < imp->imp_generation) {
2703                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2704                         GOTO(free_req, 0);
2705                 }
2706
2707                 /* not yet committed */
2708                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2709                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2710                         break;
2711                 }
2712
2713                 if (req->rq_replay) {
2714                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2715                         list_move_tail(&req->rq_replay_list,
2716                                            &imp->imp_committed_list);
2717                         continue;
2718                 }
2719
2720                 DEBUG_REQ(D_INFO, req, "commit (last_committed %llu)",
2721                           imp->imp_peer_committed_transno);
2722 free_req:
2723                 ptlrpc_free_request(req);
2724         }
2725
2726         if (skip_committed_list)
2727                 GOTO(out, 0);
2728
2729         list_for_each_entry_safe(req, saved, &imp->imp_committed_list,
2730                                      rq_replay_list) {
2731                 LASSERT(req->rq_transno != 0);
2732                 if (req->rq_import_generation < imp->imp_generation) {
2733                         DEBUG_REQ(D_RPCTRACE, req, "free stale open request");
2734                         ptlrpc_free_request(req);
2735                 } else if (!req->rq_replay) {
2736                         DEBUG_REQ(D_RPCTRACE, req, "free closed open request");
2737                         ptlrpc_free_request(req);
2738                 }
2739         }
2740 out:
2741         EXIT;
2742 }
2743
2744 void ptlrpc_cleanup_client(struct obd_import *imp)
2745 {
2746         ENTRY;
2747         EXIT;
2748 }
2749
2750 /**
2751  * Schedule previously sent request for resend.
2752  * For bulk requests we assign new xid (to avoid problems with
2753  * lost replies and therefore several transfers landing into same buffer
2754  * from different sending attempts).
2755  */
2756 void ptlrpc_resend_req(struct ptlrpc_request *req)
2757 {
2758         DEBUG_REQ(D_HA, req, "going to resend");
2759         spin_lock(&req->rq_lock);
2760
2761         /* Request got reply but linked to the import list still.
2762            Let ptlrpc_check_set() to process it. */
2763         if (ptlrpc_client_replied(req)) {
2764                 spin_unlock(&req->rq_lock);
2765                 DEBUG_REQ(D_HA, req, "it has reply, so skip it");
2766                 return;
2767         }
2768
2769         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2770         req->rq_status = -EAGAIN;
2771
2772         req->rq_resend = 1;
2773         req->rq_net_err = 0;
2774         req->rq_timedout = 0;
2775
2776         ptlrpc_client_wake_req(req);
2777         spin_unlock(&req->rq_lock);
2778 }
2779
2780 /* XXX: this function and rq_status are currently unused */
2781 void ptlrpc_restart_req(struct ptlrpc_request *req)
2782 {
2783         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2784         req->rq_status = -ERESTARTSYS;
2785
2786         spin_lock(&req->rq_lock);
2787         req->rq_restart = 1;
2788         req->rq_timedout = 0;
2789         ptlrpc_client_wake_req(req);
2790         spin_unlock(&req->rq_lock);
2791 }
2792
2793 /**
2794  * Grab additional reference on a request \a req
2795  */
2796 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2797 {
2798         ENTRY;
2799         atomic_inc(&req->rq_refcount);
2800         RETURN(req);
2801 }
2802 EXPORT_SYMBOL(ptlrpc_request_addref);
2803
2804 /**
2805  * Add a request to import replay_list.
2806  * Must be called under imp_lock
2807  */
2808 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2809                                       struct obd_import *imp)
2810 {
2811         struct list_head *tmp;
2812
2813         assert_spin_locked(&imp->imp_lock);
2814
2815         if (req->rq_transno == 0) {
2816                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2817                 LBUG();
2818         }
2819
2820         /* clear this for new requests that were resent as well
2821            as resent replayed requests. */
2822         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2823
2824         /* don't re-add requests that have been replayed */
2825         if (!list_empty(&req->rq_replay_list))
2826                 return;
2827
2828         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2829
2830         spin_lock(&req->rq_lock);
2831         req->rq_resend = 0;
2832         spin_unlock(&req->rq_lock);
2833
2834         LASSERT(imp->imp_replayable);
2835         /* Balanced in ptlrpc_free_committed, usually. */
2836         ptlrpc_request_addref(req);
2837         list_for_each_prev(tmp, &imp->imp_replay_list) {
2838                 struct ptlrpc_request *iter = list_entry(tmp,
2839                                                          struct ptlrpc_request,
2840                                                          rq_replay_list);
2841
2842                 /* We may have duplicate transnos if we create and then
2843                  * open a file, or for closes retained if to match creating
2844                  * opens, so use req->rq_xid as a secondary key.
2845                  * (See bugs 684, 685, and 428.)
2846                  * XXX no longer needed, but all opens need transnos!
2847                  */
2848                 if (iter->rq_transno > req->rq_transno)
2849                         continue;
2850
2851                 if (iter->rq_transno == req->rq_transno) {
2852                         LASSERT(iter->rq_xid != req->rq_xid);
2853                         if (iter->rq_xid > req->rq_xid)
2854                                 continue;
2855                 }
2856
2857                 list_add(&req->rq_replay_list, &iter->rq_replay_list);
2858                 return;
2859         }
2860
2861         list_add(&req->rq_replay_list, &imp->imp_replay_list);
2862 }
2863
2864 /**
2865  * Send request and wait until it completes.
2866  * Returns request processing status.
2867  */
2868 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2869 {
2870         struct ptlrpc_request_set *set;
2871         int rc;
2872         ENTRY;
2873
2874         LASSERT(req->rq_set == NULL);
2875         LASSERT(!req->rq_receiving_reply);
2876
2877         set = ptlrpc_prep_set();
2878         if (set == NULL) {
2879                 CERROR("cannot allocate ptlrpc set: rc = %d\n", -ENOMEM);
2880                 RETURN(-ENOMEM);
2881         }
2882
2883         /* for distributed debugging */
2884         lustre_msg_set_status(req->rq_reqmsg, current_pid());
2885
2886         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2887         ptlrpc_request_addref(req);
2888         ptlrpc_set_add_req(set, req);
2889         rc = ptlrpc_set_wait(set);
2890         ptlrpc_set_destroy(set);
2891
2892         RETURN(rc);
2893 }
2894 EXPORT_SYMBOL(ptlrpc_queue_wait);
2895
2896 /**
2897  * Callback used for replayed requests reply processing.
2898  * In case of successful reply calls registered request replay callback.
2899  * In case of error restart replay process.
2900  */
2901 static int ptlrpc_replay_interpret(const struct lu_env *env,
2902                                    struct ptlrpc_request *req,
2903                                    void * data, int rc)
2904 {
2905         struct ptlrpc_replay_async_args *aa = data;
2906         struct obd_import *imp = req->rq_import;
2907
2908         ENTRY;
2909         atomic_dec(&imp->imp_replay_inflight);
2910
2911         /* Note: if it is bulk replay (MDS-MDS replay), then even if
2912          * server got the request, but bulk transfer timeout, let's
2913          * replay the bulk req again */
2914         if (!ptlrpc_client_replied(req) ||
2915             (req->rq_bulk != NULL &&
2916              lustre_msg_get_status(req->rq_repmsg) == -ETIMEDOUT)) {
2917                 DEBUG_REQ(D_ERROR, req, "request replay timed out.\n");
2918                 GOTO(out, rc = -ETIMEDOUT);
2919         }
2920
2921         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2922             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2923              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2924                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2925
2926         /** VBR: check version failure */
2927         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2928                 /** replay was failed due to version mismatch */
2929                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2930                 spin_lock(&imp->imp_lock);
2931                 imp->imp_vbr_failed = 1;
2932                 imp->imp_no_lock_replay = 1;
2933                 spin_unlock(&imp->imp_lock);
2934                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2935         } else {
2936                 /** The transno had better not change over replay. */
2937                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2938                          lustre_msg_get_transno(req->rq_repmsg) ||
2939                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2940                          "%#llx/%#llx\n",
2941                          lustre_msg_get_transno(req->rq_reqmsg),
2942                          lustre_msg_get_transno(req->rq_repmsg));
2943         }
2944
2945         spin_lock(&imp->imp_lock);
2946         /** if replays by version then gap occur on server, no trust to locks */
2947         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2948                 imp->imp_no_lock_replay = 1;
2949         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2950         spin_unlock(&imp->imp_lock);
2951         LASSERT(imp->imp_last_replay_transno);
2952
2953         /* transaction number shouldn't be bigger than the latest replayed */
2954         if (req->rq_transno > lustre_msg_get_transno(req->rq_reqmsg)) {
2955                 DEBUG_REQ(D_ERROR, req,
2956                           "Reported transno %llu is bigger than the "
2957                           "replayed one: %llu", req->rq_transno,
2958                           lustre_msg_get_transno(req->rq_reqmsg));
2959                 GOTO(out, rc = -EINVAL);
2960         }
2961
2962         DEBUG_REQ(D_HA, req, "got rep");
2963
2964         /* let the callback do fixups, possibly including in the request */
2965         if (req->rq_replay_cb)
2966                 req->rq_replay_cb(req);
2967
2968         if (ptlrpc_client_replied(req) &&
2969             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2970                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2971                           lustre_msg_get_status(req->rq_repmsg),
2972                           aa->praa_old_status);
2973
2974                 /* Note: If the replay fails for MDT-MDT recovery, let's
2975                  * abort all of the following requests in the replay
2976                  * and sending list, because MDT-MDT update requests
2977                  * are dependent on each other, see LU-7039 */
2978                 if (imp->imp_connect_flags_orig & OBD_CONNECT_MDS_MDS) {
2979                         struct ptlrpc_request *free_req;
2980                         struct ptlrpc_request *tmp;
2981
2982                         spin_lock(&imp->imp_lock);
2983                         list_for_each_entry_safe(free_req, tmp,
2984                                                  &imp->imp_replay_list,
2985                                                  rq_replay_list) {
2986                                 ptlrpc_free_request(free_req);
2987                         }
2988
2989                         list_for_each_entry_safe(free_req, tmp,
2990                                                  &imp->imp_committed_list,
2991                                                  rq_replay_list) {
2992                                 ptlrpc_free_request(free_req);
2993                         }
2994
2995                         list_for_each_entry_safe(free_req, tmp,
2996                                                 &imp->imp_delayed_list,
2997                                                 rq_list) {
2998                                 spin_lock(&free_req->rq_lock);
2999                                 free_req->rq_err = 1;
3000                                 free_req->rq_status = -EIO;
3001                                 ptlrpc_client_wake_req(free_req);
3002                                 spin_unlock(&free_req->rq_lock);
3003                         }
3004
3005                         list_for_each_entry_safe(free_req, tmp,
3006                                                 &imp->imp_sending_list,
3007                                                 rq_list) {
3008                                 spin_lock(&free_req->rq_lock);
3009                                 free_req->rq_err = 1;
3010                                 free_req->rq_status = -EIO;
3011                                 ptlrpc_client_wake_req(free_req);
3012                                 spin_unlock(&free_req->rq_lock);
3013                         }
3014                         spin_unlock(&imp->imp_lock);
3015                 }
3016         } else {
3017                 /* Put it back for re-replay. */
3018                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
3019         }
3020
3021         /*
3022          * Errors while replay can set transno to 0, but
3023          * imp_last_replay_transno shouldn't be set to 0 anyway
3024          */
3025         if (req->rq_transno == 0)
3026                 CERROR("Transno is 0 during replay!\n");
3027
3028         /* continue with recovery */
3029         rc = ptlrpc_import_recovery_state_machine(imp);
3030  out:
3031         req->rq_send_state = aa->praa_old_state;
3032
3033         if (rc != 0)
3034                 /* this replay failed, so restart recovery */
3035                 ptlrpc_connect_import(imp);
3036
3037         RETURN(rc);
3038 }
3039
3040 /**
3041  * Prepares and queues request for replay.
3042  * Adds it to ptlrpcd queue for actual sending.
3043  * Returns 0 on success.
3044  */
3045 int ptlrpc_replay_req(struct ptlrpc_request *req)
3046 {
3047         struct ptlrpc_replay_async_args *aa;
3048         ENTRY;
3049
3050         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
3051
3052         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
3053         aa = ptlrpc_req_async_args(req);
3054         memset(aa, 0, sizeof *aa);
3055
3056         /* Prepare request to be resent with ptlrpcd */
3057         aa->praa_old_state = req->rq_send_state;
3058         req->rq_send_state = LUSTRE_IMP_REPLAY;
3059         req->rq_phase = RQ_PHASE_NEW;
3060         req->rq_next_phase = RQ_PHASE_UNDEFINED;
3061         if (req->rq_repmsg)
3062                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
3063         req->rq_status = 0;
3064         req->rq_interpret_reply = ptlrpc_replay_interpret;
3065         /* Readjust the timeout for current conditions */
3066         ptlrpc_at_set_req_timeout(req);
3067
3068         /* Tell server the net_latency, so the server can calculate how long
3069          * it should wait for next replay */
3070         lustre_msg_set_service_time(req->rq_reqmsg,
3071                                     ptlrpc_at_get_net_latency(req));
3072         DEBUG_REQ(D_HA, req, "REPLAY");
3073
3074         atomic_inc(&req->rq_import->imp_replay_inflight);
3075         ptlrpc_request_addref(req);     /* ptlrpcd needs a ref */
3076
3077         ptlrpcd_add_req(req);
3078         RETURN(0);
3079 }
3080
3081 /**
3082  * Aborts all in-flight request on import \a imp sending and delayed lists
3083  */
3084 void ptlrpc_abort_inflight(struct obd_import *imp)
3085 {
3086         struct list_head *tmp, *n;
3087         ENTRY;
3088
3089         /* Make sure that no new requests get processed for this import.
3090          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
3091          * this flag and then putting requests on sending_list or delayed_list.
3092          */
3093         spin_lock(&imp->imp_lock);
3094
3095         /* XXX locking?  Maybe we should remove each request with the list
3096          * locked?  Also, how do we know if the requests on the list are
3097          * being freed at this time?
3098          */
3099         list_for_each_safe(tmp, n, &imp->imp_sending_list) {
3100                 struct ptlrpc_request *req = list_entry(tmp,
3101                                                         struct ptlrpc_request,
3102                                                         rq_list);
3103
3104                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
3105
3106                 spin_lock(&req->rq_lock);
3107                 if (req->rq_import_generation < imp->imp_generation) {
3108                         req->rq_err = 1;
3109                         req->rq_status = -EIO;
3110                         ptlrpc_client_wake_req(req);
3111                 }
3112                 spin_unlock(&req->rq_lock);
3113         }
3114
3115         list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
3116                 struct ptlrpc_request *req =
3117                         list_entry(tmp, struct ptlrpc_request, rq_list);
3118
3119                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
3120
3121                 spin_lock(&req->rq_lock);
3122                 if (req->rq_import_generation < imp->imp_generation) {
3123                         req->rq_err = 1;
3124                         req->rq_status = -EIO;
3125                         ptlrpc_client_wake_req(req);
3126                 }
3127                 spin_unlock(&req->rq_lock);
3128         }
3129
3130         /* Last chance to free reqs left on the replay list, but we
3131          * will still leak reqs that haven't committed.  */
3132         if (imp->imp_replayable)
3133                 ptlrpc_free_committed(imp);
3134
3135         spin_unlock(&imp->imp_lock);
3136
3137         EXIT;
3138 }
3139
3140 /**
3141  * Abort all uncompleted requests in request set \a set
3142  */
3143 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
3144 {
3145         struct list_head *tmp, *pos;
3146
3147         LASSERT(set != NULL);
3148
3149         list_for_each_safe(pos, tmp, &set->set_requests) {
3150                 struct ptlrpc_request *req =
3151                         list_entry(pos, struct ptlrpc_request,
3152                                    rq_set_chain);
3153
3154                 spin_lock(&req->rq_lock);
3155                 if (req->rq_phase != RQ_PHASE_RPC) {
3156                         spin_unlock(&req->rq_lock);
3157                         continue;
3158                 }
3159
3160                 req->rq_err = 1;
3161                 req->rq_status = -EINTR;
3162                 ptlrpc_client_wake_req(req);
3163                 spin_unlock(&req->rq_lock);
3164         }
3165 }
3166
3167 static __u64 ptlrpc_last_xid;
3168 static spinlock_t ptlrpc_last_xid_lock;
3169
3170 /**
3171  * Initialize the XID for the node.  This is common among all requests on
3172  * this node, and only requires the property that it is monotonically
3173  * increasing.  It does not need to be sequential.  Since this is also used
3174  * as the RDMA match bits, it is important that a single client NOT have
3175  * the same match bits for two different in-flight requests, hence we do
3176  * NOT want to have an XID per target or similar.
3177  *
3178  * To avoid an unlikely collision between match bits after a client reboot
3179  * (which would deliver old data into the wrong RDMA buffer) initialize
3180  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
3181  * If the time is clearly incorrect, we instead use a 62-bit random number.
3182  * In the worst case the random number will overflow 1M RPCs per second in
3183  * 9133 years, or permutations thereof.
3184  */
3185 #define YEAR_2004 (1ULL << 30)
3186 void ptlrpc_init_xid(void)
3187 {
3188         time_t now = cfs_time_current_sec();
3189
3190         spin_lock_init(&ptlrpc_last_xid_lock);
3191         if (now < YEAR_2004) {
3192                 cfs_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
3193                 ptlrpc_last_xid >>= 2;
3194                 ptlrpc_last_xid |= (1ULL << 61);
3195         } else {
3196                 ptlrpc_last_xid = (__u64)now << 20;
3197         }
3198
3199         /* Need to always be aligned to a power-of-two for mutli-bulk BRW */
3200         CLASSERT((PTLRPC_BULK_OPS_COUNT & (PTLRPC_BULK_OPS_COUNT - 1)) == 0);
3201         ptlrpc_last_xid &= PTLRPC_BULK_OPS_MASK;
3202 }
3203
3204 /**
3205  * Increase xid and returns resulting new value to the caller.
3206  *
3207  * Multi-bulk BRW RPCs consume multiple XIDs for each bulk transfer, starting
3208  * at the returned xid, up to xid + PTLRPC_BULK_OPS_COUNT - 1. The BRW RPC
3209  * itself uses the last bulk xid needed, so the server can determine the
3210  * the number of bulk transfers from the RPC XID and a bitmask.  The starting
3211  * xid must align to a power-of-two value.
3212  *
3213  * This is assumed to be true due to the initial ptlrpc_last_xid
3214  * value also being initialized to a power-of-two value. LU-1431
3215  */
3216 __u64 ptlrpc_next_xid(void)
3217 {
3218         __u64 next;
3219
3220         spin_lock(&ptlrpc_last_xid_lock);
3221         next = ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
3222         ptlrpc_last_xid = next;
3223         spin_unlock(&ptlrpc_last_xid_lock);
3224
3225         return next;
3226 }
3227
3228 /**
3229  * If request has a new allocated XID (new request or EINPROGRESS resend),
3230  * use this XID as matchbits of bulk, otherwise allocate a new matchbits for
3231  * request to ensure previous bulk fails and avoid problems with lost replies
3232  * and therefore several transfers landing into the same buffer from different
3233  * sending attempts.
3234  */
3235 void ptlrpc_set_bulk_mbits(struct ptlrpc_request *req)
3236 {
3237         struct ptlrpc_bulk_desc *bd = req->rq_bulk;
3238
3239         LASSERT(bd != NULL);
3240
3241         if (!req->rq_resend) {
3242                 /* this request has a new xid, just use it as bulk matchbits */
3243                 req->rq_mbits = req->rq_xid;
3244
3245         } else { /* needs to generate a new matchbits for resend */
3246                 __u64   old_mbits = req->rq_mbits;
3247
3248                 if (OCD_HAS_FLAG(&bd->bd_import->imp_connect_data, BULK_MBITS)){
3249                         req->rq_mbits = ptlrpc_next_xid();
3250                 } else {/* old version transfers rq_xid to peer as matchbits */
3251                         spin_lock(&req->rq_import->imp_lock);
3252                         list_del_init(&req->rq_unreplied_list);
3253                         ptlrpc_assign_next_xid_nolock(req);
3254                         req->rq_mbits = req->rq_xid;
3255                         spin_unlock(&req->rq_import->imp_lock);
3256                 }
3257                 CDEBUG(D_HA, "resend bulk old x%llu new x%llu\n",
3258                        old_mbits, req->rq_mbits);
3259         }
3260
3261         /* For multi-bulk RPCs, rq_mbits is the last mbits needed for bulks so
3262          * that server can infer the number of bulks that were prepared,
3263          * see LU-1431 */
3264         req->rq_mbits += ((bd->bd_iov_count + LNET_MAX_IOV - 1) /
3265                           LNET_MAX_IOV) - 1;
3266
3267         /* Set rq_xid as rq_mbits to indicate the final bulk for the old
3268          * server which does not support OBD_CONNECT_BULK_MBITS. LU-6808 */
3269         if (!OCD_HAS_FLAG(&bd->bd_import->imp_connect_data, BULK_MBITS))
3270                 req->rq_xid = req->rq_mbits;
3271 }
3272
3273 /**
3274  * Get a glimpse at what next xid value might have been.
3275  * Returns possible next xid.
3276  */
3277 __u64 ptlrpc_sample_next_xid(void)
3278 {
3279 #if BITS_PER_LONG == 32
3280         /* need to avoid possible word tearing on 32-bit systems */
3281         __u64 next;
3282
3283         spin_lock(&ptlrpc_last_xid_lock);
3284         next = ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
3285         spin_unlock(&ptlrpc_last_xid_lock);
3286
3287         return next;
3288 #else
3289         /* No need to lock, since returned value is racy anyways */
3290         return ptlrpc_last_xid + PTLRPC_BULK_OPS_COUNT;
3291 #endif
3292 }
3293 EXPORT_SYMBOL(ptlrpc_sample_next_xid);
3294
3295 /**
3296  * Functions for operating ptlrpc workers.
3297  *
3298  * A ptlrpc work is a function which will be running inside ptlrpc context.
3299  * The callback shouldn't sleep otherwise it will block that ptlrpcd thread.
3300  *
3301  * 1. after a work is created, it can be used many times, that is:
3302  *         handler = ptlrpcd_alloc_work();
3303  *         ptlrpcd_queue_work();
3304  *
3305  *    queue it again when necessary:
3306  *         ptlrpcd_queue_work();
3307  *         ptlrpcd_destroy_work();
3308  * 2. ptlrpcd_queue_work() can be called by multiple processes meanwhile, but
3309  *    it will only be queued once in any time. Also as its name implies, it may
3310  *    have delay before it really runs by ptlrpcd thread.
3311  */
3312 struct ptlrpc_work_async_args {
3313         int   (*cb)(const struct lu_env *, void *);
3314         void   *cbdata;
3315 };
3316
3317 static void ptlrpcd_add_work_req(struct ptlrpc_request *req)
3318 {
3319         /* re-initialize the req */
3320         req->rq_timeout         = obd_timeout;
3321         req->rq_sent            = cfs_time_current_sec();
3322         req->rq_deadline        = req->rq_sent + req->rq_timeout;
3323         req->rq_phase           = RQ_PHASE_INTERPRET;
3324         req->rq_next_phase      = RQ_PHASE_COMPLETE;
3325         req->rq_xid             = ptlrpc_next_xid();
3326         req->rq_import_generation = req->rq_import->imp_generation;
3327
3328         ptlrpcd_add_req(req);
3329 }
3330
3331 static int work_interpreter(const struct lu_env *env,
3332                             struct ptlrpc_request *req, void *data, int rc)
3333 {
3334         struct ptlrpc_work_async_args *arg = data;
3335
3336         LASSERT(ptlrpcd_check_work(req));
3337         LASSERT(arg->cb != NULL);
3338
3339         rc = arg->cb(env, arg->cbdata);
3340
3341         list_del_init(&req->rq_set_chain);
3342         req->rq_set = NULL;
3343
3344         if (atomic_dec_return(&req->rq_refcount) > 1) {
3345                 atomic_set(&req->rq_refcount, 2);
3346                 ptlrpcd_add_work_req(req);
3347         }
3348         return rc;
3349 }
3350
3351 static int worker_format;
3352
3353 static int ptlrpcd_check_work(struct ptlrpc_request *req)
3354 {
3355         return req->rq_pill.rc_fmt == (void *)&worker_format;
3356 }
3357
3358 /**
3359  * Create a work for ptlrpc.
3360  */
3361 void *ptlrpcd_alloc_work(struct obd_import *imp,
3362                          int (*cb)(const struct lu_env *, void *), void *cbdata)
3363 {
3364         struct ptlrpc_request         *req = NULL;
3365         struct ptlrpc_work_async_args *args;
3366         ENTRY;
3367
3368         might_sleep();
3369
3370         if (cb == NULL)
3371                 RETURN(ERR_PTR(-EINVAL));
3372
3373         /* copy some code from deprecated fakereq. */
3374         req = ptlrpc_request_cache_alloc(GFP_NOFS);
3375         if (req == NULL) {
3376                 CERROR("ptlrpc: run out of memory!\n");
3377                 RETURN(ERR_PTR(-ENOMEM));
3378         }
3379
3380         ptlrpc_cli_req_init(req);
3381
3382         req->rq_send_state = LUSTRE_IMP_FULL;
3383         req->rq_type = PTL_RPC_MSG_REQUEST;
3384         req->rq_import = class_import_get(imp);
3385         req->rq_interpret_reply = work_interpreter;
3386         /* don't want reply */
3387         req->rq_no_delay = req->rq_no_resend = 1;
3388         req->rq_pill.rc_fmt = (void *)&worker_format;
3389
3390         CLASSERT (sizeof(*args) <= sizeof(req->rq_async_args));
3391         args = ptlrpc_req_async_args(req);
3392         args->cb     = cb;
3393         args->cbdata = cbdata;
3394
3395         RETURN(req);
3396 }
3397 EXPORT_SYMBOL(ptlrpcd_alloc_work);
3398
3399 void ptlrpcd_destroy_work(void *handler)
3400 {
3401         struct ptlrpc_request *req = handler;
3402
3403         if (req)
3404                 ptlrpc_req_finished(req);
3405 }
3406 EXPORT_SYMBOL(ptlrpcd_destroy_work);
3407
3408 int ptlrpcd_queue_work(void *handler)
3409 {
3410         struct ptlrpc_request *req = handler;
3411
3412         /*
3413          * Check if the req is already being queued.
3414          *
3415          * Here comes a trick: it lacks a way of checking if a req is being
3416          * processed reliably in ptlrpc. Here I have to use refcount of req
3417          * for this purpose. This is okay because the caller should use this
3418          * req as opaque data. - Jinshan
3419          */
3420         LASSERT(atomic_read(&req->rq_refcount) > 0);
3421         if (atomic_inc_return(&req->rq_refcount) == 2)
3422                 ptlrpcd_add_work_req(req);
3423         return 0;
3424 }
3425 EXPORT_SYMBOL(ptlrpcd_queue_work);