Whamcloud - gitweb
LU-1030 osc: new IO engine implementation
[fs/lustre-release.git] / lustre / ptlrpc / client.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2012, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 /** Implementation of client-side PortalRPC interfaces */
38
39 #define DEBUG_SUBSYSTEM S_RPC
40 #ifndef __KERNEL__
41 #include <errno.h>
42 #include <signal.h>
43 #include <liblustre.h>
44 #endif
45
46 #include <obd_support.h>
47 #include <obd_class.h>
48 #include <lustre_lib.h>
49 #include <lustre_ha.h>
50 #include <lustre_import.h>
51 #include <lustre_req_layout.h>
52
53 #include "ptlrpc_internal.h"
54
55 static int ptlrpc_send_new_req(struct ptlrpc_request *req);
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         int rc;
612         rc = ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
613         if (rc)
614                 return rc;
615
616         /* For some old 1.8 clients (< 1.8.7), they will LASSERT the size of
617          * ptlrpc_body sent from server equal to local ptlrpc_body size, so we
618          * have to send old ptlrpc_body to keep interoprability with these
619          * clients.
620          *
621          * Only three kinds of server->client RPCs so far:
622          *  - LDLM_BL_CALLBACK
623          *  - LDLM_CP_CALLBACK
624          *  - LDLM_GL_CALLBACK
625          *
626          * XXX This should be removed whenever we drop the interoprability with
627          *     the these old clients.
628          */
629         if (opcode == LDLM_BL_CALLBACK || opcode == LDLM_CP_CALLBACK ||
630             opcode == LDLM_GL_CALLBACK)
631                 req_capsule_shrink(&request->rq_pill, &RMF_PTLRPC_BODY,
632                                    sizeof(struct ptlrpc_body_v2), RCL_CLIENT);
633
634         return rc;
635 }
636
637 /**
638  * Helper function to allocate new request on import \a imp
639  * and possibly using existing request from pool \a pool if provided.
640  * Returns allocated request structure with import field filled or
641  * NULL on error.
642  */
643 static inline
644 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
645                                               struct ptlrpc_request_pool *pool)
646 {
647         struct ptlrpc_request *request = NULL;
648
649         if (pool)
650                 request = ptlrpc_prep_req_from_pool(pool);
651
652         if (!request)
653                 OBD_ALLOC_PTR(request);
654
655         if (request) {
656                 LASSERTF((unsigned long)imp > 0x1000, "%p", imp);
657                 LASSERT(imp != LP_POISON);
658                 LASSERTF((unsigned long)imp->imp_client > 0x1000, "%p",
659                         imp->imp_client);
660                 LASSERT(imp->imp_client != LP_POISON);
661
662                 request->rq_import = class_import_get(imp);
663         } else {
664                 CERROR("request allocation out of memory\n");
665         }
666
667         return request;
668 }
669
670 /**
671  * Helper function for creating a request.
672  * Calls __ptlrpc_request_alloc to allocate new request sturcture and inits
673  * buffer structures according to capsule template \a format.
674  * Returns allocated request structure pointer or NULL on error.
675  */
676 static struct ptlrpc_request *
677 ptlrpc_request_alloc_internal(struct obd_import *imp,
678                               struct ptlrpc_request_pool * pool,
679                               const struct req_format *format)
680 {
681         struct ptlrpc_request *request;
682
683         request = __ptlrpc_request_alloc(imp, pool);
684         if (request == NULL)
685                 return NULL;
686
687         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
688         req_capsule_set(&request->rq_pill, format);
689         return request;
690 }
691
692 /**
693  * Allocate new request structure for import \a imp and initialize its
694  * buffer structure according to capsule template \a format.
695  */
696 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
697                                             const struct req_format *format)
698 {
699         return ptlrpc_request_alloc_internal(imp, NULL, format);
700 }
701
702 /**
703  * Allocate new request structure for import \a imp from pool \a pool and
704  * initialize its buffer structure according to capsule template \a format.
705  */
706 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
707                                             struct ptlrpc_request_pool * pool,
708                                             const struct req_format *format)
709 {
710         return ptlrpc_request_alloc_internal(imp, pool, format);
711 }
712
713 /**
714  * For requests not from pool, free memory of the request structure.
715  * For requests obtained from a pool earlier, return request back to pool.
716  */
717 void ptlrpc_request_free(struct ptlrpc_request *request)
718 {
719         if (request->rq_pool)
720                 __ptlrpc_free_req_to_pool(request);
721         else
722                 OBD_FREE_PTR(request);
723 }
724
725 /**
726  * Allocate new request for operatione \a opcode and immediatelly pack it for
727  * network transfer.
728  * Only used for simple requests like OBD_PING where the only important
729  * part of the request is operation itself.
730  * Returns allocated request or NULL on error.
731  */
732 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
733                                                 const struct req_format *format,
734                                                 __u32 version, int opcode)
735 {
736         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
737         int                    rc;
738
739         if (req) {
740                 rc = ptlrpc_request_pack(req, version, opcode);
741                 if (rc) {
742                         ptlrpc_request_free(req);
743                         req = NULL;
744                 }
745         }
746         return req;
747 }
748
749 /**
750  * Prepare request (fetched from pool \a poolif not NULL) on import \a imp
751  * for operation \a opcode. Request would contain \a count buffers.
752  * Sizes of buffers are described in array \a lengths and buffers themselves
753  * are provided by a pointer \a bufs.
754  * Returns prepared request structure pointer or NULL on error.
755  */
756 struct ptlrpc_request *
757 ptlrpc_prep_req_pool(struct obd_import *imp,
758                      __u32 version, int opcode,
759                      int count, __u32 *lengths, char **bufs,
760                      struct ptlrpc_request_pool *pool)
761 {
762         struct ptlrpc_request *request;
763         int                    rc;
764
765         request = __ptlrpc_request_alloc(imp, pool);
766         if (!request)
767                 return NULL;
768
769         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
770                                         lengths, bufs, NULL);
771         if (rc) {
772                 ptlrpc_request_free(request);
773                 request = NULL;
774         }
775         return request;
776 }
777
778 /**
779  * Same as ptlrpc_prep_req_pool, but without pool
780  */
781 struct ptlrpc_request *
782 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
783                 __u32 *lengths, char **bufs)
784 {
785         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
786                                     NULL);
787 }
788
789 /**
790  * Allocate "fake" request that would not be sent anywhere in the end.
791  * Only used as a hack because we have no other way of performing
792  * async actions in lustre between layers.
793  * Used on MDS to request object preallocations from more than one OST at a
794  * time.
795  */
796 struct ptlrpc_request *ptlrpc_prep_fakereq(struct obd_import *imp,
797                                            unsigned int timeout,
798                                            ptlrpc_interpterer_t interpreter)
799 {
800         struct ptlrpc_request *request = NULL;
801         ENTRY;
802
803         OBD_ALLOC(request, sizeof(*request));
804         if (!request) {
805                 CERROR("request allocation out of memory\n");
806                 RETURN(NULL);
807         }
808
809         request->rq_send_state = LUSTRE_IMP_FULL;
810         request->rq_type = PTL_RPC_MSG_REQUEST;
811         request->rq_import = class_import_get(imp);
812         request->rq_export = NULL;
813         request->rq_import_generation = imp->imp_generation;
814
815         request->rq_timeout = timeout;
816         request->rq_sent = cfs_time_current_sec();
817         request->rq_deadline = request->rq_sent + timeout;
818         request->rq_reply_deadline = request->rq_deadline;
819         request->rq_interpret_reply = interpreter;
820         request->rq_phase = RQ_PHASE_RPC;
821         request->rq_next_phase = RQ_PHASE_INTERPRET;
822         /* don't want reply */
823         request->rq_receiving_reply = 0;
824         request->rq_must_unlink = 0;
825         request->rq_no_delay = request->rq_no_resend = 1;
826         request->rq_fake = 1;
827
828         cfs_spin_lock_init(&request->rq_lock);
829         CFS_INIT_LIST_HEAD(&request->rq_list);
830         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
831         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
832         CFS_INIT_LIST_HEAD(&request->rq_history_list);
833         CFS_INIT_LIST_HEAD(&request->rq_exp_list);
834         cfs_waitq_init(&request->rq_reply_waitq);
835         cfs_waitq_init(&request->rq_set_waitq);
836
837         request->rq_xid = ptlrpc_next_xid();
838         cfs_atomic_set(&request->rq_refcount, 1);
839
840         RETURN(request);
841 }
842
843 /**
844  * Indicate that processing of "fake" request is finished.
845  */
846 void ptlrpc_fakereq_finished(struct ptlrpc_request *req)
847 {
848         struct ptlrpc_request_set *set = req->rq_set;
849         int wakeup = 0;
850
851         /* hold ref on the request to prevent others (ptlrpcd) to free it */
852         ptlrpc_request_addref(req);
853         cfs_list_del_init(&req->rq_list);
854
855         /* if we kill request before timeout - need adjust counter */
856         if (req->rq_phase == RQ_PHASE_RPC && set != NULL &&
857             cfs_atomic_dec_and_test(&set->set_remaining))
858                 wakeup = 1;
859
860         ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
861
862         /* Only need to call wakeup once when to be empty. */
863         if (wakeup)
864                 cfs_waitq_signal(&set->set_waitq);
865         ptlrpc_req_finished(req);
866 }
867
868 /**
869  * Allocate and initialize new request set structure.
870  * Returns a pointer to the newly allocated set structure or NULL on error.
871  */
872 struct ptlrpc_request_set *ptlrpc_prep_set(void)
873 {
874         struct ptlrpc_request_set *set;
875
876         ENTRY;
877         OBD_ALLOC(set, sizeof *set);
878         if (!set)
879                 RETURN(NULL);
880         cfs_atomic_set(&set->set_refcount, 1);
881         CFS_INIT_LIST_HEAD(&set->set_requests);
882         cfs_waitq_init(&set->set_waitq);
883         cfs_atomic_set(&set->set_new_count, 0);
884         cfs_atomic_set(&set->set_remaining, 0);
885         cfs_spin_lock_init(&set->set_new_req_lock);
886         CFS_INIT_LIST_HEAD(&set->set_new_requests);
887         CFS_INIT_LIST_HEAD(&set->set_cblist);
888         set->set_max_inflight = UINT_MAX;
889         set->set_producer     = NULL;
890         set->set_producer_arg = NULL;
891         set->set_rc           = 0;
892
893         RETURN(set);
894 }
895
896 /**
897  * Allocate and initialize new request set structure with flow control
898  * extension. This extension allows to control the number of requests in-flight
899  * for the whole set. A callback function to generate requests must be provided
900  * and the request set will keep the number of requests sent over the wire to
901  * @max_inflight.
902  * Returns a pointer to the newly allocated set structure or NULL on error.
903  */
904 struct ptlrpc_request_set *ptlrpc_prep_fcset(int max, set_producer_func func,
905                                              void *arg)
906
907 {
908         struct ptlrpc_request_set *set;
909
910         set = ptlrpc_prep_set();
911         if (!set)
912                 RETURN(NULL);
913
914         set->set_max_inflight  = max;
915         set->set_producer      = func;
916         set->set_producer_arg  = arg;
917
918         RETURN(set);
919 }
920 EXPORT_SYMBOL(ptlrpc_prep_fcset);
921
922 /**
923  * Wind down and free request set structure previously allocated with
924  * ptlrpc_prep_set.
925  * Ensures that all requests on the set have completed and removes
926  * all requests from the request list in a set.
927  * If any unsent request happen to be on the list, pretends that they got
928  * an error in flight and calls their completion handler.
929  */
930 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
931 {
932         cfs_list_t       *tmp;
933         cfs_list_t       *next;
934         int               expected_phase;
935         int               n = 0;
936         ENTRY;
937
938         /* Requests on the set should either all be completed, or all be new */
939         expected_phase = (cfs_atomic_read(&set->set_remaining) == 0) ?
940                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
941         cfs_list_for_each (tmp, &set->set_requests) {
942                 struct ptlrpc_request *req =
943                         cfs_list_entry(tmp, struct ptlrpc_request,
944                                        rq_set_chain);
945
946                 LASSERT(req->rq_phase == expected_phase);
947                 n++;
948         }
949
950         LASSERTF(cfs_atomic_read(&set->set_remaining) == 0 || 
951                  cfs_atomic_read(&set->set_remaining) == n, "%d / %d\n",
952                  cfs_atomic_read(&set->set_remaining), n);
953
954         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
955                 struct ptlrpc_request *req =
956                         cfs_list_entry(tmp, struct ptlrpc_request,
957                                        rq_set_chain);
958                 cfs_list_del_init(&req->rq_set_chain);
959
960                 LASSERT(req->rq_phase == expected_phase);
961
962                 if (req->rq_phase == RQ_PHASE_NEW) {
963                         ptlrpc_req_interpret(NULL, req, -EBADR);
964                         cfs_atomic_dec(&set->set_remaining);
965                 }
966
967                 cfs_spin_lock(&req->rq_lock);
968                 req->rq_set = NULL;
969                 req->rq_invalid_rqset = 0;
970                 cfs_spin_unlock(&req->rq_lock);
971
972                 ptlrpc_req_finished (req);
973         }
974
975         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
976
977         ptlrpc_reqset_put(set);
978         EXIT;
979 }
980
981 /**
982  * Add a callback function \a fn to the set.
983  * This function would be called when all requests on this set are completed.
984  * The function will be passed \a data argument.
985  */
986 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
987                       set_interpreter_func fn, void *data)
988 {
989         struct ptlrpc_set_cbdata *cbdata;
990
991         OBD_ALLOC_PTR(cbdata);
992         if (cbdata == NULL)
993                 RETURN(-ENOMEM);
994
995         cbdata->psc_interpret = fn;
996         cbdata->psc_data = data;
997         cfs_list_add_tail(&cbdata->psc_item, &set->set_cblist);
998
999         RETURN(0);
1000 }
1001
1002 /**
1003  * Add a new request to the general purpose request set.
1004  * Assumes request reference from the caller.
1005  */
1006 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
1007                         struct ptlrpc_request *req)
1008 {
1009         char jobid[JOBSTATS_JOBID_SIZE];
1010         LASSERT(cfs_list_empty(&req->rq_set_chain));
1011
1012         /* The set takes over the caller's request reference */
1013         cfs_list_add_tail(&req->rq_set_chain, &set->set_requests);
1014         req->rq_set = set;
1015         cfs_atomic_inc(&set->set_remaining);
1016         req->rq_queued_time = cfs_time_current();
1017
1018         if (req->rq_reqmsg) {
1019                 lustre_get_jobid(jobid);
1020                 lustre_msg_set_jobid(req->rq_reqmsg, jobid);
1021         }
1022
1023         if (set->set_producer != NULL)
1024                 /* If the request set has a producer callback, the RPC must be
1025                  * sent straight away */
1026                 ptlrpc_send_new_req(req);
1027 }
1028
1029 /**
1030  * Add a request to a request with dedicated server thread
1031  * and wake the thread to make any necessary processing.
1032  * Currently only used for ptlrpcd.
1033  */
1034 void ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
1035                            struct ptlrpc_request *req)
1036 {
1037         struct ptlrpc_request_set *set = pc->pc_set;
1038         int count, i;
1039
1040         LASSERT(req->rq_set == NULL);
1041         LASSERT(cfs_test_bit(LIOD_STOP, &pc->pc_flags) == 0);
1042
1043         cfs_spin_lock(&set->set_new_req_lock);
1044         /*
1045          * The set takes over the caller's request reference.
1046          */
1047         req->rq_set = set;
1048         req->rq_queued_time = cfs_time_current();
1049         cfs_list_add_tail(&req->rq_set_chain, &set->set_new_requests);
1050         count = cfs_atomic_inc_return(&set->set_new_count);
1051         cfs_spin_unlock(&set->set_new_req_lock);
1052
1053         /* Only need to call wakeup once for the first entry. */
1054         if (count == 1) {
1055                 cfs_waitq_signal(&set->set_waitq);
1056
1057                 /* XXX: It maybe unnecessary to wakeup all the partners. But to
1058                  *      guarantee the async RPC can be processed ASAP, we have
1059                  *      no other better choice. It maybe fixed in future. */
1060                 for (i = 0; i < pc->pc_npartners; i++)
1061                         cfs_waitq_signal(&pc->pc_partners[i]->pc_set->set_waitq);
1062         }
1063 }
1064
1065 /**
1066  * Based on the current state of the import, determine if the request
1067  * can be sent, is an error, or should be delayed.
1068  *
1069  * Returns true if this request should be delayed. If false, and
1070  * *status is set, then the request can not be sent and *status is the
1071  * error code.  If false and status is 0, then request can be sent.
1072  *
1073  * The imp->imp_lock must be held.
1074  */
1075 static int ptlrpc_import_delay_req(struct obd_import *imp,
1076                                    struct ptlrpc_request *req, int *status)
1077 {
1078         int delay = 0;
1079         ENTRY;
1080
1081         LASSERT (status != NULL);
1082         *status = 0;
1083
1084         if (req->rq_ctx_init || req->rq_ctx_fini) {
1085                 /* always allow ctx init/fini rpc go through */
1086         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
1087                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
1088                 *status = -EIO;
1089                 LBUG();
1090         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
1091                 DEBUG_REQ(D_ERROR, req, "IMP_CLOSED ");
1092                 *status = -EIO;
1093         } else if (ptlrpc_send_limit_expired(req)) {
1094                 /* probably doesn't need to be a D_ERROR after initial testing */
1095                 DEBUG_REQ(D_ERROR, req, "send limit expired ");
1096                 *status = -EIO;
1097         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
1098                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
1099                 /* allow CONNECT even if import is invalid */ ;
1100                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
1101                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
1102                         *status = -EIO;
1103                 }
1104         } else if (imp->imp_invalid || imp->imp_obd->obd_no_recov) {
1105                 if (!imp->imp_deactive)
1106                           DEBUG_REQ(D_ERROR, req, "IMP_INVALID");
1107                 *status = -ESHUTDOWN; /* bz 12940 */
1108         } else if (req->rq_import_generation != imp->imp_generation) {
1109                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
1110                 *status = -EIO;
1111         } else if (req->rq_send_state != imp->imp_state) {
1112                 /* invalidate in progress - any requests should be drop */
1113                 if (cfs_atomic_read(&imp->imp_inval_count) != 0) {
1114                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
1115                         *status = -EIO;
1116                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
1117                         *status = -EWOULDBLOCK;
1118                 } else {
1119                         delay = 1;
1120                 }
1121         }
1122
1123         RETURN(delay);
1124 }
1125
1126 /**
1127  * Decide if the eror message regarding provided request \a req
1128  * should be printed to the console or not.
1129  * Makes it's decision on request status and other properties.
1130  * Returns 1 to print error on the system console or 0 if not.
1131  */
1132 static int ptlrpc_console_allow(struct ptlrpc_request *req)
1133 {
1134         __u32 opc;
1135         int err;
1136
1137         /* Fake requests include no rq_reqmsg */
1138         if (req->rq_fake)
1139                 return 0;
1140
1141         LASSERT(req->rq_reqmsg != NULL);
1142         opc = lustre_msg_get_opc(req->rq_reqmsg);
1143
1144         /* Suppress particular reconnect errors which are to be expected.  No
1145          * errors are suppressed for the initial connection on an import */
1146         if ((lustre_handle_is_used(&req->rq_import->imp_remote_handle)) &&
1147             (opc == OST_CONNECT || opc == MDS_CONNECT || opc == MGS_CONNECT)) {
1148
1149                 /* Suppress timed out reconnect requests */
1150                 if (req->rq_timedout)
1151                         return 0;
1152
1153                 /* Suppress unavailable/again reconnect requests */
1154                 err = lustre_msg_get_status(req->rq_repmsg);
1155                 if (err == -ENODEV || err == -EAGAIN)
1156                         return 0;
1157         }
1158
1159         return 1;
1160 }
1161
1162 /**
1163  * Check request processing status.
1164  * Returns the status.
1165  */
1166 static int ptlrpc_check_status(struct ptlrpc_request *req)
1167 {
1168         int err;
1169         ENTRY;
1170
1171         err = lustre_msg_get_status(req->rq_repmsg);
1172         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
1173                 struct obd_import *imp = req->rq_import;
1174                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
1175                 LCONSOLE_ERROR_MSG(0x011,"an error occurred while communicating"
1176                                 " with %s. The %s operation failed with %d\n",
1177                                 libcfs_nid2str(imp->imp_connection->c_peer.nid),
1178                                 ll_opcode2str(opc), err);
1179                 RETURN(err < 0 ? err : -EINVAL);
1180         }
1181
1182         if (err < 0) {
1183                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1184         } else if (err > 0) {
1185                 /* XXX: translate this error from net to host */
1186                 DEBUG_REQ(D_INFO, req, "status is %d", err);
1187         }
1188
1189         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
1190                 struct obd_import *imp = req->rq_import;
1191                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
1192
1193                 if (ptlrpc_console_allow(req))
1194                         LCONSOLE_ERROR_MSG(0x011,"an error occurred while "
1195                                            "communicating with %s. The %s "
1196                                            "operation failed with %d\n",
1197                                            libcfs_nid2str(
1198                                            imp->imp_connection->c_peer.nid),
1199                                            ll_opcode2str(opc), err);
1200
1201                 RETURN(err < 0 ? err : -EINVAL);
1202         }
1203
1204         RETURN(err);
1205 }
1206
1207 /**
1208  * save pre-versions of objects into request for replay.
1209  * Versions are obtained from server reply.
1210  * used for VBR.
1211  */
1212 static void ptlrpc_save_versions(struct ptlrpc_request *req)
1213 {
1214         struct lustre_msg *repmsg = req->rq_repmsg;
1215         struct lustre_msg *reqmsg = req->rq_reqmsg;
1216         __u64 *versions = lustre_msg_get_versions(repmsg);
1217         ENTRY;
1218
1219         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)
1220                 return;
1221
1222         LASSERT(versions);
1223         lustre_msg_set_versions(reqmsg, versions);
1224         CDEBUG(D_INFO, "Client save versions ["LPX64"/"LPX64"]\n",
1225                versions[0], versions[1]);
1226
1227         EXIT;
1228 }
1229
1230 /**
1231  * Callback function called when client receives RPC reply for \a req.
1232  * Returns 0 on success or error code.
1233  * The return alue would be assigned to req->rq_status by the caller
1234  * as request processing status.
1235  * This function also decides if the request needs to be saved for later replay.
1236  */
1237 static int after_reply(struct ptlrpc_request *req)
1238 {
1239         struct obd_import *imp = req->rq_import;
1240         struct obd_device *obd = req->rq_import->imp_obd;
1241         int rc;
1242         struct timeval work_start;
1243         long timediff;
1244         ENTRY;
1245
1246         LASSERT(obd != NULL);
1247         /* repbuf must be unlinked */
1248         LASSERT(!req->rq_receiving_reply && !req->rq_must_unlink);
1249
1250         if (req->rq_reply_truncate) {
1251                 if (ptlrpc_no_resend(req)) {
1252                         DEBUG_REQ(D_ERROR, req, "reply buffer overflow,"
1253                                   " expected: %d, actual size: %d",
1254                                   req->rq_nob_received, req->rq_repbuf_len);
1255                         RETURN(-EOVERFLOW);
1256                 }
1257
1258                 sptlrpc_cli_free_repbuf(req);
1259                 /* Pass the required reply buffer size (include
1260                  * space for early reply).
1261                  * NB: no need to roundup because alloc_repbuf
1262                  * will roundup it */
1263                 req->rq_replen       = req->rq_nob_received;
1264                 req->rq_nob_received = 0;
1265                 req->rq_resend       = 1;
1266                 RETURN(0);
1267         }
1268
1269         /*
1270          * NB Until this point, the whole of the incoming message,
1271          * including buflens, status etc is in the sender's byte order.
1272          */
1273         rc = sptlrpc_cli_unwrap_reply(req);
1274         if (rc) {
1275                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
1276                 RETURN(rc);
1277         }
1278
1279         /*
1280          * Security layer unwrap might ask resend this request.
1281          */
1282         if (req->rq_resend)
1283                 RETURN(0);
1284
1285         rc = unpack_reply(req);
1286         if (rc)
1287                 RETURN(rc);
1288
1289         cfs_gettimeofday(&work_start);
1290         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
1291         if (obd->obd_svc_stats != NULL) {
1292                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
1293                                     timediff);
1294                 ptlrpc_lprocfs_rpc_sent(req, timediff);
1295         }
1296
1297         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
1298             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
1299                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
1300                           lustre_msg_get_type(req->rq_repmsg));
1301                 RETURN(-EPROTO);
1302         }
1303
1304         if (lustre_msg_get_opc(req->rq_reqmsg) != OBD_PING)
1305                 CFS_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, cfs_fail_val);
1306         ptlrpc_at_adj_service(req, lustre_msg_get_timeout(req->rq_repmsg));
1307         ptlrpc_at_adj_net_latency(req,
1308                                   lustre_msg_get_service_time(req->rq_repmsg));
1309
1310         rc = ptlrpc_check_status(req);
1311         imp->imp_connect_error = rc;
1312
1313         if (rc) {
1314                 /*
1315                  * Either we've been evicted, or the server has failed for
1316                  * some reason. Try to reconnect, and if that fails, punt to
1317                  * the upcall.
1318                  */
1319                 if (ll_rpc_recoverable_error(rc)) {
1320                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
1321                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
1322                                 RETURN(rc);
1323                         }
1324                         ptlrpc_request_handle_notconn(req);
1325                         RETURN(rc);
1326                 }
1327         } else {
1328                 /*
1329                  * Let's look if server sent slv. Do it only for RPC with
1330                  * rc == 0.
1331                  */
1332                 ldlm_cli_update_pool(req);
1333         }
1334
1335         /*
1336          * Store transno in reqmsg for replay.
1337          */
1338         if (!(lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY)) {
1339                 req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1340                 lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1341         }
1342
1343         if (imp->imp_replayable) {
1344                 cfs_spin_lock(&imp->imp_lock);
1345                 /*
1346                  * No point in adding already-committed requests to the replay
1347                  * list, we will just remove them immediately. b=9829
1348                  */
1349                 if (req->rq_transno != 0 &&
1350                     (req->rq_transno >
1351                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1352                      req->rq_replay)) {
1353                         /** version recovery */
1354                         ptlrpc_save_versions(req);
1355                         ptlrpc_retain_replayable_request(req, imp);
1356                 } else if (req->rq_commit_cb != NULL) {
1357                         cfs_spin_unlock(&imp->imp_lock);
1358                         req->rq_commit_cb(req);
1359                         cfs_spin_lock(&imp->imp_lock);
1360                 }
1361
1362                 /*
1363                  * Replay-enabled imports return commit-status information.
1364                  */
1365                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1366                         imp->imp_peer_committed_transno =
1367                                 lustre_msg_get_last_committed(req->rq_repmsg);
1368                 }
1369                 ptlrpc_free_committed(imp);
1370
1371                 if (req->rq_transno > imp->imp_peer_committed_transno)
1372                         ptlrpc_pinger_commit_expected(imp);
1373
1374                 cfs_spin_unlock(&imp->imp_lock);
1375         }
1376
1377         RETURN(rc);
1378 }
1379
1380 /**
1381  * Helper function to send request \a req over the network for the first time
1382  * Also adjusts request phase.
1383  * Returns 0 on success or error code.
1384  */
1385 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1386 {
1387         struct obd_import     *imp = req->rq_import;
1388         int rc;
1389         ENTRY;
1390
1391         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1392         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()) &&
1393             (!req->rq_generation_set ||
1394              req->rq_import_generation == imp->imp_generation))
1395                 RETURN (0);
1396
1397         ptlrpc_rqphase_move(req, RQ_PHASE_RPC);
1398
1399         cfs_spin_lock(&imp->imp_lock);
1400
1401         if (!req->rq_generation_set)
1402                 req->rq_import_generation = imp->imp_generation;
1403
1404         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1405                 cfs_spin_lock(&req->rq_lock);
1406                 req->rq_waiting = 1;
1407                 cfs_spin_unlock(&req->rq_lock);
1408
1409                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1410                           "(%s != %s)", lustre_msg_get_status(req->rq_reqmsg),
1411                           ptlrpc_import_state_name(req->rq_send_state),
1412                           ptlrpc_import_state_name(imp->imp_state));
1413                 LASSERT(cfs_list_empty(&req->rq_list));
1414                 cfs_list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1415                 cfs_atomic_inc(&req->rq_import->imp_inflight);
1416                 cfs_spin_unlock(&imp->imp_lock);
1417                 RETURN(0);
1418         }
1419
1420         if (rc != 0) {
1421                 cfs_spin_unlock(&imp->imp_lock);
1422                 req->rq_status = rc;
1423                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1424                 RETURN(rc);
1425         }
1426
1427         LASSERT(cfs_list_empty(&req->rq_list));
1428         cfs_list_add_tail(&req->rq_list, &imp->imp_sending_list);
1429         cfs_atomic_inc(&req->rq_import->imp_inflight);
1430         cfs_spin_unlock(&imp->imp_lock);
1431
1432         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1433
1434         rc = sptlrpc_req_refresh_ctx(req, -1);
1435         if (rc) {
1436                 if (req->rq_err) {
1437                         req->rq_status = rc;
1438                         RETURN(1);
1439                 } else {
1440                         req->rq_wait_ctx = 1;
1441                         RETURN(0);
1442                 }
1443         }
1444
1445         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1446                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1447                imp->imp_obd->obd_uuid.uuid,
1448                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1449                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1450                lustre_msg_get_opc(req->rq_reqmsg));
1451
1452         rc = ptl_send_rpc(req, 0);
1453         if (rc) {
1454                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1455                 req->rq_net_err = 1;
1456                 RETURN(rc);
1457         }
1458         RETURN(0);
1459 }
1460
1461 static inline int ptlrpc_set_producer(struct ptlrpc_request_set *set)
1462 {
1463         int remaining, rc;
1464         ENTRY;
1465
1466         LASSERT(set->set_producer != NULL);
1467
1468         remaining = cfs_atomic_read(&set->set_remaining);
1469
1470         /* populate the ->set_requests list with requests until we
1471          * reach the maximum number of RPCs in flight for this set */
1472         while (cfs_atomic_read(&set->set_remaining) < set->set_max_inflight) {
1473                 rc = set->set_producer(set, set->set_producer_arg);
1474                 if (rc == -ENOENT) {
1475                         /* no more RPC to produce */
1476                         set->set_producer     = NULL;
1477                         set->set_producer_arg = NULL;
1478                         RETURN(0);
1479                 }
1480         }
1481
1482         RETURN((cfs_atomic_read(&set->set_remaining) - remaining));
1483 }
1484
1485 /**
1486  * this sends any unsent RPCs in \a set and returns 1 if all are sent
1487  * and no more replies are expected.
1488  * (it is possible to get less replies than requests sent e.g. due to timed out
1489  * requests or requests that we had trouble to send out)
1490  */
1491 int ptlrpc_check_set(const struct lu_env *env, struct ptlrpc_request_set *set)
1492 {
1493         cfs_list_t *tmp, *next;
1494         int force_timer_recalc = 0;
1495         ENTRY;
1496
1497         if (cfs_atomic_read(&set->set_remaining) == 0)
1498                 RETURN(1);
1499
1500         cfs_list_for_each_safe(tmp, next, &set->set_requests) {
1501                 struct ptlrpc_request *req =
1502                         cfs_list_entry(tmp, struct ptlrpc_request,
1503                                        rq_set_chain);
1504                 struct obd_import *imp = req->rq_import;
1505                 int unregistered = 0;
1506                 int rc = 0;
1507
1508                 if (req->rq_phase == RQ_PHASE_NEW &&
1509                     ptlrpc_send_new_req(req)) {
1510                         force_timer_recalc = 1;
1511                 }
1512
1513                 /* delayed send - skip */
1514                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1515                         continue;
1516
1517                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1518                       req->rq_phase == RQ_PHASE_BULK ||
1519                       req->rq_phase == RQ_PHASE_INTERPRET ||
1520                       req->rq_phase == RQ_PHASE_UNREGISTERING ||
1521                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1522                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1523                         LBUG();
1524                 }
1525
1526                 if (req->rq_phase == RQ_PHASE_UNREGISTERING) {
1527                         LASSERT(req->rq_next_phase != req->rq_phase);
1528                         LASSERT(req->rq_next_phase != RQ_PHASE_UNDEFINED);
1529
1530                         /*
1531                          * Skip processing until reply is unlinked. We
1532                          * can't return to pool before that and we can't
1533                          * call interpret before that. We need to make
1534                          * sure that all rdma transfers finished and will
1535                          * not corrupt any data.
1536                          */
1537                         if (ptlrpc_client_recv_or_unlink(req) ||
1538                             ptlrpc_client_bulk_active(req))
1539                                 continue;
1540
1541                         /*
1542                          * Turn fail_loc off to prevent it from looping
1543                          * forever.
1544                          */
1545                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
1546                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK,
1547                                                      OBD_FAIL_ONCE);
1548                         }
1549                         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK)) {
1550                                 OBD_FAIL_CHECK_ORSET(OBD_FAIL_PTLRPC_LONG_BULK_UNLINK,
1551                                                      OBD_FAIL_ONCE);
1552                         }
1553
1554                         /*
1555                          * Move to next phase if reply was successfully
1556                          * unlinked.
1557                          */
1558                         ptlrpc_rqphase_move(req, req->rq_next_phase);
1559                 }
1560
1561                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1562                         continue;
1563
1564                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1565                         GOTO(interpret, req->rq_status);
1566
1567                 /*
1568                  * Note that this also will start async reply unlink.
1569                  */
1570                 if (req->rq_net_err && !req->rq_timedout) {
1571                         ptlrpc_expire_one_request(req, 1);
1572
1573                         /*
1574                          * Check if we still need to wait for unlink.
1575                          */
1576                         if (ptlrpc_client_recv_or_unlink(req) ||
1577                             ptlrpc_client_bulk_active(req))
1578                                 continue;
1579                         /* If there is no need to resend, fail it now. */
1580                         if (req->rq_no_resend) {
1581                                 if (req->rq_status == 0)
1582                                         req->rq_status = -EIO;
1583                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1584                                 GOTO(interpret, req->rq_status);
1585                         } else {
1586                                 continue;
1587                         }
1588                 }
1589
1590                 if (req->rq_err) {
1591                         cfs_spin_lock(&req->rq_lock);
1592                         req->rq_replied = 0;
1593                         cfs_spin_unlock(&req->rq_lock);
1594                         if (req->rq_status == 0)
1595                                 req->rq_status = -EIO;
1596                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1597                         GOTO(interpret, req->rq_status);
1598                 }
1599
1600                 /* ptlrpc_set_wait->l_wait_event sets lwi_allow_intr
1601                  * so it sets rq_intr regardless of individual rpc
1602                  * timeouts. The synchronous IO waiting path sets 
1603                  * rq_intr irrespective of whether ptlrpcd
1604                  * has seen a timeout.  Our policy is to only interpret
1605                  * interrupted rpcs after they have timed out, so we
1606                  * need to enforce that here.
1607                  */
1608
1609                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1610                                      req->rq_wait_ctx)) {
1611                         req->rq_status = -EINTR;
1612                         ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1613                         GOTO(interpret, req->rq_status);
1614                 }
1615
1616                 if (req->rq_phase == RQ_PHASE_RPC) {
1617                         if (req->rq_timedout || req->rq_resend ||
1618                             req->rq_waiting || req->rq_wait_ctx) {
1619                                 int status;
1620
1621                                 if (!ptlrpc_unregister_reply(req, 1))
1622                                         continue;
1623
1624                                 cfs_spin_lock(&imp->imp_lock);
1625                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1626                                         /* put on delay list - only if we wait
1627                                          * recovery finished - before send */
1628                                         cfs_list_del_init(&req->rq_list);
1629                                         cfs_list_add_tail(&req->rq_list,
1630                                                           &imp-> \
1631                                                           imp_delayed_list);
1632                                         cfs_spin_unlock(&imp->imp_lock);
1633                                         continue;
1634                                 }
1635
1636                                 if (status != 0)  {
1637                                         req->rq_status = status;
1638                                         ptlrpc_rqphase_move(req,
1639                                                 RQ_PHASE_INTERPRET);
1640                                         cfs_spin_unlock(&imp->imp_lock);
1641                                         GOTO(interpret, req->rq_status);
1642                                 }
1643                                 if (ptlrpc_no_resend(req) && !req->rq_wait_ctx) {
1644                                         req->rq_status = -ENOTCONN;
1645                                         ptlrpc_rqphase_move(req,
1646                                                 RQ_PHASE_INTERPRET);
1647                                         cfs_spin_unlock(&imp->imp_lock);
1648                                         GOTO(interpret, req->rq_status);
1649                                 }
1650
1651                                 cfs_list_del_init(&req->rq_list);
1652                                 cfs_list_add_tail(&req->rq_list,
1653                                               &imp->imp_sending_list);
1654
1655                                 cfs_spin_unlock(&imp->imp_lock);
1656
1657                                 cfs_spin_lock(&req->rq_lock);
1658                                 req->rq_waiting = 0;
1659                                 cfs_spin_unlock(&req->rq_lock);
1660
1661                                 if (req->rq_timedout || req->rq_resend) {
1662                                         /* This is re-sending anyways,
1663                                          * let's mark req as resend. */
1664                                         cfs_spin_lock(&req->rq_lock);
1665                                         req->rq_resend = 1;
1666                                         cfs_spin_unlock(&req->rq_lock);
1667                                         if (req->rq_bulk) {
1668                                                 __u64 old_xid;
1669
1670                                                 if (!ptlrpc_unregister_bulk(req, 1))
1671                                                         continue;
1672
1673                                                 /* ensure previous bulk fails */
1674                                                 old_xid = req->rq_xid;
1675                                                 req->rq_xid = ptlrpc_next_xid();
1676                                                 CDEBUG(D_HA, "resend bulk "
1677                                                        "old x"LPU64
1678                                                        " new x"LPU64"\n",
1679                                                        old_xid, req->rq_xid);
1680                                         }
1681                                 }
1682                                 /*
1683                                  * rq_wait_ctx is only touched by ptlrpcd,
1684                                  * so no lock is needed here.
1685                                  */
1686                                 status = sptlrpc_req_refresh_ctx(req, -1);
1687                                 if (status) {
1688                                         if (req->rq_err) {
1689                                                 req->rq_status = status;
1690                                                 cfs_spin_lock(&req->rq_lock);
1691                                                 req->rq_wait_ctx = 0;
1692                                                 cfs_spin_unlock(&req->rq_lock);
1693                                                 force_timer_recalc = 1;
1694                                         } else {
1695                                                 cfs_spin_lock(&req->rq_lock);
1696                                                 req->rq_wait_ctx = 1;
1697                                                 cfs_spin_unlock(&req->rq_lock);
1698                                         }
1699
1700                                         continue;
1701                                 } else {
1702                                         cfs_spin_lock(&req->rq_lock);
1703                                         req->rq_wait_ctx = 0;
1704                                         cfs_spin_unlock(&req->rq_lock);
1705                                 }
1706
1707                                 rc = ptl_send_rpc(req, 0);
1708                                 if (rc) {
1709                                         DEBUG_REQ(D_HA, req, "send failed (%d)",
1710                                                   rc);
1711                                         force_timer_recalc = 1;
1712                                         cfs_spin_lock(&req->rq_lock);
1713                                         req->rq_net_err = 1;
1714                                         cfs_spin_unlock(&req->rq_lock);
1715                                 }
1716                                 /* need to reset the timeout */
1717                                 force_timer_recalc = 1;
1718                         }
1719
1720                         cfs_spin_lock(&req->rq_lock);
1721
1722                         if (ptlrpc_client_early(req)) {
1723                                 ptlrpc_at_recv_early_reply(req);
1724                                 cfs_spin_unlock(&req->rq_lock);
1725                                 continue;
1726                         }
1727
1728                         /* Still waiting for a reply? */
1729                         if (ptlrpc_client_recv(req)) {
1730                                 cfs_spin_unlock(&req->rq_lock);
1731                                 continue;
1732                         }
1733
1734                         /* Did we actually receive a reply? */
1735                         if (!ptlrpc_client_replied(req)) {
1736                                 cfs_spin_unlock(&req->rq_lock);
1737                                 continue;
1738                         }
1739
1740                         cfs_spin_unlock(&req->rq_lock);
1741
1742                         /* unlink from net because we are going to
1743                          * swab in-place of reply buffer */
1744                         unregistered = ptlrpc_unregister_reply(req, 1);
1745                         if (!unregistered)
1746                                 continue;
1747
1748                         req->rq_status = after_reply(req);
1749                         if (req->rq_resend)
1750                                 continue;
1751
1752                         /* If there is no bulk associated with this request,
1753                          * then we're done and should let the interpreter
1754                          * process the reply. Similarly if the RPC returned
1755                          * an error, and therefore the bulk will never arrive.
1756                          */
1757                         if (req->rq_bulk == NULL || req->rq_status < 0) {
1758                                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1759                                 GOTO(interpret, req->rq_status);
1760                         }
1761
1762                         ptlrpc_rqphase_move(req, RQ_PHASE_BULK);
1763                 }
1764
1765                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1766                 if (ptlrpc_client_bulk_active(req))
1767                         continue;
1768
1769                 if (!req->rq_bulk->bd_success) {
1770                         /* The RPC reply arrived OK, but the bulk screwed
1771                          * up!  Dead weird since the server told us the RPC
1772                          * was good after getting the REPLY for her GET or
1773                          * the ACK for her PUT. */
1774                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1775                         req->rq_status = -EIO;
1776                 }
1777
1778                 ptlrpc_rqphase_move(req, RQ_PHASE_INTERPRET);
1779
1780         interpret:
1781                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1782
1783                 /* This moves to "unregistering" phase we need to wait for
1784                  * reply unlink. */
1785                 if (!unregistered && !ptlrpc_unregister_reply(req, 1)) {
1786                         /* start async bulk unlink too */
1787                         ptlrpc_unregister_bulk(req, 1);
1788                         continue;
1789                 }
1790
1791                 if (!ptlrpc_unregister_bulk(req, 1))
1792                         continue;
1793
1794                 /* When calling interpret receiving already should be
1795                  * finished. */
1796                 LASSERT(!req->rq_receiving_reply);
1797
1798                 ptlrpc_req_interpret(env, req, req->rq_status);
1799
1800                 ptlrpc_rqphase_move(req, RQ_PHASE_COMPLETE);
1801
1802                 CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:"
1803                        "opc %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1804                        imp->imp_obd->obd_uuid.uuid,
1805                        req->rq_reqmsg ? lustre_msg_get_status(req->rq_reqmsg):-1,
1806                        req->rq_xid,
1807                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1808                        req->rq_reqmsg ? lustre_msg_get_opc(req->rq_reqmsg) : -1);
1809
1810                 cfs_spin_lock(&imp->imp_lock);
1811                 /* Request already may be not on sending or delaying list. This
1812                  * may happen in the case of marking it erroneous for the case
1813                  * ptlrpc_import_delay_req(req, status) find it impossible to
1814                  * allow sending this rpc and returns *status != 0. */
1815                 if (!cfs_list_empty(&req->rq_list)) {
1816                         cfs_list_del_init(&req->rq_list);
1817                         cfs_atomic_dec(&imp->imp_inflight);
1818                 }
1819                 cfs_spin_unlock(&imp->imp_lock);
1820
1821                 cfs_atomic_dec(&set->set_remaining);
1822                 cfs_waitq_broadcast(&imp->imp_recovery_waitq);
1823
1824                 if (set->set_producer) {
1825                         /* produce a new request if possible */
1826                         if (ptlrpc_set_producer(set) > 0)
1827                                 force_timer_recalc = 1;
1828
1829                         /* free the request that has just been completed
1830                          * in order not to pollute set->set_requests */
1831                         cfs_list_del_init(&req->rq_set_chain);
1832                         cfs_spin_lock(&req->rq_lock);
1833                         req->rq_set = NULL;
1834                         req->rq_invalid_rqset = 0;
1835                         cfs_spin_unlock(&req->rq_lock);
1836
1837                         /* record rq_status to compute the final status later */
1838                         if (req->rq_status != 0)
1839                                 set->set_rc = req->rq_status;
1840                         ptlrpc_req_finished(req);
1841                 }
1842         }
1843
1844         /* If we hit an error, we want to recover promptly. */
1845         RETURN(cfs_atomic_read(&set->set_remaining) == 0 || force_timer_recalc);
1846 }
1847
1848 /**
1849  * Time out request \a req. is \a async_unlink is set, that means do not wait
1850  * until LNet actually confirms network buffer unlinking.
1851  * Return 1 if we should give up further retrying attempts or 0 otherwise.
1852  */
1853 int ptlrpc_expire_one_request(struct ptlrpc_request *req, int async_unlink)
1854 {
1855         struct obd_import *imp = req->rq_import;
1856         int rc = 0;
1857         ENTRY;
1858
1859         cfs_spin_lock(&req->rq_lock);
1860         req->rq_timedout = 1;
1861         cfs_spin_unlock(&req->rq_lock);
1862
1863         DEBUG_REQ(req->rq_fake ? D_INFO : D_WARNING, req, "Request "
1864                   " sent has %s: [sent "CFS_DURATION_T"/"
1865                   "real "CFS_DURATION_T"]",
1866                   req->rq_net_err ? "failed due to network error" :
1867                      ((req->rq_real_sent == 0 ||
1868                        cfs_time_before(req->rq_real_sent, req->rq_sent) ||
1869                        cfs_time_aftereq(req->rq_real_sent, req->rq_deadline)) ?
1870                       "timed out for sent delay" : "timed out for slow reply"),
1871                   req->rq_sent, req->rq_real_sent);
1872
1873         if (imp != NULL && obd_debug_peer_on_timeout)
1874                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1875
1876         ptlrpc_unregister_reply(req, async_unlink);
1877         ptlrpc_unregister_bulk(req, async_unlink);
1878
1879         if (obd_dump_on_timeout)
1880                 libcfs_debug_dumplog();
1881
1882         if (imp == NULL) {
1883                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1884                 RETURN(1);
1885         }
1886
1887         if (req->rq_fake)
1888                RETURN(1);
1889
1890         cfs_atomic_inc(&imp->imp_timeouts);
1891
1892         /* The DLM server doesn't want recovery run on its imports. */
1893         if (imp->imp_dlm_fake)
1894                 RETURN(1);
1895
1896         /* If this request is for recovery or other primordial tasks,
1897          * then error it out here. */
1898         if (req->rq_ctx_init || req->rq_ctx_fini ||
1899             req->rq_send_state != LUSTRE_IMP_FULL ||
1900             imp->imp_obd->obd_no_recov) {
1901                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1902                           ptlrpc_import_state_name(req->rq_send_state),
1903                           ptlrpc_import_state_name(imp->imp_state));
1904                 cfs_spin_lock(&req->rq_lock);
1905                 req->rq_status = -ETIMEDOUT;
1906                 req->rq_err = 1;
1907                 cfs_spin_unlock(&req->rq_lock);
1908                 RETURN(1);
1909         }
1910
1911         /* if a request can't be resent we can't wait for an answer after
1912            the timeout */
1913         if (ptlrpc_no_resend(req)) {
1914                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1915                 rc = 1;
1916         }
1917
1918         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1919
1920         RETURN(rc);
1921 }
1922
1923 /**
1924  * Time out all uncompleted requests in request set pointed by \a data
1925  * Callback used when waiting on sets with l_wait_event.
1926  * Always returns 1.
1927  */
1928 int ptlrpc_expired_set(void *data)
1929 {
1930         struct ptlrpc_request_set *set = data;
1931         cfs_list_t                *tmp;
1932         time_t                     now = cfs_time_current_sec();
1933         ENTRY;
1934
1935         LASSERT(set != NULL);
1936
1937         /*
1938          * A timeout expired. See which reqs it applies to...
1939          */
1940         cfs_list_for_each (tmp, &set->set_requests) {
1941                 struct ptlrpc_request *req =
1942                         cfs_list_entry(tmp, struct ptlrpc_request,
1943                                        rq_set_chain);
1944
1945                 /* don't expire request waiting for context */
1946                 if (req->rq_wait_ctx)
1947                         continue;
1948
1949                 /* Request in-flight? */
1950                 if (!((req->rq_phase == RQ_PHASE_RPC &&
1951                        !req->rq_waiting && !req->rq_resend) ||
1952                       (req->rq_phase == RQ_PHASE_BULK)))
1953                         continue;
1954
1955                 if (req->rq_timedout ||     /* already dealt with */
1956                     req->rq_deadline > now) /* not expired */
1957                         continue;
1958
1959                 /* Deal with this guy. Do it asynchronously to not block
1960                  * ptlrpcd thread. */
1961                 ptlrpc_expire_one_request(req, 1);
1962         }
1963
1964         /*
1965          * When waiting for a whole set, we always break out of the
1966          * sleep so we can recalculate the timeout, or enable interrupts
1967          * if everyone's timed out.
1968          */
1969         RETURN(1);
1970 }
1971
1972 /**
1973  * Sets rq_intr flag in \a req under spinlock.
1974  */
1975 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1976 {
1977         cfs_spin_lock(&req->rq_lock);
1978         req->rq_intr = 1;
1979         cfs_spin_unlock(&req->rq_lock);
1980 }
1981
1982 /**
1983  * Interrupts (sets interrupted flag) all uncompleted requests in
1984  * a set \a data. Callback for l_wait_event for interruptible waits.
1985  */
1986 void ptlrpc_interrupted_set(void *data)
1987 {
1988         struct ptlrpc_request_set *set = data;
1989         cfs_list_t *tmp;
1990
1991         LASSERT(set != NULL);
1992         CDEBUG(D_RPCTRACE, "INTERRUPTED SET %p\n", set);
1993
1994         cfs_list_for_each(tmp, &set->set_requests) {
1995                 struct ptlrpc_request *req =
1996                         cfs_list_entry(tmp, struct ptlrpc_request,
1997                                        rq_set_chain);
1998
1999                 if (req->rq_phase != RQ_PHASE_RPC &&
2000                     req->rq_phase != RQ_PHASE_UNREGISTERING)
2001                         continue;
2002
2003                 ptlrpc_mark_interrupted(req);
2004         }
2005 }
2006
2007 /**
2008  * Get the smallest timeout in the set; this does NOT set a timeout.
2009  */
2010 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
2011 {
2012         cfs_list_t            *tmp;
2013         time_t                 now = cfs_time_current_sec();
2014         int                    timeout = 0;
2015         struct ptlrpc_request *req;
2016         int                    deadline;
2017         ENTRY;
2018
2019         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
2020
2021         cfs_list_for_each(tmp, &set->set_requests) {
2022                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2023
2024                 /*
2025                  * Request in-flight?
2026                  */
2027                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
2028                       (req->rq_phase == RQ_PHASE_BULK) ||
2029                       (req->rq_phase == RQ_PHASE_NEW)))
2030                         continue;
2031
2032                 /*
2033                  * Already timed out.
2034                  */
2035                 if (req->rq_timedout)
2036                         continue;
2037
2038                 /*
2039                  * Waiting for ctx.
2040                  */
2041                 if (req->rq_wait_ctx)
2042                         continue;
2043
2044                 if (req->rq_phase == RQ_PHASE_NEW)
2045                         deadline = req->rq_sent;
2046                 else
2047                         deadline = req->rq_sent + req->rq_timeout;
2048
2049                 if (deadline <= now)    /* actually expired already */
2050                         timeout = 1;    /* ASAP */
2051                 else if (timeout == 0 || timeout > deadline - now)
2052                         timeout = deadline - now;
2053         }
2054         RETURN(timeout);
2055 }
2056
2057 /**
2058  * Send all unset request from the set and then wait untill all
2059  * requests in the set complete (either get a reply, timeout, get an
2060  * error or otherwise be interrupted).
2061  * Returns 0 on success or error code otherwise.
2062  */
2063 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
2064 {
2065         cfs_list_t            *tmp;
2066         struct ptlrpc_request *req;
2067         struct l_wait_info     lwi;
2068         int                    rc, timeout;
2069         ENTRY;
2070
2071         if (set->set_producer)
2072                 (void)ptlrpc_set_producer(set);
2073         else
2074                 cfs_list_for_each(tmp, &set->set_requests) {
2075                         req = cfs_list_entry(tmp, struct ptlrpc_request,
2076                                              rq_set_chain);
2077                         if (req->rq_phase == RQ_PHASE_NEW)
2078                                 (void)ptlrpc_send_new_req(req);
2079                 }
2080
2081         if (cfs_list_empty(&set->set_requests))
2082                 RETURN(0);
2083
2084         do {
2085                 timeout = ptlrpc_set_next_timeout(set);
2086
2087                 /* wait until all complete, interrupted, or an in-flight
2088                  * req times out */
2089                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
2090                        set, timeout);
2091
2092                 if (timeout == 0 && !cfs_signal_pending())
2093                         /*
2094                          * No requests are in-flight (ether timed out
2095                          * or delayed), so we can allow interrupts.
2096                          * We still want to block for a limited time,
2097                          * so we allow interrupts during the timeout.
2098                          */
2099                         lwi = LWI_TIMEOUT_INTR_ALL(cfs_time_seconds(1), 
2100                                                    ptlrpc_expired_set,
2101                                                    ptlrpc_interrupted_set, set);
2102                 else
2103                         /*
2104                          * At least one request is in flight, so no
2105                          * interrupts are allowed. Wait until all
2106                          * complete, or an in-flight req times out. 
2107                          */
2108                         lwi = LWI_TIMEOUT(cfs_time_seconds(timeout? timeout : 1),
2109                                           ptlrpc_expired_set, set);
2110
2111                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(NULL, set), &lwi);
2112
2113                 /* LU-769 - if we ignored the signal because it was already
2114                  * pending when we started, we need to handle it now or we risk
2115                  * it being ignored forever */
2116                 if (rc == -ETIMEDOUT && !lwi.lwi_allow_intr &&
2117                     cfs_signal_pending()) {
2118                         cfs_sigset_t blocked_sigs =
2119                                            cfs_block_sigsinv(LUSTRE_FATAL_SIGS);
2120
2121                         /* In fact we only interrupt for the "fatal" signals
2122                          * like SIGINT or SIGKILL. We still ignore less
2123                          * important signals since ptlrpc set is not easily
2124                          * reentrant from userspace again */
2125                         if (cfs_signal_pending())
2126                                 ptlrpc_interrupted_set(set);
2127                         cfs_restore_sigs(blocked_sigs);
2128                 }
2129
2130                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
2131
2132                 /* -EINTR => all requests have been flagged rq_intr so next
2133                  * check completes.
2134                  * -ETIMEDOUT => someone timed out.  When all reqs have
2135                  * timed out, signals are enabled allowing completion with
2136                  * EINTR.
2137                  * I don't really care if we go once more round the loop in
2138                  * the error cases -eeb. */
2139                 if (rc == 0 && cfs_atomic_read(&set->set_remaining) == 0) {
2140                         cfs_list_for_each(tmp, &set->set_requests) {
2141                                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2142                                                      rq_set_chain);
2143                                 cfs_spin_lock(&req->rq_lock);
2144                                 req->rq_invalid_rqset = 1;
2145                                 cfs_spin_unlock(&req->rq_lock);
2146                         }
2147                 }
2148         } while (rc != 0 || cfs_atomic_read(&set->set_remaining) != 0);
2149
2150         LASSERT(cfs_atomic_read(&set->set_remaining) == 0);
2151
2152         rc = set->set_rc; /* rq_status of already freed requests if any */
2153         cfs_list_for_each(tmp, &set->set_requests) {
2154                 req = cfs_list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2155
2156                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
2157                 if (req->rq_status != 0)
2158                         rc = req->rq_status;
2159         }
2160
2161         if (set->set_interpret != NULL) {
2162                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
2163                         set->set_interpret;
2164                 rc = interpreter (set, set->set_arg, rc);
2165         } else {
2166                 struct ptlrpc_set_cbdata *cbdata, *n;
2167                 int err;
2168
2169                 cfs_list_for_each_entry_safe(cbdata, n,
2170                                          &set->set_cblist, psc_item) {
2171                         cfs_list_del_init(&cbdata->psc_item);
2172                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
2173                         if (err && !rc)
2174                                 rc = err;
2175                         OBD_FREE_PTR(cbdata);
2176                 }
2177         }
2178
2179         RETURN(rc);
2180 }
2181
2182 /**
2183  * Helper fuction for request freeing.
2184  * Called when request count reached zero and request needs to be freed.
2185  * Removes request from all sorts of sending/replay lists it might be on,
2186  * frees network buffers if any are present.
2187  * If \a locked is set, that means caller is already holding import imp_lock
2188  * and so we no longer need to reobtain it (for certain lists manipulations)
2189  */
2190 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
2191 {
2192         ENTRY;
2193         if (request == NULL) {
2194                 EXIT;
2195                 return;
2196         }
2197
2198         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
2199         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
2200         LASSERTF(cfs_list_empty(&request->rq_list), "req %p\n", request);
2201         LASSERTF(cfs_list_empty(&request->rq_set_chain), "req %p\n", request);
2202         LASSERTF(cfs_list_empty(&request->rq_exp_list), "req %p\n", request);
2203         LASSERTF(!request->rq_replay, "req %p\n", request);
2204
2205         req_capsule_fini(&request->rq_pill);
2206
2207         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
2208          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
2209         if (request->rq_import != NULL) {
2210                 if (!locked)
2211                         cfs_spin_lock(&request->rq_import->imp_lock);
2212                 cfs_list_del_init(&request->rq_replay_list);
2213                 if (!locked)
2214                         cfs_spin_unlock(&request->rq_import->imp_lock);
2215         }
2216         LASSERTF(cfs_list_empty(&request->rq_replay_list), "req %p\n", request);
2217
2218         if (cfs_atomic_read(&request->rq_refcount) != 0) {
2219                 DEBUG_REQ(D_ERROR, request,
2220                           "freeing request with nonzero refcount");
2221                 LBUG();
2222         }
2223
2224         if (request->rq_repbuf != NULL)
2225                 sptlrpc_cli_free_repbuf(request);
2226         if (request->rq_export != NULL) {
2227                 class_export_put(request->rq_export);
2228                 request->rq_export = NULL;
2229         }
2230         if (request->rq_import != NULL) {
2231                 class_import_put(request->rq_import);
2232                 request->rq_import = NULL;
2233         }
2234         if (request->rq_bulk != NULL)
2235                 ptlrpc_free_bulk(request->rq_bulk);
2236
2237         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
2238                 sptlrpc_cli_free_reqbuf(request);
2239
2240         if (request->rq_cli_ctx)
2241                 sptlrpc_req_put_ctx(request, !locked);
2242
2243         if (request->rq_pool)
2244                 __ptlrpc_free_req_to_pool(request);
2245         else
2246                 OBD_FREE(request, sizeof(*request));
2247         EXIT;
2248 }
2249
2250 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
2251 /**
2252  * Drop one request reference. Must be called with import imp_lock held.
2253  * When reference count drops to zero, reuqest is freed.
2254  */
2255 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
2256 {
2257         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
2258         (void)__ptlrpc_req_finished(request, 1);
2259 }
2260
2261 /**
2262  * Helper function
2263  * Drops one reference count for request \a request.
2264  * \a locked set indicates that caller holds import imp_lock.
2265  * Frees the request whe reference count reaches zero.
2266  */
2267 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
2268 {
2269         ENTRY;
2270         if (request == NULL)
2271                 RETURN(1);
2272
2273         if (request == LP_POISON ||
2274             request->rq_reqmsg == LP_POISON) {
2275                 CERROR("dereferencing freed request (bug 575)\n");
2276                 LBUG();
2277                 RETURN(1);
2278         }
2279
2280         DEBUG_REQ(D_INFO, request, "refcount now %u",
2281                   cfs_atomic_read(&request->rq_refcount) - 1);
2282
2283         if (cfs_atomic_dec_and_test(&request->rq_refcount)) {
2284                 __ptlrpc_free_req(request, locked);
2285                 RETURN(1);
2286         }
2287
2288         RETURN(0);
2289 }
2290
2291 /**
2292  * Drops one reference count for a request.
2293  */
2294 void ptlrpc_req_finished(struct ptlrpc_request *request)
2295 {
2296         __ptlrpc_req_finished(request, 0);
2297 }
2298
2299 /**
2300  * Returns xid of a \a request
2301  */
2302 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
2303 {
2304         return request->rq_xid;
2305 }
2306 EXPORT_SYMBOL(ptlrpc_req_xid);
2307
2308 /**
2309  * Disengage the client's reply buffer from the network
2310  * NB does _NOT_ unregister any client-side bulk.
2311  * IDEMPOTENT, but _not_ safe against concurrent callers.
2312  * The request owner (i.e. the thread doing the I/O) must call...
2313  * Returns 0 on success or 1 if unregistering cannot be made.
2314  */
2315 int ptlrpc_unregister_reply(struct ptlrpc_request *request, int async)
2316 {
2317         int                rc;
2318         cfs_waitq_t       *wq;
2319         struct l_wait_info lwi;
2320
2321         /*
2322          * Might sleep.
2323          */
2324         LASSERT(!cfs_in_interrupt());
2325
2326         /*
2327          * Let's setup deadline for reply unlink.
2328          */
2329         if (OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK) &&
2330             async && request->rq_reply_deadline == 0)
2331                 request->rq_reply_deadline = cfs_time_current_sec()+LONG_UNLINK;
2332
2333         /*
2334          * Nothing left to do.
2335          */
2336         if (!ptlrpc_client_recv_or_unlink(request))
2337                 RETURN(1);
2338
2339         LNetMDUnlink(request->rq_reply_md_h);
2340
2341         /*
2342          * Let's check it once again.
2343          */
2344         if (!ptlrpc_client_recv_or_unlink(request))
2345                 RETURN(1);
2346
2347         /*
2348          * Move to "Unregistering" phase as reply was not unlinked yet.
2349          */
2350         ptlrpc_rqphase_move(request, RQ_PHASE_UNREGISTERING);
2351
2352         /*
2353          * Do not wait for unlink to finish.
2354          */
2355         if (async)
2356                 RETURN(0);
2357
2358         /*
2359          * We have to l_wait_event() whatever the result, to give liblustre
2360          * a chance to run reply_in_callback(), and to make sure we've
2361          * unlinked before returning a req to the pool.
2362          */
2363         if (request->rq_set != NULL)
2364                 wq = &request->rq_set->set_waitq;
2365         else
2366                 wq = &request->rq_reply_waitq;
2367
2368         for (;;) {
2369                 /* Network access will complete in finite time but the HUGE
2370                  * timeout lets us CWARN for visibility of sluggish NALs */
2371                 lwi = LWI_TIMEOUT_INTERVAL(cfs_time_seconds(LONG_UNLINK),
2372                                            cfs_time_seconds(1), NULL, NULL);
2373                 rc = l_wait_event(*wq, !ptlrpc_client_recv_or_unlink(request),
2374                                   &lwi);
2375                 if (rc == 0) {
2376                         ptlrpc_rqphase_move(request, request->rq_next_phase);
2377                         RETURN(1);
2378                 }
2379
2380                 LASSERT(rc == -ETIMEDOUT);
2381                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
2382                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
2383                           request->rq_must_unlink);
2384         }
2385         RETURN(0);
2386 }
2387
2388 /**
2389  * Iterates through replay_list on import and prunes
2390  * all requests have transno smaller than last_committed for the
2391  * import and don't have rq_replay set.
2392  * Since requests are sorted in transno order, stops when meetign first
2393  * transno bigger than last_committed.
2394  * caller must hold imp->imp_lock
2395  */
2396 void ptlrpc_free_committed(struct obd_import *imp)
2397 {
2398         cfs_list_t *tmp, *saved;
2399         struct ptlrpc_request *req;
2400         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
2401         ENTRY;
2402
2403         LASSERT(imp != NULL);
2404
2405         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2406
2407
2408         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
2409             imp->imp_generation == imp->imp_last_generation_checked) {
2410                 CDEBUG(D_INFO, "%s: skip recheck: last_committed "LPU64"\n",
2411                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
2412                 EXIT;
2413                 return;
2414         }
2415         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
2416                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
2417                imp->imp_generation);
2418         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
2419         imp->imp_last_generation_checked = imp->imp_generation;
2420
2421         cfs_list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
2422                 req = cfs_list_entry(tmp, struct ptlrpc_request,
2423                                      rq_replay_list);
2424
2425                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
2426                 LASSERT(req != last_req);
2427                 last_req = req;
2428
2429                 if (req->rq_transno == 0) {
2430                         DEBUG_REQ(D_EMERG, req, "zero transno during replay");
2431                         LBUG();
2432                 }
2433                 if (req->rq_import_generation < imp->imp_generation) {
2434                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
2435                         GOTO(free_req, 0);
2436                 }
2437
2438                 if (req->rq_replay) {
2439                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
2440                         continue;
2441                 }
2442
2443                 /* not yet committed */
2444                 if (req->rq_transno > imp->imp_peer_committed_transno) {
2445                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
2446                         break;
2447                 }
2448
2449                 DEBUG_REQ(D_INFO, req, "commit (last_committed "LPU64")",
2450                           imp->imp_peer_committed_transno);
2451 free_req:
2452                 cfs_spin_lock(&req->rq_lock);
2453                 req->rq_replay = 0;
2454                 cfs_spin_unlock(&req->rq_lock);
2455                 if (req->rq_commit_cb != NULL)
2456                         req->rq_commit_cb(req);
2457                 cfs_list_del_init(&req->rq_replay_list);
2458                 __ptlrpc_req_finished(req, 1);
2459         }
2460
2461         EXIT;
2462         return;
2463 }
2464
2465 void ptlrpc_cleanup_client(struct obd_import *imp)
2466 {
2467         ENTRY;
2468         EXIT;
2469         return;
2470 }
2471
2472 /**
2473  * Schedule previously sent request for resend.
2474  * For bulk requests we assign new xid (to avoid problems with
2475  * lost replies and therefore several transfers landing into same buffer
2476  * from different sending attempts).
2477  */
2478 void ptlrpc_resend_req(struct ptlrpc_request *req)
2479 {
2480         DEBUG_REQ(D_HA, req, "going to resend");
2481         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
2482         req->rq_status = -EAGAIN;
2483
2484         cfs_spin_lock(&req->rq_lock);
2485         req->rq_resend = 1;
2486         req->rq_net_err = 0;
2487         req->rq_timedout = 0;
2488         if (req->rq_bulk) {
2489                 __u64 old_xid = req->rq_xid;
2490
2491                 /* ensure previous bulk fails */
2492                 req->rq_xid = ptlrpc_next_xid();
2493                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
2494                        old_xid, req->rq_xid);
2495         }
2496         ptlrpc_client_wake_req(req);
2497         cfs_spin_unlock(&req->rq_lock);
2498 }
2499
2500 /* XXX: this function and rq_status are currently unused */
2501 void ptlrpc_restart_req(struct ptlrpc_request *req)
2502 {
2503         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
2504         req->rq_status = -ERESTARTSYS;
2505
2506         cfs_spin_lock(&req->rq_lock);
2507         req->rq_restart = 1;
2508         req->rq_timedout = 0;
2509         ptlrpc_client_wake_req(req);
2510         cfs_spin_unlock(&req->rq_lock);
2511 }
2512
2513 /**
2514  * Grab additional reference on a request \a req
2515  */
2516 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
2517 {
2518         ENTRY;
2519         cfs_atomic_inc(&req->rq_refcount);
2520         RETURN(req);
2521 }
2522
2523 /**
2524  * Add a request to import replay_list.
2525  * Must be called under imp_lock
2526  */
2527 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
2528                                       struct obd_import *imp)
2529 {
2530         cfs_list_t *tmp;
2531
2532         LASSERT_SPIN_LOCKED(&imp->imp_lock);
2533
2534         if (req->rq_transno == 0) {
2535                 DEBUG_REQ(D_EMERG, req, "saving request with zero transno");
2536                 LBUG();
2537         }
2538
2539         /* clear this for new requests that were resent as well
2540            as resent replayed requests. */
2541         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
2542
2543         /* don't re-add requests that have been replayed */
2544         if (!cfs_list_empty(&req->rq_replay_list))
2545                 return;
2546
2547         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
2548
2549         LASSERT(imp->imp_replayable);
2550         /* Balanced in ptlrpc_free_committed, usually. */
2551         ptlrpc_request_addref(req);
2552         cfs_list_for_each_prev(tmp, &imp->imp_replay_list) {
2553                 struct ptlrpc_request *iter =
2554                         cfs_list_entry(tmp, struct ptlrpc_request,
2555                                        rq_replay_list);
2556
2557                 /* We may have duplicate transnos if we create and then
2558                  * open a file, or for closes retained if to match creating
2559                  * opens, so use req->rq_xid as a secondary key.
2560                  * (See bugs 684, 685, and 428.)
2561                  * XXX no longer needed, but all opens need transnos!
2562                  */
2563                 if (iter->rq_transno > req->rq_transno)
2564                         continue;
2565
2566                 if (iter->rq_transno == req->rq_transno) {
2567                         LASSERT(iter->rq_xid != req->rq_xid);
2568                         if (iter->rq_xid > req->rq_xid)
2569                                 continue;
2570                 }
2571
2572                 cfs_list_add(&req->rq_replay_list, &iter->rq_replay_list);
2573                 return;
2574         }
2575
2576         cfs_list_add(&req->rq_replay_list, &imp->imp_replay_list);
2577 }
2578
2579 /**
2580  * Send request and wait until it completes.
2581  * Returns request processing status.
2582  */
2583 int ptlrpc_queue_wait(struct ptlrpc_request *req)
2584 {
2585         struct ptlrpc_request_set *set;
2586         int rc;
2587         ENTRY;
2588
2589         LASSERT(req->rq_set == NULL);
2590         LASSERT(!req->rq_receiving_reply);
2591
2592         set = ptlrpc_prep_set();
2593         if (set == NULL) {
2594                 CERROR("Unable to allocate ptlrpc set.");
2595                 RETURN(-ENOMEM);
2596         }
2597
2598         /* for distributed debugging */
2599         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
2600
2601         /* add a ref for the set (see comment in ptlrpc_set_add_req) */
2602         ptlrpc_request_addref(req);
2603         ptlrpc_set_add_req(set, req);
2604         rc = ptlrpc_set_wait(set);
2605         ptlrpc_set_destroy(set);
2606
2607         RETURN(rc);
2608 }
2609
2610 struct ptlrpc_replay_async_args {
2611         int praa_old_state;
2612         int praa_old_status;
2613 };
2614
2615 /**
2616  * Callback used for replayed requests reply processing.
2617  * In case of succesful reply calls registeresd request replay callback.
2618  * In case of error restart replay process.
2619  */
2620 static int ptlrpc_replay_interpret(const struct lu_env *env,
2621                                    struct ptlrpc_request *req,
2622                                    void * data, int rc)
2623 {
2624         struct ptlrpc_replay_async_args *aa = data;
2625         struct obd_import *imp = req->rq_import;
2626
2627         ENTRY;
2628         cfs_atomic_dec(&imp->imp_replay_inflight);
2629
2630         if (!ptlrpc_client_replied(req)) {
2631                 CERROR("request replay timed out, restarting recovery\n");
2632                 GOTO(out, rc = -ETIMEDOUT);
2633         }
2634
2635         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2636             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2637              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2638                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2639
2640         /** VBR: check version failure */
2641         if (lustre_msg_get_status(req->rq_repmsg) == -EOVERFLOW) {
2642                 /** replay was failed due to version mismatch */
2643                 DEBUG_REQ(D_WARNING, req, "Version mismatch during replay\n");
2644                 cfs_spin_lock(&imp->imp_lock);
2645                 imp->imp_vbr_failed = 1;
2646                 imp->imp_no_lock_replay = 1;
2647                 cfs_spin_unlock(&imp->imp_lock);
2648                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2649         } else {
2650                 /** The transno had better not change over replay. */
2651                 LASSERTF(lustre_msg_get_transno(req->rq_reqmsg) ==
2652                          lustre_msg_get_transno(req->rq_repmsg) ||
2653                          lustre_msg_get_transno(req->rq_repmsg) == 0,
2654                          LPX64"/"LPX64"\n",
2655                          lustre_msg_get_transno(req->rq_reqmsg),
2656                          lustre_msg_get_transno(req->rq_repmsg));
2657         }
2658
2659         cfs_spin_lock(&imp->imp_lock);
2660         /** if replays by version then gap was occur on server, no trust to locks */
2661         if (lustre_msg_get_flags(req->rq_repmsg) & MSG_VERSION_REPLAY)
2662                 imp->imp_no_lock_replay = 1;
2663         imp->imp_last_replay_transno = lustre_msg_get_transno(req->rq_reqmsg);
2664         cfs_spin_unlock(&imp->imp_lock);
2665         LASSERT(imp->imp_last_replay_transno);
2666
2667         /* transaction number shouldn't be bigger than the latest replayed */
2668         if (req->rq_transno > lustre_msg_get_transno(req->rq_reqmsg)) {
2669                 DEBUG_REQ(D_ERROR, req,
2670                           "Reported transno "LPU64" is bigger than the "
2671                           "replayed one: "LPU64, req->rq_transno,
2672                           lustre_msg_get_transno(req->rq_reqmsg));
2673                 GOTO(out, rc = -EINVAL);
2674         }
2675
2676         DEBUG_REQ(D_HA, req, "got rep");
2677
2678         /* let the callback do fixups, possibly including in the request */
2679         if (req->rq_replay_cb)
2680                 req->rq_replay_cb(req);
2681
2682         if (ptlrpc_client_replied(req) &&
2683             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2684                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2685                           lustre_msg_get_status(req->rq_repmsg),
2686                           aa->praa_old_status);
2687         } else {
2688                 /* Put it back for re-replay. */
2689                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2690         }
2691
2692         /*
2693          * Errors while replay can set transno to 0, but
2694          * imp_last_replay_transno shouldn't be set to 0 anyway
2695          */
2696         if (req->rq_transno == 0)
2697                 CERROR("Transno is 0 during replay!\n");
2698
2699         /* continue with recovery */
2700         rc = ptlrpc_import_recovery_state_machine(imp);
2701  out:
2702         req->rq_send_state = aa->praa_old_state;
2703
2704         if (rc != 0)
2705                 /* this replay failed, so restart recovery */
2706                 ptlrpc_connect_import(imp);
2707
2708         RETURN(rc);
2709 }
2710
2711 /**
2712  * Prepares and queues request for replay.
2713  * Adds it to ptlrpcd queue for actual sending.
2714  * Returns 0 on success.
2715  */
2716 int ptlrpc_replay_req(struct ptlrpc_request *req)
2717 {
2718         struct ptlrpc_replay_async_args *aa;
2719         ENTRY;
2720
2721         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2722
2723         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2724         aa = ptlrpc_req_async_args(req);
2725         memset(aa, 0, sizeof *aa);
2726
2727         /* Prepare request to be resent with ptlrpcd */
2728         aa->praa_old_state = req->rq_send_state;
2729         req->rq_send_state = LUSTRE_IMP_REPLAY;
2730         req->rq_phase = RQ_PHASE_NEW;
2731         req->rq_next_phase = RQ_PHASE_UNDEFINED;
2732         if (req->rq_repmsg)
2733                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2734         req->rq_status = 0;
2735         req->rq_interpret_reply = ptlrpc_replay_interpret;
2736         /* Readjust the timeout for current conditions */
2737         ptlrpc_at_set_req_timeout(req);
2738
2739         /* Tell server the net_latency, so the server can calculate how long
2740          * it should wait for next replay */
2741         lustre_msg_set_service_time(req->rq_reqmsg,
2742                                     ptlrpc_at_get_net_latency(req));
2743         DEBUG_REQ(D_HA, req, "REPLAY");
2744
2745         cfs_atomic_inc(&req->rq_import->imp_replay_inflight);
2746         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2747
2748         ptlrpcd_add_req(req, PDL_POLICY_LOCAL, -1);
2749         RETURN(0);
2750 }
2751
2752 /**
2753  * Aborts all in-flight request on import \a imp sending and delayed lists
2754  */
2755 void ptlrpc_abort_inflight(struct obd_import *imp)
2756 {
2757         cfs_list_t *tmp, *n;
2758         ENTRY;
2759
2760         /* Make sure that no new requests get processed for this import.
2761          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2762          * this flag and then putting requests on sending_list or delayed_list.
2763          */
2764         cfs_spin_lock(&imp->imp_lock);
2765
2766         /* XXX locking?  Maybe we should remove each request with the list
2767          * locked?  Also, how do we know if the requests on the list are
2768          * being freed at this time?
2769          */
2770         cfs_list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2771                 struct ptlrpc_request *req =
2772                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2773
2774                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2775
2776                 cfs_spin_lock (&req->rq_lock);
2777                 if (req->rq_import_generation < imp->imp_generation) {
2778                         req->rq_err = 1;
2779                         req->rq_status = -EIO;
2780                         ptlrpc_client_wake_req(req);
2781                 }
2782                 cfs_spin_unlock (&req->rq_lock);
2783         }
2784
2785         cfs_list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2786                 struct ptlrpc_request *req =
2787                         cfs_list_entry(tmp, struct ptlrpc_request, rq_list);
2788
2789                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2790
2791                 cfs_spin_lock (&req->rq_lock);
2792                 if (req->rq_import_generation < imp->imp_generation) {
2793                         req->rq_err = 1;
2794                         req->rq_status = -EIO;
2795                         ptlrpc_client_wake_req(req);
2796                 }
2797                 cfs_spin_unlock (&req->rq_lock);
2798         }
2799
2800         /* Last chance to free reqs left on the replay list, but we
2801          * will still leak reqs that haven't committed.  */
2802         if (imp->imp_replayable)
2803                 ptlrpc_free_committed(imp);
2804
2805         cfs_spin_unlock(&imp->imp_lock);
2806
2807         EXIT;
2808 }
2809
2810 /**
2811  * Abort all uncompleted requests in request set \a set
2812  */
2813 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2814 {
2815         cfs_list_t *tmp, *pos;
2816
2817         LASSERT(set != NULL);
2818
2819         cfs_list_for_each_safe(pos, tmp, &set->set_requests) {
2820                 struct ptlrpc_request *req =
2821                         cfs_list_entry(pos, struct ptlrpc_request,
2822                                        rq_set_chain);
2823
2824                 cfs_spin_lock(&req->rq_lock);
2825                 if (req->rq_phase != RQ_PHASE_RPC) {
2826                         cfs_spin_unlock(&req->rq_lock);
2827                         continue;
2828                 }
2829
2830                 req->rq_err = 1;
2831                 req->rq_status = -EINTR;
2832                 ptlrpc_client_wake_req(req);
2833                 cfs_spin_unlock(&req->rq_lock);
2834         }
2835 }
2836
2837 static __u64 ptlrpc_last_xid;
2838 static cfs_spinlock_t ptlrpc_last_xid_lock;
2839
2840 /**
2841  * Initialize the XID for the node.  This is common among all requests on
2842  * this node, and only requires the property that it is monotonically
2843  * increasing.  It does not need to be sequential.  Since this is also used
2844  * as the RDMA match bits, it is important that a single client NOT have
2845  * the same match bits for two different in-flight requests, hence we do
2846  * NOT want to have an XID per target or similar.
2847  *
2848  * To avoid an unlikely collision between match bits after a client reboot
2849  * (which would deliver old data into the wrong RDMA buffer) initialize
2850  * the XID based on the current time, assuming a maximum RPC rate of 1M RPC/s.
2851  * If the time is clearly incorrect, we instead use a 62-bit random number.
2852  * In the worst case the random number will overflow 1M RPCs per second in
2853  * 9133 years, or permutations thereof.
2854  */
2855 #define YEAR_2004 (1ULL << 30)
2856 void ptlrpc_init_xid(void)
2857 {
2858         time_t now = cfs_time_current_sec();
2859
2860         cfs_spin_lock_init(&ptlrpc_last_xid_lock);
2861         if (now < YEAR_2004) {
2862                 cfs_get_random_bytes(&ptlrpc_last_xid, sizeof(ptlrpc_last_xid));
2863                 ptlrpc_last_xid >>= 2;
2864                 ptlrpc_last_xid |= (1ULL << 61);
2865         } else {
2866                 ptlrpc_last_xid = (__u64)now << 20;
2867         }
2868 }
2869
2870 /**
2871  * Increase xid and returns resultng new value to the caller.
2872  */
2873 __u64 ptlrpc_next_xid(void)
2874 {
2875         __u64 tmp;
2876         cfs_spin_lock(&ptlrpc_last_xid_lock);
2877         tmp = ++ptlrpc_last_xid;
2878         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2879         return tmp;
2880 }
2881
2882 /**
2883  * Get a glimpse at what next xid value might have been.
2884  * Returns possible next xid.
2885  */
2886 __u64 ptlrpc_sample_next_xid(void)
2887 {
2888 #if BITS_PER_LONG == 32
2889         /* need to avoid possible word tearing on 32-bit systems */
2890         __u64 tmp;
2891         cfs_spin_lock(&ptlrpc_last_xid_lock);
2892         tmp = ptlrpc_last_xid + 1;
2893         cfs_spin_unlock(&ptlrpc_last_xid_lock);
2894         return tmp;
2895 #else
2896         /* No need to lock, since returned value is racy anyways */
2897         return ptlrpc_last_xid + 1;
2898 #endif
2899 }
2900 EXPORT_SYMBOL(ptlrpc_sample_next_xid);
2901
2902 /**
2903  * Functions for operating ptlrpc workers.
2904  *
2905  * A ptlrpc work is a function which will be running inside ptlrpc context.
2906  * The callback shouldn't sleep otherwise it will block that ptlrpcd thread.
2907  *
2908  * 1. after a work is created, it can be used many times, that is:
2909  *         handler = ptlrpcd_alloc_work();
2910  *         ptlrpcd_queue_work();
2911  *
2912  *    queue it again when necessary:
2913  *         ptlrpcd_queue_work();
2914  *         ptlrpcd_destroy_work();
2915  * 2. ptlrpcd_queue_work() can be called by multiple processes meanwhile, but
2916  *    it will only be queued once in any time. Also as its name implies, it may
2917  *    have delay before it really runs by ptlrpcd thread.
2918  */
2919 struct ptlrpc_work_async_args {
2920         __u64   magic;
2921         int   (*cb)(const struct lu_env *, void *);
2922         void   *cbdata;
2923 };
2924
2925 #define PTLRPC_WORK_MAGIC 0x6655436b676f4f44ULL /* magic code */
2926
2927 static int work_interpreter(const struct lu_env *env,
2928                             struct ptlrpc_request *req, void *data, int rc)
2929 {
2930         struct ptlrpc_work_async_args *arg = data;
2931
2932         LASSERT(arg->magic == PTLRPC_WORK_MAGIC);
2933         LASSERT(arg->cb != NULL);
2934
2935         return arg->cb(env, arg->cbdata);
2936 }
2937
2938 /**
2939  * Create a work for ptlrpc.
2940  */
2941 void *ptlrpcd_alloc_work(struct obd_import *imp,
2942                          int (*cb)(const struct lu_env *, void *), void *cbdata)
2943 {
2944         struct ptlrpc_request         *req = NULL;
2945         struct ptlrpc_work_async_args *args;
2946         ENTRY;
2947
2948         cfs_might_sleep();
2949
2950         if (cb == NULL)
2951                 RETURN(ERR_PTR(-EINVAL));
2952
2953         /* copy some code from deprecated fakereq. */
2954         OBD_ALLOC_PTR(req);
2955         if (req == NULL) {
2956                 CERROR("ptlrpc: run out of memory!\n");
2957                 RETURN(ERR_PTR(-ENOMEM));
2958         }
2959
2960         req->rq_send_state = LUSTRE_IMP_FULL;
2961         req->rq_type = PTL_RPC_MSG_REQUEST;
2962         req->rq_import = class_import_get(imp);
2963         req->rq_export = NULL;
2964         req->rq_interpret_reply = work_interpreter;
2965         /* don't want reply */
2966         req->rq_receiving_reply = 0;
2967         req->rq_must_unlink = 0;
2968         req->rq_no_delay = req->rq_no_resend = 1;
2969
2970         cfs_spin_lock_init(&req->rq_lock);
2971         CFS_INIT_LIST_HEAD(&req->rq_list);
2972         CFS_INIT_LIST_HEAD(&req->rq_replay_list);
2973         CFS_INIT_LIST_HEAD(&req->rq_set_chain);
2974         CFS_INIT_LIST_HEAD(&req->rq_history_list);
2975         CFS_INIT_LIST_HEAD(&req->rq_exp_list);
2976         cfs_waitq_init(&req->rq_reply_waitq);
2977         cfs_waitq_init(&req->rq_set_waitq);
2978         cfs_atomic_set(&req->rq_refcount, 1);
2979
2980         CLASSERT (sizeof(*args) <= sizeof(req->rq_async_args));
2981         args = ptlrpc_req_async_args(req);
2982         args->magic  = PTLRPC_WORK_MAGIC;
2983         args->cb     = cb;
2984         args->cbdata = cbdata;
2985
2986         RETURN(req);
2987 }
2988 EXPORT_SYMBOL(ptlrpcd_alloc_work);
2989
2990 void ptlrpcd_destroy_work(void *handler)
2991 {
2992         struct ptlrpc_request *req = handler;
2993
2994         if (req)
2995                 ptlrpc_req_finished(req);
2996 }
2997 EXPORT_SYMBOL(ptlrpcd_destroy_work);
2998
2999 int ptlrpcd_queue_work(void *handler)
3000 {
3001         struct ptlrpc_request *req = handler;
3002
3003         /*
3004          * Check if the req is already being queued.
3005          *
3006          * Here comes a trick: it lacks a way of checking if a req is being
3007          * processed reliably in ptlrpc. Here I have to use refcount of req
3008          * for this purpose. This is okay because the caller should use this
3009          * req as opaque data. - Jinshan
3010          */
3011         LASSERT(cfs_atomic_read(&req->rq_refcount) > 0);
3012         if (cfs_atomic_read(&req->rq_refcount) > 1)
3013                 return -EBUSY;
3014
3015         if (cfs_atomic_inc_return(&req->rq_refcount) > 2) { /* race */
3016                 cfs_atomic_dec(&req->rq_refcount);
3017                 return -EBUSY;
3018         }
3019
3020         /* re-initialize the req */
3021         req->rq_timeout        = obd_timeout;
3022         req->rq_sent           = cfs_time_current_sec();
3023         req->rq_deadline       = req->rq_sent + req->rq_timeout;
3024         req->rq_reply_deadline = req->rq_deadline;
3025         req->rq_phase          = RQ_PHASE_INTERPRET;
3026         req->rq_next_phase     = RQ_PHASE_COMPLETE;
3027         req->rq_xid            = ptlrpc_next_xid();
3028         req->rq_import_generation = req->rq_import->imp_generation;
3029
3030         ptlrpcd_add_req(req, PDL_POLICY_ROUND, -1);
3031         return 0;
3032 }
3033 EXPORT_SYMBOL(ptlrpcd_queue_work);