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