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