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