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