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