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