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