Whamcloud - gitweb
b=16776
[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  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38 #ifndef __KERNEL__
39 #include <errno.h>
40 #include <signal.h>
41 #include <liblustre.h>
42 #endif
43
44 #include <obd_support.h>
45 #include <obd_class.h>
46 #include <lustre_lib.h>
47 #include <lustre_ha.h>
48 #include <lustre_import.h>
49 #include <lustre_req_layout.h>
50
51 #include "ptlrpc_internal.h"
52
53 void ptlrpc_init_client(int req_portal, int rep_portal, char *name,
54                         struct ptlrpc_client *cl)
55 {
56         cl->cli_request_portal = req_portal;
57         cl->cli_reply_portal   = rep_portal;
58         cl->cli_name           = name;
59 }
60
61 struct ptlrpc_connection *ptlrpc_uuid_to_connection(struct obd_uuid *uuid)
62 {
63         struct ptlrpc_connection *c;
64         lnet_nid_t                self;
65         lnet_process_id_t         peer;
66         int                       err;
67
68         err = ptlrpc_uuid_to_peer(uuid, &peer, &self);
69         if (err != 0) {
70                 CERROR("cannot find peer %s!\n", uuid->uuid);
71                 return NULL;
72         }
73
74         c = ptlrpc_connection_get(peer, self, uuid);
75         if (c) {
76                 memcpy(c->c_remote_uuid.uuid,
77                        uuid->uuid, sizeof(c->c_remote_uuid.uuid));
78         }
79
80         CDEBUG(D_INFO, "%s -> %p\n", uuid->uuid, c);
81
82         return c;
83 }
84
85 static inline struct ptlrpc_bulk_desc *new_bulk(int npages, int type, int portal)
86 {
87         struct ptlrpc_bulk_desc *desc;
88
89         OBD_ALLOC(desc, offsetof (struct ptlrpc_bulk_desc, bd_iov[npages]));
90         if (!desc)
91                 return NULL;
92
93         spin_lock_init(&desc->bd_lock);
94         cfs_waitq_init(&desc->bd_waitq);
95         desc->bd_max_iov = npages;
96         desc->bd_iov_count = 0;
97         desc->bd_md_h = LNET_INVALID_HANDLE;
98         desc->bd_portal = portal;
99         desc->bd_type = type;
100
101         return desc;
102 }
103
104 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_imp (struct ptlrpc_request *req,
105                                                int npages, int type, int portal)
106 {
107         struct obd_import *imp = req->rq_import;
108         struct ptlrpc_bulk_desc *desc;
109
110         ENTRY;
111         LASSERT(type == BULK_PUT_SINK || type == BULK_GET_SOURCE);
112         desc = new_bulk(npages, type, portal);
113         if (desc == NULL)
114                 RETURN(NULL);
115
116         desc->bd_import_generation = req->rq_import_generation;
117         desc->bd_import = class_import_get(imp);
118         desc->bd_req = req;
119
120         desc->bd_cbid.cbid_fn  = client_bulk_callback;
121         desc->bd_cbid.cbid_arg = desc;
122
123         /* This makes req own desc, and free it when she frees herself */
124         req->rq_bulk = desc;
125
126         return desc;
127 }
128
129 struct ptlrpc_bulk_desc *ptlrpc_prep_bulk_exp(struct ptlrpc_request *req,
130                                               int npages, int type, int portal)
131 {
132         struct obd_export *exp = req->rq_export;
133         struct ptlrpc_bulk_desc *desc;
134
135         ENTRY;
136         LASSERT(type == BULK_PUT_SOURCE || type == BULK_GET_SINK);
137
138         desc = new_bulk(npages, type, portal);
139         if (desc == NULL)
140                 RETURN(NULL);
141
142         desc->bd_export = class_export_get(exp);
143         desc->bd_req = req;
144
145         desc->bd_cbid.cbid_fn  = server_bulk_callback;
146         desc->bd_cbid.cbid_arg = desc;
147
148         /* NB we don't assign rq_bulk here; server-side requests are
149          * re-used, and the handler frees the bulk desc explicitly. */
150
151         return desc;
152 }
153
154 void ptlrpc_prep_bulk_page(struct ptlrpc_bulk_desc *desc,
155                            cfs_page_t *page, int pageoffset, int len)
156 {
157         LASSERT(desc->bd_iov_count < desc->bd_max_iov);
158         LASSERT(page != NULL);
159         LASSERT(pageoffset >= 0);
160         LASSERT(len > 0);
161         LASSERT(pageoffset + len <= CFS_PAGE_SIZE);
162
163         desc->bd_nob += len;
164
165         ptlrpc_add_bulk_page(desc, page, pageoffset, len);
166 }
167
168 void ptlrpc_free_bulk(struct ptlrpc_bulk_desc *desc)
169 {
170         ENTRY;
171
172         LASSERT(desc != NULL);
173         LASSERT(desc->bd_iov_count != LI_POISON); /* not freed already */
174         LASSERT(!desc->bd_network_rw);         /* network hands off or */
175         LASSERT((desc->bd_export != NULL) ^ (desc->bd_import != NULL));
176
177         sptlrpc_enc_pool_put_pages(desc);
178
179         if (desc->bd_export)
180                 class_export_put(desc->bd_export);
181         else
182                 class_import_put(desc->bd_import);
183
184         OBD_FREE(desc, offsetof(struct ptlrpc_bulk_desc,
185                                 bd_iov[desc->bd_max_iov]));
186         EXIT;
187 }
188
189 /* Set server timelimit for this req */
190 void ptlrpc_at_set_req_timeout(struct ptlrpc_request *req)
191 {
192         __u32 serv_est;
193         int idx;
194         struct imp_at *at;
195
196         LASSERT(req->rq_import);
197
198         if (AT_OFF) {
199                 /* non-AT settings */
200                 req->rq_timeout = req->rq_import->imp_server_timeout ?
201                         obd_timeout / 2 : obd_timeout;
202                 lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
203                 return;
204         }
205
206         at = &req->rq_import->imp_at;
207         idx = import_at_get_index(req->rq_import,
208                                   req->rq_request_portal);
209         serv_est = at_get(&at->iat_service_estimate[idx]);
210         /* add an arbitrary minimum: 125% +5 sec */
211         req->rq_timeout = serv_est + (serv_est >> 2) + 5;
212         /* We could get even fancier here, using history to predict increased
213            loading... */
214
215         /* Let the server know what this RPC timeout is by putting it in the
216            reqmsg*/
217         lustre_msg_set_timeout(req->rq_reqmsg, req->rq_timeout);
218 }
219
220 /* Adjust max service estimate based on server value */
221 static void ptlrpc_at_adj_service(struct ptlrpc_request *req)
222 {
223         int idx;
224         unsigned int serv_est, oldse;
225         struct imp_at *at = &req->rq_import->imp_at;
226
227         LASSERT(req->rq_import);
228
229         /* service estimate is returned in the repmsg timeout field,
230            may be 0 on err */
231         serv_est = lustre_msg_get_timeout(req->rq_repmsg);
232
233         idx = import_at_get_index(req->rq_import, req->rq_request_portal);
234         /* max service estimates are tracked on the server side,
235            so just keep minimal history here */
236         oldse = at_add(&at->iat_service_estimate[idx], serv_est);
237         if (oldse != 0)
238                 CDEBUG(D_ADAPTTO, "The RPC service estimate for %s ptl %d "
239                        "has changed from %d to %d\n",
240                        req->rq_import->imp_obd->obd_name,req->rq_request_portal,
241                        oldse, at_get(&at->iat_service_estimate[idx]));
242 }
243
244 /* Expected network latency per remote node (secs) */
245 int ptlrpc_at_get_net_latency(struct ptlrpc_request *req)
246 {
247         return AT_OFF ? 0 : at_get(&req->rq_import->imp_at.iat_net_latency);
248 }
249
250 /* Adjust expected network latency */
251 static void ptlrpc_at_adj_net_latency(struct ptlrpc_request *req)
252 {
253         unsigned int st, nl, oldnl;
254         struct imp_at *at = &req->rq_import->imp_at;
255         time_t now = cfs_time_current_sec();
256
257         LASSERT(req->rq_import);
258
259         st = lustre_msg_get_service_time(req->rq_repmsg);
260
261         /* Network latency is total time less server processing time */
262         nl = max_t(int, now - req->rq_sent - st, 0) + 1/*st rounding*/;
263         if (st > now - req->rq_sent + 3 /* bz16408 */)
264                 CWARN("Reported service time %u > total measured time "
265                        CFS_DURATION_T"\n", st, cfs_time_sub(now, req->rq_sent));
266
267         oldnl = at_add(&at->iat_net_latency, nl);
268         if (oldnl != 0)
269                 CDEBUG(D_ADAPTTO, "The network latency for %s (nid %s) "
270                        "has changed from %d to %d\n",
271                        req->rq_import->imp_obd->obd_name,
272                        obd_uuid2str(
273                                &req->rq_import->imp_connection->c_remote_uuid),
274                        oldnl, at_get(&at->iat_net_latency));
275 }
276
277 static int unpack_reply(struct ptlrpc_request *req)
278 {
279         int rc;
280
281         /* Clear reply swab mask; we may have already swabbed an early reply */
282         req->rq_rep_swab_mask = 0;
283
284         rc = lustre_unpack_msg(req->rq_repmsg, req->rq_replen);
285         if (rc) {
286                 DEBUG_REQ(D_ERROR, req, "unpack_rep failed: %d", rc);
287                 return(-EPROTO);
288         }
289
290         rc = lustre_unpack_rep_ptlrpc_body(req, MSG_PTLRPC_BODY_OFF);
291         if (rc) {
292                 DEBUG_REQ(D_ERROR, req, "unpack ptlrpc body failed: %d", rc);
293                 return(-EPROTO);
294         }
295         return 0;
296 }
297
298 /*
299  * Handle an early reply message, called with the rq_lock held.
300  * If anything goes wrong just ignore it - same as if it never happened
301  */
302 static int ptlrpc_at_recv_early_reply(struct ptlrpc_request *req) {
303         time_t          olddl;
304         int             rc;
305         ENTRY;
306
307         req->rq_early = 0;
308         spin_unlock(&req->rq_lock);
309
310         rc = sptlrpc_cli_unwrap_early_reply(req);
311         if (rc)
312                 GOTO(out, rc);
313
314         rc = unpack_reply(req);
315         if (rc)
316                 GOTO(out_cleanup, rc);
317
318         /* Expecting to increase the service time estimate here */
319         ptlrpc_at_adj_service(req);
320         ptlrpc_at_adj_net_latency(req);
321
322         /* Adjust the local timeout for this req */
323         ptlrpc_at_set_req_timeout(req);
324
325         olddl = req->rq_deadline;
326         /* server assumes it now has rq_timeout from when it sent the
327            early reply, so client should give it at least that long. */
328         req->rq_deadline = cfs_time_current_sec() + req->rq_timeout +
329                     ptlrpc_at_get_net_latency(req);
330
331         DEBUG_REQ(D_ADAPTTO, req,
332                   "Early reply #%d, new deadline in "CFS_DURATION_T"s ("
333                   CFS_DURATION_T"s)", req->rq_early_count,
334                   cfs_time_sub(req->rq_deadline, cfs_time_current_sec()),
335                   cfs_time_sub(req->rq_deadline, olddl));
336
337 out_cleanup:
338         sptlrpc_cli_finish_early_reply(req);
339 out:
340         spin_lock(&req->rq_lock);
341         RETURN(rc);
342 }
343
344 void ptlrpc_free_rq_pool(struct ptlrpc_request_pool *pool)
345 {
346         struct list_head *l, *tmp;
347         struct ptlrpc_request *req;
348
349         if (!pool)
350                 return;
351
352         list_for_each_safe(l, tmp, &pool->prp_req_list) {
353                 req = list_entry(l, struct ptlrpc_request, rq_list);
354                 list_del(&req->rq_list);
355                 LASSERT(req->rq_reqbuf);
356                 LASSERT(req->rq_reqbuf_len == pool->prp_rq_size);
357                 OBD_FREE(req->rq_reqbuf, pool->prp_rq_size);
358                 OBD_FREE(req, sizeof(*req));
359         }
360         OBD_FREE(pool, sizeof(*pool));
361 }
362
363 void ptlrpc_add_rqs_to_pool(struct ptlrpc_request_pool *pool, int num_rq)
364 {
365         int i;
366         int size = 1;
367
368         while (size < pool->prp_rq_size + SPTLRPC_MAX_PAYLOAD)
369                 size <<= 1;
370
371         LASSERTF(list_empty(&pool->prp_req_list) || size == pool->prp_rq_size,
372                  "Trying to change pool size with nonempty pool "
373                  "from %d to %d bytes\n", pool->prp_rq_size, size);
374
375         spin_lock(&pool->prp_lock);
376         pool->prp_rq_size = size;
377         for (i = 0; i < num_rq; i++) {
378                 struct ptlrpc_request *req;
379                 struct lustre_msg *msg;
380
381                 spin_unlock(&pool->prp_lock);
382                 OBD_ALLOC(req, sizeof(struct ptlrpc_request));
383                 if (!req)
384                         return;
385                 OBD_ALLOC_GFP(msg, size, CFS_ALLOC_STD);
386                 if (!msg) {
387                         OBD_FREE(req, sizeof(struct ptlrpc_request));
388                         return;
389                 }
390                 req->rq_reqbuf = msg;
391                 req->rq_reqbuf_len = size;
392                 req->rq_pool = pool;
393                 spin_lock(&pool->prp_lock);
394                 list_add_tail(&req->rq_list, &pool->prp_req_list);
395         }
396         spin_unlock(&pool->prp_lock);
397         return;
398 }
399
400 struct ptlrpc_request_pool *ptlrpc_init_rq_pool(int num_rq, int msgsize,
401                                                 void (*populate_pool)(struct ptlrpc_request_pool *, int))
402 {
403         struct ptlrpc_request_pool *pool;
404
405         OBD_ALLOC(pool, sizeof (struct ptlrpc_request_pool));
406         if (!pool)
407                 return NULL;
408
409         /* Request next power of two for the allocation, because internally
410            kernel would do exactly this */
411
412         spin_lock_init(&pool->prp_lock);
413         CFS_INIT_LIST_HEAD(&pool->prp_req_list);
414         pool->prp_rq_size = msgsize;
415         pool->prp_populate = populate_pool;
416
417         populate_pool(pool, num_rq);
418
419         if (list_empty(&pool->prp_req_list)) {
420                 /* have not allocated a single request for the pool */
421                 OBD_FREE(pool, sizeof (struct ptlrpc_request_pool));
422                 pool = NULL;
423         }
424         return pool;
425 }
426
427 static struct ptlrpc_request *ptlrpc_prep_req_from_pool(struct ptlrpc_request_pool *pool)
428 {
429         struct ptlrpc_request *request;
430         struct lustre_msg *reqbuf;
431
432         if (!pool)
433                 return NULL;
434
435         spin_lock(&pool->prp_lock);
436
437         /* See if we have anything in a pool, and bail out if nothing,
438          * in writeout path, where this matters, this is safe to do, because
439          * nothing is lost in this case, and when some in-flight requests
440          * complete, this code will be called again. */
441         if (unlikely(list_empty(&pool->prp_req_list))) {
442                 spin_unlock(&pool->prp_lock);
443                 return NULL;
444         }
445
446         request = list_entry(pool->prp_req_list.next, struct ptlrpc_request,
447                              rq_list);
448         list_del(&request->rq_list);
449         spin_unlock(&pool->prp_lock);
450
451         LASSERT(request->rq_reqbuf);
452         LASSERT(request->rq_pool);
453
454         reqbuf = request->rq_reqbuf;
455         memset(request, 0, sizeof(*request));
456         request->rq_reqbuf = reqbuf;
457         request->rq_reqbuf_len = pool->prp_rq_size;
458         request->rq_pool = pool;
459
460         return request;
461 }
462
463 static void __ptlrpc_free_req_to_pool(struct ptlrpc_request *request)
464 {
465         struct ptlrpc_request_pool *pool = request->rq_pool;
466
467         spin_lock(&pool->prp_lock);
468         LASSERT(list_empty(&request->rq_list));
469         list_add_tail(&request->rq_list, &pool->prp_req_list);
470         spin_unlock(&pool->prp_lock);
471 }
472
473 static int __ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
474                                       __u32 version, int opcode,
475                                       int count, __u32 *lengths, char **bufs,
476                                       struct ptlrpc_cli_ctx *ctx)
477 {
478         struct obd_import  *imp = request->rq_import;
479         int                 rc;
480         ENTRY;
481
482         if (unlikely(ctx))
483                 request->rq_cli_ctx = sptlrpc_cli_ctx_get(ctx);
484         else {
485                 rc = sptlrpc_req_get_ctx(request);
486                 if (rc)
487                         GOTO(out_free, rc);
488         }
489
490         sptlrpc_req_set_flavor(request, opcode);
491
492         rc = lustre_pack_request(request, imp->imp_msg_magic, count,
493                                  lengths, bufs);
494         if (rc) {
495                 LASSERT(!request->rq_pool);
496                 GOTO(out_ctx, rc);
497         }
498
499         lustre_msg_add_version(request->rq_reqmsg, version);
500         request->rq_send_state = LUSTRE_IMP_FULL;
501         request->rq_type = PTL_RPC_MSG_REQUEST;
502         request->rq_export = NULL;
503
504         request->rq_req_cbid.cbid_fn  = request_out_callback;
505         request->rq_req_cbid.cbid_arg = request;
506
507         request->rq_reply_cbid.cbid_fn  = reply_in_callback;
508         request->rq_reply_cbid.cbid_arg = request;
509
510         request->rq_phase = RQ_PHASE_NEW;
511
512         request->rq_request_portal = imp->imp_client->cli_request_portal;
513         request->rq_reply_portal = imp->imp_client->cli_reply_portal;
514
515         ptlrpc_at_set_req_timeout(request);
516
517         spin_lock_init(&request->rq_lock);
518         CFS_INIT_LIST_HEAD(&request->rq_list);
519         CFS_INIT_LIST_HEAD(&request->rq_timed_list);
520         CFS_INIT_LIST_HEAD(&request->rq_replay_list);
521         CFS_INIT_LIST_HEAD(&request->rq_mod_list);
522         CFS_INIT_LIST_HEAD(&request->rq_ctx_chain);
523         CFS_INIT_LIST_HEAD(&request->rq_set_chain);
524         CFS_INIT_LIST_HEAD(&request->rq_history_list);
525         cfs_waitq_init(&request->rq_reply_waitq);
526         request->rq_xid = ptlrpc_next_xid();
527         atomic_set(&request->rq_refcount, 1);
528
529         lustre_msg_set_opc(request->rq_reqmsg, opcode);
530
531         RETURN(0);
532 out_ctx:
533         sptlrpc_cli_ctx_put(request->rq_cli_ctx, 1);
534 out_free:
535         class_import_put(imp);
536         return rc;
537 }
538
539 int ptlrpc_request_bufs_pack(struct ptlrpc_request *request,
540                              __u32 version, int opcode, char **bufs,
541                              struct ptlrpc_cli_ctx *ctx)
542 {
543         int count;
544
545         count = req_capsule_filled_sizes(&request->rq_pill, RCL_CLIENT);
546         return __ptlrpc_request_bufs_pack(request, version, opcode, count,
547                                           request->rq_pill.rc_area[RCL_CLIENT],
548                                           bufs, ctx);
549 }
550 EXPORT_SYMBOL(ptlrpc_request_bufs_pack);
551
552 int ptlrpc_request_pack(struct ptlrpc_request *request,
553                         __u32 version, int opcode)
554 {
555         return ptlrpc_request_bufs_pack(request, version, opcode, NULL, NULL);
556 }
557
558 static inline
559 struct ptlrpc_request *__ptlrpc_request_alloc(struct obd_import *imp,
560                                               struct ptlrpc_request_pool *pool)
561 {
562         struct ptlrpc_request *request = NULL;
563
564         if (pool)
565                 request = ptlrpc_prep_req_from_pool(pool);
566
567         if (!request)
568                 OBD_ALLOC_PTR(request);
569
570         if (request) {
571                 LASSERT((unsigned long)imp > 0x1000);
572                 LASSERT(imp != LP_POISON);
573                 LASSERT((unsigned long)imp->imp_client > 0x1000);
574                 LASSERT(imp->imp_client != LP_POISON);
575
576                 request->rq_import = class_import_get(imp);
577         } else {
578                 CERROR("request allocation out of memory\n");
579         }
580
581         return request;
582 }
583
584 static struct ptlrpc_request *
585 ptlrpc_request_alloc_internal(struct obd_import *imp,
586                               struct ptlrpc_request_pool * pool,
587                               const struct req_format *format)
588 {
589         struct ptlrpc_request *request;
590
591         request = __ptlrpc_request_alloc(imp, pool);
592         if (request == NULL)
593                 return NULL;
594
595         req_capsule_init(&request->rq_pill, request, RCL_CLIENT);
596         req_capsule_set(&request->rq_pill, format);
597         return request;
598 }
599
600 struct ptlrpc_request *ptlrpc_request_alloc(struct obd_import *imp,
601                                             const struct req_format *format)
602 {
603         return ptlrpc_request_alloc_internal(imp, NULL, format);
604 }
605
606 struct ptlrpc_request *ptlrpc_request_alloc_pool(struct obd_import *imp,
607                                             struct ptlrpc_request_pool * pool,
608                                             const struct req_format *format)
609 {
610         return ptlrpc_request_alloc_internal(imp, pool, format);
611 }
612
613 void ptlrpc_request_free(struct ptlrpc_request *request)
614 {
615         if (request->rq_pool)
616                 __ptlrpc_free_req_to_pool(request);
617         else
618                 OBD_FREE_PTR(request);
619 }
620
621 struct ptlrpc_request *ptlrpc_request_alloc_pack(struct obd_import *imp,
622                                                 const struct req_format *format,
623                                                 __u32 version, int opcode)
624 {
625         struct ptlrpc_request *req = ptlrpc_request_alloc(imp, format);
626         int                    rc;
627
628         if (req) {
629                 rc = ptlrpc_request_pack(req, version, opcode);
630                 if (rc) {
631                         ptlrpc_request_free(req);
632                         req = NULL;
633                 }
634         }
635         return req;
636 }
637
638 struct ptlrpc_request *
639 ptlrpc_prep_req_pool(struct obd_import *imp,
640                      __u32 version, int opcode,
641                      int count, __u32 *lengths, char **bufs,
642                      struct ptlrpc_request_pool *pool)
643 {
644         struct ptlrpc_request *request;
645         int                    rc;
646
647         request = __ptlrpc_request_alloc(imp, pool);
648         if (!request)
649                 return NULL;
650
651         rc = __ptlrpc_request_bufs_pack(request, version, opcode, count,
652                                         lengths, bufs, NULL);
653         if (rc) {
654                 ptlrpc_request_free(request);
655                 request = NULL;
656         }
657         return request;
658 }
659
660 struct ptlrpc_request *
661 ptlrpc_prep_req(struct obd_import *imp, __u32 version, int opcode, int count,
662                 __u32 *lengths, char **bufs)
663 {
664         return ptlrpc_prep_req_pool(imp, version, opcode, count, lengths, bufs,
665                                     NULL);
666 }
667
668 struct ptlrpc_request_set *ptlrpc_prep_set(void)
669 {
670         struct ptlrpc_request_set *set;
671
672         ENTRY;
673         OBD_ALLOC(set, sizeof *set);
674         if (!set)
675                 RETURN(NULL);
676         CFS_INIT_LIST_HEAD(&set->set_requests);
677         cfs_waitq_init(&set->set_waitq);
678         set->set_remaining = 0;
679         spin_lock_init(&set->set_new_req_lock);
680         CFS_INIT_LIST_HEAD(&set->set_new_requests);
681         CFS_INIT_LIST_HEAD(&set->set_cblist);
682
683         RETURN(set);
684 }
685
686 /* Finish with this set; opposite of prep_set. */
687 void ptlrpc_set_destroy(struct ptlrpc_request_set *set)
688 {
689         struct list_head *tmp;
690         struct list_head *next;
691         int               expected_phase;
692         int               n = 0;
693         ENTRY;
694
695         /* Requests on the set should either all be completed, or all be new */
696         expected_phase = (set->set_remaining == 0) ?
697                          RQ_PHASE_COMPLETE : RQ_PHASE_NEW;
698         list_for_each (tmp, &set->set_requests) {
699                 struct ptlrpc_request *req =
700                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
701
702                 LASSERT(req->rq_phase == expected_phase);
703                 n++;
704         }
705
706         LASSERT(set->set_remaining == 0 || set->set_remaining == n);
707
708         list_for_each_safe(tmp, next, &set->set_requests) {
709                 struct ptlrpc_request *req =
710                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
711                 list_del_init(&req->rq_set_chain);
712
713                 LASSERT(req->rq_phase == expected_phase);
714
715                 if (req->rq_phase == RQ_PHASE_NEW) {
716
717                         if (req->rq_interpret_reply != NULL) {
718                                 int (*interpreter)(struct ptlrpc_request *,
719                                                    void *, int) =
720                                         req->rq_interpret_reply;
721
722                                 /* higher level (i.e. LOV) failed;
723                                  * let the sub reqs clean up */
724                                 req->rq_status = -EBADR;
725                                 interpreter(req, &req->rq_async_args,
726                                             req->rq_status);
727                         }
728                         set->set_remaining--;
729                 }
730
731                 req->rq_set = NULL;
732                 ptlrpc_req_finished (req);
733         }
734
735         LASSERT(set->set_remaining == 0);
736
737         OBD_FREE(set, sizeof(*set));
738         EXIT;
739 }
740
741 int ptlrpc_set_add_cb(struct ptlrpc_request_set *set,
742                       set_interpreter_func fn, void *data)
743 {
744         struct ptlrpc_set_cbdata *cbdata;
745
746         OBD_ALLOC_PTR(cbdata);
747         if (cbdata == NULL)
748                 RETURN(-ENOMEM);
749
750         cbdata->psc_interpret = fn;
751         cbdata->psc_data = data;
752         list_add_tail(&cbdata->psc_item, &set->set_cblist);
753
754         RETURN(0);
755 }
756
757 void ptlrpc_set_add_req(struct ptlrpc_request_set *set,
758                         struct ptlrpc_request *req)
759 {
760         /* The set takes over the caller's request reference */
761         list_add_tail(&req->rq_set_chain, &set->set_requests);
762         req->rq_set = set;
763         set->set_remaining++;
764
765         atomic_inc(&req->rq_import->imp_inflight);
766 }
767
768 /**
769  * Lock so many callers can add things, the context that owns the set
770  * is supposed to notice these and move them into the set proper.
771  */
772 int ptlrpc_set_add_new_req(struct ptlrpcd_ctl *pc,
773                            struct ptlrpc_request *req)
774 {
775         struct ptlrpc_request_set *set = pc->pc_set;
776
777         /*
778          * Let caller know that we stopped and will not handle this request.
779          * It needs to take care itself of request.
780          */
781         if (test_bit(LIOD_STOP, &pc->pc_flags))
782                 return -EALREADY;
783
784         spin_lock(&set->set_new_req_lock);
785         /*
786          * The set takes over the caller's request reference.
787          */
788         list_add_tail(&req->rq_set_chain, &set->set_new_requests);
789         req->rq_set = set;
790         spin_unlock(&set->set_new_req_lock);
791
792         /*
793          * Let thead know that we added something and better it to wake up
794          * and process.
795          */
796         cfs_waitq_signal(&set->set_waitq);
797         return 0;
798 }
799
800 /*
801  * Based on the current state of the import, determine if the request
802  * can be sent, is an error, or should be delayed.
803  *
804  * Returns true if this request should be delayed. If false, and
805  * *status is set, then the request can not be sent and *status is the
806  * error code.  If false and status is 0, then request can be sent.
807  *
808  * The imp->imp_lock must be held.
809  */
810 static int ptlrpc_import_delay_req(struct obd_import *imp,
811                                    struct ptlrpc_request *req, int *status)
812 {
813         int delay = 0;
814         ENTRY;
815
816         LASSERT (status != NULL);
817         *status = 0;
818
819         if (req->rq_ctx_init || req->rq_ctx_fini) {
820                 /* always allow ctx init/fini rpc go through */
821         } else if (imp->imp_state == LUSTRE_IMP_NEW) {
822                 DEBUG_REQ(D_ERROR, req, "Uninitialized import.");
823                 *status = -EIO;
824                 LBUG();
825         } else if (imp->imp_state == LUSTRE_IMP_CLOSED) {
826                 DEBUG_REQ(D_ERROR, req, "IMP_CLOSED ");
827                 *status = -EIO;
828         } else if (req->rq_send_state == LUSTRE_IMP_CONNECTING &&
829                    imp->imp_state == LUSTRE_IMP_CONNECTING) {
830                 /* allow CONNECT even if import is invalid */ ;
831                 if (atomic_read(&imp->imp_inval_count) != 0) {
832                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
833                         *status = -EIO;
834                 }
835         } else if ((imp->imp_invalid && (!imp->imp_recon_bk)) ||
836                                          imp->imp_obd->obd_no_recov) {
837                 /* If the import has been invalidated (such as by an OST
838                  * failure), and if the import(MGC) tried all of its connection
839                  * list (Bug 13464), the request must fail with -ESHUTDOWN.
840                  * This indicates the requests should be discarded; an -EIO
841                  * may result in a resend of the request. */
842                 if (!imp->imp_deactive)
843                           DEBUG_REQ(D_ERROR, req, "IMP_INVALID");
844                 *status = -ESHUTDOWN; /* bz 12940 */
845         } else if (req->rq_import_generation != imp->imp_generation) {
846                 DEBUG_REQ(D_ERROR, req, "req wrong generation:");
847                 *status = -EIO;
848         } else if (req->rq_send_state != imp->imp_state) {
849                 /* invalidate in progress - any requests should be drop */
850                 if (atomic_read(&imp->imp_inval_count) != 0) {
851                         DEBUG_REQ(D_ERROR, req, "invalidate in flight");
852                         *status = -EIO;
853                 } else if (imp->imp_dlm_fake || req->rq_no_delay) {
854                         *status = -EWOULDBLOCK;
855                 } else {
856                         delay = 1;
857                 }
858         }
859
860         RETURN(delay);
861 }
862
863 static int ptlrpc_check_reply(struct ptlrpc_request *req)
864 {
865         int rc = 0;
866         ENTRY;
867
868         /* serialise with network callback */
869         spin_lock(&req->rq_lock);
870
871         if (req->rq_replied)
872                 GOTO(out, rc = 1);
873
874         if (req->rq_net_err && !req->rq_timedout) {
875                 spin_unlock(&req->rq_lock);
876                 rc = ptlrpc_expire_one_request(req);
877                 spin_lock(&req->rq_lock);
878                 GOTO(out, rc);
879         }
880
881         if (req->rq_err)
882                 GOTO(out, rc = 1);
883
884         if (req->rq_resend)
885                 GOTO(out, rc = 1);
886
887         if (req->rq_restart)
888                 GOTO(out, rc = 1);
889
890         if (req->rq_early) {
891                 ptlrpc_at_recv_early_reply(req);
892                 GOTO(out, rc = 0); /* keep waiting */
893         }
894
895         EXIT;
896  out:
897         spin_unlock(&req->rq_lock);
898         DEBUG_REQ(D_NET, req, "rc = %d for", rc);
899         return rc;
900 }
901
902 static int ptlrpc_check_status(struct ptlrpc_request *req)
903 {
904         int err;
905         ENTRY;
906
907         err = lustre_msg_get_status(req->rq_repmsg);
908         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR) {
909                 struct obd_import *imp = req->rq_import;
910                 __u32 opc = lustre_msg_get_opc(req->rq_reqmsg);
911                 LCONSOLE_ERROR_MSG(0x011,"an error occurred while communicating"
912                                 " with %s. The %s operation failed with %d\n",
913                                 libcfs_nid2str(imp->imp_connection->c_peer.nid),
914                                 ll_opcode2str(opc), err);
915                 RETURN(err < 0 ? err : -EINVAL);
916         }
917
918         if (err < 0) {
919                 DEBUG_REQ(D_INFO, req, "status is %d", err);
920         } else if (err > 0) {
921                 /* XXX: translate this error from net to host */
922                 DEBUG_REQ(D_INFO, req, "status is %d", err);
923         }
924
925         RETURN(err);
926 }
927
928 /**
929  * Callback function called when client receives RPC reply for \a req.
930  */
931 static int after_reply(struct ptlrpc_request *req)
932 {
933         struct obd_import *imp = req->rq_import;
934         struct obd_device *obd = req->rq_import->imp_obd;
935         int rc;
936         struct timeval work_start;
937         long timediff;
938         ENTRY;
939
940         LASSERT(!req->rq_receiving_reply);
941         LASSERT(obd);
942         LASSERT(req->rq_nob_received <= req->rq_repbuf_len);
943
944         /*
945          * NB Until this point, the whole of the incoming message,
946          * including buflens, status etc is in the sender's byte order.
947          */
948
949         rc = sptlrpc_cli_unwrap_reply(req);
950         if (rc) {
951                 DEBUG_REQ(D_ERROR, req, "unwrap reply failed (%d):", rc);
952                 RETURN(rc);
953         }
954
955         /*
956          * Security layer unwrap might ask resend this request.
957          */
958         if (req->rq_resend)
959                 RETURN(0);
960
961         rc = unpack_reply(req);
962         if (rc)
963                 RETURN(rc);
964
965         do_gettimeofday(&work_start);
966         timediff = cfs_timeval_sub(&work_start, &req->rq_arrival_time, NULL);
967         if (obd->obd_svc_stats != NULL)
968                 lprocfs_counter_add(obd->obd_svc_stats, PTLRPC_REQWAIT_CNTR,
969                                     timediff);
970
971         if (lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_REPLY &&
972             lustre_msg_get_type(req->rq_repmsg) != PTL_RPC_MSG_ERR) {
973                 DEBUG_REQ(D_ERROR, req, "invalid packet received (type=%u)",
974                           lustre_msg_get_type(req->rq_repmsg));
975                 RETURN(-EPROTO);
976         }
977
978         OBD_FAIL_TIMEOUT(OBD_FAIL_PTLRPC_PAUSE_REP, obd_fail_val);
979         ptlrpc_at_adj_service(req);
980         ptlrpc_at_adj_net_latency(req);
981
982         rc = ptlrpc_check_status(req);
983         imp->imp_connect_error = rc;
984
985         if (rc) {
986                 /*
987                  * Either we've been evicted, or the server has failed for
988                  * some reason. Try to reconnect, and if that fails, punt to
989                  * the upcall.
990                  */
991                 if (ll_rpc_recoverable_error(rc)) {
992                         if (req->rq_send_state != LUSTRE_IMP_FULL ||
993                             imp->imp_obd->obd_no_recov || imp->imp_dlm_fake) {
994                                 RETURN(rc);
995                         }
996                         ptlrpc_request_handle_notconn(req);
997                         RETURN(rc);
998                 }
999         } else {
1000                 /*
1001                  * Let's look if server sent slv. Do it only for RPC with
1002                  * rc == 0.
1003                  */
1004                 ldlm_cli_update_pool(req);
1005         }
1006
1007         /*
1008          * Store transno in reqmsg for replay.
1009          */
1010         req->rq_transno = lustre_msg_get_transno(req->rq_repmsg);
1011         lustre_msg_set_transno(req->rq_reqmsg, req->rq_transno);
1012
1013         if (req->rq_import->imp_replayable) {
1014                 spin_lock(&imp->imp_lock);
1015                 /*
1016                  * No point in adding already-committed requests to the replay
1017                  * list, we will just remove them immediately. b=9829
1018                  */
1019                 if (req->rq_transno != 0 &&
1020                     (req->rq_transno >
1021                      lustre_msg_get_last_committed(req->rq_repmsg) ||
1022                      req->rq_replay))
1023                         ptlrpc_retain_replayable_request(req, imp);
1024                 else if (req->rq_commit_cb != NULL) {
1025                         spin_unlock(&imp->imp_lock);
1026                         req->rq_commit_cb(req);
1027                         spin_lock(&imp->imp_lock);
1028                 }
1029
1030                 /*
1031                  * Replay-enabled imports return commit-status information.
1032                  */
1033                 if (lustre_msg_get_last_committed(req->rq_repmsg)) {
1034                         imp->imp_peer_committed_transno =
1035                                 lustre_msg_get_last_committed(req->rq_repmsg);
1036                 }
1037                 ptlrpc_free_committed(imp);
1038                 spin_unlock(&imp->imp_lock);
1039         }
1040
1041         RETURN(rc);
1042 }
1043
1044 static int ptlrpc_send_new_req(struct ptlrpc_request *req)
1045 {
1046         struct obd_import     *imp;
1047         int rc;
1048         ENTRY;
1049
1050         LASSERT(req->rq_phase == RQ_PHASE_NEW);
1051         if (req->rq_sent && (req->rq_sent > cfs_time_current_sec()))
1052                 RETURN (0);
1053
1054         req->rq_phase = RQ_PHASE_RPC;
1055
1056         imp = req->rq_import;
1057         spin_lock(&imp->imp_lock);
1058
1059         req->rq_import_generation = imp->imp_generation;
1060
1061         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1062                 spin_lock (&req->rq_lock);
1063                 req->rq_waiting = 1;
1064                 spin_unlock (&req->rq_lock);
1065
1066                 DEBUG_REQ(D_HA, req, "req from PID %d waiting for recovery: "
1067                           "(%s != %s)",
1068                           lustre_msg_get_status(req->rq_reqmsg) ,
1069                           ptlrpc_import_state_name(req->rq_send_state),
1070                           ptlrpc_import_state_name(imp->imp_state));
1071                 LASSERT(list_empty (&req->rq_list));
1072
1073                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1074                 spin_unlock(&imp->imp_lock);
1075                 RETURN(0);
1076         }
1077
1078         if (rc != 0) {
1079                 spin_unlock(&imp->imp_lock);
1080                 req->rq_status = rc;
1081                 req->rq_phase = RQ_PHASE_INTERPRET;
1082                 RETURN(rc);
1083         }
1084
1085         /* XXX this is the same as ptlrpc_queue_wait */
1086         LASSERT(list_empty(&req->rq_list));
1087         list_add_tail(&req->rq_list, &imp->imp_sending_list);
1088         spin_unlock(&imp->imp_lock);
1089
1090         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1091
1092         rc = sptlrpc_req_refresh_ctx(req, -1);
1093         if (rc) {
1094                 if (req->rq_err) {
1095                         req->rq_status = rc;
1096                         RETURN(1);
1097                 } else {
1098                         /* here begins timeout counting */
1099                         req->rq_sent = cfs_time_current_sec();
1100                         req->rq_wait_ctx = 1;
1101                         RETURN(0);
1102                 }
1103         }
1104
1105         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc"
1106                " %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1107                imp->imp_obd->obd_uuid.uuid,
1108                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1109                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1110                lustre_msg_get_opc(req->rq_reqmsg));
1111
1112         rc = ptl_send_rpc(req, 0);
1113         if (rc) {
1114                 DEBUG_REQ(D_HA, req, "send failed (%d); expect timeout", rc);
1115                 req->rq_net_err = 1;
1116                 RETURN(rc);
1117         }
1118         RETURN(0);
1119 }
1120
1121 /* this sends any unsent RPCs in @set and returns TRUE if all are sent */
1122 int ptlrpc_check_set(struct ptlrpc_request_set *set)
1123 {
1124         struct list_head *tmp;
1125         int force_timer_recalc = 0;
1126         ENTRY;
1127
1128         if (set->set_remaining == 0)
1129                 RETURN(1);
1130
1131         list_for_each(tmp, &set->set_requests) {
1132                 struct ptlrpc_request *req =
1133                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1134                 struct obd_import *imp = req->rq_import;
1135                 int rc = 0;
1136
1137                 if (req->rq_phase == RQ_PHASE_NEW &&
1138                     ptlrpc_send_new_req(req)) {
1139                         force_timer_recalc = 1;
1140                 }
1141                 /* delayed send - skip */
1142                 if (req->rq_phase == RQ_PHASE_NEW && req->rq_sent)
1143                         continue;
1144
1145                 if (!(req->rq_phase == RQ_PHASE_RPC ||
1146                       req->rq_phase == RQ_PHASE_BULK ||
1147                       req->rq_phase == RQ_PHASE_INTERPRET ||
1148                       req->rq_phase == RQ_PHASE_COMPLETE)) {
1149                         DEBUG_REQ(D_ERROR, req, "bad phase %x", req->rq_phase);
1150                         LBUG();
1151                 }
1152
1153                 if (req->rq_phase == RQ_PHASE_COMPLETE)
1154                         continue;
1155
1156                 if (req->rq_phase == RQ_PHASE_INTERPRET)
1157                         GOTO(interpret, req->rq_status);
1158
1159                 if (req->rq_net_err && !req->rq_timedout)
1160                         ptlrpc_expire_one_request(req);
1161
1162                 if (req->rq_err) {
1163                         ptlrpc_unregister_reply(req);
1164                         req->rq_replied = 0;
1165                         if (req->rq_status == 0)
1166                                 req->rq_status = -EIO;
1167                         req->rq_phase = RQ_PHASE_INTERPRET;
1168
1169                         spin_lock(&imp->imp_lock);
1170                         list_del_init(&req->rq_list);
1171                         spin_unlock(&imp->imp_lock);
1172
1173                         GOTO(interpret, req->rq_status);
1174                 }
1175
1176                 /* ptlrpc_queue_wait->l_wait_event guarantees that rq_intr
1177                  * will only be set after rq_timedout, but the oig waiting
1178                  * path sets rq_intr irrespective of whether ptlrpcd has
1179                  * seen a timeout.  our policy is to only interpret
1180                  * interrupted rpcs after they have timed out */
1181                 if (req->rq_intr && (req->rq_timedout || req->rq_waiting ||
1182                                      req->rq_wait_ctx)) {
1183                         /* NB could be on delayed list */
1184                         ptlrpc_unregister_reply(req);
1185                         req->rq_status = -EINTR;
1186                         req->rq_phase = RQ_PHASE_INTERPRET;
1187
1188                         spin_lock(&imp->imp_lock);
1189                         list_del_init(&req->rq_list);
1190                         spin_unlock(&imp->imp_lock);
1191
1192                         GOTO(interpret, req->rq_status);
1193                 }
1194
1195                 if (req->rq_phase == RQ_PHASE_RPC) {
1196                         if (req->rq_timedout || req->rq_resend ||
1197                             req->rq_waiting || req->rq_wait_ctx) {
1198                                 int status;
1199
1200                                 /* rq_wait_ctx is only touched in ptlrpcd,
1201                                  * no lock needed here.
1202                                  */
1203                                 if (req->rq_wait_ctx)
1204                                         goto check_ctx;
1205
1206                                 ptlrpc_unregister_reply(req);
1207
1208                                 spin_lock(&imp->imp_lock);
1209
1210                                 if (ptlrpc_import_delay_req(imp, req, &status)){
1211                                         spin_unlock(&imp->imp_lock);
1212                                         continue;
1213                                 }
1214
1215                                 list_del_init(&req->rq_list);
1216                                 if (status != 0)  {
1217                                         req->rq_status = status;
1218                                         req->rq_phase = RQ_PHASE_INTERPRET;
1219                                         spin_unlock(&imp->imp_lock);
1220                                         GOTO(interpret, req->rq_status);
1221                                 }
1222                                 if (req->rq_no_resend && !req->rq_wait_ctx) {
1223                                         req->rq_status = -ENOTCONN;
1224                                         req->rq_phase = RQ_PHASE_INTERPRET;
1225                                         spin_unlock(&imp->imp_lock);
1226                                         GOTO(interpret, req->rq_status);
1227                                 }
1228                                 list_add_tail(&req->rq_list,
1229                                               &imp->imp_sending_list);
1230
1231                                 spin_unlock(&imp->imp_lock);
1232
1233                                 req->rq_waiting = 0;
1234                                 if (req->rq_resend) {
1235                                         lustre_msg_add_flags(req->rq_reqmsg,
1236                                                              MSG_RESENT);
1237                                         if (req->rq_bulk) {
1238                                                 __u64 old_xid = req->rq_xid;
1239
1240                                                 ptlrpc_unregister_bulk (req);
1241
1242                                                 /* ensure previous bulk fails */
1243                                                 req->rq_xid = ptlrpc_next_xid();
1244                                                 CDEBUG(D_HA, "resend bulk "
1245                                                        "old x"LPU64
1246                                                        " new x"LPU64"\n",
1247                                                        old_xid, req->rq_xid);
1248                                         }
1249                                 }
1250 check_ctx:
1251                                 status = sptlrpc_req_refresh_ctx(req, -1);
1252                                 if (status) {
1253                                         if (req->rq_err) {
1254                                                 req->rq_status = status;
1255                                                 force_timer_recalc = 1;
1256                                         }
1257                                         if (!req->rq_wait_ctx) {
1258                                                 /* begins timeout counting */
1259                                                 req->rq_sent = cfs_time_current_sec();
1260                                                 req->rq_wait_ctx = 1;
1261                                         }
1262                                         continue;
1263                                 } else {
1264                                         req->rq_sent = 0;
1265                                         req->rq_wait_ctx = 0;
1266                                 }
1267
1268                                 rc = ptl_send_rpc(req, 0);
1269                                 if (rc) {
1270                                         DEBUG_REQ(D_HA, req, "send failed (%d)",
1271                                                   rc);
1272                                         force_timer_recalc = 1;
1273                                         req->rq_net_err = 1;
1274                                 }
1275                                 /* need to reset the timeout */
1276                                 force_timer_recalc = 1;
1277                         }
1278
1279                         spin_lock(&req->rq_lock);
1280
1281                         if (req->rq_early) {
1282                                 ptlrpc_at_recv_early_reply(req);
1283                                 spin_unlock(&req->rq_lock);
1284                                 continue;
1285                         }
1286
1287                         /* Still waiting for a reply? */
1288                         if (req->rq_receiving_reply) {
1289                                 spin_unlock(&req->rq_lock);
1290                                 continue;
1291                         }
1292
1293                         /* Did we actually receive a reply? */
1294                         if (!req->rq_replied) {
1295                                 spin_unlock(&req->rq_lock);
1296                                 continue;
1297                         }
1298
1299                         spin_unlock(&req->rq_lock);
1300
1301                         spin_lock(&imp->imp_lock);
1302                         list_del_init(&req->rq_list);
1303                         spin_unlock(&imp->imp_lock);
1304
1305                         req->rq_status = after_reply(req);
1306                         if (req->rq_resend) {
1307                                 /* Add this req to the delayed list so
1308                                    it can be errored if the import is
1309                                    evicted after recovery. */
1310                                 spin_lock(&imp->imp_lock);
1311                                 list_add_tail(&req->rq_list,
1312                                               &imp->imp_delayed_list);
1313                                 spin_unlock(&imp->imp_lock);
1314                                 continue;
1315                         }
1316
1317                         /* If there is no bulk associated with this request,
1318                          * then we're done and should let the interpreter
1319                          * process the reply.  Similarly if the RPC returned
1320                          * an error, and therefore the bulk will never arrive.
1321                          */
1322                         if (req->rq_bulk == NULL || req->rq_status != 0) {
1323                                 req->rq_phase = RQ_PHASE_INTERPRET;
1324                                 GOTO(interpret, req->rq_status);
1325                         }
1326
1327                         req->rq_phase = RQ_PHASE_BULK;
1328                 }
1329
1330                 LASSERT(req->rq_phase == RQ_PHASE_BULK);
1331                 if (ptlrpc_bulk_active(req->rq_bulk))
1332                         continue;
1333
1334                 if (!req->rq_bulk->bd_success) {
1335                         /* The RPC reply arrived OK, but the bulk screwed
1336                          * up!  Dead wierd since the server told us the RPC
1337                          * was good after getting the REPLY for her GET or
1338                          * the ACK for her PUT. */
1339                         DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
1340                         LBUG();
1341                 }
1342
1343                 req->rq_phase = RQ_PHASE_INTERPRET;
1344
1345         interpret:
1346                 LASSERT(req->rq_phase == RQ_PHASE_INTERPRET);
1347                 LASSERT(!req->rq_receiving_reply);
1348
1349                 ptlrpc_unregister_reply(req);
1350                 if (req->rq_bulk != NULL)
1351                         ptlrpc_unregister_bulk (req);
1352
1353                 if (req->rq_interpret_reply != NULL) {
1354                         int (*interpreter)(struct ptlrpc_request *,void *,int) =
1355                                 req->rq_interpret_reply;
1356                         req->rq_status = interpreter(req, &req->rq_async_args,
1357                                                      req->rq_status);
1358                 }
1359                 req->rq_phase = RQ_PHASE_COMPLETE;
1360
1361                 CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:"
1362                        "opc %s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1363                        imp->imp_obd->obd_uuid.uuid,
1364                        lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1365                        libcfs_nid2str(imp->imp_connection->c_peer.nid),
1366                        lustre_msg_get_opc(req->rq_reqmsg));
1367
1368                 atomic_dec(&imp->imp_inflight);
1369                 set->set_remaining--;
1370                 cfs_waitq_signal(&imp->imp_recovery_waitq);
1371         }
1372
1373         /* If we hit an error, we want to recover promptly. */
1374         RETURN(set->set_remaining == 0 || force_timer_recalc);
1375 }
1376
1377 /* Return 1 if we should give up, else 0 */
1378 int ptlrpc_expire_one_request(struct ptlrpc_request *req)
1379 {
1380         struct obd_import *imp = req->rq_import;
1381         int rc = 0;
1382         ENTRY;
1383
1384         DEBUG_REQ(D_ERROR|D_NETERROR, req,
1385                   "%s (sent at "CFS_TIME_T", "CFS_DURATION_T"s ago)",
1386                   req->rq_net_err ? "network error" : "timeout",
1387                   req->rq_sent, cfs_time_sub(cfs_time_current_sec(),
1388                   req->rq_sent));
1389
1390         if (imp) {
1391                 LCONSOLE_WARN("Request x"LPU64" sent from %s to NID %s "
1392                               CFS_DURATION_T"s ago has timed out "
1393                               "(limit "CFS_DURATION_T"s).\n", req->rq_xid,
1394                               req->rq_import->imp_obd->obd_name,
1395                               libcfs_nid2str(imp->imp_connection->c_peer.nid),
1396                               cfs_time_sub(cfs_time_current_sec(), req->rq_sent),
1397                               cfs_time_sub(req->rq_deadline, req->rq_sent));
1398         }
1399
1400         if (imp != NULL && obd_debug_peer_on_timeout)
1401                 LNetCtl(IOC_LIBCFS_DEBUG_PEER, &imp->imp_connection->c_peer);
1402
1403         spin_lock(&req->rq_lock);
1404         req->rq_timedout = 1;
1405         req->rq_wait_ctx = 0;
1406         spin_unlock(&req->rq_lock);
1407
1408         ptlrpc_unregister_reply (req);
1409
1410         if (obd_dump_on_timeout)
1411                 libcfs_debug_dumplog();
1412
1413         if (req->rq_bulk != NULL)
1414                 ptlrpc_unregister_bulk (req);
1415
1416         if (imp == NULL) {
1417                 DEBUG_REQ(D_HA, req, "NULL import: already cleaned up?");
1418                 RETURN(1);
1419         }
1420
1421         /* The DLM server doesn't want recovery run on its imports. */
1422         if (imp->imp_dlm_fake)
1423                 RETURN(1);
1424
1425         /* If this request is for recovery or other primordial tasks,
1426          * then error it out here. */
1427         if (req->rq_ctx_init || req->rq_ctx_fini ||
1428             req->rq_send_state != LUSTRE_IMP_FULL ||
1429             imp->imp_obd->obd_no_recov) {
1430                 DEBUG_REQ(D_RPCTRACE, req, "err -110, sent_state=%s (now=%s)",
1431                           ptlrpc_import_state_name(req->rq_send_state),
1432                           ptlrpc_import_state_name(imp->imp_state));
1433                 spin_lock(&req->rq_lock);
1434                 req->rq_status = -ETIMEDOUT;
1435                 req->rq_err = 1;
1436                 spin_unlock(&req->rq_lock);
1437                 RETURN(1);
1438         }
1439
1440         /* if a request can't be resent we can't wait for an answer after
1441            the timeout */
1442         if (req->rq_no_resend) {
1443                 DEBUG_REQ(D_RPCTRACE, req, "TIMEOUT-NORESEND:");
1444                 rc = 1;
1445         }
1446
1447         ptlrpc_fail_import(imp, lustre_msg_get_conn_cnt(req->rq_reqmsg));
1448
1449         RETURN(rc);
1450 }
1451
1452 int ptlrpc_expired_set(void *data)
1453 {
1454         struct ptlrpc_request_set *set = data;
1455         struct list_head          *tmp;
1456         time_t                     now = cfs_time_current_sec();
1457         ENTRY;
1458
1459         LASSERT(set != NULL);
1460
1461         /* A timeout expired; see which reqs it applies to... */
1462         list_for_each (tmp, &set->set_requests) {
1463                 struct ptlrpc_request *req =
1464                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1465
1466                 /* request in-flight? */
1467                 if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting &&
1468                        !req->rq_resend) ||
1469                       (req->rq_phase == RQ_PHASE_BULK)))
1470                         continue;
1471
1472                 if (req->rq_timedout ||           /* already dealt with */
1473                     req->rq_deadline > now)       /* not expired */
1474                         continue;
1475
1476                 /* deal with this guy */
1477                 ptlrpc_expire_one_request (req);
1478         }
1479
1480         /* When waiting for a whole set, we always to break out of the
1481          * sleep so we can recalculate the timeout, or enable interrupts
1482          * iff everyone's timed out.
1483          */
1484         RETURN(1);
1485 }
1486
1487 void ptlrpc_mark_interrupted(struct ptlrpc_request *req)
1488 {
1489         spin_lock(&req->rq_lock);
1490         req->rq_intr = 1;
1491         spin_unlock(&req->rq_lock);
1492 }
1493
1494 void ptlrpc_interrupted_set(void *data)
1495 {
1496         struct ptlrpc_request_set *set = data;
1497         struct list_head *tmp;
1498
1499         LASSERT(set != NULL);
1500         CERROR("INTERRUPTED SET %p\n", set);
1501
1502         list_for_each(tmp, &set->set_requests) {
1503                 struct ptlrpc_request *req =
1504                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1505
1506                 if (req->rq_phase != RQ_PHASE_RPC)
1507                         continue;
1508
1509                 ptlrpc_mark_interrupted(req);
1510         }
1511 }
1512
1513 /* get the smallest timeout in the set; this does NOT set a timeout. */
1514 int ptlrpc_set_next_timeout(struct ptlrpc_request_set *set)
1515 {
1516         struct list_head      *tmp;
1517         time_t                 now = cfs_time_current_sec();
1518         int                    timeout = 0;
1519         struct ptlrpc_request *req;
1520         int                    deadline;
1521         ENTRY;
1522
1523         SIGNAL_MASK_ASSERT(); /* XXX BUG 1511 */
1524
1525         list_for_each(tmp, &set->set_requests) {
1526                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1527
1528                 /* request in-flight? */
1529                 if (!((req->rq_phase == RQ_PHASE_RPC && !req->rq_waiting) ||
1530                       (req->rq_phase == RQ_PHASE_BULK) ||
1531                       (req->rq_phase == RQ_PHASE_NEW)))
1532                         continue;
1533
1534                 if (req->rq_timedout)   /* already timed out */
1535                         continue;
1536
1537                 if (req->rq_phase == RQ_PHASE_NEW)
1538                         deadline = req->rq_sent;
1539                 else
1540                         deadline = req->rq_sent + req->rq_timeout;
1541
1542                 if (deadline <= now)    /* actually expired already */
1543                         timeout = 1;    /* ASAP */
1544                 else if (timeout == 0 || timeout > deadline - now)
1545                         timeout = deadline - now;
1546         }
1547         RETURN(timeout);
1548 }
1549
1550 int ptlrpc_set_wait(struct ptlrpc_request_set *set)
1551 {
1552         struct list_head      *tmp;
1553         struct ptlrpc_request *req;
1554         struct l_wait_info     lwi;
1555         int                    rc, timeout;
1556         ENTRY;
1557
1558         if (list_empty(&set->set_requests))
1559                 RETURN(0);
1560
1561         list_for_each(tmp, &set->set_requests) {
1562                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1563                 if (req->rq_phase == RQ_PHASE_NEW)
1564                         (void)ptlrpc_send_new_req(req);
1565         }
1566
1567         do {
1568                 timeout = ptlrpc_set_next_timeout(set);
1569
1570                 /* wait until all complete, interrupted, or an in-flight
1571                  * req times out */
1572                 CDEBUG(D_RPCTRACE, "set %p going to sleep for %d seconds\n",
1573                        set, timeout);
1574                 lwi = LWI_TIMEOUT_INTR(cfs_time_seconds(timeout ? timeout : 1),
1575                                        ptlrpc_expired_set,
1576                                        ptlrpc_interrupted_set, set);
1577                 rc = l_wait_event(set->set_waitq, ptlrpc_check_set(set), &lwi);
1578
1579                 LASSERT(rc == 0 || rc == -EINTR || rc == -ETIMEDOUT);
1580
1581                 /* -EINTR => all requests have been flagged rq_intr so next
1582                  * check completes.
1583                  * -ETIMEOUTD => someone timed out.  When all reqs have
1584                  * timed out, signals are enabled allowing completion with
1585                  * EINTR.
1586                  * I don't really care if we go once more round the loop in
1587                  * the error cases -eeb. */
1588         } while (rc != 0 || set->set_remaining != 0);
1589
1590         LASSERT(set->set_remaining == 0);
1591
1592         rc = 0;
1593         list_for_each(tmp, &set->set_requests) {
1594                 req = list_entry(tmp, struct ptlrpc_request, rq_set_chain);
1595
1596                 LASSERT(req->rq_phase == RQ_PHASE_COMPLETE);
1597                 if (req->rq_status != 0)
1598                         rc = req->rq_status;
1599         }
1600
1601         if (set->set_interpret != NULL) {
1602                 int (*interpreter)(struct ptlrpc_request_set *set,void *,int) =
1603                         set->set_interpret;
1604                 rc = interpreter (set, set->set_arg, rc);
1605         } else {
1606                 struct ptlrpc_set_cbdata *cbdata, *n;
1607                 int err;
1608
1609                 list_for_each_entry_safe(cbdata, n,
1610                                          &set->set_cblist, psc_item) {
1611                         list_del_init(&cbdata->psc_item);
1612                         err = cbdata->psc_interpret(set, cbdata->psc_data, rc);
1613                         if (err && !rc)
1614                                 rc = err;
1615                         OBD_FREE_PTR(cbdata);
1616                 }
1617         }
1618
1619         RETURN(rc);
1620 }
1621
1622 static void __ptlrpc_free_req(struct ptlrpc_request *request, int locked)
1623 {
1624         ENTRY;
1625         if (request == NULL) {
1626                 EXIT;
1627                 return;
1628         }
1629
1630         LASSERTF(!request->rq_receiving_reply, "req %p\n", request);
1631         LASSERTF(request->rq_rqbd == NULL, "req %p\n",request);/* client-side */
1632         LASSERTF(list_empty(&request->rq_list), "req %p\n", request);
1633         LASSERTF(list_empty(&request->rq_set_chain), "req %p\n", request);
1634         LASSERTF(!request->rq_replay, "req %p\n", request);
1635         LASSERT(request->rq_cli_ctx);
1636
1637         req_capsule_fini(&request->rq_pill);
1638
1639         /* We must take it off the imp_replay_list first.  Otherwise, we'll set
1640          * request->rq_reqmsg to NULL while osc_close is dereferencing it. */
1641         if (request->rq_import != NULL) {
1642                 if (!locked)
1643                         spin_lock(&request->rq_import->imp_lock);
1644                 list_del_init(&request->rq_mod_list);
1645                 list_del_init(&request->rq_replay_list);
1646                 if (!locked)
1647                         spin_unlock(&request->rq_import->imp_lock);
1648         }
1649         LASSERTF(list_empty(&request->rq_replay_list), "req %p\n", request);
1650
1651         if (atomic_read(&request->rq_refcount) != 0) {
1652                 DEBUG_REQ(D_ERROR, request,
1653                           "freeing request with nonzero refcount");
1654                 LBUG();
1655         }
1656
1657         if (request->rq_repbuf != NULL)
1658                 sptlrpc_cli_free_repbuf(request);
1659         if (request->rq_export != NULL) {
1660                 class_export_put(request->rq_export);
1661                 request->rq_export = NULL;
1662         }
1663         if (request->rq_import != NULL) {
1664                 class_import_put(request->rq_import);
1665                 request->rq_import = NULL;
1666         }
1667         if (request->rq_bulk != NULL)
1668                 ptlrpc_free_bulk(request->rq_bulk);
1669
1670         if (request->rq_reqbuf != NULL || request->rq_clrbuf != NULL)
1671                 sptlrpc_cli_free_reqbuf(request);
1672
1673         sptlrpc_req_put_ctx(request, !locked);
1674
1675         if (request->rq_pool)
1676                 __ptlrpc_free_req_to_pool(request);
1677         else
1678                 OBD_FREE(request, sizeof(*request));
1679         EXIT;
1680 }
1681
1682 void ptlrpc_free_req(struct ptlrpc_request *request)
1683 {
1684         __ptlrpc_free_req(request, 0);
1685 }
1686
1687 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked);
1688 void ptlrpc_req_finished_with_imp_lock(struct ptlrpc_request *request)
1689 {
1690         LASSERT_SPIN_LOCKED(&request->rq_import->imp_lock);
1691         (void)__ptlrpc_req_finished(request, 1);
1692 }
1693
1694 static int __ptlrpc_req_finished(struct ptlrpc_request *request, int locked)
1695 {
1696         ENTRY;
1697         if (request == NULL)
1698                 RETURN(1);
1699
1700         if (request == LP_POISON ||
1701             request->rq_reqmsg == LP_POISON) {
1702                 CERROR("dereferencing freed request (bug 575)\n");
1703                 LBUG();
1704                 RETURN(1);
1705         }
1706
1707         DEBUG_REQ(D_INFO, request, "refcount now %u",
1708                   atomic_read(&request->rq_refcount) - 1);
1709
1710         if (atomic_dec_and_test(&request->rq_refcount)) {
1711                 __ptlrpc_free_req(request, locked);
1712                 RETURN(1);
1713         }
1714
1715         RETURN(0);
1716 }
1717
1718 void ptlrpc_req_finished(struct ptlrpc_request *request)
1719 {
1720         __ptlrpc_req_finished(request, 0);
1721 }
1722
1723 __u64 ptlrpc_req_xid(struct ptlrpc_request *request)
1724 {
1725         return request->rq_xid;
1726 }
1727 EXPORT_SYMBOL(ptlrpc_req_xid);
1728
1729 /* Disengage the client's reply buffer from the network
1730  * NB does _NOT_ unregister any client-side bulk.
1731  * IDEMPOTENT, but _not_ safe against concurrent callers.
1732  * The request owner (i.e. the thread doing the I/O) must call...
1733  */
1734 void ptlrpc_unregister_reply (struct ptlrpc_request *request)
1735 {
1736         int                rc;
1737         cfs_waitq_t       *wq;
1738         struct l_wait_info lwi;
1739
1740         LASSERT(!in_interrupt ());             /* might sleep */
1741         if (!ptlrpc_client_recv_or_unlink(request))
1742                 /* Nothing left to do */
1743                 return;
1744
1745         LNetMDUnlink (request->rq_reply_md_h);
1746
1747         /* We have to l_wait_event() whatever the result, to give liblustre
1748          * a chance to run reply_in_callback(), and to make sure we've
1749          * unlinked before returning a req to the pool */
1750
1751         if (request->rq_set != NULL)
1752                 wq = &request->rq_set->set_waitq;
1753         else
1754                 wq = &request->rq_reply_waitq;
1755
1756         for (;;) {
1757                 /* Network access will complete in finite time but the HUGE
1758                  * timeout lets us CWARN for visibility of sluggish NALs */
1759                 lwi = LWI_TIMEOUT(cfs_time_seconds(LONG_UNLINK), NULL, NULL);
1760                 rc = l_wait_event (*wq, !ptlrpc_client_recv_or_unlink(request),
1761                                    &lwi);
1762                 if (rc == 0)
1763                         return;
1764
1765                 LASSERT (rc == -ETIMEDOUT);
1766                 DEBUG_REQ(D_WARNING, request, "Unexpectedly long timeout "
1767                           "rvcng=%d unlnk=%d", request->rq_receiving_reply,
1768                           request->rq_must_unlink);
1769         }
1770 }
1771
1772 /* caller must hold imp->imp_lock */
1773 void ptlrpc_free_committed(struct obd_import *imp)
1774 {
1775         struct list_head *tmp, *saved;
1776         struct ptlrpc_request *req;
1777         struct ptlrpc_request *last_req = NULL; /* temporary fire escape */
1778         ENTRY;
1779
1780         LASSERT(imp != NULL);
1781
1782         LASSERT_SPIN_LOCKED(&imp->imp_lock);
1783
1784
1785         if (imp->imp_peer_committed_transno == imp->imp_last_transno_checked &&
1786             imp->imp_generation == imp->imp_last_generation_checked) {
1787                 CDEBUG(D_RPCTRACE, "%s: skip recheck: last_committed "LPU64"\n",
1788                        imp->imp_obd->obd_name, imp->imp_peer_committed_transno);
1789                 EXIT;
1790                 return;
1791         }
1792
1793         CDEBUG(D_RPCTRACE, "%s: committing for last_committed "LPU64" gen %d\n",
1794                imp->imp_obd->obd_name, imp->imp_peer_committed_transno,
1795                imp->imp_generation);
1796         imp->imp_last_transno_checked = imp->imp_peer_committed_transno;
1797         imp->imp_last_generation_checked = imp->imp_generation;
1798
1799         list_for_each_safe(tmp, saved, &imp->imp_replay_list) {
1800                 req = list_entry(tmp, struct ptlrpc_request, rq_replay_list);
1801
1802                 /* XXX ok to remove when 1357 resolved - rread 05/29/03  */
1803                 LASSERT(req != last_req);
1804                 last_req = req;
1805
1806                 if (req->rq_import_generation < imp->imp_generation) {
1807                         DEBUG_REQ(D_RPCTRACE, req, "free request with old gen");
1808                         GOTO(free_req, 0);
1809                 }
1810
1811                 if (req->rq_replay) {
1812                         DEBUG_REQ(D_RPCTRACE, req, "keeping (FL_REPLAY)");
1813                         continue;
1814                 }
1815
1816                 /* not yet committed */
1817                 if (req->rq_transno > imp->imp_peer_committed_transno) {
1818                         DEBUG_REQ(D_RPCTRACE, req, "stopping search");
1819                         break;
1820                 }
1821
1822                 DEBUG_REQ(D_RPCTRACE, req, "commit (last_committed "LPU64")",
1823                           imp->imp_peer_committed_transno);
1824 free_req:
1825                 spin_lock(&req->rq_lock);
1826                 req->rq_replay = 0;
1827                 spin_unlock(&req->rq_lock);
1828                 if (req->rq_commit_cb != NULL)
1829                         req->rq_commit_cb(req);
1830                 list_del_init(&req->rq_replay_list);
1831                 __ptlrpc_req_finished(req, 1);
1832         }
1833
1834         EXIT;
1835         return;
1836 }
1837
1838 void ptlrpc_cleanup_client(struct obd_import *imp)
1839 {
1840         ENTRY;
1841         EXIT;
1842         return;
1843 }
1844
1845 void ptlrpc_resend_req(struct ptlrpc_request *req)
1846 {
1847         DEBUG_REQ(D_HA, req, "going to resend");
1848         lustre_msg_set_handle(req->rq_reqmsg, &(struct lustre_handle){ 0 });
1849         req->rq_status = -EAGAIN;
1850
1851         spin_lock(&req->rq_lock);
1852         req->rq_resend = 1;
1853         req->rq_net_err = 0;
1854         req->rq_timedout = 0;
1855         if (req->rq_bulk) {
1856                 __u64 old_xid = req->rq_xid;
1857
1858                 /* ensure previous bulk fails */
1859                 req->rq_xid = ptlrpc_next_xid();
1860                 CDEBUG(D_HA, "resend bulk old x"LPU64" new x"LPU64"\n",
1861                        old_xid, req->rq_xid);
1862         }
1863         ptlrpc_wake_client_req(req);
1864         spin_unlock(&req->rq_lock);
1865 }
1866
1867 /* XXX: this function and rq_status are currently unused */
1868 void ptlrpc_restart_req(struct ptlrpc_request *req)
1869 {
1870         DEBUG_REQ(D_HA, req, "restarting (possibly-)completed request");
1871         req->rq_status = -ERESTARTSYS;
1872
1873         spin_lock(&req->rq_lock);
1874         req->rq_restart = 1;
1875         req->rq_timedout = 0;
1876         ptlrpc_wake_client_req(req);
1877         spin_unlock(&req->rq_lock);
1878 }
1879
1880 static int expired_request(void *data)
1881 {
1882         struct ptlrpc_request *req = data;
1883         ENTRY;
1884
1885         /* some failure can suspend regular timeouts */
1886         if (ptlrpc_check_suspend())
1887                 RETURN(1);
1888
1889         /* deadline may have changed with an early reply */
1890         if (req->rq_deadline > cfs_time_current_sec())
1891                 RETURN(1);
1892
1893         RETURN(ptlrpc_expire_one_request(req));
1894 }
1895
1896 static void interrupted_request(void *data)
1897 {
1898         struct ptlrpc_request *req = data;
1899         DEBUG_REQ(D_HA, req, "request interrupted");
1900         spin_lock(&req->rq_lock);
1901         req->rq_intr = 1;
1902         spin_unlock(&req->rq_lock);
1903 }
1904
1905 struct ptlrpc_request *ptlrpc_request_addref(struct ptlrpc_request *req)
1906 {
1907         ENTRY;
1908         atomic_inc(&req->rq_refcount);
1909         RETURN(req);
1910 }
1911
1912 void ptlrpc_retain_replayable_request(struct ptlrpc_request *req,
1913                                       struct obd_import *imp)
1914 {
1915         struct list_head *tmp;
1916
1917         LASSERT_SPIN_LOCKED(&imp->imp_lock);
1918
1919         /* clear this for new requests that were resent as well
1920            as resent replayed requests. */
1921         lustre_msg_clear_flags(req->rq_reqmsg, MSG_RESENT);
1922
1923         /* don't re-add requests that have been replayed */
1924         if (!list_empty(&req->rq_replay_list))
1925                 return;
1926
1927         lustre_msg_add_flags(req->rq_reqmsg, MSG_REPLAY);
1928
1929         LASSERT(imp->imp_replayable);
1930         /* Balanced in ptlrpc_free_committed, usually. */
1931         ptlrpc_request_addref(req);
1932         list_for_each_prev(tmp, &imp->imp_replay_list) {
1933                 struct ptlrpc_request *iter =
1934                         list_entry(tmp, struct ptlrpc_request, rq_replay_list);
1935
1936                 /* We may have duplicate transnos if we create and then
1937                  * open a file, or for closes retained if to match creating
1938                  * opens, so use req->rq_xid as a secondary key.
1939                  * (See bugs 684, 685, and 428.)
1940                  * XXX no longer needed, but all opens need transnos!
1941                  */
1942                 if (iter->rq_transno > req->rq_transno)
1943                         continue;
1944
1945                 if (iter->rq_transno == req->rq_transno) {
1946                         LASSERT(iter->rq_xid != req->rq_xid);
1947                         if (iter->rq_xid > req->rq_xid)
1948                                 continue;
1949                 }
1950
1951                 list_add(&req->rq_replay_list, &iter->rq_replay_list);
1952                 return;
1953         }
1954
1955         list_add_tail(&req->rq_replay_list, &imp->imp_replay_list);
1956 }
1957
1958 int ptlrpc_queue_wait(struct ptlrpc_request *req)
1959 {
1960         int rc = 0;
1961         int brc;
1962         struct l_wait_info lwi;
1963         struct obd_import *imp = req->rq_import;
1964         cfs_duration_t timeout = CFS_TICK;
1965         long timeoutl;
1966         ENTRY;
1967
1968         LASSERT(req->rq_set == NULL);
1969         LASSERT(!req->rq_receiving_reply);
1970         atomic_inc(&imp->imp_inflight);
1971
1972         /* for distributed debugging */
1973         lustre_msg_set_status(req->rq_reqmsg, cfs_curproc_pid());
1974         LASSERT(imp->imp_obd != NULL);
1975         CDEBUG(D_RPCTRACE, "Sending RPC pname:cluuid:pid:xid:nid:opc "
1976                "%s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
1977                imp->imp_obd->obd_uuid.uuid,
1978                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
1979                libcfs_nid2str(imp->imp_connection->c_peer.nid),
1980                lustre_msg_get_opc(req->rq_reqmsg));
1981
1982         /* Mark phase here for a little debug help */
1983         req->rq_phase = RQ_PHASE_RPC;
1984
1985         spin_lock(&imp->imp_lock);
1986         req->rq_import_generation = imp->imp_generation;
1987 restart:
1988         if (ptlrpc_import_delay_req(imp, req, &rc)) {
1989                 list_del(&req->rq_list);
1990
1991                 list_add_tail(&req->rq_list, &imp->imp_delayed_list);
1992                 spin_unlock(&imp->imp_lock);
1993
1994                 DEBUG_REQ(D_HA, req, "\"%s\" waiting for recovery: (%s != %s)",
1995                           cfs_curproc_comm(),
1996                           ptlrpc_import_state_name(req->rq_send_state),
1997                           ptlrpc_import_state_name(imp->imp_state));
1998                 lwi = LWI_INTR(interrupted_request, req);
1999                 rc = l_wait_event(req->rq_reply_waitq,
2000                                   (req->rq_send_state == imp->imp_state ||
2001                                    req->rq_err || req->rq_intr),
2002                                   &lwi);
2003                 DEBUG_REQ(D_HA, req, "\"%s\" awake: (%s == %s or %d/%d == 1)",
2004                           cfs_curproc_comm(),
2005                           ptlrpc_import_state_name(imp->imp_state),
2006                           ptlrpc_import_state_name(req->rq_send_state),
2007                           req->rq_err, req->rq_intr);
2008
2009                 spin_lock(&imp->imp_lock);
2010                 list_del_init(&req->rq_list);
2011
2012                 if (req->rq_err) {
2013                         /* rq_status was set locally */
2014                         rc = -EIO;
2015                 }
2016                 else if (req->rq_intr) {
2017                         rc = -EINTR;
2018                 }
2019                 else if (req->rq_no_resend) {
2020                         spin_unlock(&imp->imp_lock);
2021                         GOTO(out, rc = -ETIMEDOUT);
2022                 }
2023                 else {
2024                         GOTO(restart, rc);
2025                 }
2026         }
2027
2028         if (rc != 0) {
2029                 list_del_init(&req->rq_list);
2030                 spin_unlock(&imp->imp_lock);
2031                 req->rq_status = rc; // XXX this ok?
2032                 GOTO(out, rc);
2033         }
2034
2035         if (req->rq_resend) {
2036                 lustre_msg_add_flags(req->rq_reqmsg, MSG_RESENT);
2037
2038                 if (req->rq_bulk != NULL) {
2039                         ptlrpc_unregister_bulk (req);
2040
2041                         /* bulk requests are supposed to be
2042                          * idempotent, so we are free to bump the xid
2043                          * here, which we need to do before
2044                          * registering the bulk again (bug 6371).
2045                          * print the old xid first for sanity.
2046                          */
2047                         DEBUG_REQ(D_HA, req, "bumping xid for bulk: ");
2048                         req->rq_xid = ptlrpc_next_xid();
2049                 }
2050
2051                 DEBUG_REQ(D_HA, req, "resending: ");
2052         }
2053
2054         /* XXX this is the same as ptlrpc_set_wait */
2055         LASSERT(list_empty(&req->rq_list));
2056         list_add_tail(&req->rq_list, &imp->imp_sending_list);
2057         spin_unlock(&imp->imp_lock);
2058
2059         rc = sptlrpc_req_refresh_ctx(req, 0);
2060         if (rc) {
2061                 if (req->rq_err) {
2062                         /* we got fatal ctx refresh error, directly jump out
2063                          * thus we can pass back the actual error code.
2064                          */
2065                         spin_lock(&imp->imp_lock);
2066                         list_del_init(&req->rq_list);
2067                         spin_unlock(&imp->imp_lock);
2068
2069                         CERROR("Failed to refresh ctx of req %p: %d\n", req, rc);
2070                         GOTO(out, rc);
2071                 }
2072                 /* simulating we got error during send rpc */
2073                 goto after_send;
2074         }
2075
2076         rc = ptl_send_rpc(req, 0);
2077         if (rc)
2078                 DEBUG_REQ(D_HA, req, "send failed (%d); recovering", rc);
2079
2080 repeat:
2081         timeoutl = req->rq_deadline - cfs_time_current_sec();
2082         timeout = (timeoutl <= 0 || rc) ? CFS_TICK :
2083                 cfs_time_seconds(timeoutl);
2084         DEBUG_REQ(D_NET, req,
2085                   "-- sleeping for "CFS_DURATION_T" ticks", timeout);
2086         lwi = LWI_TIMEOUT_INTR(timeout, expired_request, interrupted_request,
2087                                req);
2088         rc = l_wait_event(req->rq_reply_waitq, ptlrpc_check_reply(req), &lwi);
2089         if (rc == -ETIMEDOUT && ((req->rq_deadline > cfs_time_current_sec()) ||
2090                                  ptlrpc_check_and_wait_suspend(req)))
2091                 goto repeat;
2092
2093 after_send:
2094         CDEBUG(D_RPCTRACE, "Completed RPC pname:cluuid:pid:xid:nid:opc "
2095                "%s:%s:%d:"LPU64":%s:%d\n", cfs_curproc_comm(),
2096                imp->imp_obd->obd_uuid.uuid,
2097                lustre_msg_get_status(req->rq_reqmsg), req->rq_xid,
2098                libcfs_nid2str(imp->imp_connection->c_peer.nid),
2099                lustre_msg_get_opc(req->rq_reqmsg));
2100
2101         spin_lock(&imp->imp_lock);
2102         list_del_init(&req->rq_list);
2103         spin_unlock(&imp->imp_lock);
2104
2105         /* If the reply was received normally, this just grabs the spinlock
2106          * (ensuring the reply callback has returned), sees that
2107          * req->rq_receiving_reply is clear and returns. */
2108         ptlrpc_unregister_reply (req);
2109
2110
2111         if (req->rq_err) {
2112                 DEBUG_REQ(D_RPCTRACE, req, "err rc=%d status=%d",
2113                           rc, req->rq_status);
2114                 GOTO(out, rc = -EIO);
2115         }
2116
2117         if (req->rq_intr) {
2118                 /* Should only be interrupted if we timed out. */
2119                 if (!req->rq_timedout)
2120                         DEBUG_REQ(D_ERROR, req,
2121                                   "rq_intr set but rq_timedout not");
2122                 GOTO(out, rc = -EINTR);
2123         }
2124
2125         /* Resend if we need to */
2126         if (req->rq_resend) {
2127                 /* ...unless we were specifically told otherwise. */
2128                 if (req->rq_no_resend)
2129                         GOTO(out, rc = -ETIMEDOUT);
2130                 spin_lock(&imp->imp_lock);
2131                 goto restart;
2132         }
2133
2134         if (req->rq_timedout) {                 /* non-recoverable timeout */
2135                 GOTO(out, rc = -ETIMEDOUT);
2136         }
2137
2138         if (!req->rq_replied) {
2139                 /* How can this be? -eeb */
2140                 DEBUG_REQ(D_ERROR, req, "!rq_replied: ");
2141                 LBUG();
2142                 GOTO(out, rc = req->rq_status);
2143         }
2144
2145         rc = after_reply(req);
2146         /* NB may return +ve success rc */
2147         if (req->rq_resend) {
2148                 spin_lock(&imp->imp_lock);
2149                 goto restart;
2150         }
2151
2152  out:
2153         if (req->rq_bulk != NULL) {
2154                 if (rc >= 0) {
2155                         /* success so far.  Note that anything going wrong
2156                          * with bulk now, is EXTREMELY strange, since the
2157                          * server must have believed that the bulk
2158                          * tranferred OK before she replied with success to
2159                          * me. */
2160                         lwi = LWI_TIMEOUT(timeout, NULL, NULL);
2161                         brc = l_wait_event(req->rq_reply_waitq,
2162                                            !ptlrpc_bulk_active(req->rq_bulk),
2163                                            &lwi);
2164                         LASSERT(brc == 0 || brc == -ETIMEDOUT);
2165                         if (brc != 0) {
2166                                 LASSERT(brc == -ETIMEDOUT);
2167                                 DEBUG_REQ(D_ERROR, req, "bulk timed out");
2168                                 rc = brc;
2169                         } else if (!req->rq_bulk->bd_success) {
2170                                 DEBUG_REQ(D_ERROR, req, "bulk transfer failed");
2171                                 rc = -EIO;
2172                         }
2173                 }
2174                 if (rc < 0)
2175                         ptlrpc_unregister_bulk (req);
2176         }
2177
2178         LASSERT(!req->rq_receiving_reply);
2179         req->rq_phase = RQ_PHASE_INTERPRET;
2180
2181         atomic_dec(&imp->imp_inflight);
2182         cfs_waitq_signal(&imp->imp_recovery_waitq);
2183         RETURN(rc);
2184 }
2185
2186 struct ptlrpc_replay_async_args {
2187         int praa_old_state;
2188         int praa_old_status;
2189 };
2190
2191 static int ptlrpc_replay_interpret(struct ptlrpc_request *req,
2192                                     void * data, int rc)
2193 {
2194         struct ptlrpc_replay_async_args *aa = data;
2195         struct obd_import *imp = req->rq_import;
2196
2197         ENTRY;
2198         atomic_dec(&imp->imp_replay_inflight);
2199
2200         if (!req->rq_replied) {
2201                 CERROR("request replay timed out, restarting recovery\n");
2202                 GOTO(out, rc = -ETIMEDOUT);
2203         }
2204
2205         if (lustre_msg_get_type(req->rq_repmsg) == PTL_RPC_MSG_ERR &&
2206             (lustre_msg_get_status(req->rq_repmsg) == -ENOTCONN ||
2207              lustre_msg_get_status(req->rq_repmsg) == -ENODEV))
2208                 GOTO(out, rc = lustre_msg_get_status(req->rq_repmsg));
2209
2210         /* The transno had better not change over replay. */
2211         LASSERT(lustre_msg_get_transno(req->rq_reqmsg) ==
2212                 lustre_msg_get_transno(req->rq_repmsg));
2213
2214         DEBUG_REQ(D_HA, req, "got rep");
2215
2216         /* let the callback do fixups, possibly including in the request */
2217         if (req->rq_replay_cb)
2218                 req->rq_replay_cb(req);
2219
2220         if (req->rq_replied &&
2221             lustre_msg_get_status(req->rq_repmsg) != aa->praa_old_status) {
2222                 DEBUG_REQ(D_ERROR, req, "status %d, old was %d",
2223                           lustre_msg_get_status(req->rq_repmsg),
2224                           aa->praa_old_status);
2225         } else {
2226                 /* Put it back for re-replay. */
2227                 lustre_msg_set_status(req->rq_repmsg, aa->praa_old_status);
2228         }
2229
2230         /*
2231          * Errors while replay can set transno to 0, but
2232          * imp_last_replay_transno shouldn't be set to 0 anyway
2233          */
2234         if (req->rq_transno > 0) {
2235                 spin_lock(&imp->imp_lock);
2236                 LASSERT(req->rq_transno <= imp->imp_last_replay_transno);
2237                 imp->imp_last_replay_transno = req->rq_transno;
2238                 spin_unlock(&imp->imp_lock);
2239         } else
2240                 CERROR("Transno is 0 during replay!\n");
2241         /* continue with recovery */
2242         rc = ptlrpc_import_recovery_state_machine(imp);
2243  out:
2244         req->rq_send_state = aa->praa_old_state;
2245
2246         if (rc != 0)
2247                 /* this replay failed, so restart recovery */
2248                 ptlrpc_connect_import(imp, NULL);
2249
2250         RETURN(rc);
2251 }
2252
2253 int ptlrpc_replay_req(struct ptlrpc_request *req)
2254 {
2255         struct ptlrpc_replay_async_args *aa;
2256         ENTRY;
2257
2258         LASSERT(req->rq_import->imp_state == LUSTRE_IMP_REPLAY);
2259         /* Not handling automatic bulk replay yet (or ever?) */
2260         LASSERT(req->rq_bulk == NULL);
2261
2262         LASSERT (sizeof (*aa) <= sizeof (req->rq_async_args));
2263         aa = ptlrpc_req_async_args(req);
2264         memset(aa, 0, sizeof *aa);
2265
2266         /* Prepare request to be resent with ptlrpcd */
2267         aa->praa_old_state = req->rq_send_state;
2268         req->rq_send_state = LUSTRE_IMP_REPLAY;
2269         req->rq_phase = RQ_PHASE_NEW;
2270         if (req->rq_repmsg)
2271                 aa->praa_old_status = lustre_msg_get_status(req->rq_repmsg);
2272         req->rq_status = 0;
2273         req->rq_interpret_reply = ptlrpc_replay_interpret;
2274         /* Readjust the timeout for current conditions */
2275         ptlrpc_at_set_req_timeout(req);
2276
2277         DEBUG_REQ(D_HA, req, "REPLAY");
2278
2279         atomic_inc(&req->rq_import->imp_replay_inflight);
2280         ptlrpc_request_addref(req); /* ptlrpcd needs a ref */
2281
2282         ptlrpcd_add_req(req);
2283         RETURN(0);
2284 }
2285
2286 void ptlrpc_abort_inflight(struct obd_import *imp)
2287 {
2288         struct list_head *tmp, *n;
2289         ENTRY;
2290
2291         /* Make sure that no new requests get processed for this import.
2292          * ptlrpc_{queue,set}_wait must (and does) hold imp_lock while testing
2293          * this flag and then putting requests on sending_list or delayed_list.
2294          */
2295         spin_lock(&imp->imp_lock);
2296
2297         /* XXX locking?  Maybe we should remove each request with the list
2298          * locked?  Also, how do we know if the requests on the list are
2299          * being freed at this time?
2300          */
2301         list_for_each_safe(tmp, n, &imp->imp_sending_list) {
2302                 struct ptlrpc_request *req =
2303                         list_entry(tmp, struct ptlrpc_request, rq_list);
2304
2305                 DEBUG_REQ(D_RPCTRACE, req, "inflight");
2306
2307                 spin_lock (&req->rq_lock);
2308                 if (req->rq_import_generation < imp->imp_generation) {
2309                         req->rq_err = 1;
2310                         req->rq_status = -EINTR;
2311                         ptlrpc_wake_client_req(req);
2312                 }
2313                 spin_unlock (&req->rq_lock);
2314         }
2315
2316         list_for_each_safe(tmp, n, &imp->imp_delayed_list) {
2317                 struct ptlrpc_request *req =
2318                         list_entry(tmp, struct ptlrpc_request, rq_list);
2319
2320                 DEBUG_REQ(D_RPCTRACE, req, "aborting waiting req");
2321
2322                 spin_lock (&req->rq_lock);
2323                 if (req->rq_import_generation < imp->imp_generation) {
2324                         req->rq_err = 1;
2325                         req->rq_status = -EINTR;
2326                         ptlrpc_wake_client_req(req);
2327                 }
2328                 spin_unlock (&req->rq_lock);
2329         }
2330
2331         /* Last chance to free reqs left on the replay list, but we
2332          * will still leak reqs that haven't committed.  */
2333         if (imp->imp_replayable)
2334                 ptlrpc_free_committed(imp);
2335
2336         spin_unlock(&imp->imp_lock);
2337
2338         EXIT;
2339 }
2340
2341 void ptlrpc_abort_set(struct ptlrpc_request_set *set)
2342 {
2343         struct list_head *tmp, *n;
2344
2345         LASSERT(set != NULL);
2346
2347         list_for_each_safe(tmp, n, &set->set_requests) {
2348                 struct ptlrpc_request *req =
2349                         list_entry(tmp, struct ptlrpc_request, rq_set_chain);
2350
2351                 spin_lock (&req->rq_lock);
2352                 if (req->rq_phase != RQ_PHASE_RPC) {
2353                         spin_unlock (&req->rq_lock);
2354                         continue;
2355                 }
2356
2357                 req->rq_err = 1;
2358                 req->rq_status = -EINTR;
2359                 ptlrpc_wake_client_req(req);
2360                 spin_unlock (&req->rq_lock);
2361         }
2362 }
2363
2364 static __u64 ptlrpc_last_xid = 0;
2365 spinlock_t ptlrpc_last_xid_lock;
2366
2367 __u64 ptlrpc_next_xid(void)
2368 {
2369         __u64 tmp;
2370         spin_lock(&ptlrpc_last_xid_lock);
2371         tmp = ++ptlrpc_last_xid;
2372         spin_unlock(&ptlrpc_last_xid_lock);
2373         return tmp;
2374 }
2375
2376 __u64 ptlrpc_sample_next_xid(void)
2377 {
2378         __u64 tmp;
2379         spin_lock(&ptlrpc_last_xid_lock);
2380         tmp = ptlrpc_last_xid + 1;
2381         spin_unlock(&ptlrpc_last_xid_lock);
2382         return tmp;
2383 }
2384 EXPORT_SYMBOL(ptlrpc_sample_next_xid);