Whamcloud - gitweb
40500cfd0e3c940c345963d0861e6287792acb1c
[fs/lustre-release.git] / lustre / ptlrpc / client.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38 #ifndef __KERNEL__
39 #include <errno.h>
40 #include <signal.h>
41 #include <liblustre.h>
42 #endif
43
44 #include <obd_support.h>
45 #include <obd_class.h>
46 #include <lustre_lib.h>
47 #include <lustre_ha.h>
48 #include <lustre_import.h>
49 #include <lustre_req_layout.h>
50
51 #include "ptlrpc_internal.h"
52
53 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
54                         struct ptlrpc_client *cl)
55 {
56         cl->cli_request_portal = req_portal;
57         cl->cli_reply_portal   = rep_portal;
58         cl->cli_name           = name;
59 }
60
61 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid)
62 {
63         struct ptlrpc_connection *c;
64         lnet_nid_t                self;
65         lnet_process_id_t         peer;
66         int                       err;
67
68         err = ptlrpc_uuid_to_peer(uuid, &peer, &self);
69         if (err != 0) {
70                 CERROR("cannot find peer %s!\n", uuid->uuid);
71                 return NULL;
72         }
73
74         c = ptlrpc_connection_get(peer, self, uuid);
75         if (c) {
76                 memcpy(c->c_remote_uuid.uuid,
77                        uuid->uuid, sizeof(c->c_remote_uuid.uuid));
78         }
79
80         CDEBUG(D_INFO, "%s -> %p\n", uuid->uuid, c);
81
82         return c;
83 }
84
85 static inline struct ptlrpc_bulk_desc *new_bulk(int npages, int type, int portal)
86 {
87         struct ptlrpc_bulk_desc *desc;
88
89         OBD_ALLOC(desc, offsetof (struct ptlrpc_bulk_desc, bd_iov[npages]));
90         if (!desc)
91                 return NULL;
92
93         spin_lock_init(&desc->bd_lock);
94         cfs_waitq_init(&desc->bd_waitq);
95         desc->bd_max_iov = npages;
96         desc->bd_iov_count = 0;
97         LNetInvalidateHandle(&desc->bd_md_h);
98         desc->bd_portal = portal;
99         desc->bd_type = type;
100
101         return desc;
102 }
103
104 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp(struct ptlrpc_request *req,
105                                               int npages, int type, int portal)
106 {
107         struct obd_import *imp = req->rq_import;
108         struct ptlrpc_bulk_desc *desc;
109
110         ENTRY;
111         LASSERT(type == BULK_PUT_SINK || type == BULK_GET_SOURCE);
112         desc = new_bulk(npages, type, portal);
113         if (desc == NULL)
114                 RETURN(NULL);
115
116         desc->bd_import_generation = req->rq_import_generation;
117         desc->bd_import = class_import_get(imp);
118         desc->bd_req = req;
119
120         desc->bd_cbid.cbid_fn  = client_bulk_callback;
121         desc->bd_cbid.cbid_arg = desc;
122
123         /* This makes req own desc, and free it when she frees herself */
124         req->rq_bulk = desc;
125
126         return desc;
127 }
128
129 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
130                                               int npages, int type, int portal)
131 {
132         struct obd_export *exp = req->rq_export;
133         struct ptlrpc_bulk_desc *desc;
134
135         ENTRY;
136         LASSERT(type == BULK_PUT_SOURCE || type == BULK_GET_SINK);
137
138         desc = new_bulk(npages, type, portal);
139         if (desc == NULL)
140                 RETURN(NULL);
141
142         desc->bd_export = class_export_get(exp);
143         desc->bd_req = req;
144
145         desc->bd_cbid.cbid_fn  = server_bulk_callback;
146         desc->bd_cbid.cbid_arg = desc;
147
148         /* NB we don't assign rq_bulk here; server-side requests are
149          * re-used, and the handler frees the bulk desc explicitly. */
150
151         return desc;
152 }
153
154 void ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
155                            cfs_page_t *page, int pageoffset, int len)
156 {
157         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
158         LASSERT(page != NULL);
159         LASSERT(pageoffset >= 0);
160         LASSERT(len > 0);
161         LASSERT(pageoffset + len <= CFS_PAGE_SIZE);
162
163         desc->bd_nob += len;
164
165         ptlrpc_add_bulk_page(desc, page, pageoffset, len);
166 }
167
168 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *desc)
169 {
170         ENTRY;
171
172         LASSERT(desc != NULL);
173         LASSERT(desc->bd_iov_count != LI_POISON); /* not freed already */
174         LASSERT(!desc->bd_network_rw);         /* network hands off or */
175         LASSERT((desc->bd_export != NULL) ^ (desc->bd_import != NULL));
176
177         sptlrpc_enc_pool_put_pages(desc);
178
179         if (desc->bd_export)
180                 class_export_put(desc->bd_export);
181         else
182                 class_import_put(desc->bd_import);
183
184         OBD_FREE(desc, offsetof(struct ptlrpc_bulk_desc,
185                                 bd_iov[desc->bd_max_iov]));
186         EXIT;
187 }
188
189 /* Set server timelimit for this req */
190 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req)
191 {
192         __u32 serv_est;
193         int idx;
194         struct imp_at *at;
195
196         LASSERT(req->rq_import);
197
198         if (AT_OFF) {
199                 /* non-AT settings */
200                 req->rq_timeout = req->rq_import->imp_server_timeout ?
201                         obd_timeout / 2 : obd_timeout;
202                 lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
203                 return;
204         }
205
206         at = &req->rq_import->imp_at;
207         idx = import_at_get_index(req->rq_import,
208                                   req->rq_request_portal);
209         serv_est = at_get(&at->iat_service_estimate[idx]);
210         req->rq_timeout = at_est2timeout(serv_est);
211         /* We could get even fancier here, using history to predict increased
212            loading... */
213
214         /* Let the server know what this RPC timeout is by putting it in the
215            reqmsg*/
216         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
217 }
218
219 /* Adjust max service estimate based on server value */
220 static void ptlrpc_at_adj_service(struct ptlrpc_request *req,
221                                   unsigned int serv_est)
222 {
223         int idx;
224         unsigned int oldse;
225         struct imp_at *at;
226
227         /* do estimate only if is not in recovery */
228         if ((req->rq_send_state != LUSTRE_IMP_FULL) &&
229              (req->rq_send_state != LUSTRE_IMP_CONNECTING))
230                 return;
231
232         LASSERT(req->rq_import);
233         at = &req->rq_import->imp_at;
234
235         idx = import_at_get_index(req->rq_import, req->rq_request_portal);
236         /* max service estimates are tracked on the server side,
237            so just keep minimal history here */
238         oldse = at_add(&at->iat_service_estimate[idx], serv_est);
239         if (oldse != 0)
240                 CDEBUG(D_ADAPTTO, "The RPC service estimate for %s ptl %d "
241                        "has changed from %d to %d\n",
242                        req->rq_import->imp_obd->obd_name,req->rq_request_portal,
243                        oldse, at_get(&at->iat_service_estimate[idx]));
244 }
245
246 /* Expected network latency per remote node (secs) */
247 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req)
248 {
249         return AT_OFF ? 0 : at_get(&req->rq_import->imp_at.iat_net_latency);
250 }
251
252 /* Adjust expected network latency */
253 static void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req,
254                                       unsigned int service_time)
255 {
256         unsigned int nl, oldnl;
257         struct imp_at *at;
258         time_t now = cfs_time_current_sec();
259
260         LASSERT(req->rq_import);
261         at = &req->rq_import->imp_at;
262
263         /* Network latency is total time less server processing time */
264         nl = max_t(int, now - req->rq_sent - service_time, 0) +1/*st rounding*/;
265         if (service_time > now - req->rq_sent + 3 /* bz16408 */)
266                 CWARN("Reported service time %u > total measured time "
267                       CFS_DURATION_T"\n", service_time,
268                       cfs_time_sub(now, req->rq_sent));
269
270         oldnl = at_add(&at->iat_net_latency, nl);
271         if (oldnl != 0)
272                 CDEBUG(D_ADAPTTO, "The network latency for %s (nid %s) "
273                        "has changed from %d to %d\n",
274                        req->rq_import->imp_obd->obd_name,
275                        obd_uuid2str(
276                                &req->rq_import->imp_connection->c_remote_uuid),
277                        oldnl, at_get(&at->iat_net_latency));
278 }
279
280 static int unpack_reply(struct ptlrpc_request *req)
281 {
282         int rc;
283
284         /* Clear reply swab mask; we may have already swabbed an early reply */
285         req->rq_rep_swab_mask = 0;
286
287         rc = lustre_unpack_msg(req->rq_repmsg, req->rq_replen);
288         if (rc) {
289                 DEBUG_REQ(D_ERROR, req, "unpack_rep failed: %d", rc);
290                 return(-EPROTO);
291         }
292
293         rc = lustre_unpack_rep_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
294         if (rc) {
295                 DEBUG_REQ(D_ERROR, req, "unpack ptlrpc body failed: %d", rc);
296                 return(-EPROTO);
297         }
298         return 0;
299 }
300
301 /*
302  * Handle an early reply message, called with the rq_lock held.
303  * If anything goes wrong just ignore it - same as if it never happened
304  */
305 static int ptlrpc_at_recv_early_reply(struct ptlrpc_request *req)
306 {
307         struct ptlrpc_request *early_req;
308         time_t                 olddl;
309         int                    rc;
310         ENTRY;
311
312         req->rq_early = 0;
313         spin_unlock(&req->rq_lock);
314
315         rc = sptlrpc_cli_unwrap_early_reply(req, &early_req);
316         if (rc) {
317                 spin_lock(&req->rq_lock);
318                 RETURN(rc);
319         }
320
321         rc = unpack_reply(early_req);
322         if (rc == 0) {
323                 /* Expecting to increase the service time estimate here */
324                 ptlrpc_at_adj_service(req,
325                         lustre_msg_get_timeout(early_req->rq_repmsg));
326                 ptlrpc_at_adj_net_latency(req,
327                         lustre_msg_get_service_time(early_req->rq_repmsg));
328         }
329
330         sptlrpc_cli_finish_early_reply(early_req);
331
332         spin_lock(&req->rq_lock);
333
334         if (rc == 0) {
335                 /* Adjust the local timeout for this req */
336                 ptlrpc_at_set_req_timeout(req);
337
338                 olddl = req->rq_deadline;
339                 /* server assumes it now has rq_timeout from when it sent the
340                    early reply, so client should give it at least that long. */
341                 req->rq_deadline = cfs_time_current_sec() + req->rq_timeout +
342                             ptlrpc_at_get_net_latency(req);
343
344                 DEBUG_REQ(D_ADAPTTO, req,
345                           "Early reply #%d, new deadline in "CFS_DURATION_T"s "
346                           "("CFS_DURATION_T"s)", req->rq_early_count,
347                           cfs_time_sub(req->rq_deadline,
348                                        cfs_time_current_sec()),
349                           cfs_time_sub(req->rq_deadline, olddl));
350         }
351
352         RETURN(rc);
353 }
354
355 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool)
356 {
357         struct list_head *l, *tmp;
358         struct ptlrpc_request *req;
359
360         LASSERT(pool != NULL);
361
362         spin_lock(&pool->prp_lock);
363         list_for_each_safe(l, tmp, &pool->prp_req_list) {
364                 req = list_entry(l, struct ptlrpc_request, rq_list);
365                 list_del(&req->rq_list);
366                 LASSERT(req->rq_reqbuf);
367                 LASSERT(req->rq_reqbuf_len == pool->prp_rq_size);
368                 OBD_FREE(req->rq_reqbuf, pool->prp_rq_size);
369                 OBD_FREE(req, sizeof(*req));
370         }
371         spin_unlock(&pool->prp_lock);
372         OBD_FREE(pool, sizeof(*pool));
373 }
374
375 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq)
376 {
377         int i;
378         int size = 1;
379
380         while (size < pool->prp_rq_size + SPTLRPC_MAX_PAYLOAD)
381                 size <<= 1;
382
383         LASSERTF(list_empty(&pool->prp_req_list) || size == pool->prp_rq_size,
384                  "Trying to change pool size with nonempty pool "
385                  "from %d to %d bytes\n", pool->prp_rq_size, size);
386
387         spin_lock(&pool->prp_lock);
388         pool->prp_rq_size = size;
389         for (i = 0; i < num_rq; i++) {
390                 struct ptlrpc_request *req;
391                 struct lustre_msg *msg;
392
393                 spin_unlock(&pool->prp_lock);
394                 OBD_ALLOC(req, sizeof(struct ptlrpc_request));
395                 if (!req)
396                         return;
397                 OBD_ALLOC_GFP(msg, size, CFS_ALLOC_STD);
398                 if (!msg) {
399                         OBD_FREE(req, sizeof(struct ptlrpc_request));
400                         return;
401                 }
402                 req->rq_reqbuf = msg;
403                 req->rq_reqbuf_len = size;
404                 req->rq_pool = pool;
405                 spin_lock(&pool->prp_lock);
406                 list_add_tail(&req->rq_list, &pool->prp_req_list);
407         }
408         spin_unlock(&pool->prp_lock);
409         return;
410 }
411
412 struct ptlrpc_request_pool *
413 ptlrpc_init_rq_pool(int num_rq, int msgsize,
414                     void (*populate_pool)(struct ptlrpc_request_pool *, int))
415 {
416         struct ptlrpc_request_pool *pool;
417
418         OBD_ALLOC(pool, sizeof (struct ptlrpc_request_pool));
419         if (!pool)
420                 return NULL;
421
422         /* Request next power of two for the allocation, because internally
423            kernel would do exactly this */
424
425         spin_lock_init(&pool->prp_lock);
426         CFS_INIT_LIST_HEAD(&pool->prp_req_list);
427         pool->prp_rq_size = msgsize;
428         pool->prp_populate = populate_pool;
429
430         populate_pool(pool, num_rq);
431
432         if (list_empty(&pool->prp_req_list)) {
433                 /* have not allocated a single request for the pool */
434                 OBD_FREE(pool, sizeof (struct ptlrpc_request_pool));
435                 pool = NULL;
436         }
437         return pool;
438 }
439
440 static struct ptlrpc_request *
441 ptlrpc_prep_req_from_pool(struct ptlrpc_request_pool *pool)
442 {
443         struct ptlrpc_request *request;
444         struct lustre_msg *reqbuf;
445
446         if (!pool)
447                 return NULL;
448
449         spin_lock(&pool->prp_lock);
450
451         /* See if we have anything in a pool, and bail out if nothing,
452          * in writeout path, where this matters, this is safe to do, because
453          * nothing is lost in this case, and when some in-flight requests
454          * complete, this code will be called again. */
455         if (unlikely(list_empty(&pool->prp_req_list))) {
456                 spin_unlock(&pool->prp_lock);
457                 return NULL;
458         }
459
460         request = list_entry(pool->prp_req_list.next, struct ptlrpc_request,
461                              rq_list);
462         list_del_init(&request->rq_list);
463         spin_unlock(&pool->prp_lock);
464
465         LASSERT(request->rq_reqbuf);
466         LASSERT(request->rq_pool);
467
468         reqbuf = request->rq_reqbuf;
469         memset(request, 0, sizeof(*request));
470         request->rq_reqbuf = reqbuf;
471         request->rq_reqbuf_len = pool->prp_rq_size;
472         request->rq_pool = pool;
473
474         return request;
475 }
476
477 static void __ptlrpc_free_req_to_pool(struct ptlrpc_request *request)
478 {
479         struct ptlrpc_request_pool *pool = request->rq_pool;
480
481         spin_lock(&pool->prp_lock);
482         LASSERT(list_empty(&request->rq_list));
483         LASSERT(!request->rq_receiving_reply);
484         list_add_tail(&request->rq_list, &pool->prp_req_list);
485         spin_unlock(&pool->prp_lock);
486 }
487
488 static int __ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
489                                       __u32 version, int opcode,
490                                       int count, __u32 *lengths, char **bufs,
491                                       struct ptlrpc_cli_ctx *ctx)
492 {
493         struct obd_import  *imp = request->rq_import;
494         int                 rc;
495         ENTRY;
496
497         if (unlikely(ctx))
498                 request->rq_cli_ctx = sptlrpc_cli_ctx_get(ctx);
499         else {
500                 rc = sptlrpc_req_get_ctx(request);
501                 if (rc)
502                         GOTO(out_free, rc);
503         }
504
505         sptlrpc_req_set_flavor(request, opcode);
506
507         rc = lustre_pack_request(request, imp->imp_msg_magic, count,
508                                  lengths, bufs);
509         if (rc) {
510                 LASSERT(!request->rq_pool);
511                 GOTO(out_ctx, rc);
512         }
513
514         lustre_msg_add_version(request->rq_reqmsg, version);
515         request->rq_send_state = LUSTRE_IMP_FULL;
516         request->rq_type = PTL_RPC_MSG_REQUEST;
517         request->rq_export = NULL;
518
519         request->rq_req_cbid.cbid_fn  = request_out_callback;
520         request->rq_req_cbid.cbid_arg = request;
521
522         request->rq_reply_cbid.cbid_fn  = reply_in_callback;
523         request->rq_reply_cbid.cbid_arg = request;
524
525         request->rq_reply_deadline = 0;
526         request->rq_phase = RQ_PHASE_NEW;
527         request->rq_next_phase = RQ_PHASE_UNDEFINED;
528
529         request->rq_request_portal = imp->imp_client->cli_request_portal;
530         request->rq_reply_portal = imp->imp_client->cli_reply_portal;
531
532         ptlrpc_at_set_req_timeout(request);
533
534         spin_lock_init(&request->rq_lock);
535         CFS_INIT_LIST_HEAD(&request->rq_list);
536         CFS_INIT_LIST_HEAD(&request->rq_timed_list);
537         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
538         CFS_INIT_LIST_HEAD(&request->rq_ctx_chain);
539         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
540         CFS_INIT_LIST_HEAD(&request->rq_history_list);
541         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
542         cfs_waitq_init(&request->rq_reply_waitq);
543         request->rq_xid = ptlrpc_next_xid();
544         atomic_set(&request->rq_refcount, 1);
545
546         lustre_msg_set_opc(request->rq_reqmsg, opcode);
547
548         RETURN(0);
549 out_ctx:
550         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
551 out_free:
552         class_import_put(imp);
553         return rc;
554 }
555
556 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
557                              __u32 version, int opcode, char **bufs,
558                              struct ptlrpc_cli_ctx *ctx)
559 {
560         int count;
561
562         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
563         return __ptlrpc_request_bufs_pack(request, version, opcode, count,
564                                           request->rq_pill.rc_area[RCL_CLIENT],
565                                           bufs, ctx);
566 }
567 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
568
569 int ptlrpc_request_pack(struct ptlrpc_request *request,
570                         __u32 version, int opcode)
571 {
572         return ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
573 }
574
575 static inline
576 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
577                                               struct ptlrpc_request_pool *pool)
578 {
579         struct ptlrpc_request *request = NULL;
580
581         if (pool)
582                 request = ptlrpc_prep_req_from_pool(pool);
583
584         if (!request)
585                 OBD_ALLOC_PTR(request);
586
587         if (request) {
588                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
589                 LASSERT(imp != LP_POISON);
590                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p",
591                         imp->imp_client);
592                 LASSERT(imp->imp_client != LP_POISON);
593
594                 request->rq_import = class_import_get(imp);
595         } else {
596                 CERROR("request allocation out of memory\n");
597         }
598
599         return request;
600 }
601
602 static struct ptlrpc_request *
603 ptlrpc_request_alloc_internal(struct obd_import *imp,
604                               struct ptlrpc_request_pool * pool,
605                               const struct req_format *format)
606 {
607         struct ptlrpc_request *request;
608
609         request = __ptlrpc_request_alloc(imp, pool);
610         if (request == NULL)
611                 return NULL;
612
613         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
614         req_capsule_set(&request->rq_pill, format);
615         return request;
616 }
617
618 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
619                                             const struct req_format *format)
620 {
621         return ptlrpc_request_alloc_internal(imp, NULL, format);
622 }
623
624 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
625                                             struct ptlrpc_request_pool * pool,
626                                             const struct req_format *format)
627 {
628         return ptlrpc_request_alloc_internal(imp, pool, format);
629 }
630
631 void ptlrpc_request_free(struct ptlrpc_request *request)
632 {
633         if (request->rq_pool)
634                 __ptlrpc_free_req_to_pool(request);
635         else
636                 OBD_FREE_PTR(request);
637 }
638
639 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
640                                                 const struct req_format *format,
641                                                 __u32 version, int opcode)
642 {
643         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
644         int                    rc;
645
646         if (req) {
647                 rc = ptlrpc_request_pack(req, version, opcode);
648                 if (rc) {
649                         ptlrpc_request_free(req);
650                         req = NULL;
651                 }
652         }
653         return req;
654 }
655
656 struct ptlrpc_request *
657 ptlrpc_prep_req_pool(struct obd_import *imp,
658                      __u32 version, int opcode,
659                      int count, __u32 *lengths, char **bufs,
660                      struct ptlrpc_request_pool *pool)
661 {
662         struct ptlrpc_request *request;
663         int                    rc;
664
665         request = __ptlrpc_request_alloc(imp, pool);
666         if (!request)
667                 return NULL;
668
669         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
670                                         lengths, bufs, NULL);
671         if (rc) {
672                 ptlrpc_request_free(request);
673                 request = NULL;
674         }
675         return request;
676 }
677
678 struct ptlrpc_request *
679 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
680                 __u32 *lengths, char **bufs)
681 {
682         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
683                                     NULL);
684 }
685
686 struct ptlrpc_request *ptlrpc_prep_fakereq(struct obd_import *imp,
687                                            unsigned int timeout,
688                                            ptlrpc_interpterer_t interpreter)
689 {
690         struct ptlrpc_request *request = NULL;
691         ENTRY;
692
693         OBD_ALLOC(request, sizeof(*request));
694         if (!request) {
695                 CERROR("request allocation out of memory\n");
696                 RETURN(NULL);
697         }
698
699         request->rq_send_state = LUSTRE_IMP_FULL;
700         request->rq_type = PTL_RPC_MSG_REQUEST;
701         request->rq_import = class_import_get(imp);
702         request->rq_export = NULL;
703         request->rq_import_generation = imp->imp_generation;
704
705         request->rq_timeout = timeout;
706         request->rq_sent = cfs_time_current_sec();
707         request->rq_deadline = request->rq_sent + timeout;
708         request->rq_reply_deadline = request->rq_deadline;
709         request->rq_interpret_reply = interpreter;
710         request->rq_phase = RQ_PHASE_RPC;
711         request->rq_next_phase = RQ_PHASE_INTERPRET;
712         /* don't want reply */
713         request->rq_receiving_reply = 0;
714         request->rq_must_unlink = 0;
715         request->rq_no_delay = request->rq_no_resend = 1;
716         request->rq_fake = 1;
717
718         spin_lock_init(&request->rq_lock);
719         CFS_INIT_LIST_HEAD(&request->rq_list);
720         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
721         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
722         CFS_INIT_LIST_HEAD(&request->rq_history_list);
723         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
724         cfs_waitq_init(&request->rq_reply_waitq);
725
726         request->rq_xid = ptlrpc_next_xid();
727         atomic_set(&request->rq_refcount, 1);
728
729         RETURN(request);
730 }
731
732 void ptlrpc_fakereq_finished(struct ptlrpc_request *req)
733 {
734         /* if we kill request before timeout - need adjust counter */
735         if (req->rq_phase == RQ_PHASE_RPC) {
736                 struct ptlrpc_request_set *set = req->rq_set;
737
738                 if (set)
739                         set->set_remaining --;
740         }
741
742         ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
743         list_del_init(&req->rq_list);
744 }
745
746
747 struct ptlrpc_request_set *ptlrpc_prep_set(void)
748 {
749         struct ptlrpc_request_set *set;
750
751         ENTRY;
752         OBD_ALLOC(set, sizeof *set);
753         if (!set)
754                 RETURN(NULL);
755         CFS_INIT_LIST_HEAD(&set->set_requests);
756         cfs_waitq_init(&set->set_waitq);
757         set->set_remaining = 0;
758         spin_lock_init(&set->set_new_req_lock);
759         CFS_INIT_LIST_HEAD(&set->set_new_requests);
760         CFS_INIT_LIST_HEAD(&set->set_cblist);
761
762         RETURN(set);
763 }
764
765 /* Finish with this set; opposite of prep_set. */
766 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
767 {
768         struct list_head *tmp;
769         struct list_head *next;
770         int               expected_phase;
771         int               n = 0;
772         ENTRY;
773
774         /* Requests on the set should either all be completed, or all be new */
775         expected_phase = (set->set_remaining == 0) ?
776                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
777         list_for_each (tmp, &set->set_requests) {
778                 struct ptlrpc_request *req =
779                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
780
781                 LASSERT(req->rq_phase == expected_phase);
782                 n++;
783         }
784
785         LASSERTF(set->set_remaining == 0 || set->set_remaining == n, "%d / %d\n",
786                  set->set_remaining, n);
787
788         list_for_each_safe(tmp, next, &set->set_requests) {
789                 struct ptlrpc_request *req =
790                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
791                 list_del_init(&req->rq_set_chain);
792
793                 LASSERT(req->rq_phase == expected_phase);
794
795                 if (req->rq_phase == RQ_PHASE_NEW) {
796                         ptlrpc_req_interpret(NULL, req, -EBADR);
797                         set->set_remaining--;
798                 }
799
800                 req->rq_set = NULL;
801                 ptlrpc_req_finished (req);
802         }
803
804         LASSERT(set->set_remaining == 0);
805
806         OBD_FREE(set, sizeof(*set));
807         EXIT;
808 }
809
810 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
811                       set_interpreter_func fn, void *data)
812 {
813         struct ptlrpc_set_cbdata *cbdata;
814
815         OBD_ALLOC_PTR(cbdata);
816         if (cbdata == NULL)
817                 RETURN(-ENOMEM);
818
819         cbdata->psc_interpret = fn;
820         cbdata->psc_data = data;
821         list_add_tail(&cbdata->psc_item, &set->set_cblist);
822
823         RETURN(0);
824 }
825
826 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
827                         struct ptlrpc_request *req)
828 {
829         /* The set takes over the caller's request reference */
830         list_add_tail(&req->rq_set_chain, &set->set_requests);
831         req->rq_set = set;
832         set->set_remaining++;
833 }
834
835 /**
836  * Lock so many callers can add things, the context that owns the set
837  * is supposed to notice these and move them into the set proper.
838  */
839 int ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
840                            struct ptlrpc_request *req)
841 {
842         struct ptlrpc_request_set *set = pc->pc_set;
843
844         /*
845          * Let caller know that we stopped and will not handle this request.
846          * It needs to take care itself of request.
847          */
848         if (test_bit(LIOD_STOP, &pc->pc_flags))
849                 return -EALREADY;
850
851         spin_lock(&set->set_new_req_lock);
852         /*
853          * The set takes over the caller's request reference.
854          */
855         list_add_tail(&req->rq_set_chain, &set->set_new_requests);
856         req->rq_set = set;
857         spin_unlock(&set->set_new_req_lock);
858
859         /*
860          * Let thead know that we added something and better it to wake up
861          * and process.
862          */
863         cfs_waitq_signal(&set->set_waitq);
864         return 0;
865 }
866
867 /*
868  * Based on the current state of the import, determine if the request
869  * can be sent, is an error, or should be delayed.
870  *
871  * Returns true if this request should be delayed. If false, and
872  * *status is set, then the request can not be sent and *status is the
873  * error code.  If false and status is 0, then request can be sent.
874  *
875  * The imp->imp_lock must be held.
876  */
877 static int ptlrpc_import_delay_req(struct obd_import *imp,
878                                    struct ptlrpc_request *req, int *status)
879 {
880         int delay = 0;
881         ENTRY;
882
883         LASSERT (status != NULL);
884         *status = 0;
885
886         if (req->rq_ctx_init || req->rq_ctx_fini) {
887                 /* always allow ctx init/fini rpc go through */
888         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
889                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
890                 *status = -EIO;
891                 LBUG();
892         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
893                 DEBUG_REQ(D_ERROR, req, "IMP_CLOSED ");
894                 *status = -EIO;
895         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
896                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
897                 /* allow CONNECT even if import is invalid */ ;
898                 if (atomic_read(&imp->imp_inval_count) != 0) {
899                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
900                         *status = -EIO;
901                 }
902         } else if ((imp->imp_invalid && (!imp->imp_recon_bk)) ||
903                                          imp->imp_obd->obd_no_recov) {
904                 /* If the import has been invalidated (such as by an OST
905                  * failure), and if the import(MGC) tried all of its connection
906                  * list (Bug 13464), the request must fail with -ESHUTDOWN.
907                  * This indicates the requests should be discarded; an -EIO
908                  * may result in a resend of the request. */
909                 if (!imp->imp_deactive)
910                           DEBUG_REQ(D_ERROR, req, "IMP_INVALID");
911                 *status = -ESHUTDOWN; /* bz 12940 */
912         } else if (req->rq_import_generation != imp->imp_generation) {
913                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
914                 *status = -EIO;
915         } else if (req->rq_send_state != imp->imp_state) {
916                 /* invalidate in progress - any requests should be drop */
917                 if (atomic_read(&imp->imp_inval_count) != 0) {
918                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
919                         *status = -EIO;
920                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
921                         *status = -EWOULDBLOCK;
922                 } else {
923                         delay = 1;
924                 }
925         }
926
927         RETURN(delay);
928 }
929
930 static int ptlrpc_check_reply(struct ptlrpc_request *req)
931 {
932         int rc = 0;
933         ENTRY;
934
935         /* serialise with network callback */
936         spin_lock(&req->rq_lock);
937
938         if (ptlrpc_client_replied(req))
939                 GOTO(out, rc = 1);
940
941         if (req->rq_net_err && !req->rq_timedout) {
942                 spin_unlock(&req->rq_lock);
943                 rc = ptlrpc_expire_one_request(req, 0);
944                 spin_lock(&req->rq_lock);
945                 GOTO(out, rc);
946         }
947
948         if (req->rq_err)
949                 GOTO(out, rc = 1);
950
951         if (req->rq_resend)
952                 GOTO(out, rc = 1);
953
954         if (req->rq_restart)
955                 GOTO(out, rc = 1);
956
957         if (ptlrpc_client_early(req)) {
958                 ptlrpc_at_recv_early_reply(req);
959                 GOTO(out, rc = 0); /* keep waiting */
960         }
961
962         EXIT;
963  out:
964         spin_unlock(&req->rq_lock);
965         DEBUG_REQ(D_NET, req, "rc = %d for", rc);
966         return rc;
967 }
968
969 /* Conditionally suppress specific console messages */
970 static int ptlrpc_console_allow(struct ptlrpc_request *req)
971 {
972         __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
973         int err;
974
975         /* Suppress particular reconnect errors which are to be expected.  No
976          * errors are suppressed for the initial connection on an import */
977         if ((lustre_handle_is_used(&req->rq_import->imp_remote_handle)) &&
978             (opc == OST_CONNECT || opc == MDS_CONNECT || opc == MGS_CONNECT)) {
979
980                 /* Suppress timed out reconnect requests */
981                 if (req->rq_timedout)
982                         return 0;
983
984                 /* Suppress unavailable/again reconnect requests */
985                 err = lustre_msg_get_status(req->rq_repmsg);
986                 if (err == -ENODEV || err == -EAGAIN)
987                         return 0;
988         }
989
990         return 1;
991 }
992
993
994 static int ptlrpc_check_status(struct ptlrpc_request *req)
995 {
996         int err;
997         ENTRY;
998
999         err = lustre_msg_get_status(req->rq_repmsg);
1000         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
1001                 struct obd_import *imp = req->rq_import;
1002                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
1003                 LCONSOLE_ERROR_MSG(0x011,"an error occurred while communicating"
1004                                 " with %s. The %s operation failed with %d\n",
1005                                 libcfs_nid2str(imp->imp_connection->c_peer.nid),
1006                                 ll_opcode2str(opc), err);
1007                 RETURN(err < 0 ? err : -EINVAL);
1008         }
1009
1010         if (err < 0) {
1011                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1012         } else if (err > 0) {
1013                 /* XXX: translate this error from net to host */
1014                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1015         }
1016
1017         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
1018                 struct obd_import *imp = req->rq_import;
1019                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
1020
1021                 if (ptlrpc_console_allow(req))
1022                         LCONSOLE_ERROR_MSG(0x011,"an error occurred while "
1023                                            "communicating with %s. The %s "
1024                                            "operation failed with %d\n",
1025                                            libcfs_nid2str(
1026                                            imp->imp_connection->c_peer.nid),
1027                                            ll_opcode2str(opc), err);
1028
1029                 RETURN(err < 0 ? err : -EINVAL);
1030         }
1031
1032         RETURN(err);
1033 }
1034
1035 /**
1036  * save pre-versions for replay
1037  */
1038 static void ptlrpc_save_versions(struct ptlrpc_request *req)
1039 {
1040         struct lustre_msg *repmsg = req->rq_repmsg;
1041         struct lustre_msg *reqmsg = req->rq_reqmsg;
1042         __u64 *versions = lustre_msg_get_versions(repmsg);
1043         ENTRY;
1044
1045         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1046                 return;
1047
1048         LASSERT(versions);
1049         lustre_msg_set_versions(reqmsg, versions);
1050         CDEBUG(D_INFO, "Client save versions ["LPX64"/"LPX64"]\n",
1051                versions[0], versions[1]);
1052
1053         EXIT;
1054 }
1055
1056 /**
1057  * Callback function called when client receives RPC reply for \a req.
1058  */
1059 static int after_reply(struct ptlrpc_request *req)
1060 {
1061         struct obd_import *imp = req->rq_import;
1062         struct obd_device *obd = req->rq_import->imp_obd;
1063         int rc;
1064         struct timeval work_start;
1065         long timediff;
1066         ENTRY;
1067
1068         LASSERT(!req->rq_receiving_reply);
1069         LASSERT(obd);
1070         LASSERT(req->rq_nob_received <= req->rq_repbuf_len);
1071
1072         /*
1073          * NB Until this point, the whole of the incoming message,
1074          * including buflens, status etc is in the sender's byte order.
1075          */
1076
1077         rc = sptlrpc_cli_unwrap_reply(req);
1078         if (rc) {
1079                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1080                 RETURN(rc);
1081         }
1082
1083         /*
1084          * Security layer unwrap might ask resend this request.
1085          */
1086         if (req->rq_resend)
1087                 RETURN(0);
1088
1089         rc = unpack_reply(req);
1090         if (rc)
1091                 RETURN(rc);
1092
1093         do_gettimeofday(&work_start);
1094         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
1095         if (obd->obd_svc_stats != NULL) {
1096                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1097                                     timediff);
1098                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1099         }
1100
1101         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1102             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1103                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1104                           lustre_msg_get_type(req->rq_repmsg));
1105                 RETURN(-EPROTO);
1106         }
1107
1108         OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, obd_fail_val);
1109         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1110         ptlrpc_at_adj_net_latency(req,
1111                                   lustre_msg_get_service_time(req->rq_repmsg));
1112
1113         rc = ptlrpc_check_status(req);
1114         imp->imp_connect_error = rc;
1115
1116         if (rc) {
1117                 /*
1118                  * Either we've been evicted, or the server has failed for
1119                  * some reason. Try to reconnect, and if that fails, punt to
1120                  * the upcall.
1121                  */
1122                 if (ll_rpc_recoverable_error(rc)) {
1123                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1124                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1125                                 RETURN(rc);
1126                         }
1127                         ptlrpc_request_handle_notconn(req);
1128                         RETURN(rc);
1129                 }
1130         } else {
1131                 /*
1132                  * Let's look if server sent slv. Do it only for RPC with
1133                  * rc == 0.
1134                  */
1135                 ldlm_cli_update_pool(req);
1136         }
1137
1138         /*
1139          * Store transno in reqmsg for replay.
1140          */
1141         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1142                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1143                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1144         }
1145
1146         if (imp->imp_replayable) {
1147                 spin_lock(&imp->imp_lock);
1148                 /*
1149                  * No point in adding already-committed requests to the replay
1150                  * list, we will just remove them immediately. b=9829
1151                  */
1152                 if (req->rq_transno != 0 &&
1153                     (req->rq_transno >
1154                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1155                      req->rq_replay)) {
1156                         /** version recovery */
1157                         ptlrpc_save_versions(req);
1158                         ptlrpc_retain_replayable_request(req, imp);
1159                 } else if (req->rq_commit_cb != NULL) {
1160                         spin_unlock(&imp->imp_lock);
1161                         req->rq_commit_cb(req);
1162                         spin_lock(&imp->imp_lock);
1163                 }
1164
1165                 /*
1166                  * Replay-enabled imports return commit-status information.
1167                  */
1168                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1169                         imp->imp_peer_committed_transno =
1170                                 lustre_msg_get_last_committed(req->rq_repmsg);
1171                 }
1172                 ptlrpc_free_committed(imp);
1173                 spin_unlock(&imp->imp_lock);
1174         }
1175
1176         RETURN(rc);
1177 }
1178
1179 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1180 {
1181         struct obd_import     *imp;
1182         int rc;
1183         ENTRY;
1184
1185         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1186         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()))
1187                 RETURN (0);
1188
1189         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1190
1191         imp = req->rq_import;
1192         spin_lock(&imp->imp_lock);
1193
1194         req->rq_import_generation = imp->imp_generation;
1195
1196         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1197                 spin_lock(&req->rq_lock);
1198                 req->rq_waiting = 1;
1199                 spin_unlock(&req->rq_lock);
1200
1201                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1202                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1203                           ptlrpc_import_state_name(req->rq_send_state),
1204                           ptlrpc_import_state_name(imp->imp_state));
1205                 LASSERT(list_empty(&req->rq_list));
1206                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1207                 atomic_inc(&req->rq_import->imp_inflight);
1208                 spin_unlock(&imp->imp_lock);
1209                 RETURN(0);
1210         }
1211
1212         if (rc != 0) {
1213                 spin_unlock(&imp->imp_lock);
1214                 req->rq_status = rc;
1215                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1216                 RETURN(rc);
1217         }
1218
1219         LASSERT(list_empty(&req->rq_list));
1220         list_add_tail(&req->rq_list, &imp->imp_sending_list);
1221         atomic_inc(&req->rq_import->imp_inflight);
1222         spin_unlock(&imp->imp_lock);
1223
1224         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1225
1226         rc = sptlrpc_req_refresh_ctx(req, -1);
1227         if (rc) {
1228                 if (req->rq_err) {
1229                         req->rq_status = rc;
1230                         RETURN(1);
1231                 } else {
1232                         req->rq_wait_ctx = 1;
1233                         RETURN(0);
1234                 }
1235         }
1236
1237         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1238                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1239                imp->imp_obd->obd_uuid.uuid,
1240                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1241                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1242                lustre_msg_get_opc(req->rq_reqmsg));
1243
1244         rc = ptl_send_rpc(req, 0);
1245         if (rc) {
1246                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1247                 req->rq_net_err = 1;
1248                 RETURN(rc);
1249         }
1250         RETURN(0);
1251 }
1252
1253 /* this sends any unsent RPCs in @set and returns TRUE if all are sent */
1254 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1255 {
1256         struct list_head *tmp;
1257         int force_timer_recalc = 0;
1258         ENTRY;
1259
1260         if (set->set_remaining == 0)
1261                 RETURN(1);
1262
1263         list_for_each(tmp, &set->set_requests) {
1264                 struct ptlrpc_request *req =
1265                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1266                 struct obd_import *imp = req->rq_import;
1267                 int rc = 0;
1268
1269                 if (req->rq_phase == RQ_PHASE_NEW &&
1270                     ptlrpc_send_new_req(req)) {
1271                         force_timer_recalc = 1;
1272                 }
1273
1274                 /* delayed send - skip */
1275                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1276                         continue;
1277
1278                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1279                       req->rq_phase == RQ_PHASE_BULK ||
1280                       req->rq_phase == RQ_PHASE_INTERPRET ||
1281                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1282                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1283                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1284                         LBUG();
1285                 }
1286
1287                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1288                         LASSERT(req->rq_next_phase != req->rq_phase);
1289                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1290
1291                         /*
1292                          * Skip processing until reply is unlinked. We
1293                          * can't return to pool before that and we can't
1294                          * call interpret before that. We need to make
1295                          * sure that all rdma transfers finished and will
1296                          * not corrupt any data.
1297                          */
1298                         if (ptlrpc_client_recv_or_unlink(req) ||
1299                             ptlrpc_client_bulk_active(req))
1300                                 continue;
1301
1302                         /*
1303                          * Turn fail_loc off to prevent it from looping
1304                          * forever.
1305                          */
1306                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1307                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1308                                                      OBD_FAIL_ONCE);
1309                         }
1310                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1311                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1312                                                      OBD_FAIL_ONCE);
1313                         }
1314
1315                         /*
1316                          * Move to next phase if reply was successfully
1317                          * unlinked.
1318                          */
1319                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1320                 }
1321
1322                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1323                         continue;
1324
1325                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1326                         GOTO(interpret, req->rq_status);
1327
1328                 /*
1329                  * Note that this also will start async reply unlink.
1330                  */
1331                 if (req->rq_net_err && !req->rq_timedout) {
1332                         ptlrpc_expire_one_request(req, 1);
1333
1334                         /*
1335                          * Check if we still need to wait for unlink.
1336                          */
1337                         if (ptlrpc_client_recv_or_unlink(req) ||
1338                             ptlrpc_client_bulk_active(req))
1339                                 continue;
1340                 }
1341
1342                 if (req->rq_err) {
1343                         req->rq_replied = 0;
1344                         if (req->rq_status == 0)
1345                                 req->rq_status = -EIO;
1346                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1347                         GOTO(interpret, req->rq_status);
1348                 }
1349
1350                 /* ptlrpc_queue_wait->l_wait_event guarantees that rq_intr
1351                  * will only be set after rq_timedout, but the synchronous IO
1352                  * waiting path sets rq_intr irrespective of whether ptlrpcd
1353                  * has seen a timeout.  our policy is to only interpret
1354                  * interrupted rpcs after they have timed out */
1355                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1356                                      req->rq_wait_ctx)) {
1357                         req->rq_status = -EINTR;
1358                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1359                         GOTO(interpret, req->rq_status);
1360                 }
1361
1362                 if (req->rq_phase == RQ_PHASE_RPC) {
1363                         if (req->rq_timedout || req->rq_resend ||
1364                             req->rq_waiting || req->rq_wait_ctx) {
1365                                 int status;
1366
1367                                 if (!ptlrpc_unregister_reply(req, 1))
1368                                         continue;
1369
1370                                 spin_lock(&imp->imp_lock);
1371                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1372                                         /* put on delay list - only if we wait
1373                                          * recovery finished - before send */
1374                                         list_del_init(&req->rq_list);
1375                                         list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1376                                         spin_unlock(&imp->imp_lock);
1377                                         continue;
1378                                 }
1379
1380                                 if (status != 0)  {
1381                                         req->rq_status = status;
1382                                         ptlrpc_rqphase_move(req,
1383                                                 RQ_PHASE_INTERPRET);
1384                                         spin_unlock(&imp->imp_lock);
1385                                         GOTO(interpret, req->rq_status);
1386                                 }
1387                                 if (req->rq_no_resend && !req->rq_wait_ctx) {
1388                                         req->rq_status = -ENOTCONN;
1389                                         ptlrpc_rqphase_move(req,
1390                                                 RQ_PHASE_INTERPRET);
1391                                         spin_unlock(&imp->imp_lock);
1392                                         GOTO(interpret, req->rq_status);
1393                                 }
1394
1395                                 list_del_init(&req->rq_list);
1396                                 list_add_tail(&req->rq_list,
1397                                               &imp->imp_sending_list);
1398
1399                                 spin_unlock(&imp->imp_lock);
1400
1401                                 req->rq_waiting = 0;
1402
1403                                 if (req->rq_timedout||req->rq_resend) {
1404                                         /* This is re-sending anyways,
1405                                          * let's mark req as resend. */
1406                                         req->rq_resend = 1;
1407                                         if (req->rq_bulk) {
1408                                                 __u64 old_xid;
1409
1410                                                 if (!ptlrpc_unregister_bulk(req, 1))
1411                                                         continue;
1412
1413                                                 /* ensure previous bulk fails */
1414                                                 old_xid = req->rq_xid;
1415                                                 req->rq_xid = ptlrpc_next_xid();
1416                                                 CDEBUG(D_HA, "resend bulk "
1417                                                        "old x"LPU64
1418                                                        " new x"LPU64"\n",
1419                                                        old_xid, req->rq_xid);
1420                                         }
1421                                 }
1422                                 /*
1423                                  * rq_wait_ctx is only touched by ptlrpcd,
1424                                  * so no lock is needed here.
1425                                  */
1426                                 status = sptlrpc_req_refresh_ctx(req, -1);
1427                                 if (status) {
1428                                         if (req->rq_err) {
1429                                                 req->rq_status = status;
1430                                                 req->rq_wait_ctx = 0;
1431                                                 force_timer_recalc = 1;
1432                                         } else {
1433                                                 req->rq_wait_ctx = 1;
1434                                         }
1435
1436                                         continue;
1437                                 } else {
1438                                         req->rq_wait_ctx = 0;
1439                                 }
1440
1441                                 rc = ptl_send_rpc(req, 0);
1442                                 if (rc) {
1443                                         DEBUG_REQ(D_HA, req, "send failed (%d)",
1444                                                   rc);
1445                                         force_timer_recalc = 1;
1446                                         req->rq_net_err = 1;
1447                                 }
1448                                 /* need to reset the timeout */
1449                                 force_timer_recalc = 1;
1450                         }
1451
1452                         spin_lock(&req->rq_lock);
1453
1454                         if (ptlrpc_client_early(req)) {
1455                                 ptlrpc_at_recv_early_reply(req);
1456                                 spin_unlock(&req->rq_lock);
1457                                 continue;
1458                         }
1459
1460                         /* Still waiting for a reply? */
1461                         if (ptlrpc_client_recv(req)) {
1462                                 spin_unlock(&req->rq_lock);
1463                                 continue;
1464                         }
1465
1466                         /* Did we actually receive a reply? */
1467                         if (!ptlrpc_client_replied(req)) {
1468                                 spin_unlock(&req->rq_lock);
1469                                 continue;
1470                         }
1471
1472                         spin_unlock(&req->rq_lock);
1473
1474                         req->rq_status = after_reply(req);
1475                         if (req->rq_resend)
1476                                 continue;
1477
1478                         /* If there is no bulk associated with this request,
1479                          * then we're done and should let the interpreter
1480                          * process the reply. Similarly if the RPC returned
1481                          * an error, and therefore the bulk will never arrive.
1482                          */
1483                         if (req->rq_bulk == NULL || req->rq_status != 0) {
1484                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1485                                 GOTO(interpret, req->rq_status);
1486                         }
1487
1488                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1489                 }
1490
1491                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1492                 if (ptlrpc_client_bulk_active(req))
1493                         continue;
1494
1495                 if (!req->rq_bulk->bd_success) {
1496                         /* The RPC reply arrived OK, but the bulk screwed
1497                          * up!  Dead wierd since the server told us the RPC
1498                          * was good after getting the REPLY for her GET or
1499                          * the ACK for her PUT. */
1500                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1501                         LBUG();
1502                 }
1503
1504                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1505
1506         interpret:
1507                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1508
1509                 /* This moves to "unregistering" phase we need to wait for
1510                  * reply unlink. */
1511                 if (!ptlrpc_unregister_reply(req, 1))
1512                         continue;
1513
1514                 if (!ptlrpc_unregister_bulk(req, 1))
1515                         continue;
1516
1517                 /* When calling interpret receiving already should be
1518                  * finished. */
1519                 LASSERT(!req->rq_receiving_reply);
1520
1521                 ptlrpc_req_interpret(env, req, req->rq_status);
1522
1523                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1524
1525                 CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:"
1526                        "opc %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1527                        imp->imp_obd->obd_uuid.uuid,
1528                        req->rq_reqmsg ? lustre_msg_get_status(req->rq_reqmsg):-1,
1529                        req->rq_xid,
1530                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1531                        req->rq_reqmsg ? lustre_msg_get_opc(req->rq_reqmsg) : -1);
1532
1533                 spin_lock(&imp->imp_lock);
1534                 /* Request already may be not on sending or delaying list. This
1535                  * may happen in the case of marking it errorneous for the case
1536                  * ptlrpc_import_delay_req(req, status) find it impossible to
1537                  * allow sending this rpc and returns *status != 0. */
1538                 if (!list_empty(&req->rq_list)) {
1539                         list_del_init(&req->rq_list);
1540                         atomic_dec(&imp->imp_inflight);
1541                 }
1542                 spin_unlock(&imp->imp_lock);
1543
1544                 set->set_remaining--;
1545                 cfs_waitq_broadcast(&imp->imp_recovery_waitq);
1546         }
1547
1548         /* If we hit an error, we want to recover promptly. */
1549         RETURN(set->set_remaining == 0 || force_timer_recalc);
1550 }
1551
1552 /* Return 1 if we should give up, else 0 */
1553 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1554 {
1555         struct obd_import *imp = req->rq_import;
1556         int rc = 0;
1557         ENTRY;
1558
1559         spin_lock(&req->rq_lock);
1560         req->rq_timedout = 1;
1561         spin_unlock(&req->rq_lock);
1562
1563         DEBUG_REQ(D_WARNING, req, "Request x"LPU64" sent from %s to NID %s "
1564                   CFS_DURATION_T"s ago has %s (limit "CFS_DURATION_T"s).\n",
1565                   req->rq_xid, imp ? imp->imp_obd->obd_name : "<?>",
1566                   imp ? libcfs_nid2str(imp->imp_connection->c_peer.nid) : "<?>",
1567                   cfs_time_sub(cfs_time_current_sec(), req->rq_sent),
1568                   req->rq_net_err ? "failed due to network error" : "timed out",
1569                   cfs_time_sub(req->rq_deadline, req->rq_sent));
1570
1571         if (imp != NULL && obd_debug_peer_on_timeout)
1572                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1573
1574         ptlrpc_unregister_reply(req, async_unlink);
1575         ptlrpc_unregister_bulk(req, async_unlink);
1576
1577         if (obd_dump_on_timeout)
1578                 libcfs_debug_dumplog();
1579
1580         if (imp == NULL) {
1581                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1582                 RETURN(1);
1583         }
1584
1585         if (req->rq_fake)
1586                RETURN(1);
1587
1588         atomic_inc(&imp->imp_timeouts);
1589
1590         /* The DLM server doesn't want recovery run on its imports. */
1591         if (imp->imp_dlm_fake)
1592                 RETURN(1);
1593
1594         /* If this request is for recovery or other primordial tasks,
1595          * then error it out here. */
1596         if (req->rq_ctx_init || req->rq_ctx_fini ||
1597             req->rq_send_state != LUSTRE_IMP_FULL ||
1598             imp->imp_obd->obd_no_recov) {
1599                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1600                           ptlrpc_import_state_name(req->rq_send_state),
1601                           ptlrpc_import_state_name(imp->imp_state));
1602                 spin_lock(&req->rq_lock);
1603                 req->rq_status = -ETIMEDOUT;
1604                 req->rq_err = 1;
1605                 spin_unlock(&req->rq_lock);
1606                 RETURN(1);
1607         }
1608
1609         /* if a request can't be resent we can't wait for an answer after
1610            the timeout */
1611         if (req->rq_no_resend) {
1612                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1613                 rc = 1;
1614         }
1615
1616         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1617
1618         RETURN(rc);
1619 }
1620
1621 int ptlrpc_expired_set(void *data)
1622 {
1623         struct ptlrpc_request_set *set = data;
1624         struct list_head          *tmp;
1625         time_t                     now = cfs_time_current_sec();
1626         ENTRY;
1627
1628         LASSERT(set != NULL);
1629
1630         /*
1631          * A timeout expired. See which reqs it applies to...
1632          */
1633         list_for_each (tmp, &set->set_requests) {
1634                 struct ptlrpc_request *req =
1635                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1636
1637                 /* don't expire request waiting for context */
1638                 if (req->rq_wait_ctx)
1639                         continue;
1640
1641                 /* Request in-flight? */
1642                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1643                        !req->rq_waiting && !req->rq_resend) ||
1644                       (req->rq_phase == RQ_PHASE_BULK)))
1645                         continue;
1646
1647                 if (req->rq_timedout ||     /* already dealt with */
1648                     req->rq_deadline > now) /* not expired */
1649                         continue;
1650
1651                 /* Deal with this guy. Do it asynchronously to not block
1652                  * ptlrpcd thread. */
1653                 ptlrpc_expire_one_request(req, 1);
1654         }
1655
1656         /*
1657          * When waiting for a whole set, we always to break out of the
1658          * sleep so we can recalculate the timeout, or enable interrupts
1659          * if everyone's timed out.
1660          */
1661         RETURN(1);
1662 }
1663
1664 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1665 {
1666         spin_lock(&req->rq_lock);
1667         req->rq_intr = 1;
1668         spin_unlock(&req->rq_lock);
1669 }
1670
1671 void ptlrpc_interrupted_set(void *data)
1672 {
1673         struct ptlrpc_request_set *set = data;
1674         struct list_head *tmp;
1675
1676         LASSERT(set != NULL);
1677         CERROR("INTERRUPTED SET %p\n", set);
1678
1679         list_for_each(tmp, &set->set_requests) {
1680                 struct ptlrpc_request *req =
1681                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1682
1683                 if (req->rq_phase != RQ_PHASE_RPC &&
1684                     req->rq_phase != RQ_PHASE_UNREGISTERING)
1685                         continue;
1686
1687                 ptlrpc_mark_interrupted(req);
1688         }
1689 }
1690
1691 /**
1692  * Get the smallest timeout in the set; this does NOT set a timeout.
1693  */
1694 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
1695 {
1696         struct list_head      *tmp;
1697         time_t                 now = cfs_time_current_sec();
1698         int                    timeout = 0;
1699         struct ptlrpc_request *req;
1700         int                    deadline;
1701         ENTRY;
1702
1703         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1704
1705         list_for_each(tmp, &set->set_requests) {
1706                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1707
1708                 /*
1709                  * Request in-flight?
1710                  */
1711                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
1712                       (req->rq_phase == RQ_PHASE_BULK) ||
1713                       (req->rq_phase == RQ_PHASE_NEW)))
1714                         continue;
1715
1716                 /*
1717                  * Already timed out.
1718                  */
1719                 if (req->rq_timedout)
1720                         continue;
1721
1722                 /*
1723                  * Waiting for ctx.
1724                  */
1725                 if (req->rq_wait_ctx)
1726                         continue;
1727
1728                 if (req->rq_phase == RQ_PHASE_NEW)
1729                         deadline = req->rq_sent;
1730                 else
1731                         deadline = req->rq_sent + req->rq_timeout;
1732
1733                 if (deadline <= now)    /* actually expired already */
1734                         timeout = 1;    /* ASAP */
1735                 else if (timeout == 0 || timeout > deadline - now)
1736                         timeout = deadline - now;
1737         }
1738         RETURN(timeout);
1739 }
1740
1741 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
1742 {
1743         struct list_head      *tmp;
1744         struct ptlrpc_request *req;
1745         struct l_wait_info     lwi;
1746         int                    rc, timeout;
1747         ENTRY;
1748
1749         if (list_empty(&set->set_requests))
1750                 RETURN(0);
1751
1752         list_for_each(tmp, &set->set_requests) {
1753                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1754                 if (req->rq_phase == RQ_PHASE_NEW)
1755                         (void)ptlrpc_send_new_req(req);
1756         }
1757
1758         do {
1759                 timeout = ptlrpc_set_next_timeout(set);
1760
1761                 /* wait until all complete, interrupted, or an in-flight
1762                  * req times out */
1763                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
1764                        set, timeout);
1765                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout ? timeout : 1),
1766                                        ptlrpc_expired_set,
1767                                        ptlrpc_interrupted_set, set);
1768                 rc = l_wait_event(set->set_waitq,
1769                                   ptlrpc_check_set(NULL, set), &lwi);
1770
1771                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
1772
1773                 /* -EINTR => all requests have been flagged rq_intr so next
1774                  * check completes.
1775                  * -ETIMEOUTD => someone timed out.  When all reqs have
1776                  * timed out, signals are enabled allowing completion with
1777                  * EINTR.
1778                  * I don't really care if we go once more round the loop in
1779                  * the error cases -eeb. */
1780         } while (rc != 0 || set->set_remaining != 0);
1781
1782         LASSERT(set->set_remaining == 0);
1783
1784         rc = 0;
1785         list_for_each(tmp, &set->set_requests) {
1786                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1787
1788                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
1789                 if (req->rq_status != 0)
1790                         rc = req->rq_status;
1791         }
1792
1793         if (set->set_interpret != NULL) {
1794                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
1795                         set->set_interpret;
1796                 rc = interpreter (set, set->set_arg, rc);
1797         } else {
1798                 struct ptlrpc_set_cbdata *cbdata, *n;
1799                 int err;
1800
1801                 list_for_each_entry_safe(cbdata, n,
1802                                          &set->set_cblist, psc_item) {
1803                         list_del_init(&cbdata->psc_item);
1804                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
1805                         if (err && !rc)
1806                                 rc = err;
1807                         OBD_FREE_PTR(cbdata);
1808                 }
1809         }
1810
1811         RETURN(rc);
1812 }
1813
1814 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
1815 {
1816         ENTRY;
1817         if (request == NULL) {
1818                 EXIT;
1819                 return;
1820         }
1821
1822         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
1823         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
1824         LASSERTF(list_empty(&request->rq_list), "req %p\n", request);
1825         LASSERTF(list_empty(&request->rq_set_chain), "req %p\n", request);
1826         LASSERTF(list_empty(&request->rq_exp_list), "req %p\n", request);
1827         LASSERTF(!request->rq_replay, "req %p\n", request);
1828         LASSERT(request->rq_cli_ctx || request->rq_fake);
1829
1830         req_capsule_fini(&request->rq_pill);
1831
1832         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
1833          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
1834         if (request->rq_import != NULL) {
1835                 if (!locked)
1836                         spin_lock(&request->rq_import->imp_lock);
1837                 list_del_init(&request->rq_replay_list);
1838                 if (!locked)
1839                         spin_unlock(&request->rq_import->imp_lock);
1840         }
1841         LASSERTF(list_empty(&request->rq_replay_list), "req %p\n", request);
1842
1843         if (atomic_read(&request->rq_refcount) != 0) {
1844                 DEBUG_REQ(D_ERROR, request,
1845                           "freeing request with nonzero refcount");
1846                 LBUG();
1847         }
1848
1849         if (request->rq_repbuf != NULL)
1850                 sptlrpc_cli_free_repbuf(request);
1851         if (request->rq_export != NULL) {
1852                 class_export_put(request->rq_export);
1853                 request->rq_export = NULL;
1854         }
1855         if (request->rq_import != NULL) {
1856                 class_import_put(request->rq_import);
1857                 request->rq_import = NULL;
1858         }
1859         if (request->rq_bulk != NULL)
1860                 ptlrpc_free_bulk(request->rq_bulk);
1861
1862         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
1863                 sptlrpc_cli_free_reqbuf(request);
1864
1865         if (request->rq_cli_ctx)
1866                 sptlrpc_req_put_ctx(request, !locked);
1867
1868         if (request->rq_pool)
1869                 __ptlrpc_free_req_to_pool(request);
1870         else
1871                 OBD_FREE(request, sizeof(*request));
1872         EXIT;
1873 }
1874
1875 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
1876 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
1877 {
1878         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
1879         (void)__ptlrpc_req_finished(request, 1);
1880 }
1881
1882 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
1883 {
1884         ENTRY;
1885         if (request == NULL)
1886                 RETURN(1);
1887
1888         if (request == LP_POISON ||
1889             request->rq_reqmsg == LP_POISON) {
1890                 CERROR("dereferencing freed request (bug 575)\n");
1891                 LBUG();
1892                 RETURN(1);
1893         }
1894
1895         DEBUG_REQ(D_INFO, request, "refcount now %u",
1896                   atomic_read(&request->rq_refcount) - 1);
1897
1898         if (atomic_dec_and_test(&request->rq_refcount)) {
1899                 __ptlrpc_free_req(request, locked);
1900                 RETURN(1);
1901         }
1902
1903         RETURN(0);
1904 }
1905
1906 void ptlrpc_req_finished(struct ptlrpc_request *request)
1907 {
1908         __ptlrpc_req_finished(request, 0);
1909 }
1910
1911 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
1912 {
1913         return request->rq_xid;
1914 }
1915 EXPORT_SYMBOL(ptlrpc_req_xid);
1916
1917 /* Disengage the client's reply buffer from the network
1918  * NB does _NOT_ unregister any client-side bulk.
1919  * IDEMPOTENT, but _not_ safe against concurrent callers.
1920  * The request owner (i.e. the thread doing the I/O) must call...
1921  */
1922 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
1923 {
1924         int                rc;
1925         cfs_waitq_t       *wq;
1926         struct l_wait_info lwi;
1927
1928         /*
1929          * Might sleep.
1930          */
1931         LASSERT(!in_interrupt());
1932
1933         /*
1934          * Let's setup deadline for reply unlink.
1935          */
1936         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
1937             async && request->rq_reply_deadline == 0)
1938                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
1939
1940         /*
1941          * Nothing left to do.
1942          */
1943         if (!ptlrpc_client_recv_or_unlink(request))
1944                 RETURN(1);
1945
1946         LNetMDUnlink(request->rq_reply_md_h);
1947
1948         /*
1949          * Let's check it once again.
1950          */
1951         if (!ptlrpc_client_recv_or_unlink(request))
1952                 RETURN(1);
1953
1954         /*
1955          * Move to "Unregistering" phase as reply was not unlinked yet.
1956          */
1957         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
1958
1959         /*
1960          * Do not wait for unlink to finish.
1961          */
1962         if (async)
1963                 RETURN(0);
1964
1965         /*
1966          * We have to l_wait_event() whatever the result, to give liblustre
1967          * a chance to run reply_in_callback(), and to make sure we've
1968          * unlinked before returning a req to the pool.
1969          */
1970         if (request->rq_set != NULL)
1971                 wq = &request->rq_set->set_waitq;
1972         else
1973                 wq = &request->rq_reply_waitq;
1974
1975         for (;;) {
1976                 /* Network access will complete in finite time but the HUGE
1977                  * timeout lets us CWARN for visibility of sluggish NALs */
1978                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
1979                                            cfs_time_seconds(1), NULL, NULL);
1980                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
1981                                   &lwi);
1982                 if (rc == 0) {
1983                         ptlrpc_rqphase_move(request, request->rq_next_phase);
1984                         RETURN(1);
1985                 }
1986
1987                 LASSERT(rc == -ETIMEDOUT);
1988                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
1989                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
1990                           request->rq_must_unlink);
1991         }
1992         RETURN(0);
1993 }
1994
1995 /* caller must hold imp->imp_lock */
1996 void ptlrpc_free_committed(struct obd_import *imp)
1997 {
1998         struct list_head *tmp, *saved;
1999         struct ptlrpc_request *req;
2000         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
2001         ENTRY;
2002
2003         LASSERT(imp != NULL);
2004
2005         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2006
2007
2008         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2009             imp->imp_generation == imp->imp_last_generation_checked) {
2010                 CDEBUG(D_RPCTRACE, "%s: skip recheck: last_committed "LPU64"\n",
2011                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2012                 EXIT;
2013                 return;
2014         }
2015         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2016                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2017                imp->imp_generation);
2018         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2019         imp->imp_last_generation_checked = imp->imp_generation;
2020
2021         list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
2022                 req = list_entry(tmp, struct ptlrpc_request, rq_replay_list);
2023
2024                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2025                 LASSERT(req != last_req);
2026                 last_req = req;
2027
2028                 if (req->rq_transno == 0) {
2029                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2030                         LBUG();
2031                 }
2032                 if (req->rq_import_generation < imp->imp_generation) {
2033                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2034                         GOTO(free_req, 0);
2035                 }
2036
2037                 if (req->rq_replay) {
2038                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2039                         continue;
2040                 }
2041
2042                 /* not yet committed */
2043                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2044                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2045                         break;
2046                 }
2047
2048                 DEBUG_REQ(D_RPCTRACE, req, "commit (last_committed "LPU64")",
2049                           imp->imp_peer_committed_transno);
2050 free_req:
2051                 spin_lock(&req->rq_lock);
2052                 req->rq_replay = 0;
2053                 spin_unlock(&req->rq_lock);
2054                 if (req->rq_commit_cb != NULL)
2055                         req->rq_commit_cb(req);
2056                 list_del_init(&req->rq_replay_list);
2057                 __ptlrpc_req_finished(req, 1);
2058         }
2059
2060         EXIT;
2061         return;
2062 }
2063
2064 void ptlrpc_cleanup_client(struct obd_import *imp)
2065 {
2066         ENTRY;
2067         EXIT;
2068         return;
2069 }
2070
2071 void ptlrpc_resend_req(struct ptlrpc_request *req)
2072 {
2073         DEBUG_REQ(D_HA, req, "going to resend");
2074         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2075         req->rq_status = -EAGAIN;
2076
2077         spin_lock(&req->rq_lock);
2078         req->rq_resend = 1;
2079         req->rq_net_err = 0;
2080         req->rq_timedout = 0;
2081         if (req->rq_bulk) {
2082                 __u64 old_xid = req->rq_xid;
2083
2084                 /* ensure previous bulk fails */
2085                 req->rq_xid = ptlrpc_next_xid();
2086                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2087                        old_xid, req->rq_xid);
2088         }
2089         ptlrpc_client_wake_req(req);
2090         spin_unlock(&req->rq_lock);
2091 }
2092
2093 /* XXX: this function and rq_status are currently unused */
2094 void ptlrpc_restart_req(struct ptlrpc_request *req)
2095 {
2096         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2097         req->rq_status = -ERESTARTSYS;
2098
2099         spin_lock(&req->rq_lock);
2100         req->rq_restart = 1;
2101         req->rq_timedout = 0;
2102         ptlrpc_client_wake_req(req);
2103         spin_unlock(&req->rq_lock);
2104 }
2105
2106 static int expired_request(void *data)
2107 {
2108         struct ptlrpc_request *req = data;
2109         ENTRY;
2110
2111         /*
2112          * Some failure can suspend regular timeouts.
2113          */
2114         if (ptlrpc_check_suspend())
2115                 RETURN(1);
2116
2117         /*
2118          * Deadline may have changed with an early reply.
2119          */
2120         if (req->rq_deadline > cfs_time_current_sec())
2121                 RETURN(1);
2122
2123         RETURN(ptlrpc_expire_one_request(req, 0));
2124 }
2125
2126 static void interrupted_request(void *data)
2127 {
2128         struct ptlrpc_request *req = data;
2129         DEBUG_REQ(D_HA, req, "request interrupted");
2130         spin_lock(&req->rq_lock);
2131         req->rq_intr = 1;
2132         spin_unlock(&req->rq_lock);
2133 }
2134
2135 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2136 {
2137         ENTRY;
2138         atomic_inc(&req->rq_refcount);
2139         RETURN(req);
2140 }
2141
2142 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2143                                       struct obd_import *imp)
2144 {
2145         struct list_head *tmp;
2146
2147         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2148
2149         if (req->rq_transno == 0) {
2150                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2151                 LBUG();
2152         }
2153
2154         /* clear this for new requests that were resent as well
2155            as resent replayed requests. */
2156         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2157
2158         /* don't re-add requests that have been replayed */
2159         if (!list_empty(&req->rq_replay_list))
2160                 return;
2161
2162         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2163
2164         LASSERT(imp->imp_replayable);
2165         /* Balanced in ptlrpc_free_committed, usually. */
2166         ptlrpc_request_addref(req);
2167         list_for_each_prev(tmp, &imp->imp_replay_list) {
2168                 struct ptlrpc_request *iter =
2169                         list_entry(tmp, struct ptlrpc_request, rq_replay_list);
2170
2171                 /* We may have duplicate transnos if we create and then
2172                  * open a file, or for closes retained if to match creating
2173                  * opens, so use req->rq_xid as a secondary key.
2174                  * (See bugs 684, 685, and 428.)
2175                  * XXX no longer needed, but all opens need transnos!
2176                  */
2177                 if (iter->rq_transno > req->rq_transno)
2178                         continue;
2179
2180                 if (iter->rq_transno == req->rq_transno) {
2181                         LASSERT(iter->rq_xid != req->rq_xid);
2182                         if (iter->rq_xid > req->rq_xid)
2183                                 continue;
2184                 }
2185
2186                 list_add(&req->rq_replay_list, &iter->rq_replay_list);
2187                 return;
2188         }
2189
2190         list_add_tail(&req->rq_replay_list, &imp->imp_replay_list);
2191 }
2192
2193 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2194 {
2195         int rc = 0;
2196         int brc;
2197         struct l_wait_info lwi;
2198         struct obd_import *imp = req->rq_import;
2199         cfs_duration_t timeout = CFS_TICK;
2200         long timeoutl;
2201         ENTRY;
2202
2203         LASSERT(req->rq_set == NULL);
2204         LASSERT(!req->rq_receiving_reply);
2205
2206         /* for distributed debugging */
2207         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2208         LASSERT(imp->imp_obd != NULL);
2209         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc "
2210                "%s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
2211                imp->imp_obd->obd_uuid.uuid,
2212                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
2213                libcfs_nid2str(imp->imp_connection->c_peer.nid),
2214                lustre_msg_get_opc(req->rq_reqmsg));
2215
2216         /* Mark phase here for a little debug help */
2217         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
2218
2219         spin_lock(&imp->imp_lock);
2220         req->rq_import_generation = imp->imp_generation;
2221 restart:
2222         if (ptlrpc_import_delay_req(imp, req, &rc)) {
2223                 list_del_init(&req->rq_list);
2224                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
2225                 atomic_inc(&imp->imp_inflight);
2226                 spin_unlock(&imp->imp_lock);
2227
2228                 DEBUG_REQ(D_HA, req, "\"%s\" waiting for recovery: (%s != %s)",
2229                           cfs_curproc_comm(),
2230                           ptlrpc_import_state_name(req->rq_send_state),
2231                           ptlrpc_import_state_name(imp->imp_state));
2232                 lwi = LWI_INTR(interrupted_request, req);
2233                 rc = l_wait_event(req->rq_reply_waitq,
2234                                   (req->rq_send_state == imp->imp_state ||
2235                                    req->rq_err || req->rq_intr),
2236                                   &lwi);
2237                 DEBUG_REQ(D_HA, req, "\"%s\" awake: (%s == %s or %d/%d == 1)",
2238                           cfs_curproc_comm(),
2239                           ptlrpc_import_state_name(imp->imp_state),
2240                           ptlrpc_import_state_name(req->rq_send_state),
2241                           req->rq_err, req->rq_intr);
2242
2243                 spin_lock(&imp->imp_lock);
2244                 list_del_init(&req->rq_list);
2245                 atomic_dec(&imp->imp_inflight);
2246
2247                 if (req->rq_err) {
2248                         /* rq_status was set locally */
2249                         rc = -EIO;
2250                 }
2251                 else if (req->rq_intr) {
2252                         rc = -EINTR;
2253                 }
2254                 else if (req->rq_no_resend) {
2255                         spin_unlock(&imp->imp_lock);
2256                         GOTO(out, rc = -ETIMEDOUT);
2257                 }
2258                 else {
2259                         GOTO(restart, rc);
2260                 }
2261         }
2262
2263         if (rc != 0) {
2264                 spin_unlock(&imp->imp_lock);
2265                 req->rq_status = rc; // XXX this ok?
2266                 GOTO(out, rc);
2267         }
2268
2269         if (req->rq_resend) {
2270                 if (req->rq_bulk != NULL) {
2271                         ptlrpc_unregister_bulk(req, 0);
2272
2273                         /* bulk requests are supposed to be
2274                          * idempotent, so we are free to bump the xid
2275                          * here, which we need to do before
2276                          * registering the bulk again (bug 6371).
2277                          * print the old xid first for sanity.
2278                          */
2279                         DEBUG_REQ(D_HA, req, "bumping xid for bulk: ");
2280                         req->rq_xid = ptlrpc_next_xid();
2281                 }
2282
2283                 DEBUG_REQ(D_HA, req, "resending: ");
2284         }
2285
2286         /* XXX this is the same as ptlrpc_set_wait */
2287         LASSERT(list_empty(&req->rq_list));
2288         list_add_tail(&req->rq_list, &imp->imp_sending_list);
2289         atomic_inc(&imp->imp_inflight);
2290         spin_unlock(&imp->imp_lock);
2291
2292         rc = sptlrpc_req_refresh_ctx(req, 0);
2293         if (rc) {
2294                 if (req->rq_err) {
2295                         /* we got fatal ctx refresh error, directly jump out
2296                          * thus we can pass back the actual error code.
2297                          */
2298                         spin_lock(&imp->imp_lock);
2299                         list_del_init(&req->rq_list);
2300                         atomic_dec(&imp->imp_inflight);
2301                         spin_unlock(&imp->imp_lock);
2302
2303                         CERROR("Failed to refresh ctx of req %p: %d\n",
2304                                req, rc);
2305                         GOTO(out, rc);
2306                 }
2307                 /* simulating we got error during send rpc */
2308                 goto after_send;
2309         }
2310
2311         rc = ptl_send_rpc(req, 0);
2312         if (rc)
2313                 DEBUG_REQ(D_HA, req, "send failed (%d); recovering", rc);
2314 repeat:
2315         timeoutl = req->rq_deadline - cfs_time_current_sec();
2316         timeout = (timeoutl <= 0 || rc) ? CFS_TICK :
2317                 cfs_time_seconds(timeoutl);
2318         DEBUG_REQ(D_NET, req,
2319                   "-- sleeping for "CFS_DURATION_T" ticks", timeout);
2320         lwi = LWI_TIMEOUT_INTR(timeout, expired_request, interrupted_request,
2321                                req);
2322         brc = l_wait_event(req->rq_reply_waitq, ptlrpc_check_reply(req), &lwi);
2323         if (brc == -ETIMEDOUT && ((req->rq_deadline > cfs_time_current_sec()) ||
2324                                  ptlrpc_check_and_wait_suspend(req)))
2325                 goto repeat;
2326
2327 after_send:
2328         CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:opc "
2329                "%s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
2330                imp->imp_obd->obd_uuid.uuid,
2331                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
2332                libcfs_nid2str(imp->imp_connection->c_peer.nid),
2333                lustre_msg_get_opc(req->rq_reqmsg));
2334
2335         /* If the reply was received normally, this just grabs the spinlock
2336          * (ensuring the reply callback has returned), sees that
2337          * req->rq_receiving_reply is clear and returns. */
2338         ptlrpc_unregister_reply(req, 0);
2339
2340         spin_lock(&imp->imp_lock);
2341         list_del_init(&req->rq_list);
2342         atomic_dec(&imp->imp_inflight);
2343         spin_unlock(&imp->imp_lock);
2344
2345         if (req->rq_err) {
2346                 DEBUG_REQ(D_RPCTRACE, req, "err rc=%d status=%d",
2347                           rc, req->rq_status);
2348                 GOTO(out, rc = rc ? rc : -EIO);
2349         }
2350
2351         if (req->rq_intr) {
2352                 /* Should only be interrupted if we timed out. */
2353                 if (!req->rq_timedout)
2354                         DEBUG_REQ(D_ERROR, req,
2355                                   "rq_intr set but rq_timedout not");
2356                 GOTO(out, rc = -EINTR);
2357         }
2358
2359         /* Resend if we need to */
2360         if (req->rq_resend||req->rq_timedout) {
2361                 /* ...unless we were specifically told otherwise. */
2362                 if (req->rq_no_resend)
2363                         GOTO(out, rc = -ETIMEDOUT);
2364                 spin_lock(&imp->imp_lock);
2365                 /* we can have rq_timeout on dlm fake import which not support
2366                  * recovery - but me need resend request on this import instead
2367                  * of return error */
2368                 req->rq_resend = 1;
2369                 goto restart;
2370         }
2371
2372         if (!ptlrpc_client_replied(req)) {
2373                 /* How can this be? -eeb */
2374                 DEBUG_REQ(D_ERROR, req, "!rq_replied: ");
2375                 LBUG();
2376                 GOTO(out, rc = req->rq_status);
2377         }
2378
2379         rc = after_reply(req);
2380         /* NB may return +ve success rc */
2381         if (req->rq_resend) {
2382                 spin_lock(&imp->imp_lock);
2383                 goto restart;
2384         }
2385
2386  out:
2387         if (req->rq_bulk != NULL) {
2388                 if (rc >= 0) {
2389                         /* success so far.  Note that anything going wrong
2390                          * with bulk now, is EXTREMELY strange, since the
2391                          * server must have believed that the bulk
2392                          * transferred OK before she replied with success to
2393                          * me. */
2394                         lwi = LWI_TIMEOUT(timeout, NULL, NULL);
2395                         brc = l_wait_event(req->rq_reply_waitq,
2396                                            !ptlrpc_client_bulk_active(req),
2397                                            &lwi);
2398                         LASSERT(brc == 0 || brc == -ETIMEDOUT);
2399                         if (brc != 0) {
2400                                 LASSERT(brc == -ETIMEDOUT);
2401                                 DEBUG_REQ(D_ERROR, req, "bulk timed out");
2402                                 rc = brc;
2403                         } else if (!req->rq_bulk->bd_success) {
2404                                 DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
2405                                 rc = -EIO;
2406                         }
2407                 }
2408                 if (rc < 0)
2409                         ptlrpc_unregister_bulk(req, 0);
2410         }
2411
2412         LASSERT(!req->rq_receiving_reply);
2413         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
2414         cfs_waitq_broadcast(&imp->imp_recovery_waitq);
2415         RETURN(rc);
2416 }
2417
2418 struct ptlrpc_replay_async_args {
2419         int praa_old_state;
2420         int praa_old_status;
2421 };
2422
2423 static int ptlrpc_replay_interpret(const struct lu_env *env,
2424                                    struct ptlrpc_request *req,
2425                                    void * data, int rc)
2426 {
2427         struct ptlrpc_replay_async_args *aa = data;
2428         struct obd_import *imp = req->rq_import;
2429
2430         ENTRY;
2431         atomic_dec(&imp->imp_replay_inflight);
2432
2433         if (!ptlrpc_client_replied(req)) {
2434                 CERROR("request replay timed out, restarting recovery\n");
2435                 GOTO(out, rc = -ETIMEDOUT);
2436         }
2437
2438         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2439             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2440              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2441                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2442
2443         /** VBR: check version failure */
2444         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2445                 /** replay was failed due to version mismatch */
2446                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2447                 spin_lock(&imp->imp_lock);
2448                 imp->imp_vbr_failed = 1;
2449                 imp->imp_no_lock_replay = 1;
2450                 spin_unlock(&imp->imp_lock);
2451         } else {
2452                 /** The transno had better not change over replay. */
2453                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2454                          lustre_msg_get_transno(req->rq_repmsg) ||
2455                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2456                          LPX64"/"LPX64"\n",
2457                          lustre_msg_get_transno(req->rq_reqmsg),
2458                          lustre_msg_get_transno(req->rq_repmsg));
2459         }
2460
2461         spin_lock(&imp->imp_lock);
2462         /** if replays by version then gap was occur on server, no trust to locks */
2463         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2464                 imp->imp_no_lock_replay = 1;
2465         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2466         spin_unlock(&imp->imp_lock);
2467         LASSERT(imp->imp_last_replay_transno);
2468
2469         DEBUG_REQ(D_HA, req, "got rep");
2470
2471         /* let the callback do fixups, possibly including in the request */
2472         if (req->rq_replay_cb)
2473                 req->rq_replay_cb(req);
2474
2475         if (ptlrpc_client_replied(req) &&
2476             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2477                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2478                           lustre_msg_get_status(req->rq_repmsg),
2479                           aa->praa_old_status);
2480         } else {
2481                 /* Put it back for re-replay. */
2482                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2483         }
2484
2485         /*
2486          * Errors while replay can set transno to 0, but
2487          * imp_last_replay_transno shouldn't be set to 0 anyway
2488          */
2489         if (req->rq_transno > 0) {
2490                 spin_lock(&imp->imp_lock);
2491                 LASSERT(req->rq_transno <= imp->imp_last_replay_transno);
2492                 imp->imp_last_replay_transno = req->rq_transno;
2493                 spin_unlock(&imp->imp_lock);
2494         } else
2495                 CERROR("Transno is 0 during replay!\n");
2496         /* continue with recovery */
2497         rc = ptlrpc_import_recovery_state_machine(imp);
2498  out:
2499         req->rq_send_state = aa->praa_old_state;
2500
2501         if (rc != 0)
2502                 /* this replay failed, so restart recovery */
2503                 ptlrpc_connect_import(imp, NULL);
2504
2505         RETURN(rc);
2506 }
2507
2508 int ptlrpc_replay_req(struct ptlrpc_request *req)
2509 {
2510         struct ptlrpc_replay_async_args *aa;
2511         ENTRY;
2512
2513         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2514         /* Not handling automatic bulk replay yet (or ever?) */
2515         LASSERT(req->rq_bulk == NULL);
2516
2517         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2518         aa = ptlrpc_req_async_args(req);
2519         memset(aa, 0, sizeof *aa);
2520
2521         /* Prepare request to be resent with ptlrpcd */
2522         aa->praa_old_state = req->rq_send_state;
2523         req->rq_send_state = LUSTRE_IMP_REPLAY;
2524         req->rq_phase = RQ_PHASE_NEW;
2525         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2526         if (req->rq_repmsg)
2527                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2528         req->rq_status = 0;
2529         req->rq_interpret_reply = ptlrpc_replay_interpret;
2530         /* Readjust the timeout for current conditions */
2531         ptlrpc_at_set_req_timeout(req);
2532
2533         DEBUG_REQ(D_HA, req, "REPLAY");
2534
2535         atomic_inc(&req->rq_import->imp_replay_inflight);
2536         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2537
2538         ptlrpcd_add_req(req, PSCOPE_OTHER);
2539         RETURN(0);
2540 }
2541
2542 void ptlrpc_abort_inflight(struct obd_import *imp)
2543 {
2544         struct list_head *tmp, *n;
2545         ENTRY;
2546
2547         /* Make sure that no new requests get processed for this import.
2548          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2549          * this flag and then putting requests on sending_list or delayed_list.
2550          */
2551         spin_lock(&imp->imp_lock);
2552
2553         /* XXX locking?  Maybe we should remove each request with the list
2554          * locked?  Also, how do we know if the requests on the list are
2555          * being freed at this time?
2556          */
2557         list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2558                 struct ptlrpc_request *req =
2559                         list_entry(tmp, struct ptlrpc_request, rq_list);
2560
2561                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2562
2563                 spin_lock (&req->rq_lock);
2564                 if (req->rq_import_generation < imp->imp_generation) {
2565                         req->rq_err = 1;
2566                         req->rq_status = -EINTR;
2567                         ptlrpc_client_wake_req(req);
2568                 }
2569                 spin_unlock (&req->rq_lock);
2570         }
2571
2572         list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2573                 struct ptlrpc_request *req =
2574                         list_entry(tmp, struct ptlrpc_request, rq_list);
2575
2576                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2577
2578                 spin_lock (&req->rq_lock);
2579                 if (req->rq_import_generation < imp->imp_generation) {
2580                         req->rq_err = 1;
2581                         req->rq_status = -EINTR;
2582                         ptlrpc_client_wake_req(req);
2583                 }
2584                 spin_unlock (&req->rq_lock);
2585         }
2586
2587         /* Last chance to free reqs left on the replay list, but we
2588          * will still leak reqs that haven't committed.  */
2589         if (imp->imp_replayable)
2590                 ptlrpc_free_committed(imp);
2591
2592         spin_unlock(&imp->imp_lock);
2593
2594         EXIT;
2595 }
2596
2597 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2598 {
2599         struct list_head *tmp, *pos;
2600
2601         LASSERT(set != NULL);
2602
2603         list_for_each_safe(pos, tmp, &set->set_requests) {
2604                 struct ptlrpc_request *req =
2605                         list_entry(pos, struct ptlrpc_request, rq_set_chain);
2606
2607                 spin_lock(&req->rq_lock);
2608                 if (req->rq_phase != RQ_PHASE_RPC) {
2609                         spin_unlock(&req->rq_lock);
2610                         continue;
2611                 }
2612
2613                 req->rq_err = 1;
2614                 req->rq_status = -EINTR;
2615                 ptlrpc_client_wake_req(req);
2616                 spin_unlock(&req->rq_lock);
2617         }
2618 }
2619
2620 static __u64 ptlrpc_last_xid;
2621 static spinlock_t ptlrpc_last_xid_lock;
2622
2623 /* Initialize the XID for the node.  This is common among all requests on
2624  * this node, and only requires the property that it is monotonically
2625  * increasing.  It does not need to be sequential.  Since this is also used
2626  * as the RDMA match bits, it is important that a single client NOT have
2627  * the same match bits for two different in-flight requests, hence we do
2628  * NOT want to have an XID per target or similar.
2629  *
2630  * To avoid an unlikely collision between match bits after a client reboot
2631  * (which would deliver old data into the wrong RDMA buffer) initialize
2632  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2633  * If the time is clearly incorrect, we instead use a 62-bit random number.
2634  * In the worst case the random number will overflow 1M RPCs per second in
2635  * 9133 years, or permutations thereof.
2636  */
2637 #define YEAR_2004 (1ULL << 30)
2638 void ptlrpc_init_xid(void)
2639 {
2640         time_t now = cfs_time_current_sec();
2641
2642         spin_lock_init(&ptlrpc_last_xid_lock);
2643         if (now < YEAR_2004) {
2644                 ll_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2645                 ptlrpc_last_xid >>= 2;
2646                 ptlrpc_last_xid |= (1ULL << 61);
2647         } else {
2648                 ptlrpc_last_xid = (__u64)now << 20;
2649         }
2650 }
2651
2652 __u64 ptlrpc_next_xid(void)
2653 {
2654         __u64 tmp;
2655         spin_lock(&ptlrpc_last_xid_lock);
2656         tmp = ++ptlrpc_last_xid;
2657         spin_unlock(&ptlrpc_last_xid_lock);
2658         return tmp;
2659 }
2660
2661 __u64 ptlrpc_sample_next_xid(void)
2662 {
2663 #if BITS_PER_LONG == 32
2664         /* need to avoid possible word tearing on 32-bit systems */
2665         __u64 tmp;
2666         spin_lock(&ptlrpc_last_xid_lock);
2667         tmp = ptlrpc_last_xid + 1;
2668         spin_unlock(&ptlrpc_last_xid_lock);
2669         return tmp;
2670 #else
2671         /* No need to lock, since returned value is racy anyways */
2672         return ptlrpc_last_xid + 1;
2673 #endif
2674 }
2675 EXPORT_SYMBOL(ptlrpc_sample_next_xid);