Whamcloud - gitweb
b=16777
[fs/lustre-release.git] / lustre / ldlm / ldlm_lib.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 #ifndef EXPORT_SYMTAB
38 # define EXPORT_SYMTAB
39 #endif
40 #define DEBUG_SUBSYSTEM S_LDLM
41
42 #ifdef __KERNEL__
43 # include <libcfs/libcfs.h>
44 #else
45 # include <liblustre.h>
46 #endif
47 #include <obd.h>
48 #include <lustre_mds.h>
49 #include <lustre_dlm.h>
50 #include <lustre_net.h>
51 #include <lustre_sec.h>
52 #include "ldlm_internal.h"
53
54
55 /* @priority: if non-zero, move the selected to the list head
56  * @create: if zero, only search in existed connections
57  */
58 static int import_set_conn(struct obd_import *imp, struct obd_uuid *uuid,
59                            int priority, int create)
60 {
61         struct ptlrpc_connection *ptlrpc_conn;
62         struct obd_import_conn *imp_conn = NULL, *item;
63         int rc = 0;
64         ENTRY;
65
66         if (!create && !priority) {
67                 CDEBUG(D_HA, "Nothing to do\n");
68                 RETURN(-EINVAL);
69         }
70
71         ptlrpc_conn = ptlrpc_uuid_to_connection(uuid);
72         if (!ptlrpc_conn) {
73                 CDEBUG(D_HA, "can't find connection %s\n", uuid->uuid);
74                 RETURN (-ENOENT);
75         }
76
77         if (create) {
78                 OBD_ALLOC(imp_conn, sizeof(*imp_conn));
79                 if (!imp_conn) {
80                         GOTO(out_put, rc = -ENOMEM);
81                 }
82         }
83
84         spin_lock(&imp->imp_lock);
85         list_for_each_entry(item, &imp->imp_conn_list, oic_item) {
86                 if (obd_uuid_equals(uuid, &item->oic_uuid)) {
87                         if (priority) {
88                                 list_del(&item->oic_item);
89                                 list_add(&item->oic_item, &imp->imp_conn_list);
90                                 item->oic_last_attempt = 0;
91                         }
92                         CDEBUG(D_HA, "imp %p@%s: found existing conn %s%s\n",
93                                imp, imp->imp_obd->obd_name, uuid->uuid,
94                                (priority ? ", moved to head" : ""));
95                         spin_unlock(&imp->imp_lock);
96                         GOTO(out_free, rc = 0);
97                 }
98         }
99         /* not found */
100         if (create) {
101                 imp_conn->oic_conn = ptlrpc_conn;
102                 imp_conn->oic_uuid = *uuid;
103                 item->oic_last_attempt = 0;
104                 if (priority)
105                         list_add(&imp_conn->oic_item, &imp->imp_conn_list);
106                 else
107                         list_add_tail(&imp_conn->oic_item, &imp->imp_conn_list);
108                 CDEBUG(D_HA, "imp %p@%s: add connection %s at %s\n",
109                        imp, imp->imp_obd->obd_name, uuid->uuid,
110                        (priority ? "head" : "tail"));
111         } else {
112                 spin_unlock(&imp->imp_lock);
113                 GOTO(out_free, rc = -ENOENT);
114         }
115
116         spin_unlock(&imp->imp_lock);
117         RETURN(0);
118 out_free:
119         if (imp_conn)
120                 OBD_FREE(imp_conn, sizeof(*imp_conn));
121 out_put:
122         ptlrpc_connection_put(ptlrpc_conn);
123         RETURN(rc);
124 }
125
126 int import_set_conn_priority(struct obd_import *imp, struct obd_uuid *uuid)
127 {
128         return import_set_conn(imp, uuid, 1, 0);
129 }
130
131 int client_import_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
132                            int priority)
133 {
134         return import_set_conn(imp, uuid, priority, 1);
135 }
136
137 int client_import_del_conn(struct obd_import *imp, struct obd_uuid *uuid)
138 {
139         struct obd_import_conn *imp_conn;
140         struct obd_export *dlmexp;
141         int rc = -ENOENT;
142         ENTRY;
143
144         spin_lock(&imp->imp_lock);
145         if (list_empty(&imp->imp_conn_list)) {
146                 LASSERT(!imp->imp_connection);
147                 GOTO(out, rc);
148         }
149
150         list_for_each_entry(imp_conn, &imp->imp_conn_list, oic_item) {
151                 if (!obd_uuid_equals(uuid, &imp_conn->oic_uuid))
152                         continue;
153                 LASSERT(imp_conn->oic_conn);
154
155                 /* is current conn? */
156                 if (imp_conn == imp->imp_conn_current) {
157                         LASSERT(imp_conn->oic_conn == imp->imp_connection);
158
159                         if (imp->imp_state != LUSTRE_IMP_CLOSED &&
160                             imp->imp_state != LUSTRE_IMP_DISCON) {
161                                 CERROR("can't remove current connection\n");
162                                 GOTO(out, rc = -EBUSY);
163                         }
164
165                         ptlrpc_connection_put(imp->imp_connection);
166                         imp->imp_connection = NULL;
167
168                         dlmexp = class_conn2export(&imp->imp_dlm_handle);
169                         if (dlmexp && dlmexp->exp_connection) {
170                                 LASSERT(dlmexp->exp_connection ==
171                                         imp_conn->oic_conn);
172                                 ptlrpc_connection_put(dlmexp->exp_connection);
173                                 dlmexp->exp_connection = NULL;
174                         }
175                 }
176
177                 list_del(&imp_conn->oic_item);
178                 ptlrpc_connection_put(imp_conn->oic_conn);
179                 OBD_FREE(imp_conn, sizeof(*imp_conn));
180                 CDEBUG(D_HA, "imp %p@%s: remove connection %s\n",
181                        imp, imp->imp_obd->obd_name, uuid->uuid);
182                 rc = 0;
183                 break;
184         }
185 out:
186         spin_unlock(&imp->imp_lock);
187         if (rc == -ENOENT)
188                 CERROR("connection %s not found\n", uuid->uuid);
189         RETURN(rc);
190 }
191
192 static void destroy_import(struct obd_import *imp)
193 {
194         /* drop security policy instance after all rpc finished/aborted
195          * to let all busy contexts be released. */
196         class_import_get(imp);
197         class_destroy_import(imp);
198         sptlrpc_import_sec_put(imp);
199         class_import_put(imp);
200 }
201
202 /* configure an RPC client OBD device
203  *
204  * lcfg parameters:
205  * 1 - client UUID
206  * 2 - server UUID
207  * 3 - inactive-on-startup
208  */
209 int client_obd_setup(struct obd_device *obddev, struct lustre_cfg *lcfg)
210 {
211         struct client_obd *cli = &obddev->u.cli;
212         struct obd_import *imp;
213         struct obd_uuid server_uuid;
214         int rq_portal, rp_portal, connect_op;
215         char *name = obddev->obd_type->typ_name;
216         int rc;
217         ENTRY;
218
219         /* In a more perfect world, we would hang a ptlrpc_client off of
220          * obd_type and just use the values from there. */
221         if (!strcmp(name, LUSTRE_OSC_NAME)) {
222                 rq_portal = OST_REQUEST_PORTAL;
223                 rp_portal = OSC_REPLY_PORTAL;
224                 connect_op = OST_CONNECT;
225         } else if (!strcmp(name, LUSTRE_MDC_NAME)) {
226                 rq_portal = MDS_REQUEST_PORTAL;
227                 rp_portal = MDC_REPLY_PORTAL;
228                 connect_op = MDS_CONNECT;
229         } else if (!strcmp(name, LUSTRE_MGC_NAME)) {
230                 rq_portal = MGS_REQUEST_PORTAL;
231                 rp_portal = MGC_REPLY_PORTAL;
232                 connect_op = MGS_CONNECT;
233         } else {
234                 CERROR("unknown client OBD type \"%s\", can't setup\n",
235                        name);
236                 RETURN(-EINVAL);
237         }
238
239         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
240                 CERROR("requires a TARGET UUID\n");
241                 RETURN(-EINVAL);
242         }
243
244         if (LUSTRE_CFG_BUFLEN(lcfg, 1) > 37) {
245                 CERROR("client UUID must be less than 38 characters\n");
246                 RETURN(-EINVAL);
247         }
248
249         if (LUSTRE_CFG_BUFLEN(lcfg, 2) < 1) {
250                 CERROR("setup requires a SERVER UUID\n");
251                 RETURN(-EINVAL);
252         }
253
254         if (LUSTRE_CFG_BUFLEN(lcfg, 2) > 37) {
255                 CERROR("target UUID must be less than 38 characters\n");
256                 RETURN(-EINVAL);
257         }
258
259         init_rwsem(&cli->cl_sem);
260         sema_init(&cli->cl_mgc_sem, 1);
261         sptlrpc_rule_set_init(&cli->cl_sptlrpc_rset);
262         cli->cl_sec_part = LUSTRE_SP_ANY;
263         cli->cl_conn_count = 0;
264         memcpy(server_uuid.uuid, lustre_cfg_buf(lcfg, 2),
265                min_t(unsigned int, LUSTRE_CFG_BUFLEN(lcfg, 2),
266                      sizeof(server_uuid)));
267
268         cli->cl_dirty = 0;
269         cli->cl_avail_grant = 0;
270         /* FIXME: should limit this for the sum of all cl_dirty_max */
271         cli->cl_dirty_max = OSC_MAX_DIRTY_DEFAULT * 1024 * 1024;
272         if (cli->cl_dirty_max >> CFS_PAGE_SHIFT > num_physpages / 8)
273                 cli->cl_dirty_max = num_physpages << (CFS_PAGE_SHIFT - 3);
274         CFS_INIT_LIST_HEAD(&cli->cl_cache_waiters);
275         CFS_INIT_LIST_HEAD(&cli->cl_loi_ready_list);
276         CFS_INIT_LIST_HEAD(&cli->cl_loi_write_list);
277         CFS_INIT_LIST_HEAD(&cli->cl_loi_read_list);
278         client_obd_list_lock_init(&cli->cl_loi_list_lock);
279         cli->cl_r_in_flight = 0;
280         cli->cl_w_in_flight = 0;
281
282         spin_lock_init(&cli->cl_read_rpc_hist.oh_lock);
283         spin_lock_init(&cli->cl_write_rpc_hist.oh_lock);
284         spin_lock_init(&cli->cl_read_page_hist.oh_lock);
285         spin_lock_init(&cli->cl_write_page_hist.oh_lock);
286         spin_lock_init(&cli->cl_read_offset_hist.oh_lock);
287         spin_lock_init(&cli->cl_write_offset_hist.oh_lock);
288         cfs_waitq_init(&cli->cl_destroy_waitq);
289         atomic_set(&cli->cl_destroy_in_flight, 0);
290 #ifdef ENABLE_CHECKSUM
291         /* Turn on checksumming by default. */
292         cli->cl_checksum = 1;
293         /*
294          * The supported checksum types will be worked out at connect time
295          * Set cl_chksum* to CRC32 for now to avoid returning screwed info
296          * through procfs.
297          */
298         cli->cl_cksum_type = cli->cl_supp_cksum_types = OBD_CKSUM_CRC32;
299 #endif
300         atomic_set(&cli->cl_resends, OSC_DEFAULT_RESENDS);
301
302         /* This value may be changed at connect time in
303            ptlrpc_connect_interpret. */
304         cli->cl_max_pages_per_rpc = min((int)PTLRPC_MAX_BRW_PAGES,
305                                         (int)(1024 * 1024 >> CFS_PAGE_SHIFT));
306
307         if (!strcmp(name, LUSTRE_MDC_NAME)) {
308                 cli->cl_max_rpcs_in_flight = MDC_MAX_RIF_DEFAULT;
309         } else if (num_physpages >> (20 - CFS_PAGE_SHIFT) <= 128 /* MB */) {
310                 cli->cl_max_rpcs_in_flight = 2;
311         } else if (num_physpages >> (20 - CFS_PAGE_SHIFT) <= 256 /* MB */) {
312                 cli->cl_max_rpcs_in_flight = 3;
313         } else if (num_physpages >> (20 - CFS_PAGE_SHIFT) <= 512 /* MB */) {
314                 cli->cl_max_rpcs_in_flight = 4;
315         } else {
316                 cli->cl_max_rpcs_in_flight = OSC_MAX_RIF_DEFAULT;
317         }
318
319         rc = ldlm_get_ref();
320         if (rc) {
321                 CERROR("ldlm_get_ref failed: %d\n", rc);
322                 GOTO(err, rc);
323         }
324
325         ptlrpc_init_client(rq_portal, rp_portal, name,
326                            &obddev->obd_ldlm_client);
327
328         imp = class_new_import(obddev);
329         if (imp == NULL)
330                 GOTO(err_ldlm, rc = -ENOENT);
331         imp->imp_client = &obddev->obd_ldlm_client;
332         imp->imp_connect_op = connect_op;
333         imp->imp_initial_recov = 1;
334         imp->imp_initial_recov_bk = 0;
335         CFS_INIT_LIST_HEAD(&imp->imp_pinger_chain);
336         memcpy(cli->cl_target_uuid.uuid, lustre_cfg_buf(lcfg, 1),
337                LUSTRE_CFG_BUFLEN(lcfg, 1));
338         class_import_put(imp);
339
340         rc = client_import_add_conn(imp, &server_uuid, 1);
341         if (rc) {
342                 CERROR("can't add initial connection\n");
343                 GOTO(err_import, rc);
344         }
345
346         cli->cl_import = imp;
347         /* cli->cl_max_mds_{easize,cookiesize} updated by mdc_init_ea_size() */
348         cli->cl_max_mds_easize = sizeof(struct lov_mds_md);
349         cli->cl_max_mds_cookiesize = sizeof(struct llog_cookie);
350
351         if (LUSTRE_CFG_BUFLEN(lcfg, 3) > 0) {
352                 if (!strcmp(lustre_cfg_string(lcfg, 3), "inactive")) {
353                         CDEBUG(D_HA, "marking %s %s->%s as inactive\n",
354                                name, obddev->obd_name,
355                                cli->cl_target_uuid.uuid);
356                         spin_lock(&imp->imp_lock);
357                         imp->imp_invalid = 1;
358                         spin_unlock(&imp->imp_lock);
359                 }
360         }
361
362         cli->cl_qchk_stat = CL_NOT_QUOTACHECKED;
363
364         RETURN(rc);
365
366 err_import:
367         class_destroy_import(imp);
368 err_ldlm:
369         ldlm_put_ref();
370 err:
371         RETURN(rc);
372
373 }
374
375 int client_obd_cleanup(struct obd_device *obddev)
376 {
377         ENTRY;
378         sptlrpc_rule_set_free(&obddev->u.cli.cl_sptlrpc_rset);
379         ldlm_put_ref();
380         RETURN(0);
381 }
382
383 /* ->o_connect() method for client side (OSC and MDC and MGC) */
384 int client_connect_import(const struct lu_env *env,
385                           struct lustre_handle *dlm_handle,
386                           struct obd_device *obd, struct obd_uuid *cluuid,
387                           struct obd_connect_data *data, void *localdata)
388 {
389         struct client_obd *cli = &obd->u.cli;
390         struct obd_import *imp = cli->cl_import;
391         struct obd_export *exp;
392         struct obd_connect_data *ocd;
393         struct ldlm_namespace *to_be_freed = NULL;
394         int rc;
395         ENTRY;
396
397         down_write(&cli->cl_sem);
398         rc = class_connect(dlm_handle, obd, cluuid);
399         if (rc)
400                 GOTO(out_sem, rc);
401
402         cli->cl_conn_count++;
403         if (cli->cl_conn_count > 1)
404                 GOTO(out_sem, rc);
405         exp = class_conn2export(dlm_handle);
406
407         if (obd->obd_namespace != NULL)
408                 CERROR("already have namespace!\n");
409         obd->obd_namespace = ldlm_namespace_new(obd, obd->obd_name,
410                                                 LDLM_NAMESPACE_CLIENT,
411                                                 LDLM_NAMESPACE_GREEDY);
412         if (obd->obd_namespace == NULL)
413                 GOTO(out_disco, rc = -ENOMEM);
414
415         imp->imp_dlm_handle = *dlm_handle;
416         rc = ptlrpc_init_import(imp);
417         if (rc != 0)
418                 GOTO(out_ldlm, rc);
419
420         ocd = &imp->imp_connect_data;
421         if (data) {
422                 *ocd = *data;
423                 imp->imp_connect_flags_orig = data->ocd_connect_flags;
424         }
425
426         rc = ptlrpc_connect_import(imp, NULL);
427         if (rc != 0) {
428                 LASSERT (imp->imp_state == LUSTRE_IMP_DISCON);
429                 GOTO(out_ldlm, rc);
430         }
431         LASSERT(exp->exp_connection);
432
433         if (data) {
434                 LASSERTF((ocd->ocd_connect_flags & data->ocd_connect_flags) ==
435                          ocd->ocd_connect_flags, "old "LPX64", new "LPX64"\n",
436                          data->ocd_connect_flags, ocd->ocd_connect_flags);
437                 data->ocd_connect_flags = ocd->ocd_connect_flags;
438         }
439
440         ptlrpc_pinger_add_import(imp);
441
442         EXIT;
443
444         if (rc) {
445 out_ldlm:
446                 ldlm_namespace_free_prior(obd->obd_namespace, imp, 0);
447                 to_be_freed = obd->obd_namespace;
448                 obd->obd_namespace = NULL;
449 out_disco:
450                 cli->cl_conn_count--;
451                 class_disconnect(exp);
452         } else {
453                 class_export_put(exp);
454         }
455 out_sem:
456         up_write(&cli->cl_sem);
457         if (to_be_freed)
458                 ldlm_namespace_free_post(to_be_freed);
459
460         return rc;
461 }
462
463 int client_disconnect_export(struct obd_export *exp)
464 {
465         struct obd_device *obd = class_exp2obd(exp);
466         struct client_obd *cli;
467         struct obd_import *imp;
468         int rc = 0, err;
469         struct ldlm_namespace *to_be_freed = NULL;
470         ENTRY;
471
472         if (!obd) {
473                 CERROR("invalid export for disconnect: exp %p cookie "LPX64"\n",
474                        exp, exp ? exp->exp_handle.h_cookie : -1);
475                 RETURN(-EINVAL);
476         }
477
478         cli = &obd->u.cli;
479         imp = cli->cl_import;
480
481         down_write(&cli->cl_sem);
482         if (!cli->cl_conn_count) {
483                 CERROR("disconnecting disconnected device (%s)\n",
484                        obd->obd_name);
485                 GOTO(out_sem, rc = -EINVAL);
486         }
487
488         cli->cl_conn_count--;
489         if (cli->cl_conn_count)
490                 GOTO(out_no_disconnect, rc = 0);
491
492         /* Mark import deactivated now, so we don't try to reconnect if any
493          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
494          * fully deactivate the import, or that would drop all requests. */
495         spin_lock(&imp->imp_lock);
496         imp->imp_deactive = 1;
497         spin_unlock(&imp->imp_lock);
498
499         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
500          * delete it regardless.  (It's safe to delete an import that was
501          * never added.) */
502         (void)ptlrpc_pinger_del_import(imp);
503
504         if (obd->obd_namespace != NULL) {
505                 /* obd_force == local only */
506                 ldlm_cli_cancel_unused(obd->obd_namespace, NULL,
507                                        obd->obd_force ? LDLM_FL_LOCAL_ONLY:0,
508                                        NULL);
509                 ldlm_namespace_free_prior(obd->obd_namespace, imp, obd->obd_force);
510                 to_be_freed = obd->obd_namespace;
511         }
512
513         rc = ptlrpc_disconnect_import(imp, 0);
514
515         ptlrpc_invalidate_import(imp);
516         /* set obd_namespace to NULL only after invalidate, because we can have
517          * some connect requests in flight, and his need store a connect flags
518          * in obd_namespace. bug 14260 */
519         obd->obd_namespace = NULL;
520
521         ptlrpc_free_rq_pool(imp->imp_rq_pool);
522         destroy_import(imp);
523         cli->cl_import = NULL;
524
525         EXIT;
526  out_no_disconnect:
527         err = class_disconnect(exp);
528         if (!rc && err)
529                 rc = err;
530  out_sem:
531         up_write(&cli->cl_sem);
532         if (to_be_freed)
533                 ldlm_namespace_free_post(to_be_freed);
534
535         RETURN(rc);
536 }
537
538 /* --------------------------------------------------------------------------
539  * from old lib/target.c
540  * -------------------------------------------------------------------------- */
541
542 int target_handle_reconnect(struct lustre_handle *conn, struct obd_export *exp,
543                             struct obd_uuid *cluuid, int initial_conn)
544 {
545         ENTRY;
546         if (exp->exp_connection && exp->exp_imp_reverse && !initial_conn) {
547                 struct lustre_handle *hdl;
548                 hdl = &exp->exp_imp_reverse->imp_remote_handle;
549                 /* Might be a re-connect after a partition. */
550                 if (!memcmp(&conn->cookie, &hdl->cookie, sizeof conn->cookie)) {
551                         CWARN("%s: %s reconnecting\n", exp->exp_obd->obd_name,
552                               cluuid->uuid);
553                         conn->cookie = exp->exp_handle.h_cookie;
554                         /* target_handle_connect() treats EALREADY and
555                          * -EALREADY differently.  EALREADY means we are
556                          * doing a valid reconnect from the same client. */
557                         RETURN(EALREADY);
558                 } else {
559                         CERROR("%s reconnecting from %s, "
560                                "handle mismatch (ours "LPX64", theirs "
561                                LPX64")\n", cluuid->uuid,
562                                exp->exp_connection->c_remote_uuid.uuid,
563                                hdl->cookie, conn->cookie);
564                         memset(conn, 0, sizeof *conn);
565                         /* target_handle_connect() treats EALREADY and
566                          * -EALREADY differently.  -EALREADY is an error
567                          * (same UUID, different handle). */
568                         RETURN(-EALREADY);
569                 }
570         }
571
572         conn->cookie = exp->exp_handle.h_cookie;
573         CDEBUG(D_HA, "connect export for UUID '%s' at %p, cookie "LPX64"\n",
574                cluuid->uuid, exp, conn->cookie);
575         RETURN(0);
576 }
577
578 void target_client_add_cb(struct obd_device *obd, __u64 transno, void *cb_data,
579                           int error)
580 {
581         struct obd_export *exp = cb_data;
582
583         CDEBUG(D_RPCTRACE, "%s: committing for initial connect of %s\n",
584                obd->obd_name, exp->exp_client_uuid.uuid);
585
586         spin_lock(&exp->exp_lock);
587         exp->exp_need_sync = 0;
588         spin_unlock(&exp->exp_lock);
589 }
590 EXPORT_SYMBOL(target_client_add_cb);
591 static void 
592 target_start_and_reset_recovery_timer(struct obd_device *obd,
593                                       struct ptlrpc_request *req,
594                                       int new_client);
595
596 int target_handle_connect(struct ptlrpc_request *req)
597 {
598         struct obd_device *target, *targref = NULL;
599         struct obd_export *export = NULL;
600         struct obd_import *revimp;
601         struct lustre_handle conn;
602         struct lustre_handle *tmp;
603         struct obd_uuid tgtuuid;
604         struct obd_uuid cluuid;
605         struct obd_uuid remote_uuid;
606         char *str;
607         int rc = 0;
608         int initial_conn = 0;
609         struct obd_connect_data *data, *tmpdata;
610         lnet_nid_t *client_nid = NULL;
611         ENTRY;
612
613         OBD_RACE(OBD_FAIL_TGT_CONN_RACE);
614
615         str = req_capsule_client_get(&req->rq_pill, &RMF_TGTUUID);
616         if (str == NULL) {
617                 DEBUG_REQ(D_ERROR, req, "bad target UUID for connect");
618                 GOTO(out, rc = -EINVAL);
619         }
620
621         obd_str2uuid(&tgtuuid, str);
622         target = class_uuid2obd(&tgtuuid);
623         if (!target)
624                 target = class_name2obd(str);
625
626         if (!target || target->obd_stopping || !target->obd_set_up) {
627                 LCONSOLE_ERROR_MSG(0x137, "UUID '%s' is not available "
628                                    " for connect (%s)\n", str,
629                                    !target ? "no target" :
630                                    (target->obd_stopping ? "stopping" :
631                                    "not set up"));
632                 GOTO(out, rc = -ENODEV);
633         }
634
635         if (target->obd_no_conn) {
636                 LCONSOLE_WARN("%s: temporarily refusing client connection "
637                               "from %s\n", target->obd_name,
638                               libcfs_nid2str(req->rq_peer.nid));
639                 GOTO(out, rc = -EAGAIN);
640         }
641
642         /* Make sure the target isn't cleaned up while we're here. Yes,
643            there's still a race between the above check and our incref here.
644            Really, class_uuid2obd should take the ref. */
645         targref = class_incref(target);
646
647
648         str = req_capsule_client_get(&req->rq_pill, &RMF_CLUUID);
649         if (str == NULL) {
650                 DEBUG_REQ(D_ERROR, req, "bad client UUID for connect");
651                 GOTO(out, rc = -EINVAL);
652         }
653
654         obd_str2uuid(&cluuid, str);
655
656         /* XXX extract a nettype and format accordingly */
657         switch (sizeof(lnet_nid_t)) {
658                 /* NB the casts only avoid compiler warnings */
659         case 8:
660                 snprintf(remote_uuid.uuid, sizeof remote_uuid,
661                          "NET_"LPX64"_UUID", (__u64)req->rq_peer.nid);
662                 break;
663         case 4:
664                 snprintf(remote_uuid.uuid, sizeof remote_uuid,
665                          "NET_%x_UUID", (__u32)req->rq_peer.nid);
666                 break;
667         default:
668                 LBUG();
669         }
670
671         tmp = req_capsule_client_get(&req->rq_pill, &RMF_CONN);
672         if (tmp == NULL)
673                 GOTO(out, rc = -EPROTO);
674
675         conn = *tmp;
676
677         data = req_capsule_client_get(&req->rq_pill, &RMF_CONNECT_DATA);
678         if (!data)
679                 GOTO(out, rc = -EPROTO);
680
681         rc = req_capsule_server_pack(&req->rq_pill);
682         if (rc)
683                 GOTO(out, rc);
684
685         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) {
686                 if (!data) {
687                         DEBUG_REQ(D_WARNING, req, "Refusing old (unversioned) "
688                                   "libclient connection attempt");
689                         GOTO(out, rc = -EPROTO);
690                 } else if (data->ocd_version < LUSTRE_VERSION_CODE -
691                                                LUSTRE_VERSION_ALLOWED_OFFSET ||
692                            data->ocd_version > LUSTRE_VERSION_CODE +
693                                                LUSTRE_VERSION_ALLOWED_OFFSET) {
694                         DEBUG_REQ(D_WARNING, req, "Refusing %s (%d.%d.%d.%d) "
695                                   "libclient connection attempt",
696                                   data->ocd_version < LUSTRE_VERSION_CODE ?
697                                   "old" : "new",
698                                   OBD_OCD_VERSION_MAJOR(data->ocd_version),
699                                   OBD_OCD_VERSION_MINOR(data->ocd_version),
700                                   OBD_OCD_VERSION_PATCH(data->ocd_version),
701                                   OBD_OCD_VERSION_FIX(data->ocd_version));
702                         data = req_capsule_server_sized_get(&req->rq_pill,
703                                                         &RMF_CONNECT_DATA,
704                                     offsetof(typeof(*data), ocd_version) +
705                                              sizeof(data->ocd_version));
706                         if (data) {
707                                 data->ocd_connect_flags = OBD_CONNECT_VERSION;
708                                 data->ocd_version = LUSTRE_VERSION_CODE;
709                         }
710                         GOTO(out, rc = -EPROTO);
711                 }
712         }
713
714         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_INITIAL)
715                 initial_conn = 1;
716
717         /* lctl gets a backstage, all-access pass. */
718         if (obd_uuid_equals(&cluuid, &target->obd_uuid))
719                 goto dont_check_exports;
720
721         spin_lock(&target->obd_dev_lock);
722         export = lustre_hash_lookup(target->obd_uuid_hash, &cluuid);
723
724         if (export != NULL && export->exp_connecting) { /* bug 9635, et. al. */
725                 CWARN("%s: exp %p already connecting\n",
726                       export->exp_obd->obd_name, export);
727                 class_export_put(export);
728                 export = NULL;
729                 rc = -EALREADY;
730         } else if (export != NULL && export->exp_connection != NULL &&
731                    req->rq_peer.nid != export->exp_connection->c_peer.nid) {
732                 /* make darn sure this is coming from the same peer
733                  * if the UUIDs matched */
734                   CWARN("%s: cookie %s seen on new NID %s when "
735                           "existing NID %s is already connected\n",
736                         target->obd_name, cluuid.uuid,
737                   libcfs_nid2str(req->rq_peer.nid),
738                   libcfs_nid2str(export->exp_connection->c_peer.nid));
739                   class_export_put(export);
740                   export = NULL;
741                   rc = -EALREADY;
742         } else if (export != NULL) {
743                 spin_lock(&export->exp_lock);
744                 export->exp_connecting = 1;
745                 spin_unlock(&export->exp_lock);
746                 class_export_put(export);
747                 spin_unlock(&target->obd_dev_lock);
748                 LASSERT(export->exp_obd == target);
749
750                 rc = target_handle_reconnect(&conn, export, &cluuid, initial_conn);
751         }
752
753         /* If we found an export, we already unlocked. */
754         if (!export) {
755                 spin_unlock(&target->obd_dev_lock);
756                 OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_CONNECT, 2 * obd_timeout);
757         } else if (req->rq_export == NULL &&
758                    atomic_read(&export->exp_rpc_count) > 0) {
759                 CWARN("%s: refuse connection from %s/%s to 0x%p/%d\n",
760                       target->obd_name, cluuid.uuid,
761                       libcfs_nid2str(req->rq_peer.nid),
762                       export, atomic_read(&export->exp_refcount));
763                 GOTO(out, rc = -EBUSY);
764         } else if (req->rq_export != NULL &&
765                    (atomic_read(&export->exp_rpc_count) > 1)) {
766                 CWARN("%s: refuse reconnection from %s@%s to 0x%p/%d\n",
767                       target->obd_name, cluuid.uuid,
768                       libcfs_nid2str(req->rq_peer.nid),
769                       export, atomic_read(&export->exp_rpc_count));
770                 GOTO(out, rc = -EBUSY);
771         } else if (lustre_msg_get_conn_cnt(req->rq_reqmsg) == 1 &&
772                    !initial_conn) {
773                 CERROR("%s: NID %s (%s) reconnected with 1 conn_cnt; "
774                        "cookies not random?\n", target->obd_name,
775                        libcfs_nid2str(req->rq_peer.nid), cluuid.uuid);
776                 GOTO(out, rc = -EALREADY);
777         } else {
778                 OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_RECONNECT, 2 * obd_timeout);
779                 if (req->rq_export == NULL && initial_conn)
780                        export->exp_last_request_time =
781                                max(export->exp_last_request_time,
782                                    (time_t)cfs_time_current_sec());
783         }
784
785         if (rc < 0) {
786                 GOTO(out, rc);
787         }
788
789         CWARN("%s: connection from %s@%s %st"LPU64" exp %p cur %ld last %ld\n",
790                target->obd_name, cluuid.uuid, libcfs_nid2str(req->rq_peer.nid),
791               target->obd_recovering ? "recovering/" : "", data->ocd_transno,
792               export, (long)cfs_time_current_sec(),
793               export ? (long)export->exp_last_request_time : 0);
794
795         /* Tell the client if we're in recovery. */
796         if (target->obd_recovering) {
797                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECOVERING);
798                 /* If this is the first time a client connects,
799                    reset the recovery timer */
800                 if (rc == 0)
801                         target_start_and_reset_recovery_timer(target, req, 
802                                                               !export);
803         }
804
805         /* We want to handle EALREADY but *not* -EALREADY from
806          * target_handle_reconnect(), return reconnection state in a flag */
807         if (rc == EALREADY) {
808                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECONNECT);
809                 rc = 0;
810         } else {
811                 LASSERT(rc == 0);
812         }
813
814         /* Tell the client if we support replayable requests */
815         if (target->obd_replayable)
816                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_REPLAYABLE);
817         client_nid = &req->rq_peer.nid;
818
819         if (export == NULL) {
820                 if (target->obd_recovering) {
821                         cfs_time_t t;
822
823                         t = cfs_timer_deadline(&target->obd_recovery_timer);
824                         t = cfs_time_sub(t, cfs_time_current());
825                         CERROR("%s: denying connection for new client %s (%s): "
826                                "%d clients in recovery for "CFS_TIME_T"s\n",
827                                target->obd_name,
828                                libcfs_nid2str(req->rq_peer.nid), cluuid.uuid,
829                                target->obd_recoverable_clients,
830                                cfs_duration_sec(t));
831                         rc = -EBUSY;
832                 } else {
833 dont_check_exports:
834                         rc = obd_connect(req->rq_svc_thread->t_env,
835                                          &conn, target, &cluuid, data,
836                                          client_nid);
837                 }
838         } else {
839                 rc = obd_reconnect(req->rq_svc_thread->t_env,
840                                    export, target, &cluuid, data);
841         }
842         if (rc)
843                 GOTO(out, rc);
844         /* Return only the parts of obd_connect_data that we understand, so the
845          * client knows that we don't understand the rest. */
846         if (data) {
847                  tmpdata = req_capsule_server_get(&req->rq_pill,
848                                                   &RMF_CONNECT_DATA);
849                   //data->ocd_connect_flags &= OBD_CONNECT_SUPPORTED;
850                  *tmpdata = *data;
851         }
852
853         /* If all else goes well, this is our RPC return code. */
854         req->rq_status = 0;
855
856         lustre_msg_set_handle(req->rq_repmsg, &conn);
857
858         /* ownership of this export ref transfers to the request AFTER we
859          * drop any previous reference the request had, but we don't want
860          * that to go to zero before we get our new export reference. */
861         export = class_conn2export(&conn);
862         if (!export) {
863                 DEBUG_REQ(D_ERROR, req, "Missing export!");
864                 GOTO(out, rc = -ENODEV);
865         }
866
867         /* If the client and the server are the same node, we will already
868          * have an export that really points to the client's DLM export,
869          * because we have a shared handles table.
870          *
871          * XXX this will go away when shaver stops sending the "connect" handle
872          * in the real "remote handle" field of the request --phik 24 Apr 2003
873          */
874         if (req->rq_export != NULL)
875                 class_export_put(req->rq_export);
876
877         req->rq_export = export;
878
879         spin_lock(&export->exp_lock);
880         if (initial_conn) {
881                 lustre_msg_set_conn_cnt(req->rq_repmsg, export->exp_conn_cnt + 1);
882         } else if (export->exp_conn_cnt >= lustre_msg_get_conn_cnt(req->rq_reqmsg)) {
883                 spin_unlock(&export->exp_lock);
884                 CERROR("%s: %s already connected at higher conn_cnt: %d > %d\n",
885                        cluuid.uuid, libcfs_nid2str(req->rq_peer.nid),
886                        export->exp_conn_cnt,
887                        lustre_msg_get_conn_cnt(req->rq_reqmsg));
888
889                 GOTO(out, rc = -EALREADY);
890         }
891         export->exp_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
892
893         /* request from liblustre?  Don't evict it for not pinging. */
894         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) {
895                 export->exp_libclient = 1;
896                 spin_unlock(&export->exp_lock);
897
898                 spin_lock(&target->obd_dev_lock);
899                 list_del_init(&export->exp_obd_chain_timed);
900                 spin_unlock(&target->obd_dev_lock);
901         } else {
902                 spin_unlock(&export->exp_lock);
903         }
904
905         if (export->exp_connection != NULL)
906                 ptlrpc_connection_put(export->exp_connection);
907         export->exp_connection = ptlrpc_connection_get(req->rq_peer,
908                                                        req->rq_self,
909                                                        &remote_uuid);
910
911         spin_lock(&target->obd_dev_lock);
912
913         /* Export might be hashed already, e.g. if this is reconnect */
914         if (hlist_unhashed(&export->exp_nid_hash))
915                 lustre_hash_add(export->exp_obd->obd_nid_hash,
916                                 &export->exp_connection->c_peer.nid,
917                                 &export->exp_nid_hash);
918
919         spin_unlock(&target->obd_dev_lock);
920
921         spin_lock_bh(&target->obd_processing_task_lock);
922         if (target->obd_recovering && !export->exp_in_recovery) {
923                 spin_lock(&export->exp_lock);
924                 export->exp_in_recovery = 1;
925                 export->exp_req_replay_needed = 1;
926                 export->exp_lock_replay_needed = 1;
927                 spin_unlock(&export->exp_lock);
928                 if ((lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_TRANSNO)
929                      && (data->ocd_transno == 0))
930                         CWARN("Connect with zero transno!\n");
931
932                 if ((lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_TRANSNO)
933                      && data->ocd_transno < target->obd_next_recovery_transno)
934                         target->obd_next_recovery_transno = data->ocd_transno;
935                 target->obd_connected_clients++;
936                 /* each connected client is counted as recoverable */
937                 target->obd_recoverable_clients++;
938                 atomic_inc(&target->obd_req_replay_clients);
939                 atomic_inc(&target->obd_lock_replay_clients);
940                 if (target->obd_connected_clients ==
941                     target->obd_max_recoverable_clients)
942                         wake_up(&target->obd_next_transno_waitq);
943         }
944         spin_unlock_bh(&target->obd_processing_task_lock);
945         tmp = req_capsule_client_get(&req->rq_pill, &RMF_CONN);
946         conn = *tmp;
947
948         if (export->exp_imp_reverse != NULL) {
949                 /* destroyed import can be still referenced in ctxt */
950                 obd_set_info_async(export, sizeof(KEY_REVIMP_UPD),
951                                    KEY_REVIMP_UPD, 0, NULL, NULL);
952
953                 /* in some recovery senarios, previous ctx init rpc handled
954                  * in sptlrpc_target_export_check() might be used to install
955                  * a reverse ctx in this reverse import, and later OBD_CONNECT
956                  * using the same gss ctx could reach here and following new
957                  * reverse import. note all reverse ctx in new/old import are
958                  * actually based on the same gss ctx. so we invalidate ctx
959                  * here before destroy import, otherwise flush old import will
960                  * lead to remote reverse ctx be destroied, thus the reverse
961                  * ctx of new import will lost its peer.
962                  * there might be a better way to deal with this???
963                  */
964                 sptlrpc_import_inval_all_ctx(export->exp_imp_reverse);
965
966                 destroy_import(export->exp_imp_reverse);
967         }
968
969         /* for the rest part, we return -ENOTCONN in case of errors
970          * in order to let client initialize connection again.
971          */
972         revimp = export->exp_imp_reverse = class_new_import(target);
973         if (!revimp) {
974                 CERROR("fail to alloc new reverse import.\n");
975                 GOTO(out, rc = -ENOTCONN);
976         }
977
978         revimp->imp_connection = ptlrpc_connection_addref(export->exp_connection);
979         revimp->imp_client = &export->exp_obd->obd_ldlm_client;
980         revimp->imp_remote_handle = conn;
981         revimp->imp_dlm_fake = 1;
982         revimp->imp_state = LUSTRE_IMP_FULL;
983         revimp->imp_msg_magic = req->rq_reqmsg->lm_magic;
984
985         if ((export->exp_connect_flags & OBD_CONNECT_AT) &&
986             (revimp->imp_msg_magic != LUSTRE_MSG_MAGIC_V1))
987                 revimp->imp_msghdr_flags |= MSGHDR_AT_SUPPORT;
988         else
989                 revimp->imp_msghdr_flags &= ~MSGHDR_AT_SUPPORT;
990
991         rc = sptlrpc_import_sec_adapt(revimp, req->rq_svc_ctx,
992                                       req->rq_flvr.sf_rpc);
993         if (rc) {
994                 CERROR("Failed to get sec for reverse import: %d\n", rc);
995                 export->exp_imp_reverse = NULL;
996                 class_destroy_import(revimp);
997         }
998
999         class_import_put(revimp);
1000 out:
1001         if (export) {
1002                 spin_lock(&export->exp_lock);
1003                 export->exp_connecting = 0;
1004                 spin_unlock(&export->exp_lock);
1005         }
1006         if (targref)
1007                 class_decref(targref);
1008         if (rc)
1009                 req->rq_status = rc;
1010         RETURN(rc);
1011 }
1012
1013 int target_handle_disconnect(struct ptlrpc_request *req)
1014 {
1015         int rc;
1016         ENTRY;
1017
1018         rc = req_capsule_server_pack(&req->rq_pill);
1019         if (rc)
1020                 RETURN(rc);
1021
1022         /* keep the rq_export around so we can send the reply */
1023         req->rq_status = obd_disconnect(class_export_get(req->rq_export));
1024
1025         RETURN(0);
1026 }
1027
1028 void target_destroy_export(struct obd_export *exp)
1029 {
1030         /* exports created from last_rcvd data, and "fake"
1031            exports created by lctl don't have an import */
1032         if (exp->exp_imp_reverse != NULL)
1033                 destroy_import(exp->exp_imp_reverse);
1034
1035         /* We cancel locks at disconnect time, but this will catch any locks
1036          * granted in a race with recovery-induced disconnect. */
1037         if (exp->exp_obd->obd_namespace != NULL)
1038                 ldlm_cancel_locks_for_export(exp);
1039 }
1040
1041 /*
1042  * Recovery functions
1043  */
1044
1045 struct ptlrpc_request *ptlrpc_clone_req( struct ptlrpc_request *orig_req)
1046 {
1047         struct ptlrpc_request *copy_req;
1048         struct lustre_msg *copy_reqmsg;
1049         struct ptlrpc_user_desc *udesc = NULL;
1050
1051         OBD_ALLOC_PTR(copy_req);
1052         if (!copy_req)
1053                 return NULL;
1054         OBD_ALLOC(copy_reqmsg, orig_req->rq_reqlen);
1055         if (!copy_reqmsg){
1056                 OBD_FREE_PTR(copy_req);
1057                 return NULL;
1058         }
1059
1060         if (orig_req->rq_user_desc) {
1061                 int ngroups = orig_req->rq_user_desc->pud_ngroups;
1062
1063                 OBD_ALLOC(udesc, sptlrpc_user_desc_size(ngroups));
1064                 if (!udesc) {
1065                         OBD_FREE(copy_reqmsg, orig_req->rq_reqlen);
1066                         OBD_FREE_PTR(copy_req);
1067                         return NULL;
1068                 }
1069                 memcpy(udesc, orig_req->rq_user_desc,
1070                        sptlrpc_user_desc_size(ngroups));
1071         }
1072
1073         *copy_req = *orig_req;
1074         memcpy(copy_reqmsg, orig_req->rq_reqmsg, orig_req->rq_reqlen);
1075         copy_req->rq_reqmsg = copy_reqmsg;
1076         copy_req->rq_user_desc = udesc;
1077
1078         class_export_get(copy_req->rq_export);
1079         CFS_INIT_LIST_HEAD(&copy_req->rq_list);
1080         CFS_INIT_LIST_HEAD(&copy_req->rq_replay_list);
1081         sptlrpc_svc_ctx_addref(copy_req);
1082
1083         if (copy_req->rq_reply_state) {
1084                 /* the copied req takes over the reply state */
1085                 orig_req->rq_reply_state = NULL;
1086                 /* to catch further access */
1087                 orig_req->rq_repmsg = NULL;
1088                 orig_req->rq_replen = 0;
1089         }
1090
1091         return copy_req;
1092 }
1093
1094 void ptlrpc_free_clone(struct ptlrpc_request *req)
1095 {
1096         LASSERT(list_empty(&req->rq_replay_list));
1097
1098         ptlrpc_req_drop_rs(req);
1099         sptlrpc_svc_ctx_decref(req);
1100         class_export_put(req->rq_export);
1101         list_del(&req->rq_list);
1102
1103         if (req->rq_user_desc) {
1104                 int ngroups = req->rq_user_desc->pud_ngroups;
1105                 OBD_FREE(req->rq_user_desc, sptlrpc_user_desc_size(ngroups));
1106         }
1107         OBD_FREE(req->rq_reqmsg, req->rq_reqlen);
1108         OBD_FREE_PTR(req);
1109 }
1110
1111 static int target_exp_enqueue_req_replay(struct ptlrpc_request *req)
1112 {
1113         __u64                  transno = lustre_msg_get_transno(req->rq_reqmsg);
1114         struct obd_export     *exp = req->rq_export;
1115         struct ptlrpc_request *reqiter;
1116         int                    dup = 0;
1117
1118         LASSERT(exp);
1119
1120         spin_lock(&exp->exp_lock);
1121         list_for_each_entry(reqiter, &exp->exp_req_replay_queue,
1122                             rq_replay_list) {
1123                 if (lustre_msg_get_transno(reqiter->rq_reqmsg) == transno) {
1124                         dup = 1;
1125                         break;
1126                 }
1127         }
1128
1129         if (dup) {
1130                 /* we expect it with RESENT and REPLAY flags */
1131                 if ((lustre_msg_get_flags(req->rq_reqmsg) &
1132                      (MSG_RESENT | MSG_REPLAY)) != (MSG_RESENT | MSG_REPLAY))
1133                         CERROR("invalid flags %x of resent replay\n",
1134                                lustre_msg_get_flags(req->rq_reqmsg));
1135         } else {
1136                 list_add_tail(&req->rq_replay_list, &exp->exp_req_replay_queue);
1137         }
1138
1139         spin_unlock(&exp->exp_lock);
1140         return dup;
1141 }
1142
1143 static void target_exp_dequeue_req_replay(struct ptlrpc_request *req)
1144 {
1145         LASSERT(!list_empty(&req->rq_replay_list));
1146         LASSERT(req->rq_export);
1147
1148         spin_lock(&req->rq_export->exp_lock);
1149         list_del_init(&req->rq_replay_list);
1150         spin_unlock(&req->rq_export->exp_lock);
1151 }
1152
1153 #ifdef __KERNEL__
1154 static void target_finish_recovery(struct obd_device *obd)
1155 {
1156         ENTRY;
1157         LCONSOLE_INFO("%s: sending delayed replies to recovered clients\n",
1158                       obd->obd_name);
1159
1160         ldlm_reprocess_all_ns(obd->obd_namespace);
1161
1162         /* when recovery finished, cleanup orphans on mds and ost */
1163         if (OBT(obd) && OBP(obd, postrecov)) {
1164                 int rc = OBP(obd, postrecov)(obd);
1165                 LCONSOLE_WARN("%s: recovery %s: rc %d\n", obd->obd_name,
1166                               rc < 0 ? "failed" : "complete", rc);
1167         }
1168
1169         obd->obd_recovery_end = cfs_time_current_sec();
1170         EXIT;
1171 }
1172
1173 static void abort_req_replay_queue(struct obd_device *obd)
1174 {
1175         struct ptlrpc_request *req, *n;
1176
1177         list_for_each_entry_safe(req, n, &obd->obd_req_replay_queue, rq_list) {
1178                 DEBUG_REQ(D_WARNING, req, "aborted:");
1179                 req->rq_status = -ENOTCONN;
1180                 if (ptlrpc_error(req)) {
1181                         DEBUG_REQ(D_ERROR, req,
1182                                   "failed abort_req_reply; skipping");
1183                 }
1184                 target_exp_dequeue_req_replay(req);
1185                 ptlrpc_free_clone(req);
1186         }
1187 }
1188
1189 static void abort_lock_replay_queue(struct obd_device *obd)
1190 {
1191         struct ptlrpc_request *req, *n;
1192
1193         list_for_each_entry_safe(req, n, &obd->obd_lock_replay_queue, rq_list){
1194                 DEBUG_REQ(D_ERROR, req, "aborted:");
1195                 req->rq_status = -ENOTCONN;
1196                 if (ptlrpc_error(req)) {
1197                         DEBUG_REQ(D_ERROR, req,
1198                                   "failed abort_lock_reply; skipping");
1199                 }
1200                 ptlrpc_free_clone(req);
1201         }
1202 }
1203 #endif
1204
1205 /* Called from a cleanup function if the device is being cleaned up
1206    forcefully.  The exports should all have been disconnected already,
1207    the only thing left to do is
1208      - clear the recovery flags
1209      - cancel the timer
1210      - free queued requests and replies, but don't send replies
1211    Because the obd_stopping flag is set, no new requests should be received.
1212
1213 */
1214 void target_cleanup_recovery(struct obd_device *obd)
1215 {
1216         struct ptlrpc_request *req, *n;
1217         ENTRY;
1218
1219         LASSERT(obd->obd_stopping);
1220
1221         spin_lock_bh(&obd->obd_processing_task_lock);
1222         if (!obd->obd_recovering) {
1223                 spin_unlock_bh(&obd->obd_processing_task_lock);
1224                 EXIT;
1225                 return;
1226         }
1227         obd->obd_recovering = obd->obd_abort_recovery = 0;
1228         target_cancel_recovery_timer(obd);
1229         spin_unlock_bh(&obd->obd_processing_task_lock);
1230
1231         list_for_each_entry_safe(req, n, &obd->obd_req_replay_queue, rq_list) {
1232                 LASSERT (req->rq_reply_state == 0);
1233                 target_exp_dequeue_req_replay(req);
1234                 ptlrpc_free_clone(req);
1235         }
1236         list_for_each_entry_safe(req, n, &obd->obd_lock_replay_queue, rq_list){
1237                 LASSERT (req->rq_reply_state == 0);
1238                 ptlrpc_free_clone(req);
1239         }
1240         list_for_each_entry_safe(req, n, &obd->obd_final_req_queue, rq_list) {
1241                 LASSERT (req->rq_reply_state == 0);
1242                 ptlrpc_free_clone(req);
1243         }
1244
1245         EXIT;
1246 }
1247
1248 /* obd_processing_task_lock should be held */
1249 void target_cancel_recovery_timer(struct obd_device *obd)
1250 {
1251         CDEBUG(D_HA, "%s: cancel recovery timer\n", obd->obd_name);
1252         cfs_timer_disarm(&obd->obd_recovery_timer);
1253 }
1254   
1255 /* extend = 1 means require at least "duration" seconds left in the timer,
1256    extend = 0 means set the total duration (start_recovery_timer) */
1257 static void reset_recovery_timer(struct obd_device *obd, int duration,
1258                                  int extend)
1259 {
1260         cfs_time_t now = cfs_time_current_sec();
1261         cfs_duration_t left;
1262
1263         spin_lock_bh(&obd->obd_processing_task_lock);
1264         if (!obd->obd_recovering || obd->obd_abort_recovery) {
1265                 spin_unlock_bh(&obd->obd_processing_task_lock);
1266                 return;
1267         }
1268
1269         left = cfs_time_sub(obd->obd_recovery_end, now);
1270
1271         if (extend && (duration > left))
1272                 obd->obd_recovery_timeout += duration - left;
1273         else if (!extend && (duration > obd->obd_recovery_timeout))
1274                 /* Track the client's largest expected replay time */
1275                 obd->obd_recovery_timeout = duration;
1276 #ifdef CRAY_XT3
1277         /* 
1278          * If total recovery time already exceed the 
1279          * obd_recovery_max_time, then CRAY XT3 will 
1280          * abort the recovery
1281          */
1282         if(obd->obd_recovery_timeout > obd->obd_recovery_max_time)
1283                 obd->obd_recovery_timeout = obd->obd_recovery_max_time;
1284 #endif
1285         obd->obd_recovery_end = obd->obd_recovery_start + 
1286                                 obd->obd_recovery_timeout;
1287         if (!cfs_timer_is_armed(&obd->obd_recovery_timer) ||
1288             cfs_time_before(now, obd->obd_recovery_end)) {
1289                 left = cfs_time_sub(obd->obd_recovery_end, now);
1290                 cfs_timer_arm(&obd->obd_recovery_timer, cfs_time_shift(left));
1291         }
1292         spin_unlock_bh(&obd->obd_processing_task_lock);
1293         CDEBUG(D_HA, "%s: recovery timer will expire in %u seconds\n",
1294                obd->obd_name, (unsigned)left);
1295 }
1296
1297 static void check_and_start_recovery_timer(struct obd_device *obd)
1298 {
1299         spin_lock_bh(&obd->obd_processing_task_lock);
1300         if (cfs_timer_is_armed(&obd->obd_recovery_timer)) {
1301                 spin_unlock_bh(&obd->obd_processing_task_lock);
1302                 return;
1303         }
1304         CWARN("%s: starting recovery timer\n", obd->obd_name);
1305         obd->obd_recovery_start = cfs_time_current_sec();
1306         /* minimum */
1307         obd->obd_recovery_timeout = OBD_RECOVERY_FACTOR * obd_timeout;
1308         spin_unlock_bh(&obd->obd_processing_task_lock);
1309
1310         reset_recovery_timer(obd, obd->obd_recovery_timeout, 0);
1311 }
1312
1313 /* Reset the timer with each new client connection */
1314 /*
1315  * This timer is actually reconnect_timer, which is for making sure 
1316  * the total recovery window is at least as big as my reconnect 
1317  * attempt timing. So the initial recovery time_out will be set to
1318  * OBD_RECOVERY_FACTOR * obd_timeout. If the timeout coming
1319  * from client is bigger than this, then the recovery time_out will
1320  * be extend to make sure the client could be reconnected, in the 
1321  * process, the timeout from the new client should be ignored.
1322  */
1323
1324 static void
1325 target_start_and_reset_recovery_timer(struct obd_device *obd,
1326                                       struct ptlrpc_request *req,
1327                                       int new_client)
1328 {
1329         int req_timeout = OBD_RECOVERY_FACTOR * 
1330                           lustre_msg_get_timeout(req->rq_reqmsg);
1331
1332         check_and_start_recovery_timer(obd);
1333
1334         if (req_timeout > obd->obd_recovery_timeout && !new_client)
1335                 reset_recovery_timer(obd, req_timeout, 0);
1336 }
1337
1338 #ifdef __KERNEL__
1339 static int check_for_next_transno(struct obd_device *obd)
1340 {
1341         struct ptlrpc_request *req = NULL;
1342         int wake_up = 0, connected, completed, queue_len, max;
1343         __u64 next_transno, req_transno;
1344         ENTRY;
1345         spin_lock_bh(&obd->obd_processing_task_lock);
1346
1347         if (!list_empty(&obd->obd_req_replay_queue)) {
1348                 req = list_entry(obd->obd_req_replay_queue.next,
1349                                  struct ptlrpc_request, rq_list);
1350                 req_transno = lustre_msg_get_transno(req->rq_reqmsg);
1351         } else {
1352                 req_transno = 0;
1353         }
1354
1355         max = obd->obd_max_recoverable_clients;
1356         connected = obd->obd_connected_clients;
1357         completed = connected - obd->obd_recoverable_clients;
1358         queue_len = obd->obd_requests_queued_for_recovery;
1359         next_transno = obd->obd_next_recovery_transno;
1360
1361         CDEBUG(D_HA, "max: %d, connected: %d, completed: %d, queue_len: %d, "
1362                "req_transno: "LPU64", next_transno: "LPU64"\n",
1363                max, connected, completed, queue_len, req_transno, next_transno);
1364
1365         if (obd->obd_abort_recovery) {
1366                 CDEBUG(D_HA, "waking for aborted recovery\n");
1367                 wake_up = 1;
1368         } else if (atomic_read(&obd->obd_req_replay_clients) == 0) {
1369                 CDEBUG(D_HA, "waking for completed recovery\n");
1370                 wake_up = 1;
1371         } else if (req_transno == next_transno) {
1372                 CDEBUG(D_HA, "waking for next ("LPD64")\n", next_transno);
1373                 wake_up = 1;
1374         } else if (queue_len + completed == max) {
1375                 /* handle gaps occured due to lost reply. It is allowed gaps
1376                  * because all clients are connected and there will be resend
1377                  * for missed transaction */
1378                 LASSERTF(req_transno >= next_transno,
1379                          "req_transno: "LPU64", next_transno: "LPU64"\n",
1380                          req_transno, next_transno);
1381
1382                 CDEBUG(req_transno > obd->obd_last_committed ? D_ERROR : D_HA,
1383                        "waking for skipped transno (skip: "LPD64
1384                        ", ql: %d, comp: %d, conn: %d, next: "LPD64")\n",
1385                        next_transno, queue_len, completed, connected, req_transno);
1386                 obd->obd_next_recovery_transno = req_transno;
1387                 wake_up = 1;
1388         } else if (queue_len == atomic_read(&obd->obd_req_replay_clients)) {
1389                 /* some clients haven't connected in time, but we can try
1390                  * to replay requests that demand on already committed ones
1391                  * also, we can replay first non-committed transation */
1392                 LASSERT(req_transno != 0);
1393                 if (req_transno == obd->obd_last_committed + 1) {
1394                         obd->obd_next_recovery_transno = req_transno;
1395                 } else if (req_transno > obd->obd_last_committed) {
1396                         /* can't continue recovery: have no needed transno */
1397                         obd->obd_abort_recovery = 1;
1398                         CDEBUG(D_ERROR, "abort due to missed clients. max: %d, "
1399                                "connected: %d, completed: %d, queue_len: %d, "
1400                                "req_transno: "LPU64", next_transno: "LPU64"\n",
1401                                max, connected, completed, queue_len,
1402                                req_transno, next_transno);
1403                 }
1404                 wake_up = 1;
1405         }
1406
1407         spin_unlock_bh(&obd->obd_processing_task_lock);
1408         return wake_up;
1409 }
1410
1411 static struct ptlrpc_request *target_next_replay_req(struct obd_device *obd)
1412 {
1413         struct l_wait_info lwi = { 0 };
1414         struct ptlrpc_request *req;
1415
1416         CDEBUG(D_HA, "Waiting for transno "LPD64"\n",
1417                obd->obd_next_recovery_transno);
1418         l_wait_event(obd->obd_next_transno_waitq,
1419                      check_for_next_transno(obd), &lwi);
1420
1421         spin_lock_bh(&obd->obd_processing_task_lock);
1422         if (obd->obd_abort_recovery) {
1423                 req = NULL;
1424         } else if (!list_empty(&obd->obd_req_replay_queue)) {
1425                 req = list_entry(obd->obd_req_replay_queue.next,
1426                                  struct ptlrpc_request, rq_list);
1427                 target_exp_dequeue_req_replay(req);
1428                 list_del_init(&req->rq_list);
1429                 obd->obd_requests_queued_for_recovery--;
1430         } else {
1431                 req = NULL;
1432         }
1433         spin_unlock_bh(&obd->obd_processing_task_lock);
1434         RETURN(req);
1435 }
1436
1437 static int check_for_next_lock(struct obd_device *obd)
1438 {
1439         struct ptlrpc_request *req = NULL;
1440         int wake_up = 0;
1441
1442         spin_lock_bh(&obd->obd_processing_task_lock);
1443         if (!list_empty(&obd->obd_lock_replay_queue)) {
1444                 req = list_entry(obd->obd_lock_replay_queue.next,
1445                                  struct ptlrpc_request, rq_list);
1446                 CDEBUG(D_HA, "waking for next lock\n");
1447                 wake_up = 1;
1448         } else if (atomic_read(&obd->obd_lock_replay_clients) == 0) {
1449                 CDEBUG(D_HA, "waking for completed lock replay\n");
1450                 wake_up = 1;
1451         } else if (obd->obd_abort_recovery) {
1452                 CDEBUG(D_HA, "waking for aborted recovery\n");
1453                 wake_up = 1;
1454         }
1455         spin_unlock_bh(&obd->obd_processing_task_lock);
1456
1457         return wake_up;
1458 }
1459
1460 static struct ptlrpc_request *target_next_replay_lock(struct obd_device *obd)
1461 {
1462         struct l_wait_info lwi = { 0 };
1463         struct ptlrpc_request *req;
1464
1465         CDEBUG(D_HA, "Waiting for lock\n");
1466         l_wait_event(obd->obd_next_transno_waitq,
1467                      check_for_next_lock(obd), &lwi);
1468
1469         spin_lock_bh(&obd->obd_processing_task_lock);
1470         if (obd->obd_abort_recovery) {
1471                 req = NULL;
1472         } else if (!list_empty(&obd->obd_lock_replay_queue)) {
1473                 req = list_entry(obd->obd_lock_replay_queue.next,
1474                                  struct ptlrpc_request, rq_list);
1475                 list_del_init(&req->rq_list);
1476         } else {
1477                 req = NULL;
1478         }
1479         spin_unlock_bh(&obd->obd_processing_task_lock);
1480         return req;
1481 }
1482
1483 static struct ptlrpc_request *target_next_final_ping(struct obd_device *obd)
1484 {
1485         struct ptlrpc_request *req;
1486
1487         spin_lock_bh(&obd->obd_processing_task_lock);
1488         if (!list_empty(&obd->obd_final_req_queue)) {
1489                 req = list_entry(obd->obd_final_req_queue.next,
1490                                  struct ptlrpc_request, rq_list);
1491                 list_del_init(&req->rq_list);
1492         } else {
1493                 req = NULL;
1494         }
1495         spin_unlock_bh(&obd->obd_processing_task_lock);
1496         return req;
1497 }
1498
1499 static inline int req_replay_done(struct obd_export *exp)
1500 {
1501         return (exp->exp_req_replay_needed == 0);
1502 }
1503
1504 static inline int lock_replay_done(struct obd_export *exp)
1505 {
1506         return (exp->exp_lock_replay_needed == 0);
1507 }
1508
1509 static inline int connect_done(struct obd_export *exp)
1510 {
1511         return (exp->exp_in_recovery != 0);
1512 }
1513
1514 static int check_for_clients(struct obd_device *obd)
1515 {
1516         if (obd->obd_abort_recovery)
1517                 return 1;
1518         LASSERT(obd->obd_connected_clients <= obd->obd_max_recoverable_clients);
1519         if (obd->obd_no_conn == 0 &&
1520             obd->obd_connected_clients == obd->obd_max_recoverable_clients)
1521                 return 1;
1522         return 0;
1523 }
1524
1525 static int handle_recovery_req(struct ptlrpc_thread *thread,
1526                                struct ptlrpc_request *req,
1527                                svc_handler_t handler)
1528 {
1529         int rc;
1530         ENTRY;
1531
1532         rc = lu_context_init(&req->rq_session, LCT_SESSION);
1533         if (rc) {
1534                 CERROR("Failure to initialize session: %d\n", rc);
1535                 return rc;
1536         }
1537         req->rq_session.lc_thread = thread;
1538         lu_context_enter(&req->rq_session);
1539         req->rq_svc_thread = thread;
1540         req->rq_svc_thread->t_env->le_ses = &req->rq_session;
1541
1542         /* thread context */
1543         lu_context_enter(&thread->t_env->le_ctx);
1544         (void)handler(req);
1545         lu_context_exit(&thread->t_env->le_ctx);
1546
1547         lu_context_exit(&req->rq_session);
1548         lu_context_fini(&req->rq_session);
1549         /* don't reset timer for final stage */
1550         if (!req_replay_done(req->rq_export) ||
1551             !lock_replay_done(req->rq_export))
1552                 reset_recovery_timer(class_exp2obd(req->rq_export),
1553                        OBD_RECOVERY_FACTOR * AT_OFF ? obd_timeout :
1554                        at_get(&req->rq_rqbd->rqbd_service->srv_at_estimate), 1);
1555         ptlrpc_free_clone(req);
1556         RETURN(0);
1557 }
1558
1559 static void resume_recovery_timer(struct obd_device *obd)
1560 {
1561         /* to be safe, make it at least OBD_RECOVERY_FACTOR * obd_timeout */
1562         reset_recovery_timer(obd, OBD_RECOVERY_FACTOR * obd_timeout, 1);
1563 }
1564
1565 static int target_recovery_thread(void *arg)
1566 {
1567         struct obd_device *obd = arg;
1568         struct ptlrpc_request *req;
1569         struct target_recovery_data *trd = &obd->obd_recovery_data;
1570         struct l_wait_info lwi = { 0 };
1571         unsigned long delta;
1572         unsigned long flags;
1573         struct lu_env env;
1574         struct ptlrpc_thread fake_svc_thread, *thread = &fake_svc_thread;
1575         __u32 recov_ctx_tags = LCT_MD_THREAD;
1576         int rc = 0;
1577         ENTRY;
1578
1579         cfs_daemonize("tgt_recov");
1580
1581         SIGNAL_MASK_LOCK(current, flags);
1582         sigfillset(&current->blocked);
1583         RECALC_SIGPENDING;
1584         SIGNAL_MASK_UNLOCK(current, flags);
1585
1586         rc = lu_context_init(&env.le_ctx, recov_ctx_tags);
1587         if (rc)
1588                 RETURN(rc);
1589
1590         thread->t_env = &env;
1591         env.le_ctx.lc_thread = thread;
1592
1593         CERROR("%s: started recovery thread pid %d\n", obd->obd_name,
1594                current->pid);
1595         trd->trd_processing_task = current->pid;
1596
1597         obd->obd_recovering = 1;
1598         complete(&trd->trd_starting);
1599
1600         /* first of all, we have to know the first transno to replay */
1601         obd->obd_abort_recovery = 0;
1602         l_wait_event(obd->obd_next_transno_waitq,
1603                      check_for_clients(obd), &lwi);
1604
1605         spin_lock_bh(&obd->obd_processing_task_lock);
1606         target_cancel_recovery_timer(obd);
1607         spin_unlock_bh(&obd->obd_processing_task_lock);
1608
1609         /* If some clients haven't connected in time, evict them */
1610         if (obd->obd_abort_recovery) {
1611                 CWARN("Some clients haven't connect in time (%d/%d),"
1612                        "evict them\n", obd->obd_connected_clients,
1613                        obd->obd_max_recoverable_clients);
1614                 obd->obd_abort_recovery = obd->obd_stopping;
1615                 class_disconnect_stale_exports(obd, connect_done);
1616         }
1617         /* next stage: replay requests */
1618         delta = jiffies;
1619         obd->obd_req_replaying = 1;
1620         CDEBUG(D_INFO, "1: request replay stage - %d clients from t"LPU64"\n",
1621               atomic_read(&obd->obd_req_replay_clients),
1622               obd->obd_next_recovery_transno);
1623         resume_recovery_timer(obd);
1624         while ((req = target_next_replay_req(obd))) {
1625                 LASSERT(trd->trd_processing_task == current->pid);
1626                 DEBUG_REQ(D_HA, req, "processing t"LPD64" from %s",
1627                           lustre_msg_get_transno(req->rq_reqmsg),
1628                           libcfs_nid2str(req->rq_peer.nid));
1629                 handle_recovery_req(thread, req,
1630                                     trd->trd_recovery_handler);
1631                 obd->obd_replayed_requests++;
1632                 spin_lock_bh(&obd->obd_processing_task_lock);
1633                 obd->obd_next_recovery_transno++;
1634                 spin_unlock_bh(&obd->obd_processing_task_lock);
1635         }
1636
1637         spin_lock_bh(&obd->obd_processing_task_lock);
1638         target_cancel_recovery_timer(obd);
1639         spin_unlock_bh(&obd->obd_processing_task_lock);
1640
1641         /* If some clients haven't replayed requests in time, evict them */
1642         if (obd->obd_abort_recovery) {
1643                 CDEBUG(D_ERROR, "req replay timed out, aborting ...\n");
1644                 obd->obd_abort_recovery = obd->obd_stopping;
1645                 class_disconnect_stale_exports(obd, req_replay_done);
1646                 abort_req_replay_queue(obd);
1647         }
1648
1649         /* The second stage: replay locks */
1650         CDEBUG(D_INFO, "2: lock replay stage - %d clients\n",
1651                atomic_read(&obd->obd_lock_replay_clients));
1652         resume_recovery_timer(obd);
1653         while ((req = target_next_replay_lock(obd))) {
1654                 LASSERT(trd->trd_processing_task == current->pid);
1655                 DEBUG_REQ(D_HA|D_WARNING, req, "processing lock from %s: ",
1656                           libcfs_nid2str(req->rq_peer.nid));
1657                 handle_recovery_req(thread, req,
1658                                     trd->trd_recovery_handler);
1659                 obd->obd_replayed_locks++;
1660         }
1661
1662         spin_lock_bh(&obd->obd_processing_task_lock);
1663         target_cancel_recovery_timer(obd);
1664         spin_unlock_bh(&obd->obd_processing_task_lock);
1665         /* If some clients haven't replayed requests in time, evict them */
1666         if (obd->obd_abort_recovery) {
1667                 int stale;
1668                 CERROR("lock replay timed out, aborting ...\n");
1669                 obd->obd_abort_recovery = obd->obd_stopping;
1670                 stale = class_disconnect_stale_exports(obd, lock_replay_done);
1671                 abort_lock_replay_queue(obd);
1672         }
1673
1674         /* We drop recoverying flag to forward all new requests
1675          * to regular mds_handle() since now */
1676         spin_lock_bh(&obd->obd_processing_task_lock);
1677         obd->obd_recovering = obd->obd_abort_recovery = 0;
1678         spin_unlock_bh(&obd->obd_processing_task_lock);
1679         /* The third stage: reply on final pings */
1680         CDEBUG(D_INFO, "3: final stage - process recovery completion pings\n");
1681         while ((req = target_next_final_ping(obd))) {
1682                 LASSERT(trd->trd_processing_task == current->pid);
1683                 DEBUG_REQ(D_HA, req, "processing final ping from %s: ",
1684                           libcfs_nid2str(req->rq_peer.nid));
1685                 handle_recovery_req(thread, req,
1686                                     trd->trd_recovery_handler);
1687         }
1688
1689         delta = (jiffies - delta) / HZ;
1690         CDEBUG(D_INFO,"4: recovery completed in %lus - %d/%d reqs/locks\n",
1691               delta, obd->obd_replayed_requests, obd->obd_replayed_locks);
1692         LASSERT(atomic_read(&obd->obd_req_replay_clients) == 0);
1693         LASSERT(atomic_read(&obd->obd_lock_replay_clients) == 0);
1694         if (delta > obd_timeout * 2) {
1695                 CWARN("too long recovery - read logs\n");
1696                 libcfs_debug_dumplog();
1697         }
1698
1699         target_finish_recovery(obd);
1700
1701         lu_context_fini(&env.le_ctx);
1702         trd->trd_processing_task = 0;
1703         complete(&trd->trd_finishing);
1704         RETURN(rc);
1705 }
1706
1707 int target_start_recovery_thread(struct obd_device *obd, svc_handler_t handler)
1708 {
1709         int rc = 0;
1710         struct target_recovery_data *trd = &obd->obd_recovery_data;
1711
1712         memset(trd, 0, sizeof(*trd));
1713         init_completion(&trd->trd_starting);
1714         init_completion(&trd->trd_finishing);
1715         trd->trd_recovery_handler = handler;
1716
1717         if (kernel_thread(target_recovery_thread, obd, 0) > 0) {
1718                 wait_for_completion(&trd->trd_starting);
1719                 LASSERT(obd->obd_recovering != 0);
1720         } else
1721                 rc = -ECHILD;
1722
1723         return rc;
1724 }
1725
1726 void target_stop_recovery_thread(struct obd_device *obd)
1727 {
1728         spin_lock_bh(&obd->obd_processing_task_lock);
1729         if (obd->obd_recovery_data.trd_processing_task > 0) {
1730                 struct target_recovery_data *trd = &obd->obd_recovery_data;
1731                 CERROR("%s: Aborting recovery\n", obd->obd_name);
1732                 obd->obd_abort_recovery = 1;
1733                 wake_up(&obd->obd_next_transno_waitq);
1734                 spin_unlock_bh(&obd->obd_processing_task_lock);
1735                 wait_for_completion(&trd->trd_finishing);
1736         } else {
1737                 spin_unlock_bh(&obd->obd_processing_task_lock);
1738         }
1739 }
1740
1741 void target_recovery_fini(struct obd_device *obd)
1742 {
1743         class_disconnect_exports(obd);
1744         target_stop_recovery_thread(obd);
1745         target_cleanup_recovery(obd);
1746 }
1747 EXPORT_SYMBOL(target_recovery_fini);
1748
1749 static void target_recovery_expired(unsigned long castmeharder)
1750 {
1751         struct obd_device *obd = (struct obd_device *)castmeharder;
1752         LCONSOLE_WARN("%s: recovery timed out; %d clients never reconnected "
1753                       "after %lds (%d clients did)\n",
1754                       obd->obd_name, obd->obd_recoverable_clients,
1755                       cfs_time_current_sec()- obd->obd_recovery_start,
1756                       obd->obd_connected_clients);
1757         spin_lock_bh(&obd->obd_processing_task_lock);
1758         if (obd->obd_recovering)
1759                 obd->obd_abort_recovery = 1;
1760         cfs_waitq_signal(&obd->obd_next_transno_waitq);
1761         spin_unlock_bh(&obd->obd_processing_task_lock);
1762 }
1763
1764 void target_recovery_init(struct obd_device *obd, svc_handler_t handler)
1765 {
1766         if (obd->obd_max_recoverable_clients == 0)
1767                 return;
1768
1769         CWARN("RECOVERY: service %s, %d recoverable clients, "
1770               "last_transno "LPU64"\n", obd->obd_name,
1771               obd->obd_max_recoverable_clients, obd->obd_last_committed);
1772         obd->obd_next_recovery_transno = obd->obd_last_committed + 1;
1773         obd->obd_recovery_start = 0;
1774         obd->obd_recovery_end = 0;
1775         obd->obd_recovery_timeout = OBD_RECOVERY_FACTOR * obd_timeout;
1776         /* bz13079: this should be set to desired value for ost but not for mds */
1777         obd->obd_recovery_max_time = OBD_RECOVERY_MAX_TIME;
1778         cfs_timer_init(&obd->obd_recovery_timer, target_recovery_expired, obd);
1779         target_start_recovery_thread(obd, handler);
1780 }
1781 EXPORT_SYMBOL(target_recovery_init);
1782
1783 #endif
1784
1785 int target_process_req_flags(struct obd_device *obd, struct ptlrpc_request *req)
1786 {
1787         struct obd_export *exp = req->rq_export;
1788         LASSERT(exp != NULL);
1789         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REQ_REPLAY_DONE) {
1790                 /* client declares he's ready to replay locks */
1791                 spin_lock_bh(&obd->obd_processing_task_lock);
1792                 if (exp->exp_req_replay_needed) {
1793                         LASSERT(atomic_read(&obd->obd_req_replay_clients) > 0);
1794                         spin_lock(&exp->exp_lock);
1795                         exp->exp_req_replay_needed = 0;
1796                         spin_unlock(&exp->exp_lock);
1797                         atomic_dec(&obd->obd_req_replay_clients);
1798                         LASSERT(obd->obd_recoverable_clients > 0);
1799                         obd->obd_recoverable_clients--;
1800                         if (atomic_read(&obd->obd_req_replay_clients) == 0)
1801                                 CDEBUG(D_HA, "all clients have replayed reqs\n");
1802                         wake_up(&obd->obd_next_transno_waitq);
1803                 }
1804                 spin_unlock_bh(&obd->obd_processing_task_lock);
1805         }
1806         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LOCK_REPLAY_DONE) {
1807                 /* client declares he's ready to complete recovery
1808                  * so, we put the request on th final queue */
1809                 spin_lock_bh(&obd->obd_processing_task_lock);
1810                 if (exp->exp_lock_replay_needed) {
1811                         LASSERT(atomic_read(&obd->obd_lock_replay_clients) > 0);
1812                         spin_lock(&exp->exp_lock);
1813                         exp->exp_lock_replay_needed = 0;
1814                         spin_unlock(&exp->exp_lock);
1815                         atomic_dec(&obd->obd_lock_replay_clients);
1816                         if (atomic_read(&obd->obd_lock_replay_clients) == 0)
1817                                 CDEBUG(D_HA, "all clients have replayed locks\n");
1818                         wake_up(&obd->obd_next_transno_waitq);
1819                 }
1820                 spin_unlock_bh(&obd->obd_processing_task_lock);
1821         }
1822
1823         return 0;
1824 }
1825
1826 int target_queue_recovery_request(struct ptlrpc_request *req,
1827                                   struct obd_device *obd)
1828 {
1829         struct list_head *tmp;
1830         int inserted = 0;
1831         __u64 transno = lustre_msg_get_transno(req->rq_reqmsg);
1832
1833         ENTRY;
1834
1835         if (obd->obd_recovery_data.trd_processing_task == cfs_curproc_pid()) {
1836                 /* Processing the queue right now, don't re-add. */
1837                 RETURN(1);
1838         }
1839
1840         target_process_req_flags(obd, req);
1841
1842         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LOCK_REPLAY_DONE) {
1843                 /* client declares he's ready to complete recovery
1844                  * so, we put the request on th final queue */
1845                 req = ptlrpc_clone_req(req);
1846                 if (req == NULL)
1847                         RETURN(-ENOMEM);
1848                 DEBUG_REQ(D_HA, req, "queue final req");
1849                 spin_lock_bh(&obd->obd_processing_task_lock);
1850                 if (obd->obd_recovering)
1851                         list_add_tail(&req->rq_list, &obd->obd_final_req_queue);
1852                 else {
1853                         spin_unlock_bh(&obd->obd_processing_task_lock);
1854                         ptlrpc_free_clone(req);
1855                         if (obd->obd_stopping) {
1856                                 RETURN(-ENOTCONN);
1857                         } else {
1858                                 RETURN(1);
1859                         }
1860                 }
1861                 spin_unlock_bh(&obd->obd_processing_task_lock);
1862                 RETURN(0);
1863         }
1864         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REQ_REPLAY_DONE) {
1865                 /* client declares he's ready to replay locks */
1866                 req = ptlrpc_clone_req(req);
1867                 if (req == NULL)
1868                         RETURN(-ENOMEM);
1869                 DEBUG_REQ(D_HA, req, "queue lock replay req");
1870                 spin_lock_bh(&obd->obd_processing_task_lock);
1871                 LASSERT(obd->obd_recovering);
1872                 /* usually due to recovery abort */
1873                 if (!req->rq_export->exp_in_recovery) {
1874                         spin_unlock_bh(&obd->obd_processing_task_lock);
1875                         ptlrpc_free_clone(req);
1876                         RETURN(-ENOTCONN);
1877                 }
1878                 LASSERT(req->rq_export->exp_lock_replay_needed);
1879                 list_add_tail(&req->rq_list, &obd->obd_lock_replay_queue);
1880                 spin_unlock_bh(&obd->obd_processing_task_lock);
1881                 wake_up(&obd->obd_next_transno_waitq);
1882                 RETURN(0);
1883         }
1884
1885         /* CAVEAT EMPTOR: The incoming request message has been swabbed
1886          * (i.e. buflens etc are in my own byte order), but type-dependent
1887          * buffers (eg mds_body, ost_body etc) have NOT been swabbed. */
1888
1889         if (!transno) {
1890                 CFS_INIT_LIST_HEAD(&req->rq_list);
1891                 DEBUG_REQ(D_HA, req, "not queueing");
1892                 RETURN(1);
1893         }
1894
1895         spin_lock_bh(&obd->obd_processing_task_lock);
1896
1897         /* If we're processing the queue, we want don't want to queue this
1898          * message.
1899          *
1900          * Also, if this request has a transno less than the one we're waiting
1901          * for, we should process it now.  It could (and currently always will)
1902          * be an open request for a descriptor that was opened some time ago.
1903          *
1904          * Also, a resent, replayed request that has already been
1905          * handled will pass through here and be processed immediately.
1906          */
1907         CWARN("Next recovery transno: "LPU64", current: "LPU64", replaying: %i\n",
1908               obd->obd_next_recovery_transno, transno, obd->obd_req_replaying);
1909         if (transno < obd->obd_next_recovery_transno && obd->obd_req_replaying) {
1910                 /* Processing the queue right now, don't re-add. */
1911                 LASSERT(list_empty(&req->rq_list));
1912                 spin_unlock_bh(&obd->obd_processing_task_lock);
1913                 RETURN(1);
1914         }
1915         spin_unlock_bh(&obd->obd_processing_task_lock);
1916
1917         if (OBD_FAIL_CHECK(OBD_FAIL_TGT_REPLAY_DROP))
1918                 RETURN(0);
1919
1920         req = ptlrpc_clone_req(req);
1921         if (req == NULL)
1922                 RETURN(-ENOMEM);
1923
1924         spin_lock_bh(&obd->obd_processing_task_lock);
1925         LASSERT(obd->obd_recovering);
1926         if (!req->rq_export->exp_in_recovery) {
1927                 spin_unlock_bh(&obd->obd_processing_task_lock);
1928                 ptlrpc_free_clone(req);
1929                 RETURN(-ENOTCONN);
1930         }
1931         LASSERT(req->rq_export->exp_req_replay_needed);
1932
1933         if (target_exp_enqueue_req_replay(req)) {
1934                 spin_unlock_bh(&obd->obd_processing_task_lock);
1935                 DEBUG_REQ(D_ERROR, req, "dropping resent queued req");
1936                 ptlrpc_free_clone(req);
1937                 RETURN(0);
1938         }
1939
1940         /* XXX O(n^2) */
1941         list_for_each(tmp, &obd->obd_req_replay_queue) {
1942                 struct ptlrpc_request *reqiter =
1943                         list_entry(tmp, struct ptlrpc_request, rq_list);
1944
1945                 if (lustre_msg_get_transno(reqiter->rq_reqmsg) > transno) {
1946                         list_add_tail(&req->rq_list, &reqiter->rq_list);
1947                         inserted = 1;
1948                         break;
1949                 }
1950
1951                 if (unlikely(lustre_msg_get_transno(reqiter->rq_reqmsg) ==
1952                              transno)) {
1953                         DEBUG_REQ(D_ERROR, req, "dropping replay: transno "
1954                                   "has been claimed by another client");
1955                         spin_unlock_bh(&obd->obd_processing_task_lock);
1956                         target_exp_dequeue_req_replay(req);
1957                         ptlrpc_free_clone(req);
1958                         RETURN(0);
1959                 }
1960         }
1961
1962         if (!inserted)
1963                 list_add_tail(&req->rq_list, &obd->obd_req_replay_queue);
1964
1965         obd->obd_requests_queued_for_recovery++;
1966         wake_up(&obd->obd_next_transno_waitq);
1967         spin_unlock_bh(&obd->obd_processing_task_lock);
1968         RETURN(0);
1969 }
1970
1971 struct obd_device * target_req2obd(struct ptlrpc_request *req)
1972 {
1973         return req->rq_export->exp_obd;
1974 }
1975
1976 static inline struct ldlm_pool *ldlm_exp2pl(struct obd_export *exp)
1977 {
1978         LASSERT(exp != NULL);
1979         return &exp->exp_obd->obd_namespace->ns_pool;
1980 }
1981
1982 /**
1983  * Packs current SLV and Limit into \a req.
1984  */
1985 int target_pack_pool_reply(struct ptlrpc_request *req)
1986 {
1987         struct obd_device *obd;
1988         ENTRY;
1989    
1990         /* 
1991          * Check that we still have all structures alive as this may 
1992          * be some late rpc in shutdown time.
1993          */
1994         if (unlikely(!req->rq_export || !req->rq_export->exp_obd ||
1995                      !exp_connect_lru_resize(req->rq_export))) {
1996                 lustre_msg_set_slv(req->rq_repmsg, 0);
1997                 lustre_msg_set_limit(req->rq_repmsg, 0);
1998                 RETURN(0);
1999         }
2000
2001         /* 
2002          * OBD is alive here as export is alive, which we checked above. 
2003          */
2004         obd = req->rq_export->exp_obd;
2005
2006         read_lock(&obd->obd_pool_lock);
2007         lustre_msg_set_slv(req->rq_repmsg, obd->obd_pool_slv);
2008         lustre_msg_set_limit(req->rq_repmsg, obd->obd_pool_limit);
2009         read_unlock(&obd->obd_pool_lock);
2010
2011         RETURN(0);
2012 }
2013
2014 int target_send_reply_msg(struct ptlrpc_request *req, int rc, int fail_id)
2015 {
2016         if (OBD_FAIL_CHECK_ORSET(fail_id & ~OBD_FAIL_ONCE, OBD_FAIL_ONCE)) {
2017                 DEBUG_REQ(D_ERROR, req, "dropping reply");
2018                 return (-ECOMM);
2019         }
2020
2021         if (unlikely(rc)) {
2022                 DEBUG_REQ(D_ERROR, req, "processing error (%d)", rc);
2023                 req->rq_status = rc;
2024                 return (ptlrpc_send_error(req, 1));
2025         } else {
2026                 DEBUG_REQ(D_NET, req, "sending reply");
2027         }
2028
2029         return (ptlrpc_send_reply(req, PTLRPC_REPLY_MAYBE_DIFFICULT));
2030 }
2031
2032 void target_send_reply(struct ptlrpc_request *req, int rc, int fail_id)
2033 {
2034         int                        netrc;
2035         struct ptlrpc_reply_state *rs;
2036         struct obd_device         *obd;
2037         struct obd_export         *exp;
2038         struct ptlrpc_service     *svc;
2039
2040         if (req->rq_no_reply)
2041                 return;
2042
2043         svc = req->rq_rqbd->rqbd_service;
2044         rs = req->rq_reply_state;
2045         if (rs == NULL || !rs->rs_difficult) {
2046                 /* no notifiers */
2047                 target_send_reply_msg (req, rc, fail_id);
2048                 return;
2049         }
2050
2051         /* must be an export if locks saved */
2052         LASSERT (req->rq_export != NULL);
2053         /* req/reply consistent */
2054         LASSERT (rs->rs_service == svc);
2055
2056         /* "fresh" reply */
2057         LASSERT (!rs->rs_scheduled);
2058         LASSERT (!rs->rs_scheduled_ever);
2059         LASSERT (!rs->rs_handled);
2060         LASSERT (!rs->rs_on_net);
2061         LASSERT (rs->rs_export == NULL);
2062         LASSERT (list_empty(&rs->rs_obd_list));
2063         LASSERT (list_empty(&rs->rs_exp_list));
2064
2065         exp = class_export_get (req->rq_export);
2066         obd = exp->exp_obd;
2067
2068         /* disable reply scheduling onto srv_reply_queue while I'm setting up */
2069         rs->rs_scheduled = 1;
2070         rs->rs_on_net    = 1;
2071         rs->rs_xid       = req->rq_xid;
2072         rs->rs_transno   = req->rq_transno;
2073         rs->rs_export    = exp;
2074
2075         spin_lock(&obd->obd_uncommitted_replies_lock);
2076
2077         if (rs->rs_transno > obd->obd_last_committed) {
2078                 /* not committed already */
2079                 list_add_tail (&rs->rs_obd_list,
2080                                &obd->obd_uncommitted_replies);
2081         }
2082
2083         spin_unlock (&obd->obd_uncommitted_replies_lock);
2084         spin_lock (&exp->exp_lock);
2085
2086         list_add_tail (&rs->rs_exp_list, &exp->exp_outstanding_replies);
2087
2088         spin_unlock(&exp->exp_lock);
2089
2090         netrc = target_send_reply_msg (req, rc, fail_id);
2091
2092         spin_lock(&svc->srv_lock);
2093
2094         svc->srv_n_difficult_replies++;
2095
2096         if (netrc != 0) {
2097                 /* error sending: reply is off the net.  Also we need +1
2098                  * reply ref until ptlrpc_server_handle_reply() is done
2099                  * with the reply state (if the send was successful, there
2100                  * would have been +1 ref for the net, which
2101                  * reply_out_callback leaves alone) */
2102                 rs->rs_on_net = 0;
2103                 ptlrpc_rs_addref(rs);
2104                 atomic_inc (&svc->srv_outstanding_replies);
2105         }
2106
2107         if (!rs->rs_on_net ||                   /* some notifier */
2108             list_empty(&rs->rs_exp_list) ||     /* completed already */
2109             list_empty(&rs->rs_obd_list)) {
2110                 list_add_tail (&rs->rs_list, &svc->srv_reply_queue);
2111                 cfs_waitq_signal (&svc->srv_waitq);
2112         } else {
2113                 list_add (&rs->rs_list, &svc->srv_active_replies);
2114                 rs->rs_scheduled = 0;           /* allow notifier to schedule */
2115         }
2116
2117         spin_unlock(&svc->srv_lock);
2118 }
2119
2120 int target_handle_ping(struct ptlrpc_request *req)
2121 {
2122         obd_ping(req->rq_export);
2123         return req_capsule_server_pack(&req->rq_pill);
2124 }
2125
2126 void target_committed_to_req(struct ptlrpc_request *req)
2127 {
2128         struct obd_device *obd;
2129
2130         if (req == NULL || req->rq_export == NULL)
2131                 return;
2132
2133         obd = req->rq_export->exp_obd;
2134         if (obd == NULL)
2135                 return;
2136
2137         if (!obd->obd_no_transno && req->rq_repmsg != NULL)
2138                 lustre_msg_set_last_committed(req->rq_repmsg,
2139                                               obd->obd_last_committed);
2140         else
2141                 DEBUG_REQ(D_IOCTL, req, "not sending last_committed update (%d/"
2142                           "%d)", obd->obd_no_transno, req->rq_repmsg == NULL);
2143
2144         CDEBUG(D_INFO, "last_committed "LPU64", transno "LPU64", xid "LPU64"\n",
2145                obd->obd_last_committed, req->rq_transno, req->rq_xid);
2146 }
2147
2148 EXPORT_SYMBOL(target_committed_to_req);
2149
2150 #ifdef HAVE_QUOTA_SUPPORT
2151 int target_handle_qc_callback(struct ptlrpc_request *req)
2152 {
2153         struct obd_quotactl *oqctl;
2154         struct client_obd *cli = &req->rq_export->exp_obd->u.cli;
2155
2156         oqctl = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
2157         if (oqctl == NULL)
2158                 RETURN(-EPROTO);
2159
2160         cli->cl_qchk_stat = oqctl->qc_stat;
2161
2162         return 0;
2163 }
2164
2165 int target_handle_dqacq_callback(struct ptlrpc_request *req)
2166 {
2167 #ifdef __KERNEL__
2168         struct obd_device *obd = req->rq_export->exp_obd;
2169         struct obd_device *master_obd;
2170         struct lustre_quota_ctxt *qctxt;
2171         struct qunit_data *qdata;
2172         void* rep;
2173         struct qunit_data_old *qdata_old;
2174         int rc = 0;
2175         ENTRY;
2176
2177         rc = req_capsule_server_pack(&req->rq_pill);
2178         if (rc) {
2179                 CERROR("packing reply failed!: rc = %d\n", rc);
2180                 RETURN(rc);
2181         }
2182
2183         LASSERT(req->rq_export);
2184
2185         /* fixed for bug10707 */
2186         if ((req->rq_export->exp_connect_flags & OBD_CONNECT_QUOTA64) &&
2187             !OBD_FAIL_CHECK(OBD_FAIL_QUOTA_QD_COUNT_32BIT)) {
2188                 CDEBUG(D_QUOTA, "qd_count is 64bit!\n");
2189                 rep = req_capsule_server_get(&req->rq_pill,
2190                                              &RMF_QUNIT_DATA);
2191                 LASSERT(rep);
2192                 qdata = req_capsule_client_swab_get(&req->rq_pill,
2193                                                     &RMF_QUNIT_DATA,
2194                                           (void*)lustre_swab_qdata);
2195         } else {
2196                 CDEBUG(D_QUOTA, "qd_count is 32bit!\n");
2197                 rep = req_capsule_server_get(&req->rq_pill, &RMF_QUNIT_DATA);
2198                 LASSERT(rep);
2199                 qdata_old = req_capsule_client_swab_get(&req->rq_pill,
2200                                                         &RMF_QUNIT_DATA,
2201                                            (void*)lustre_swab_qdata_old);
2202                 qdata = lustre_quota_old_to_new(qdata_old);
2203         }
2204
2205         if (qdata == NULL)
2206                 RETURN(-EPROTO);
2207
2208         /* we use the observer */
2209         LASSERT(obd->obd_observer && obd->obd_observer->obd_observer);
2210         master_obd = obd->obd_observer->obd_observer;
2211         qctxt = &master_obd->u.obt.obt_qctxt;
2212
2213         LASSERT(qctxt->lqc_handler);
2214         rc = qctxt->lqc_handler(master_obd, qdata,
2215                                 lustre_msg_get_opc(req->rq_reqmsg));
2216         if (rc && rc != -EDQUOT)
2217                 CDEBUG(rc == -EBUSY  ? D_QUOTA : D_ERROR,
2218                        "dqacq failed! (rc:%d)\n", rc);
2219
2220         /* the qd_count might be changed in lqc_handler */
2221         if ((req->rq_export->exp_connect_flags & OBD_CONNECT_QUOTA64) &&
2222             !OBD_FAIL_CHECK(OBD_FAIL_QUOTA_QD_COUNT_32BIT)) {
2223                 memcpy(rep, qdata, sizeof(*qdata));
2224         } else {
2225                 qdata_old = lustre_quota_new_to_old(qdata);
2226                 memcpy(rep, qdata_old, sizeof(*qdata_old));
2227         }
2228         req->rq_status = rc;
2229         rc = ptlrpc_reply(req);
2230
2231         RETURN(rc);
2232 #else
2233         return 0;
2234 #endif /* !__KERNEL__ */
2235 }
2236 #endif /* HAVE_QUOTA_SUPPORT */
2237
2238 ldlm_mode_t lck_compat_array[] = {
2239         [LCK_EX] LCK_COMPAT_EX,
2240         [LCK_PW] LCK_COMPAT_PW,
2241         [LCK_PR] LCK_COMPAT_PR,
2242         [LCK_CW] LCK_COMPAT_CW,
2243         [LCK_CR] LCK_COMPAT_CR,
2244         [LCK_NL] LCK_COMPAT_NL,
2245         [LCK_GROUP] LCK_COMPAT_GROUP
2246 };