Whamcloud - gitweb
LU-629 ptlrpc: fix _debug_req to print opc/status
[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 "
1766                   " sent has %s: [sent "CFS_DURATION_T"/"
1767                   "real "CFS_DURATION_T"]",
1768                   req->rq_net_err ? "failed due to network error" :
1769                      ((req->rq_real_sent == 0 ||
1770                        cfs_time_before(req->rq_real_sent, req->rq_sent) ||
1771                        cfs_time_aftereq(req->rq_real_sent, req->rq_deadline)) ?
1772                       "timed out for sent delay" : "timed out for slow reply"),
1773                   req->rq_sent, req->rq_real_sent);
1774
1775         if (imp != NULL && obd_debug_peer_on_timeout)
1776                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1777
1778         ptlrpc_unregister_reply(req, async_unlink);
1779         ptlrpc_unregister_bulk(req, async_unlink);
1780
1781         if (obd_dump_on_timeout)
1782                 libcfs_debug_dumplog();
1783
1784         if (imp == NULL) {
1785                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1786                 RETURN(1);
1787         }
1788
1789         if (req->rq_fake)
1790                RETURN(1);
1791
1792         cfs_atomic_inc(&imp->imp_timeouts);
1793
1794         /* The DLM server doesn't want recovery run on its imports. */
1795         if (imp->imp_dlm_fake)
1796                 RETURN(1);
1797
1798         /* If this request is for recovery or other primordial tasks,
1799          * then error it out here. */
1800         if (req->rq_ctx_init || req->rq_ctx_fini ||
1801             req->rq_send_state != LUSTRE_IMP_FULL ||
1802             imp->imp_obd->obd_no_recov) {
1803                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1804                           ptlrpc_import_state_name(req->rq_send_state),
1805                           ptlrpc_import_state_name(imp->imp_state));
1806                 cfs_spin_lock(&req->rq_lock);
1807                 req->rq_status = -ETIMEDOUT;
1808                 req->rq_err = 1;
1809                 cfs_spin_unlock(&req->rq_lock);
1810                 RETURN(1);
1811         }
1812
1813         /* if a request can't be resent we can't wait for an answer after
1814            the timeout */
1815         if (ptlrpc_no_resend(req)) {
1816                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1817                 rc = 1;
1818         }
1819
1820         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1821
1822         RETURN(rc);
1823 }
1824
1825 /**
1826  * Time out all uncompleted requests in request set pointed by \a data
1827  * Callback used when waiting on sets with l_wait_event.
1828  * Always returns 1.
1829  */
1830 int ptlrpc_expired_set(void *data)
1831 {
1832         struct ptlrpc_request_set *set = data;
1833         cfs_list_t                *tmp;
1834         time_t                     now = cfs_time_current_sec();
1835         ENTRY;
1836
1837         LASSERT(set != NULL);
1838
1839         /*
1840          * A timeout expired. See which reqs it applies to...
1841          */
1842         cfs_list_for_each (tmp, &set->set_requests) {
1843                 struct ptlrpc_request *req =
1844                         cfs_list_entry(tmp, struct ptlrpc_request,
1845                                        rq_set_chain);
1846
1847                 /* don't expire request waiting for context */
1848                 if (req->rq_wait_ctx)
1849                         continue;
1850
1851                 /* Request in-flight? */
1852                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1853                        !req->rq_waiting && !req->rq_resend) ||
1854                       (req->rq_phase == RQ_PHASE_BULK)))
1855                         continue;
1856
1857                 if (req->rq_timedout ||     /* already dealt with */
1858                     req->rq_deadline > now) /* not expired */
1859                         continue;
1860
1861                 /* Deal with this guy. Do it asynchronously to not block
1862                  * ptlrpcd thread. */
1863                 ptlrpc_expire_one_request(req, 1);
1864         }
1865
1866         /*
1867          * When waiting for a whole set, we always break out of the
1868          * sleep so we can recalculate the timeout, or enable interrupts
1869          * if everyone's timed out.
1870          */
1871         RETURN(1);
1872 }
1873
1874 /**
1875  * Sets rq_intr flag in \a req under spinlock.
1876  */
1877 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1878 {
1879         cfs_spin_lock(&req->rq_lock);
1880         req->rq_intr = 1;
1881         cfs_spin_unlock(&req->rq_lock);
1882 }
1883
1884 /**
1885  * Interrupts (sets interrupted flag) all uncompleted requests in
1886  * a set \a data. Callback for l_wait_event for interruptible waits.
1887  */
1888 void ptlrpc_interrupted_set(void *data)
1889 {
1890         struct ptlrpc_request_set *set = data;
1891         cfs_list_t *tmp;
1892
1893         LASSERT(set != NULL);
1894         CERROR("INTERRUPTED SET %p\n", set);
1895
1896         cfs_list_for_each(tmp, &set->set_requests) {
1897                 struct ptlrpc_request *req =
1898                         cfs_list_entry(tmp, struct ptlrpc_request,
1899                                        rq_set_chain);
1900
1901                 if (req->rq_phase != RQ_PHASE_RPC &&
1902                     req->rq_phase != RQ_PHASE_UNREGISTERING)
1903                         continue;
1904
1905                 ptlrpc_mark_interrupted(req);
1906         }
1907 }
1908
1909 /**
1910  * Get the smallest timeout in the set; this does NOT set a timeout.
1911  */
1912 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
1913 {
1914         cfs_list_t            *tmp;
1915         time_t                 now = cfs_time_current_sec();
1916         int                    timeout = 0;
1917         struct ptlrpc_request *req;
1918         int                    deadline;
1919         ENTRY;
1920
1921         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1922
1923         cfs_list_for_each(tmp, &set->set_requests) {
1924                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1925
1926                 /*
1927                  * Request in-flight?
1928                  */
1929                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
1930                       (req->rq_phase == RQ_PHASE_BULK) ||
1931                       (req->rq_phase == RQ_PHASE_NEW)))
1932                         continue;
1933
1934                 /*
1935                  * Already timed out.
1936                  */
1937                 if (req->rq_timedout)
1938                         continue;
1939
1940                 /*
1941                  * Waiting for ctx.
1942                  */
1943                 if (req->rq_wait_ctx)
1944                         continue;
1945
1946                 if (req->rq_phase == RQ_PHASE_NEW)
1947                         deadline = req->rq_sent;
1948                 else
1949                         deadline = req->rq_sent + req->rq_timeout;
1950
1951                 if (deadline <= now)    /* actually expired already */
1952                         timeout = 1;    /* ASAP */
1953                 else if (timeout == 0 || timeout > deadline - now)
1954                         timeout = deadline - now;
1955         }
1956         RETURN(timeout);
1957 }
1958
1959 /**
1960  * Send all unset request from the set and then wait untill all
1961  * requests in the set complete (either get a reply, timeout, get an
1962  * error or otherwise be interrupted).
1963  * Returns 0 on success or error code otherwise.
1964  */
1965 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
1966 {
1967         cfs_list_t            *tmp;
1968         struct ptlrpc_request *req;
1969         struct l_wait_info     lwi;
1970         int                    rc, timeout;
1971         ENTRY;
1972
1973         if (cfs_list_empty(&set->set_requests))
1974                 RETURN(0);
1975
1976         cfs_list_for_each(tmp, &set->set_requests) {
1977                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1978                 if (req->rq_phase == RQ_PHASE_NEW)
1979                         (void)ptlrpc_send_new_req(req);
1980         }
1981
1982         do {
1983                 timeout = ptlrpc_set_next_timeout(set);
1984
1985                 /* wait until all complete, interrupted, or an in-flight
1986                  * req times out */
1987                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
1988                        set, timeout);
1989
1990                 if (timeout == 0 && !cfs_signal_pending())
1991                         /*
1992                          * No requests are in-flight (ether timed out
1993                          * or delayed), so we can allow interrupts.
1994                          * We still want to block for a limited time,
1995                          * so we allow interrupts during the timeout.
1996                          */
1997                         lwi = LWI_TIMEOUT_INTR_ALL(cfs_time_seconds(1), 
1998                                                    ptlrpc_expired_set,
1999                                                    ptlrpc_interrupted_set, set);
2000                 else
2001                         /*
2002                          * At least one request is in flight, so no
2003                          * interrupts are allowed. Wait until all
2004                          * complete, or an in-flight req times out. 
2005                          */
2006                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
2007                                           ptlrpc_expired_set, set);
2008
2009                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
2010
2011                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
2012
2013                 /* -EINTR => all requests have been flagged rq_intr so next
2014                  * check completes.
2015                  * -ETIMEDOUT => someone timed out.  When all reqs have
2016                  * timed out, signals are enabled allowing completion with
2017                  * EINTR.
2018                  * I don't really care if we go once more round the loop in
2019                  * the error cases -eeb. */
2020                 if (rc == 0 && cfs_atomic_read(&set->set_remaining) == 0) {
2021                         cfs_list_for_each(tmp, &set->set_requests) {
2022                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2023                                                      rq_set_chain);
2024                                 cfs_spin_lock(&req->rq_lock);
2025                                 req->rq_invalid_rqset = 1;
2026                                 cfs_spin_unlock(&req->rq_lock);
2027                         }
2028                 }
2029         } while (rc != 0 || cfs_atomic_read(&set->set_remaining) != 0);
2030
2031         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
2032
2033         rc = 0;
2034         cfs_list_for_each(tmp, &set->set_requests) {
2035                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2036
2037                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
2038                 if (req->rq_status != 0)
2039                         rc = req->rq_status;
2040         }
2041
2042         if (set->set_interpret != NULL) {
2043                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
2044                         set->set_interpret;
2045                 rc = interpreter (set, set->set_arg, rc);
2046         } else {
2047                 struct ptlrpc_set_cbdata *cbdata, *n;
2048                 int err;
2049
2050                 cfs_list_for_each_entry_safe(cbdata, n,
2051                                          &set->set_cblist, psc_item) {
2052                         cfs_list_del_init(&cbdata->psc_item);
2053                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
2054                         if (err && !rc)
2055                                 rc = err;
2056                         OBD_FREE_PTR(cbdata);
2057                 }
2058         }
2059
2060         RETURN(rc);
2061 }
2062
2063 /**
2064  * Helper fuction for request freeing.
2065  * Called when request count reached zero and request needs to be freed.
2066  * Removes request from all sorts of sending/replay lists it might be on,
2067  * frees network buffers if any are present.
2068  * If \a locked is set, that means caller is already holding import imp_lock
2069  * and so we no longer need to reobtain it (for certain lists manipulations)
2070  */
2071 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
2072 {
2073         ENTRY;
2074         if (request == NULL) {
2075                 EXIT;
2076                 return;
2077         }
2078
2079         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
2080         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
2081         LASSERTF(cfs_list_empty(&request->rq_list), "req %p\n", request);
2082         LASSERTF(cfs_list_empty(&request->rq_set_chain), "req %p\n", request);
2083         LASSERTF(cfs_list_empty(&request->rq_exp_list), "req %p\n", request);
2084         LASSERTF(!request->rq_replay, "req %p\n", request);
2085         LASSERT(request->rq_cli_ctx || request->rq_fake);
2086
2087         req_capsule_fini(&request->rq_pill);
2088
2089         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
2090          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
2091         if (request->rq_import != NULL) {
2092                 if (!locked)
2093                         cfs_spin_lock(&request->rq_import->imp_lock);
2094                 cfs_list_del_init(&request->rq_replay_list);
2095                 if (!locked)
2096                         cfs_spin_unlock(&request->rq_import->imp_lock);
2097         }
2098         LASSERTF(cfs_list_empty(&request->rq_replay_list), "req %p\n", request);
2099
2100         if (cfs_atomic_read(&request->rq_refcount) != 0) {
2101                 DEBUG_REQ(D_ERROR, request,
2102                           "freeing request with nonzero refcount");
2103                 LBUG();
2104         }
2105
2106         if (request->rq_repbuf != NULL)
2107                 sptlrpc_cli_free_repbuf(request);
2108         if (request->rq_export != NULL) {
2109                 class_export_put(request->rq_export);
2110                 request->rq_export = NULL;
2111         }
2112         if (request->rq_import != NULL) {
2113                 class_import_put(request->rq_import);
2114                 request->rq_import = NULL;
2115         }
2116         if (request->rq_bulk != NULL)
2117                 ptlrpc_free_bulk(request->rq_bulk);
2118
2119         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
2120                 sptlrpc_cli_free_reqbuf(request);
2121
2122         if (request->rq_cli_ctx)
2123                 sptlrpc_req_put_ctx(request, !locked);
2124
2125         if (request->rq_pool)
2126                 __ptlrpc_free_req_to_pool(request);
2127         else
2128                 OBD_FREE(request, sizeof(*request));
2129         EXIT;
2130 }
2131
2132 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
2133 /**
2134  * Drop one request reference. Must be called with import imp_lock held.
2135  * When reference count drops to zero, reuqest is freed.
2136  */
2137 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
2138 {
2139         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
2140         (void)__ptlrpc_req_finished(request, 1);
2141 }
2142
2143 /**
2144  * Helper function
2145  * Drops one reference count for request \a request.
2146  * \a locked set indicates that caller holds import imp_lock.
2147  * Frees the request whe reference count reaches zero.
2148  */
2149 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
2150 {
2151         ENTRY;
2152         if (request == NULL)
2153                 RETURN(1);
2154
2155         if (request == LP_POISON ||
2156             request->rq_reqmsg == LP_POISON) {
2157                 CERROR("dereferencing freed request (bug 575)\n");
2158                 LBUG();
2159                 RETURN(1);
2160         }
2161
2162         DEBUG_REQ(D_INFO, request, "refcount now %u",
2163                   cfs_atomic_read(&request->rq_refcount) - 1);
2164
2165         if (cfs_atomic_dec_and_test(&request->rq_refcount)) {
2166                 __ptlrpc_free_req(request, locked);
2167                 RETURN(1);
2168         }
2169
2170         RETURN(0);
2171 }
2172
2173 /**
2174  * Drops one reference count for a request.
2175  */
2176 void ptlrpc_req_finished(struct ptlrpc_request *request)
2177 {
2178         __ptlrpc_req_finished(request, 0);
2179 }
2180
2181 /**
2182  * Returns xid of a \a request
2183  */
2184 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
2185 {
2186         return request->rq_xid;
2187 }
2188 EXPORT_SYMBOL(ptlrpc_req_xid);
2189
2190 /**
2191  * Disengage the client's reply buffer from the network
2192  * NB does _NOT_ unregister any client-side bulk.
2193  * IDEMPOTENT, but _not_ safe against concurrent callers.
2194  * The request owner (i.e. the thread doing the I/O) must call...
2195  * Returns 0 on success or 1 if unregistering cannot be made.
2196  */
2197 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
2198 {
2199         int                rc;
2200         cfs_waitq_t       *wq;
2201         struct l_wait_info lwi;
2202
2203         /*
2204          * Might sleep.
2205          */
2206         LASSERT(!cfs_in_interrupt());
2207
2208         /*
2209          * Let's setup deadline for reply unlink.
2210          */
2211         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
2212             async && request->rq_reply_deadline == 0)
2213                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
2214
2215         /*
2216          * Nothing left to do.
2217          */
2218         if (!ptlrpc_client_recv_or_unlink(request))
2219                 RETURN(1);
2220
2221         LNetMDUnlink(request->rq_reply_md_h);
2222
2223         /*
2224          * Let's check it once again.
2225          */
2226         if (!ptlrpc_client_recv_or_unlink(request))
2227                 RETURN(1);
2228
2229         /*
2230          * Move to "Unregistering" phase as reply was not unlinked yet.
2231          */
2232         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
2233
2234         /*
2235          * Do not wait for unlink to finish.
2236          */
2237         if (async)
2238                 RETURN(0);
2239
2240         /*
2241          * We have to l_wait_event() whatever the result, to give liblustre
2242          * a chance to run reply_in_callback(), and to make sure we've
2243          * unlinked before returning a req to the pool.
2244          */
2245         if (request->rq_set != NULL)
2246                 wq = &request->rq_set->set_waitq;
2247         else
2248                 wq = &request->rq_reply_waitq;
2249
2250         for (;;) {
2251                 /* Network access will complete in finite time but the HUGE
2252                  * timeout lets us CWARN for visibility of sluggish NALs */
2253                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2254                                            cfs_time_seconds(1), NULL, NULL);
2255                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
2256                                   &lwi);
2257                 if (rc == 0) {
2258                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2259                         RETURN(1);
2260                 }
2261
2262                 LASSERT(rc == -ETIMEDOUT);
2263                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2264                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
2265                           request->rq_must_unlink);
2266         }
2267         RETURN(0);
2268 }
2269
2270 /**
2271  * Iterates through replay_list on import and prunes
2272  * all requests have transno smaller than last_committed for the
2273  * import and don't have rq_replay set.
2274  * Since requests are sorted in transno order, stops when meetign first
2275  * transno bigger than last_committed.
2276  * caller must hold imp->imp_lock
2277  */
2278 void ptlrpc_free_committed(struct obd_import *imp)
2279 {
2280         cfs_list_t *tmp, *saved;
2281         struct ptlrpc_request *req;
2282         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
2283         ENTRY;
2284
2285         LASSERT(imp != NULL);
2286
2287         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2288
2289
2290         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2291             imp->imp_generation == imp->imp_last_generation_checked) {
2292                 CDEBUG(D_INFO, "%s: skip recheck: last_committed "LPU64"\n",
2293                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2294                 EXIT;
2295                 return;
2296         }
2297         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2298                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2299                imp->imp_generation);
2300         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2301         imp->imp_last_generation_checked = imp->imp_generation;
2302
2303         cfs_list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
2304                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2305                                      rq_replay_list);
2306
2307                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2308                 LASSERT(req != last_req);
2309                 last_req = req;
2310
2311                 if (req->rq_transno == 0) {
2312                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2313                         LBUG();
2314                 }
2315                 if (req->rq_import_generation < imp->imp_generation) {
2316                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2317                         GOTO(free_req, 0);
2318                 }
2319
2320                 if (req->rq_replay) {
2321                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2322                         continue;
2323                 }
2324
2325                 /* not yet committed */
2326                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2327                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2328                         break;
2329                 }
2330
2331                 DEBUG_REQ(D_INFO, req, "commit (last_committed "LPU64")",
2332                           imp->imp_peer_committed_transno);
2333 free_req:
2334                 cfs_spin_lock(&req->rq_lock);
2335                 req->rq_replay = 0;
2336                 cfs_spin_unlock(&req->rq_lock);
2337                 if (req->rq_commit_cb != NULL)
2338                         req->rq_commit_cb(req);
2339                 cfs_list_del_init(&req->rq_replay_list);
2340                 __ptlrpc_req_finished(req, 1);
2341         }
2342
2343         EXIT;
2344         return;
2345 }
2346
2347 void ptlrpc_cleanup_client(struct obd_import *imp)
2348 {
2349         ENTRY;
2350         EXIT;
2351         return;
2352 }
2353
2354 /**
2355  * Schedule previously sent request for resend.
2356  * For bulk requests we assign new xid (to avoid problems with
2357  * lost replies and therefore several transfers landing into same buffer
2358  * from different sending attempts).
2359  */
2360 void ptlrpc_resend_req(struct ptlrpc_request *req)
2361 {
2362         DEBUG_REQ(D_HA, req, "going to resend");
2363         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2364         req->rq_status = -EAGAIN;
2365
2366         cfs_spin_lock(&req->rq_lock);
2367         req->rq_resend = 1;
2368         req->rq_net_err = 0;
2369         req->rq_timedout = 0;
2370         if (req->rq_bulk) {
2371                 __u64 old_xid = req->rq_xid;
2372
2373                 /* ensure previous bulk fails */
2374                 req->rq_xid = ptlrpc_next_xid();
2375                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2376                        old_xid, req->rq_xid);
2377         }
2378         ptlrpc_client_wake_req(req);
2379         cfs_spin_unlock(&req->rq_lock);
2380 }
2381
2382 /* XXX: this function and rq_status are currently unused */
2383 void ptlrpc_restart_req(struct ptlrpc_request *req)
2384 {
2385         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2386         req->rq_status = -ERESTARTSYS;
2387
2388         cfs_spin_lock(&req->rq_lock);
2389         req->rq_restart = 1;
2390         req->rq_timedout = 0;
2391         ptlrpc_client_wake_req(req);
2392         cfs_spin_unlock(&req->rq_lock);
2393 }
2394
2395 /**
2396  * Grab additional reference on a request \a req
2397  */
2398 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2399 {
2400         ENTRY;
2401         cfs_atomic_inc(&req->rq_refcount);
2402         RETURN(req);
2403 }
2404
2405 /**
2406  * Add a request to import replay_list.
2407  * Must be called under imp_lock
2408  */
2409 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2410                                       struct obd_import *imp)
2411 {
2412         cfs_list_t *tmp;
2413
2414         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2415
2416         if (req->rq_transno == 0) {
2417                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2418                 LBUG();
2419         }
2420
2421         /* clear this for new requests that were resent as well
2422            as resent replayed requests. */
2423         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2424
2425         /* don't re-add requests that have been replayed */
2426         if (!cfs_list_empty(&req->rq_replay_list))
2427                 return;
2428
2429         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2430
2431         LASSERT(imp->imp_replayable);
2432         /* Balanced in ptlrpc_free_committed, usually. */
2433         ptlrpc_request_addref(req);
2434         cfs_list_for_each_prev(tmp, &imp->imp_replay_list) {
2435                 struct ptlrpc_request *iter =
2436                         cfs_list_entry(tmp, struct ptlrpc_request,
2437                                        rq_replay_list);
2438
2439                 /* We may have duplicate transnos if we create and then
2440                  * open a file, or for closes retained if to match creating
2441                  * opens, so use req->rq_xid as a secondary key.
2442                  * (See bugs 684, 685, and 428.)
2443                  * XXX no longer needed, but all opens need transnos!
2444                  */
2445                 if (iter->rq_transno > req->rq_transno)
2446                         continue;
2447
2448                 if (iter->rq_transno == req->rq_transno) {
2449                         LASSERT(iter->rq_xid != req->rq_xid);
2450                         if (iter->rq_xid > req->rq_xid)
2451                                 continue;
2452                 }
2453
2454                 cfs_list_add(&req->rq_replay_list, &iter->rq_replay_list);
2455                 return;
2456         }
2457
2458         cfs_list_add(&req->rq_replay_list, &imp->imp_replay_list);
2459 }
2460
2461 /**
2462  * Send request and wait until it completes.
2463  * Returns request processing status.
2464  */
2465 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2466 {
2467         struct ptlrpc_request_set *set;
2468         int rc;
2469         ENTRY;
2470
2471         LASSERT(req->rq_set == NULL);
2472         LASSERT(!req->rq_receiving_reply);
2473
2474         set = ptlrpc_prep_set();
2475         if (set == NULL) {
2476                 CERROR("Unable to allocate ptlrpc set.");
2477                 RETURN(-ENOMEM);
2478         }
2479
2480         /* for distributed debugging */
2481         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2482
2483         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2484         ptlrpc_request_addref(req);
2485         ptlrpc_set_add_req(set, req);
2486         rc = ptlrpc_set_wait(set);
2487         ptlrpc_set_destroy(set);
2488
2489         RETURN(rc);
2490 }
2491
2492 struct ptlrpc_replay_async_args {
2493         int praa_old_state;
2494         int praa_old_status;
2495 };
2496
2497 /**
2498  * Callback used for replayed requests reply processing.
2499  * In case of succesful reply calls registeresd request replay callback.
2500  * In case of error restart replay process.
2501  */
2502 static int ptlrpc_replay_interpret(const struct lu_env *env,
2503                                    struct ptlrpc_request *req,
2504                                    void * data, int rc)
2505 {
2506         struct ptlrpc_replay_async_args *aa = data;
2507         struct obd_import *imp = req->rq_import;
2508
2509         ENTRY;
2510         cfs_atomic_dec(&imp->imp_replay_inflight);
2511
2512         if (!ptlrpc_client_replied(req)) {
2513                 CERROR("request replay timed out, restarting recovery\n");
2514                 GOTO(out, rc = -ETIMEDOUT);
2515         }
2516
2517         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2518             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2519              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2520                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2521
2522         /** VBR: check version failure */
2523         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2524                 /** replay was failed due to version mismatch */
2525                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2526                 cfs_spin_lock(&imp->imp_lock);
2527                 imp->imp_vbr_failed = 1;
2528                 imp->imp_no_lock_replay = 1;
2529                 cfs_spin_unlock(&imp->imp_lock);
2530                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2531         } else {
2532                 /** The transno had better not change over replay. */
2533                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2534                          lustre_msg_get_transno(req->rq_repmsg) ||
2535                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2536                          LPX64"/"LPX64"\n",
2537                          lustre_msg_get_transno(req->rq_reqmsg),
2538                          lustre_msg_get_transno(req->rq_repmsg));
2539         }
2540
2541         cfs_spin_lock(&imp->imp_lock);
2542         /** if replays by version then gap was occur on server, no trust to locks */
2543         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2544                 imp->imp_no_lock_replay = 1;
2545         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2546         cfs_spin_unlock(&imp->imp_lock);
2547         LASSERT(imp->imp_last_replay_transno);
2548
2549         /* transaction number shouldn't be bigger than the latest replayed */
2550         if (req->rq_transno > lustre_msg_get_transno(req->rq_reqmsg)) {
2551                 DEBUG_REQ(D_ERROR, req,
2552                           "Reported transno "LPU64" is bigger than the "
2553                           "replayed one: "LPU64, req->rq_transno,
2554                           lustre_msg_get_transno(req->rq_reqmsg));
2555                 GOTO(out, rc = -EINVAL);
2556         }
2557
2558         DEBUG_REQ(D_HA, req, "got rep");
2559
2560         /* let the callback do fixups, possibly including in the request */
2561         if (req->rq_replay_cb)
2562                 req->rq_replay_cb(req);
2563
2564         if (ptlrpc_client_replied(req) &&
2565             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2566                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2567                           lustre_msg_get_status(req->rq_repmsg),
2568                           aa->praa_old_status);
2569         } else {
2570                 /* Put it back for re-replay. */
2571                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2572         }
2573
2574         /*
2575          * Errors while replay can set transno to 0, but
2576          * imp_last_replay_transno shouldn't be set to 0 anyway
2577          */
2578         if (req->rq_transno == 0)
2579                 CERROR("Transno is 0 during replay!\n");
2580
2581         /* continue with recovery */
2582         rc = ptlrpc_import_recovery_state_machine(imp);
2583  out:
2584         req->rq_send_state = aa->praa_old_state;
2585
2586         if (rc != 0)
2587                 /* this replay failed, so restart recovery */
2588                 ptlrpc_connect_import(imp);
2589
2590         RETURN(rc);
2591 }
2592
2593 /**
2594  * Prepares and queues request for replay.
2595  * Adds it to ptlrpcd queue for actual sending.
2596  * Returns 0 on success.
2597  */
2598 int ptlrpc_replay_req(struct ptlrpc_request *req)
2599 {
2600         struct ptlrpc_replay_async_args *aa;
2601         ENTRY;
2602
2603         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2604
2605         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2606         aa = ptlrpc_req_async_args(req);
2607         memset(aa, 0, sizeof *aa);
2608
2609         /* Prepare request to be resent with ptlrpcd */
2610         aa->praa_old_state = req->rq_send_state;
2611         req->rq_send_state = LUSTRE_IMP_REPLAY;
2612         req->rq_phase = RQ_PHASE_NEW;
2613         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2614         if (req->rq_repmsg)
2615                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2616         req->rq_status = 0;
2617         req->rq_interpret_reply = ptlrpc_replay_interpret;
2618         /* Readjust the timeout for current conditions */
2619         ptlrpc_at_set_req_timeout(req);
2620
2621         DEBUG_REQ(D_HA, req, "REPLAY");
2622
2623         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2624         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2625
2626         ptlrpcd_add_req(req, PSCOPE_OTHER);
2627         RETURN(0);
2628 }
2629
2630 /**
2631  * Aborts all in-flight request on import \a imp sending and delayed lists
2632  */
2633 void ptlrpc_abort_inflight(struct obd_import *imp)
2634 {
2635         cfs_list_t *tmp, *n;
2636         ENTRY;
2637
2638         /* Make sure that no new requests get processed for this import.
2639          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2640          * this flag and then putting requests on sending_list or delayed_list.
2641          */
2642         cfs_spin_lock(&imp->imp_lock);
2643
2644         /* XXX locking?  Maybe we should remove each request with the list
2645          * locked?  Also, how do we know if the requests on the list are
2646          * being freed at this time?
2647          */
2648         cfs_list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2649                 struct ptlrpc_request *req =
2650                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2651
2652                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2653
2654                 cfs_spin_lock (&req->rq_lock);
2655                 if (req->rq_import_generation < imp->imp_generation) {
2656                         req->rq_err = 1;
2657                         req->rq_status = -EINTR;
2658                         ptlrpc_client_wake_req(req);
2659                 }
2660                 cfs_spin_unlock (&req->rq_lock);
2661         }
2662
2663         cfs_list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2664                 struct ptlrpc_request *req =
2665                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2666
2667                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2668
2669                 cfs_spin_lock (&req->rq_lock);
2670                 if (req->rq_import_generation < imp->imp_generation) {
2671                         req->rq_err = 1;
2672                         req->rq_status = -EINTR;
2673                         ptlrpc_client_wake_req(req);
2674                 }
2675                 cfs_spin_unlock (&req->rq_lock);
2676         }
2677
2678         /* Last chance to free reqs left on the replay list, but we
2679          * will still leak reqs that haven't committed.  */
2680         if (imp->imp_replayable)
2681                 ptlrpc_free_committed(imp);
2682
2683         cfs_spin_unlock(&imp->imp_lock);
2684
2685         EXIT;
2686 }
2687
2688 /**
2689  * Abort all uncompleted requests in request set \a set
2690  */
2691 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2692 {
2693         cfs_list_t *tmp, *pos;
2694
2695         LASSERT(set != NULL);
2696
2697         cfs_list_for_each_safe(pos, tmp, &set->set_requests) {
2698                 struct ptlrpc_request *req =
2699                         cfs_list_entry(pos, struct ptlrpc_request,
2700                                        rq_set_chain);
2701
2702                 cfs_spin_lock(&req->rq_lock);
2703                 if (req->rq_phase != RQ_PHASE_RPC) {
2704                         cfs_spin_unlock(&req->rq_lock);
2705                         continue;
2706                 }
2707
2708                 req->rq_err = 1;
2709                 req->rq_status = -EINTR;
2710                 ptlrpc_client_wake_req(req);
2711                 cfs_spin_unlock(&req->rq_lock);
2712         }
2713 }
2714
2715 static __u64 ptlrpc_last_xid;
2716 static cfs_spinlock_t ptlrpc_last_xid_lock;
2717
2718 /**
2719  * Initialize the XID for the node.  This is common among all requests on
2720  * this node, and only requires the property that it is monotonically
2721  * increasing.  It does not need to be sequential.  Since this is also used
2722  * as the RDMA match bits, it is important that a single client NOT have
2723  * the same match bits for two different in-flight requests, hence we do
2724  * NOT want to have an XID per target or similar.
2725  *
2726  * To avoid an unlikely collision between match bits after a client reboot
2727  * (which would deliver old data into the wrong RDMA buffer) initialize
2728  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2729  * If the time is clearly incorrect, we instead use a 62-bit random number.
2730  * In the worst case the random number will overflow 1M RPCs per second in
2731  * 9133 years, or permutations thereof.
2732  */
2733 #define YEAR_2004 (1ULL << 30)
2734 void ptlrpc_init_xid(void)
2735 {
2736         time_t now = cfs_time_current_sec();
2737
2738         cfs_spin_lock_init(&ptlrpc_last_xid_lock);
2739         if (now < YEAR_2004) {
2740                 cfs_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2741                 ptlrpc_last_xid >>= 2;
2742                 ptlrpc_last_xid |= (1ULL << 61);
2743         } else {
2744                 ptlrpc_last_xid = (__u64)now << 20;
2745         }
2746 }
2747
2748 /**
2749  * Increase xid and returns resultng new value to the caller.
2750  */
2751 __u64 ptlrpc_next_xid(void)
2752 {
2753         __u64 tmp;
2754         cfs_spin_lock(&ptlrpc_last_xid_lock);
2755         tmp = ++ptlrpc_last_xid;
2756         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2757         return tmp;
2758 }
2759
2760 /**
2761  * Get a glimpse at what next xid value might have been.
2762  * Returns possible next xid.
2763  */
2764 __u64 ptlrpc_sample_next_xid(void)
2765 {
2766 #if BITS_PER_LONG == 32
2767         /* need to avoid possible word tearing on 32-bit systems */
2768         __u64 tmp;
2769         cfs_spin_lock(&ptlrpc_last_xid_lock);
2770         tmp = ptlrpc_last_xid + 1;
2771         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2772         return tmp;
2773 #else
2774         /* No need to lock, since returned value is racy anyways */
2775         return ptlrpc_last_xid + 1;
2776 #endif
2777 }
2778 EXPORT_SYMBOL(ptlrpc_sample_next_xid);