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