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