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