Whamcloud - gitweb
9b5175282a326c618a5c8f2e5b541147874aac13
[fs/lustre-release.git] / lustre / ldlm / ldlm_lib.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2010, 2014, Intel Corporation.
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 /**
38  * This file deals with various client/target related logic including recovery.
39  *
40  * TODO: This code more logically belongs in the ptlrpc module than in ldlm and
41  * should be moved.
42  */
43
44 #define DEBUG_SUBSYSTEM S_LDLM
45
46 #include <linux/kthread.h>
47 #include <libcfs/libcfs.h>
48 #include <obd.h>
49 #include <obd_class.h>
50 #include <lustre_dlm.h>
51 #include <lustre_net.h>
52 #include <lustre_sec.h>
53 #include "ldlm_internal.h"
54
55 /* @priority: If non-zero, move the selected connection to the list head.
56  * @create: If zero, only search in existing connections.
57  */
58 static int import_set_conn(struct obd_import *imp, struct obd_uuid *uuid,
59                            int priority, int create)
60 {
61         struct ptlrpc_connection *ptlrpc_conn;
62         struct obd_import_conn *imp_conn = NULL, *item;
63         int rc = 0;
64         ENTRY;
65
66         if (!create && !priority) {
67                 CDEBUG(D_HA, "Nothing to do\n");
68                 RETURN(-EINVAL);
69         }
70
71         ptlrpc_conn = ptlrpc_uuid_to_connection(uuid);
72         if (!ptlrpc_conn) {
73                 CDEBUG(D_HA, "can't find connection %s\n", uuid->uuid);
74                 RETURN (-ENOENT);
75         }
76
77         if (create) {
78                 OBD_ALLOC(imp_conn, sizeof(*imp_conn));
79                 if (!imp_conn) {
80                         GOTO(out_put, rc = -ENOMEM);
81                 }
82         }
83
84         spin_lock(&imp->imp_lock);
85         list_for_each_entry(item, &imp->imp_conn_list, oic_item) {
86                 if (obd_uuid_equals(uuid, &item->oic_uuid)) {
87                         if (priority) {
88                                 list_del(&item->oic_item);
89                                 list_add(&item->oic_item,
90                                              &imp->imp_conn_list);
91                                 item->oic_last_attempt = 0;
92                         }
93                         CDEBUG(D_HA, "imp %p@%s: found existing conn %s%s\n",
94                                imp, imp->imp_obd->obd_name, uuid->uuid,
95                                (priority ? ", moved to head" : ""));
96                         spin_unlock(&imp->imp_lock);
97                         GOTO(out_free, rc = 0);
98                 }
99         }
100         /* No existing import connection found for \a uuid. */
101         if (create) {
102                 imp_conn->oic_conn = ptlrpc_conn;
103                 imp_conn->oic_uuid = *uuid;
104                 imp_conn->oic_last_attempt = 0;
105                 if (priority)
106                         list_add(&imp_conn->oic_item, &imp->imp_conn_list);
107                 else
108                         list_add_tail(&imp_conn->oic_item,
109                                           &imp->imp_conn_list);
110                 CDEBUG(D_HA, "imp %p@%s: add connection %s at %s\n",
111                        imp, imp->imp_obd->obd_name, uuid->uuid,
112                        (priority ? "head" : "tail"));
113         } else {
114                 spin_unlock(&imp->imp_lock);
115                 GOTO(out_free, rc = -ENOENT);
116         }
117
118         spin_unlock(&imp->imp_lock);
119         RETURN(0);
120 out_free:
121         if (imp_conn)
122                 OBD_FREE(imp_conn, sizeof(*imp_conn));
123 out_put:
124         ptlrpc_connection_put(ptlrpc_conn);
125         RETURN(rc);
126 }
127
128 int import_set_conn_priority(struct obd_import *imp, struct obd_uuid *uuid)
129 {
130         return import_set_conn(imp, uuid, 1, 0);
131 }
132
133 int client_import_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
134                            int priority)
135 {
136         return import_set_conn(imp, uuid, priority, 1);
137 }
138 EXPORT_SYMBOL(client_import_add_conn);
139
140 int client_import_del_conn(struct obd_import *imp, struct obd_uuid *uuid)
141 {
142         struct obd_import_conn *imp_conn;
143         struct obd_export *dlmexp;
144         int rc = -ENOENT;
145         ENTRY;
146
147         spin_lock(&imp->imp_lock);
148         if (list_empty(&imp->imp_conn_list)) {
149                 LASSERT(!imp->imp_connection);
150                 GOTO(out, rc);
151         }
152
153         list_for_each_entry(imp_conn, &imp->imp_conn_list, oic_item) {
154                 if (!obd_uuid_equals(uuid, &imp_conn->oic_uuid))
155                         continue;
156                 LASSERT(imp_conn->oic_conn);
157
158                 if (imp_conn == imp->imp_conn_current) {
159                         LASSERT(imp_conn->oic_conn == imp->imp_connection);
160
161                         if (imp->imp_state != LUSTRE_IMP_CLOSED &&
162                             imp->imp_state != LUSTRE_IMP_DISCON) {
163                                 CERROR("can't remove current connection\n");
164                                 GOTO(out, rc = -EBUSY);
165                         }
166
167                         ptlrpc_connection_put(imp->imp_connection);
168                         imp->imp_connection = NULL;
169
170                         dlmexp = class_conn2export(&imp->imp_dlm_handle);
171                         if (dlmexp && dlmexp->exp_connection) {
172                                 LASSERT(dlmexp->exp_connection ==
173                                         imp_conn->oic_conn);
174                                 ptlrpc_connection_put(dlmexp->exp_connection);
175                                 dlmexp->exp_connection = NULL;
176                         }
177                 }
178
179                 list_del(&imp_conn->oic_item);
180                 ptlrpc_connection_put(imp_conn->oic_conn);
181                 OBD_FREE(imp_conn, sizeof(*imp_conn));
182                 CDEBUG(D_HA, "imp %p@%s: remove connection %s\n",
183                        imp, imp->imp_obd->obd_name, uuid->uuid);
184                 rc = 0;
185                 break;
186         }
187 out:
188         spin_unlock(&imp->imp_lock);
189         if (rc == -ENOENT)
190                 CERROR("connection %s not found\n", uuid->uuid);
191         RETURN(rc);
192 }
193 EXPORT_SYMBOL(client_import_del_conn);
194
195 /**
196  * Find conn UUID by peer NID. \a peer is a server NID. This function is used
197  * to find a conn uuid of \a imp which can reach \a peer.
198  */
199 int client_import_find_conn(struct obd_import *imp, lnet_nid_t peer,
200                             struct obd_uuid *uuid)
201 {
202         struct obd_import_conn *conn;
203         int rc = -ENOENT;
204         ENTRY;
205
206         spin_lock(&imp->imp_lock);
207         list_for_each_entry(conn, &imp->imp_conn_list, oic_item) {
208                 /* Check if conn UUID does have this peer NID. */
209                 if (class_check_uuid(&conn->oic_uuid, peer)) {
210                         *uuid = conn->oic_uuid;
211                         rc = 0;
212                         break;
213                 }
214         }
215         spin_unlock(&imp->imp_lock);
216         RETURN(rc);
217 }
218 EXPORT_SYMBOL(client_import_find_conn);
219
220 void client_destroy_import(struct obd_import *imp)
221 {
222         /* Drop security policy instance after all RPCs have finished/aborted
223          * to let all busy contexts be released. */
224         class_import_get(imp);
225         class_destroy_import(imp);
226         sptlrpc_import_sec_put(imp);
227         class_import_put(imp);
228 }
229 EXPORT_SYMBOL(client_destroy_import);
230
231 /**
232  * Check whether or not the OSC is on MDT.
233  * In the config log,
234  * osc on MDT
235  *      setup 0:{fsname}-OSTxxxx-osc[-MDTxxxx] 1:lustre-OST0000_UUID 2:NID
236  * osc on client
237  *      setup 0:{fsname}-OSTxxxx-osc 1:lustre-OST0000_UUID 2:NID
238  *
239  **/
240 static int osc_on_mdt(char *obdname)
241 {
242         char *ptr;
243
244         ptr = strrchr(obdname, '-');
245         if (ptr == NULL)
246                 return 0;
247
248         if (strncmp(ptr + 1, "MDT", 3) == 0)
249                 return 1;
250
251         return 0;
252 }
253
254 /* Configure an RPC client OBD device.
255  *
256  * lcfg parameters:
257  * 1 - client UUID
258  * 2 - server UUID
259  * 3 - inactive-on-startup
260  */
261 int client_obd_setup(struct obd_device *obddev, struct lustre_cfg *lcfg)
262 {
263         struct client_obd *cli = &obddev->u.cli;
264         struct obd_import *imp;
265         struct obd_uuid server_uuid;
266         int rq_portal, rp_portal, connect_op;
267         char *name = obddev->obd_type->typ_name;
268         ldlm_ns_type_t ns_type = LDLM_NS_TYPE_UNKNOWN;
269         int rc;
270         char *cli_name = lustre_cfg_buf(lcfg, 0);
271         ENTRY;
272
273         /* In a more perfect world, we would hang a ptlrpc_client off of
274          * obd_type and just use the values from there. */
275         if (!strcmp(name, LUSTRE_OSC_NAME)) {
276                 rq_portal = OST_REQUEST_PORTAL;
277                 rp_portal = OSC_REPLY_PORTAL;
278                 connect_op = OST_CONNECT;
279                 cli->cl_sp_me = LUSTRE_SP_CLI;
280                 cli->cl_sp_to = LUSTRE_SP_OST;
281                 ns_type = LDLM_NS_TYPE_OSC;
282         } else if (!strcmp(name, LUSTRE_MDC_NAME) ||
283                    !strcmp(name, LUSTRE_LWP_NAME)) {
284                 rq_portal = MDS_REQUEST_PORTAL;
285                 rp_portal = MDC_REPLY_PORTAL;
286                 connect_op = MDS_CONNECT;
287                 if (is_lwp_on_ost(cli_name))
288                         cli->cl_sp_me = LUSTRE_SP_OST;
289                 else if (is_lwp_on_mdt(cli_name))
290                         cli->cl_sp_me = LUSTRE_SP_MDT;
291                 else
292                         cli->cl_sp_me = LUSTRE_SP_CLI;
293                 cli->cl_sp_to = LUSTRE_SP_MDT;
294                 ns_type = LDLM_NS_TYPE_MDC;
295         } else if (!strcmp(name, LUSTRE_OSP_NAME)) {
296                 if (strstr(lustre_cfg_buf(lcfg, 1), "OST") == NULL) {
297                         /* OSP_on_MDT for other MDTs */
298                         connect_op = MDS_CONNECT;
299                         cli->cl_sp_to = LUSTRE_SP_MDT;
300                         ns_type = LDLM_NS_TYPE_MDC;
301                         rq_portal = OUT_PORTAL;
302                 } else {
303                         /* OSP on MDT for OST */
304                         connect_op = OST_CONNECT;
305                         cli->cl_sp_to = LUSTRE_SP_OST;
306                         ns_type = LDLM_NS_TYPE_OSC;
307                         rq_portal = OST_REQUEST_PORTAL;
308                 }
309                 rp_portal = OSC_REPLY_PORTAL;
310                 cli->cl_sp_me = LUSTRE_SP_MDT;
311         } else if (!strcmp(name, LUSTRE_MGC_NAME)) {
312                 rq_portal = MGS_REQUEST_PORTAL;
313                 rp_portal = MGC_REPLY_PORTAL;
314                 connect_op = MGS_CONNECT;
315                 cli->cl_sp_me = LUSTRE_SP_MGC;
316                 cli->cl_sp_to = LUSTRE_SP_MGS;
317                 cli->cl_flvr_mgc.sf_rpc = SPTLRPC_FLVR_INVALID;
318                 ns_type = LDLM_NS_TYPE_MGC;
319         } else {
320                 CERROR("unknown client OBD type \"%s\", can't setup\n",
321                        name);
322                 RETURN(-EINVAL);
323         }
324
325         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
326                 CERROR("requires a TARGET UUID\n");
327                 RETURN(-EINVAL);
328         }
329
330         if (LUSTRE_CFG_BUFLEN(lcfg, 1) > 37) {
331                 CERROR("client UUID must be less than 38 characters\n");
332                 RETURN(-EINVAL);
333         }
334
335         if (LUSTRE_CFG_BUFLEN(lcfg, 2) < 1) {
336                 CERROR("setup requires a SERVER UUID\n");
337                 RETURN(-EINVAL);
338         }
339
340         if (LUSTRE_CFG_BUFLEN(lcfg, 2) > 37) {
341                 CERROR("target UUID must be less than 38 characters\n");
342                 RETURN(-EINVAL);
343         }
344
345         init_rwsem(&cli->cl_sem);
346         mutex_init(&cli->cl_mgc_mutex);
347         cli->cl_conn_count = 0;
348         memcpy(server_uuid.uuid, lustre_cfg_buf(lcfg, 2),
349                min_t(unsigned int, LUSTRE_CFG_BUFLEN(lcfg, 2),
350                      sizeof(server_uuid)));
351
352         cli->cl_dirty_pages = 0;
353         cli->cl_avail_grant = 0;
354         /* FIXME: Should limit this for the sum of all cl_dirty_max_pages. */
355         /* cl_dirty_max_pages may be changed at connect time in
356          * ptlrpc_connect_interpret(). */
357         client_adjust_max_dirty(cli);
358         INIT_LIST_HEAD(&cli->cl_cache_waiters);
359         INIT_LIST_HEAD(&cli->cl_loi_ready_list);
360         INIT_LIST_HEAD(&cli->cl_loi_hp_ready_list);
361         INIT_LIST_HEAD(&cli->cl_loi_write_list);
362         INIT_LIST_HEAD(&cli->cl_loi_read_list);
363         spin_lock_init(&cli->cl_loi_list_lock);
364         atomic_set(&cli->cl_pending_w_pages, 0);
365         atomic_set(&cli->cl_pending_r_pages, 0);
366         cli->cl_r_in_flight = 0;
367         cli->cl_w_in_flight = 0;
368
369         spin_lock_init(&cli->cl_read_rpc_hist.oh_lock);
370         spin_lock_init(&cli->cl_write_rpc_hist.oh_lock);
371         spin_lock_init(&cli->cl_read_page_hist.oh_lock);
372         spin_lock_init(&cli->cl_write_page_hist.oh_lock);
373         spin_lock_init(&cli->cl_read_offset_hist.oh_lock);
374         spin_lock_init(&cli->cl_write_offset_hist.oh_lock);
375
376         /* lru for osc. */
377         INIT_LIST_HEAD(&cli->cl_lru_osc);
378         atomic_set(&cli->cl_lru_shrinkers, 0);
379         atomic_long_set(&cli->cl_lru_busy, 0);
380         atomic_long_set(&cli->cl_lru_in_list, 0);
381         INIT_LIST_HEAD(&cli->cl_lru_list);
382         spin_lock_init(&cli->cl_lru_list_lock);
383         atomic_long_set(&cli->cl_unstable_count, 0);
384
385         init_waitqueue_head(&cli->cl_destroy_waitq);
386         atomic_set(&cli->cl_destroy_in_flight, 0);
387 #ifdef ENABLE_CHECKSUM
388         /* Turn on checksumming by default. */
389         cli->cl_checksum = 1;
390         /*
391          * The supported checksum types will be worked out at connect time
392          * Set cl_chksum* to CRC32 for now to avoid returning screwed info
393          * through procfs.
394          */
395         cli->cl_cksum_type = cli->cl_supp_cksum_types = OBD_CKSUM_CRC32;
396 #endif
397         atomic_set(&cli->cl_resends, OSC_DEFAULT_RESENDS);
398
399         /* This value may be reduced at connect time in
400          * ptlrpc_connect_interpret() . We initialize it to only
401          * 1MB until we know what the performance looks like.
402          * In the future this should likely be increased. LU-1431 */
403         cli->cl_max_pages_per_rpc = min_t(int, PTLRPC_MAX_BRW_PAGES,
404                                           LNET_MTU >> PAGE_CACHE_SHIFT);
405
406         /* set cl_chunkbits default value to PAGE_CACHE_SHIFT,
407          * it will be updated at OSC connection time. */
408         cli->cl_chunkbits = PAGE_CACHE_SHIFT;
409
410         if (!strcmp(name, LUSTRE_MDC_NAME)) {
411                 cli->cl_max_rpcs_in_flight = OBD_MAX_RIF_DEFAULT;
412         } else if (totalram_pages >> (20 - PAGE_CACHE_SHIFT) <= 128 /* MB */) {
413                 cli->cl_max_rpcs_in_flight = 2;
414         } else if (totalram_pages >> (20 - PAGE_CACHE_SHIFT) <= 256 /* MB */) {
415                 cli->cl_max_rpcs_in_flight = 3;
416         } else if (totalram_pages >> (20 - PAGE_CACHE_SHIFT) <= 512 /* MB */) {
417                 cli->cl_max_rpcs_in_flight = 4;
418         } else {
419                 if (osc_on_mdt(obddev->obd_name))
420                         cli->cl_max_rpcs_in_flight = OBD_MAX_RIF_MAX;
421                 else
422                         cli->cl_max_rpcs_in_flight = OBD_MAX_RIF_DEFAULT;
423         }
424
425         spin_lock_init(&cli->cl_mod_rpcs_lock);
426         spin_lock_init(&cli->cl_mod_rpcs_hist.oh_lock);
427         cli->cl_max_mod_rpcs_in_flight = 0;
428         cli->cl_mod_rpcs_in_flight = 0;
429         cli->cl_close_rpcs_in_flight = 0;
430         init_waitqueue_head(&cli->cl_mod_rpcs_waitq);
431         cli->cl_mod_tag_bitmap = NULL;
432
433         if (connect_op == MDS_CONNECT) {
434                 cli->cl_max_mod_rpcs_in_flight = cli->cl_max_rpcs_in_flight - 1;
435                 OBD_ALLOC(cli->cl_mod_tag_bitmap,
436                           BITS_TO_LONGS(OBD_MAX_RIF_MAX) * sizeof(long));
437                 if (cli->cl_mod_tag_bitmap == NULL)
438                         GOTO(err, rc = -ENOMEM);
439         }
440
441         rc = ldlm_get_ref();
442         if (rc) {
443                 CERROR("ldlm_get_ref failed: %d\n", rc);
444                 GOTO(err, rc);
445         }
446
447         ptlrpc_init_client(rq_portal, rp_portal, name,
448                            &obddev->obd_ldlm_client);
449
450         imp = class_new_import(obddev);
451         if (imp == NULL)
452                 GOTO(err_ldlm, rc = -ENOENT);
453         imp->imp_client = &obddev->obd_ldlm_client;
454         imp->imp_connect_op = connect_op;
455         memcpy(cli->cl_target_uuid.uuid, lustre_cfg_buf(lcfg, 1),
456                LUSTRE_CFG_BUFLEN(lcfg, 1));
457         class_import_put(imp);
458
459         rc = client_import_add_conn(imp, &server_uuid, 1);
460         if (rc) {
461                 CERROR("can't add initial connection\n");
462                 GOTO(err_import, rc);
463         }
464
465         cli->cl_import = imp;
466         /* cli->cl_max_mds_easize updated by mdc_init_ea_size() */
467         cli->cl_max_mds_easize = sizeof(struct lov_mds_md_v3);
468
469         if (LUSTRE_CFG_BUFLEN(lcfg, 3) > 0) {
470                 if (!strcmp(lustre_cfg_string(lcfg, 3), "inactive")) {
471                         CDEBUG(D_HA, "marking %s %s->%s as inactive\n",
472                                name, obddev->obd_name,
473                                cli->cl_target_uuid.uuid);
474                         spin_lock(&imp->imp_lock);
475                         imp->imp_deactive = 1;
476                         spin_unlock(&imp->imp_lock);
477                 }
478         }
479
480         obddev->obd_namespace = ldlm_namespace_new(obddev, obddev->obd_name,
481                                                    LDLM_NAMESPACE_CLIENT,
482                                                    LDLM_NAMESPACE_GREEDY,
483                                                    ns_type);
484         if (obddev->obd_namespace == NULL) {
485                 CERROR("Unable to create client namespace - %s\n",
486                        obddev->obd_name);
487                 GOTO(err_import, rc = -ENOMEM);
488         }
489
490         RETURN(rc);
491
492 err_import:
493         class_destroy_import(imp);
494 err_ldlm:
495         ldlm_put_ref();
496 err:
497         if (cli->cl_mod_tag_bitmap != NULL)
498                 OBD_FREE(cli->cl_mod_tag_bitmap,
499                          BITS_TO_LONGS(OBD_MAX_RIF_MAX) * sizeof(long));
500         cli->cl_mod_tag_bitmap = NULL;
501         RETURN(rc);
502
503 }
504 EXPORT_SYMBOL(client_obd_setup);
505
506 int client_obd_cleanup(struct obd_device *obddev)
507 {
508         struct client_obd *cli = &obddev->u.cli;
509         ENTRY;
510
511         ldlm_namespace_free_post(obddev->obd_namespace);
512         obddev->obd_namespace = NULL;
513
514         obd_cleanup_client_import(obddev);
515         LASSERT(obddev->u.cli.cl_import == NULL);
516
517         ldlm_put_ref();
518
519         if (cli->cl_mod_tag_bitmap != NULL)
520                 OBD_FREE(cli->cl_mod_tag_bitmap,
521                          BITS_TO_LONGS(OBD_MAX_RIF_MAX) * sizeof(long));
522         cli->cl_mod_tag_bitmap = NULL;
523
524         RETURN(0);
525 }
526 EXPORT_SYMBOL(client_obd_cleanup);
527
528 /* ->o_connect() method for client side (OSC and MDC and MGC) */
529 int client_connect_import(const struct lu_env *env,
530                           struct obd_export **exp,
531                           struct obd_device *obd, struct obd_uuid *cluuid,
532                           struct obd_connect_data *data, void *localdata)
533 {
534         struct client_obd       *cli    = &obd->u.cli;
535         struct obd_import       *imp    = cli->cl_import;
536         struct obd_connect_data *ocd;
537         struct lustre_handle    conn    = { 0 };
538         int                     rc;
539         bool                    is_mdc = false;
540         ENTRY;
541
542         *exp = NULL;
543         down_write(&cli->cl_sem);
544         if (cli->cl_conn_count > 0)
545                 GOTO(out_sem, rc = -EALREADY);
546
547         rc = class_connect(&conn, obd, cluuid);
548         if (rc)
549                 GOTO(out_sem, rc);
550
551         cli->cl_conn_count++;
552         *exp = class_conn2export(&conn);
553
554         LASSERT(obd->obd_namespace);
555
556         imp->imp_dlm_handle = conn;
557         rc = ptlrpc_init_import(imp);
558         if (rc != 0)
559                 GOTO(out_ldlm, rc);
560
561         ocd = &imp->imp_connect_data;
562         if (data) {
563                 *ocd = *data;
564                 is_mdc = strncmp(imp->imp_obd->obd_type->typ_name,
565                                  LUSTRE_MDC_NAME, 3) == 0;
566                 if (is_mdc)
567                         data->ocd_connect_flags |= OBD_CONNECT_MULTIMODRPCS;
568                 imp->imp_connect_flags_orig = data->ocd_connect_flags;
569         }
570
571         rc = ptlrpc_connect_import(imp);
572         if (rc != 0) {
573                 LASSERT (imp->imp_state == LUSTRE_IMP_DISCON);
574                 GOTO(out_ldlm, rc);
575         }
576         LASSERT(*exp != NULL && (*exp)->exp_connection);
577
578         if (data) {
579                 LASSERTF((ocd->ocd_connect_flags & data->ocd_connect_flags) ==
580                          ocd->ocd_connect_flags, "old "LPX64", new "LPX64"\n",
581                          data->ocd_connect_flags, ocd->ocd_connect_flags);
582                 data->ocd_connect_flags = ocd->ocd_connect_flags;
583                 /* clear the flag as it was not set and is not known
584                  * by upper layers */
585                 if (is_mdc)
586                         data->ocd_connect_flags &= ~OBD_CONNECT_MULTIMODRPCS;
587         }
588
589         ptlrpc_pinger_add_import(imp);
590
591         EXIT;
592
593         if (rc) {
594 out_ldlm:
595                 cli->cl_conn_count--;
596                 class_disconnect(*exp);
597                 *exp = NULL;
598         }
599 out_sem:
600         up_write(&cli->cl_sem);
601
602         return rc;
603 }
604 EXPORT_SYMBOL(client_connect_import);
605
606 int client_disconnect_export(struct obd_export *exp)
607 {
608         struct obd_device *obd = class_exp2obd(exp);
609         struct client_obd *cli;
610         struct obd_import *imp;
611         int rc = 0, err;
612         ENTRY;
613
614         if (!obd) {
615                 CERROR("invalid export for disconnect: exp %p cookie "LPX64"\n",
616                        exp, exp ? exp->exp_handle.h_cookie : -1);
617                 RETURN(-EINVAL);
618         }
619
620         cli = &obd->u.cli;
621         imp = cli->cl_import;
622
623         down_write(&cli->cl_sem);
624         CDEBUG(D_INFO, "disconnect %s - %zu\n", obd->obd_name,
625                 cli->cl_conn_count);
626
627         if (cli->cl_conn_count == 0) {
628                 CERROR("disconnecting disconnected device (%s)\n",
629                        obd->obd_name);
630                 GOTO(out_disconnect, rc = -EINVAL);
631         }
632
633         cli->cl_conn_count--;
634         if (cli->cl_conn_count != 0)
635                 GOTO(out_disconnect, rc = 0);
636
637         /* Mark import deactivated now, so we don't try to reconnect if any
638          * of the cleanup RPCs fails (e.g. LDLM cancel, etc).  We don't
639          * fully deactivate the import, or that would drop all requests. */
640         spin_lock(&imp->imp_lock);
641         imp->imp_deactive = 1;
642         spin_unlock(&imp->imp_lock);
643
644         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
645          * delete it regardless.  (It's safe to delete an import that was
646          * never added.) */
647         (void)ptlrpc_pinger_del_import(imp);
648
649         if (obd->obd_namespace != NULL) {
650                 /* obd_force == local only */
651                 ldlm_cli_cancel_unused(obd->obd_namespace, NULL,
652                                        obd->obd_force ? LCF_LOCAL : 0, NULL);
653                 ldlm_namespace_free_prior(obd->obd_namespace, imp, obd->obd_force);
654         }
655
656         /* There's no need to hold sem while disconnecting an import,
657          * and it may actually cause deadlock in GSS. */
658         up_write(&cli->cl_sem);
659         rc = ptlrpc_disconnect_import(imp, 0);
660         down_write(&cli->cl_sem);
661
662         ptlrpc_invalidate_import(imp);
663
664         EXIT;
665
666 out_disconnect:
667         /* Use server style - class_disconnect should be always called for
668          * o_disconnect. */
669         err = class_disconnect(exp);
670         if (!rc && err)
671                 rc = err;
672
673         up_write(&cli->cl_sem);
674
675         RETURN(rc);
676 }
677 EXPORT_SYMBOL(client_disconnect_export);
678
679 #ifdef HAVE_SERVER_SUPPORT
680 int server_disconnect_export(struct obd_export *exp)
681 {
682         int rc;
683         ENTRY;
684
685         /* Disconnect early so that clients can't keep using export. */
686         rc = class_disconnect(exp);
687         /* Close import to avoid sending any requests. */
688         if (exp->exp_imp_reverse)
689                 ptlrpc_cleanup_imp(exp->exp_imp_reverse);
690
691         ldlm_bl_thread_wakeup();
692
693         /* complete all outstanding replies */
694         spin_lock(&exp->exp_lock);
695         while (!list_empty(&exp->exp_outstanding_replies)) {
696                 struct ptlrpc_reply_state *rs =
697                         list_entry(exp->exp_outstanding_replies.next,
698                                        struct ptlrpc_reply_state, rs_exp_list);
699                 struct ptlrpc_service_part *svcpt = rs->rs_svcpt;
700
701                 spin_lock(&svcpt->scp_rep_lock);
702
703                 list_del_init(&rs->rs_exp_list);
704                 spin_lock(&rs->rs_lock);
705                 ptlrpc_schedule_difficult_reply(rs);
706                 spin_unlock(&rs->rs_lock);
707
708                 spin_unlock(&svcpt->scp_rep_lock);
709         }
710         spin_unlock(&exp->exp_lock);
711
712         RETURN(rc);
713 }
714 EXPORT_SYMBOL(server_disconnect_export);
715
716 /* --------------------------------------------------------------------------
717  * from old lib/target.c
718  * -------------------------------------------------------------------------- */
719
720 static int target_handle_reconnect(struct lustre_handle *conn,
721                                    struct obd_export *exp,
722                                    struct obd_uuid *cluuid)
723 {
724         ENTRY;
725
726         if (exp->exp_connection && exp->exp_imp_reverse) {
727                 struct lustre_handle *hdl;
728                 struct obd_device *target;
729
730                 hdl = &exp->exp_imp_reverse->imp_remote_handle;
731                 target = exp->exp_obd;
732
733                 /* Might be a re-connect after a partition. */
734                 if (!memcmp(&conn->cookie, &hdl->cookie, sizeof conn->cookie)) {
735                         if (target->obd_recovering) {
736                                 int timeout = cfs_duration_sec(cfs_time_sub(
737                                         cfs_timer_deadline(
738                                         &target->obd_recovery_timer),
739                                         cfs_time_current()));
740
741                                 LCONSOLE_WARN("%s: Client %s (at %s) reconnect"
742                                         "ing, waiting for %d clients in recov"
743                                         "ery for %d:%.02d\n", target->obd_name,
744                                         obd_uuid2str(&exp->exp_client_uuid),
745                                         obd_export_nid2str(exp),
746                                         target->obd_max_recoverable_clients,
747                                         timeout / 60, timeout % 60);
748                         } else {
749                                 LCONSOLE_WARN("%s: Client %s (at %s) "
750                                         "reconnecting\n", target->obd_name,
751                                         obd_uuid2str(&exp->exp_client_uuid),
752                                         obd_export_nid2str(exp));
753                         }
754
755                         conn->cookie = exp->exp_handle.h_cookie;
756                         /* target_handle_connect() treats EALREADY and
757                          * -EALREADY differently.  EALREADY means we are
758                          * doing a valid reconnect from the same client. */
759                         RETURN(EALREADY);
760                 } else {
761                         LCONSOLE_WARN("%s: already connected client %s (at %s) "
762                                       "with handle "LPX64". Rejecting client "
763                                       "with the same UUID trying to reconnect "
764                                       "with handle "LPX64"\n", target->obd_name,
765                                       obd_uuid2str(&exp->exp_client_uuid),
766                                       obd_export_nid2str(exp),
767                                       hdl->cookie, conn->cookie);
768                         memset(conn, 0, sizeof *conn);
769                         /* target_handle_connect() treats EALREADY and
770                          * -EALREADY differently.  -EALREADY is an error
771                          * (same UUID, different handle). */
772                         RETURN(-EALREADY);
773                 }
774         }
775
776         conn->cookie = exp->exp_handle.h_cookie;
777         CDEBUG(D_HA, "connect export for UUID '%s' at %p, cookie "LPX64"\n",
778                cluuid->uuid, exp, conn->cookie);
779         RETURN(0);
780 }
781
782 void target_client_add_cb(struct obd_device *obd, __u64 transno, void *cb_data,
783                           int error)
784 {
785         struct obd_export *exp = cb_data;
786
787         CDEBUG(D_RPCTRACE, "%s: committing for initial connect of %s\n",
788                obd->obd_name, exp->exp_client_uuid.uuid);
789
790         spin_lock(&exp->exp_lock);
791         exp->exp_need_sync = 0;
792         spin_unlock(&exp->exp_lock);
793         class_export_cb_put(exp);
794 }
795
796 static void
797 check_and_start_recovery_timer(struct obd_device *obd,
798                                struct ptlrpc_request *req, int new_client);
799
800 int target_handle_connect(struct ptlrpc_request *req)
801 {
802         struct obd_device *target = NULL, *targref = NULL;
803         struct obd_export *export = NULL;
804         struct obd_import *revimp;
805         struct obd_import *tmp_imp = NULL;
806         struct lustre_handle conn;
807         struct lustre_handle *tmp;
808         struct obd_uuid tgtuuid;
809         struct obd_uuid cluuid;
810         struct obd_uuid remote_uuid;
811         char *str;
812         int rc = 0;
813         char *target_start;
814         int target_len;
815         bool     mds_conn = false, lw_client = false;
816         bool     mds_mds_conn = false;
817         bool     new_mds_mds_conn = false;
818         struct obd_connect_data *data, *tmpdata;
819         int size, tmpsize;
820         lnet_nid_t *client_nid = NULL;
821         ENTRY;
822
823         OBD_RACE(OBD_FAIL_TGT_CONN_RACE);
824
825         str = req_capsule_client_get(&req->rq_pill, &RMF_TGTUUID);
826         if (str == NULL) {
827                 DEBUG_REQ(D_ERROR, req, "bad target UUID for connect");
828                 GOTO(out, rc = -EINVAL);
829         }
830
831         obd_str2uuid(&tgtuuid, str);
832         target = class_uuid2obd(&tgtuuid);
833         if (!target)
834                 target = class_name2obd(str);
835
836         if (!target) {
837                 deuuidify(str, NULL, &target_start, &target_len);
838                 LCONSOLE_ERROR_MSG(0x137, "%s: not available for connect "
839                                    "from %s (no target). If you are running "
840                                    "an HA pair check that the target is "
841                                    "mounted on the other server.\n", str,
842                                    libcfs_nid2str(req->rq_peer.nid));
843                 GOTO(out, rc = -ENODEV);
844         }
845
846         spin_lock(&target->obd_dev_lock);
847         if (target->obd_stopping || !target->obd_set_up) {
848                 spin_unlock(&target->obd_dev_lock);
849
850                 deuuidify(str, NULL, &target_start, &target_len);
851                 LCONSOLE_INFO("%.*s: Not available for connect from %s (%s)\n",
852                               target_len, target_start,
853                               libcfs_nid2str(req->rq_peer.nid),
854                               (target->obd_stopping ?
855                                "stopping" : "not set up"));
856                 GOTO(out, rc = -ENODEV);
857         }
858
859         if (target->obd_no_conn) {
860                 spin_unlock(&target->obd_dev_lock);
861
862                 CDEBUG(D_INFO, "%s: Temporarily refusing client connection "
863                                "from %s\n", target->obd_name,
864                                libcfs_nid2str(req->rq_peer.nid));
865                 GOTO(out, rc = -EAGAIN);
866         }
867
868         /* Make sure the target isn't cleaned up while we're here. Yes,
869          * there's still a race between the above check and our incref here.
870          * Really, class_uuid2obd should take the ref. */
871         targref = class_incref(target, __FUNCTION__, current);
872
873         target->obd_conn_inprogress++;
874         spin_unlock(&target->obd_dev_lock);
875
876         str = req_capsule_client_get(&req->rq_pill, &RMF_CLUUID);
877         if (str == NULL) {
878                 DEBUG_REQ(D_ERROR, req, "bad client UUID for connect");
879                 GOTO(out, rc = -EINVAL);
880         }
881
882         obd_str2uuid(&cluuid, str);
883
884         /* XXX Extract a nettype and format accordingly. */
885         switch (sizeof(lnet_nid_t)) {
886         /* NB the casts only avoid compiler warnings. */
887         case 8:
888                 snprintf(remote_uuid.uuid, sizeof remote_uuid,
889                          "NET_"LPX64"_UUID", (__u64)req->rq_peer.nid);
890                 break;
891         case 4:
892                 snprintf(remote_uuid.uuid, sizeof remote_uuid,
893                          "NET_%x_UUID", (__u32)req->rq_peer.nid);
894                 break;
895         default:
896                 LBUG();
897         }
898
899         tmp = req_capsule_client_get(&req->rq_pill, &RMF_CONN);
900         if (tmp == NULL)
901                 GOTO(out, rc = -EPROTO);
902
903         conn = *tmp;
904
905         size = req_capsule_get_size(&req->rq_pill, &RMF_CONNECT_DATA,
906                                     RCL_CLIENT);
907         data = req_capsule_client_get(&req->rq_pill, &RMF_CONNECT_DATA);
908         if (!data)
909                 GOTO(out, rc = -EPROTO);
910
911         rc = req_capsule_server_pack(&req->rq_pill);
912         if (rc)
913                 GOTO(out, rc);
914
915 #if LUSTRE_VERSION_CODE < OBD_OCD_VERSION(3, 0, 53, 0)
916         /* Don't allow clients to connect that are using old 1.8 format
917          * protocol conventions (LUSTRE_MSG_MAGIC_v1, !MSGHDR_CKSUM_INCOMPAT18,
918          * ldlm_flock_policy_wire format, MDT_ATTR_xTIME_SET, etc).  The
919          * FULL20 flag should be set on all connections since 2.0, but no
920          * longer affects behaviour.
921          *
922          * Later this check will be disabled and the flag can be retired
923          * completely once interop with 3.0 is no longer needed.
924          */
925         if (!(data->ocd_connect_flags & OBD_CONNECT_FULL20))
926                 GOTO(out, rc = -EPROTO);
927 #endif
928
929         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) {
930                 if (data->ocd_version < LUSTRE_VERSION_CODE -
931                                                LUSTRE_VERSION_ALLOWED_OFFSET ||
932                     data->ocd_version > LUSTRE_VERSION_CODE +
933                                                LUSTRE_VERSION_ALLOWED_OFFSET) {
934                         DEBUG_REQ(D_WARNING, req, "Refusing %s (%d.%d.%d.%d) "
935                                   "libclient connection attempt",
936                                   data->ocd_version < LUSTRE_VERSION_CODE ?
937                                   "old" : "new",
938                                   OBD_OCD_VERSION_MAJOR(data->ocd_version),
939                                   OBD_OCD_VERSION_MINOR(data->ocd_version),
940                                   OBD_OCD_VERSION_PATCH(data->ocd_version),
941                                   OBD_OCD_VERSION_FIX(data->ocd_version));
942                         data = req_capsule_server_sized_get(&req->rq_pill,
943                                                             &RMF_CONNECT_DATA,
944                                     offsetof(typeof(*data), ocd_version) +
945                                              sizeof(data->ocd_version));
946                         if (data) {
947                                 data->ocd_connect_flags = OBD_CONNECT_VERSION;
948                                 data->ocd_version = LUSTRE_VERSION_CODE;
949                         }
950                         GOTO(out, rc = -EPROTO);
951                 }
952         }
953
954         /* Note: lw_client is needed in MDS-MDS failover during update log
955          * processing, so we needs to allow lw_client to be connected at
956          * anytime, instead of only the initial connection */
957         lw_client = (data->ocd_connect_flags & OBD_CONNECT_LIGHTWEIGHT) != 0;
958
959         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_INITIAL) {
960                 mds_conn = (data->ocd_connect_flags & OBD_CONNECT_MDS) != 0;
961                 mds_mds_conn = (data->ocd_connect_flags &
962                                 OBD_CONNECT_MDS_MDS) != 0;
963
964                 /* OBD_CONNECT_MNE_SWAB is defined as OBD_CONNECT_MDS_MDS
965                  * for Imperative Recovery connection from MGC to MGS.
966                  *
967                  * Via check OBD_CONNECT_FID, we can distinguish whether
968                  * the OBD_CONNECT_MDS_MDS/OBD_CONNECT_MNE_SWAB is from
969                  * MGC or MDT. */
970                 if (!lw_client &&
971                     (data->ocd_connect_flags & OBD_CONNECT_MDS_MDS) &&
972                     (data->ocd_connect_flags & OBD_CONNECT_FID) &&
973                     (data->ocd_connect_flags & OBD_CONNECT_VERSION)) {
974                         __u32 major = OBD_OCD_VERSION_MAJOR(data->ocd_version);
975                         __u32 minor = OBD_OCD_VERSION_MINOR(data->ocd_version);
976                         __u32 patch = OBD_OCD_VERSION_PATCH(data->ocd_version);
977
978                         /* We do not support the MDT-MDT interoperations with
979                          * different version MDT because of protocol changes. */
980                         if (unlikely(major != LUSTRE_MAJOR ||
981                                      minor != LUSTRE_MINOR ||
982                                      abs(patch - LUSTRE_PATCH) > 3)) {
983                                 LCONSOLE_WARN("%s (%u.%u.%u.%u) refused the "
984                                         "connection from different version MDT "
985                                         "(%d.%d.%d.%d) %s %s\n",
986                                         target->obd_name, LUSTRE_MAJOR,
987                                         LUSTRE_MINOR, LUSTRE_PATCH, LUSTRE_FIX,
988                                         major, minor, patch,
989                                         OBD_OCD_VERSION_FIX(data->ocd_version),
990                                         libcfs_nid2str(req->rq_peer.nid), str);
991
992                                 GOTO(out, rc = -EPROTO);
993                         }
994                 }
995         }
996
997         /* lctl gets a backstage, all-access pass. */
998         if (obd_uuid_equals(&cluuid, &target->obd_uuid))
999                 goto dont_check_exports;
1000
1001         export = cfs_hash_lookup(target->obd_uuid_hash, &cluuid);
1002         if (!export)
1003                 goto no_export;
1004
1005         /* We've found an export in the hash. */
1006
1007         spin_lock(&export->exp_lock);
1008
1009         if (export->exp_connecting) { /* bug 9635, et. al. */
1010                 spin_unlock(&export->exp_lock);
1011                 LCONSOLE_WARN("%s: Export %p already connecting from %s\n",
1012                               export->exp_obd->obd_name, export,
1013                               libcfs_nid2str(req->rq_peer.nid));
1014                 class_export_put(export);
1015                 export = NULL;
1016                 rc = -EALREADY;
1017         } else if ((mds_conn || lw_client) && export->exp_connection != NULL) {
1018                 spin_unlock(&export->exp_lock);
1019                 if (req->rq_peer.nid != export->exp_connection->c_peer.nid)
1020                         /* MDS or LWP reconnected after failover. */
1021                         LCONSOLE_WARN("%s: Received %s connection from "
1022                             "%s, removing former export from %s\n",
1023                             target->obd_name, mds_conn ? "MDS" : "LWP",
1024                             libcfs_nid2str(req->rq_peer.nid),
1025                             libcfs_nid2str(export->exp_connection->c_peer.nid));
1026                 else
1027                         /* New MDS connection from the same NID. */
1028                         LCONSOLE_WARN("%s: Received new %s connection from "
1029                                 "%s, removing former export from same NID\n",
1030                                 target->obd_name, mds_conn ? "MDS" : "LWP",
1031                                 libcfs_nid2str(req->rq_peer.nid));
1032                 class_fail_export(export);
1033                 class_export_put(export);
1034                 export = NULL;
1035                 rc = 0;
1036         } else if (export->exp_connection != NULL &&
1037                    req->rq_peer.nid != export->exp_connection->c_peer.nid &&
1038                    (lustre_msg_get_op_flags(req->rq_reqmsg) &
1039                     MSG_CONNECT_INITIAL)) {
1040                 spin_unlock(&export->exp_lock);
1041                 /* In MDS failover we have static UUID but NID can change. */
1042                 LCONSOLE_WARN("%s: Client %s seen on new nid %s when "
1043                               "existing nid %s is already connected\n",
1044                               target->obd_name, cluuid.uuid,
1045                               libcfs_nid2str(req->rq_peer.nid),
1046                               libcfs_nid2str(
1047                                       export->exp_connection->c_peer.nid));
1048                 rc = -EALREADY;
1049                 class_export_put(export);
1050                 export = NULL;
1051         } else {
1052                 export->exp_connecting = 1;
1053                 spin_unlock(&export->exp_lock);
1054                 LASSERT(export->exp_obd == target);
1055
1056                 rc = target_handle_reconnect(&conn, export, &cluuid);
1057         }
1058
1059         /* If we found an export, we already unlocked. */
1060         if (!export) {
1061 no_export:
1062                 OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_CONNECT, 2 * obd_timeout);
1063         } else if (req->rq_export == NULL &&
1064                    atomic_read(&export->exp_rpc_count) > 0) {
1065                 LCONSOLE_WARN("%s: Client %s (at %s) refused connection, "
1066                               "still busy with %d references\n",
1067                               target->obd_name, cluuid.uuid,
1068                               libcfs_nid2str(req->rq_peer.nid),
1069                               atomic_read(&export->exp_refcount));
1070                 GOTO(out, rc = -EBUSY);
1071         } else if (lustre_msg_get_conn_cnt(req->rq_reqmsg) == 1) {
1072                 if (!strstr(cluuid.uuid, "mdt"))
1073                         LCONSOLE_WARN("%s: Rejecting reconnect from the "
1074                                       "known client %s (at %s) because it "
1075                                       "is indicating it is a new client",
1076                                       target->obd_name, cluuid.uuid,
1077                                       libcfs_nid2str(req->rq_peer.nid));
1078                 GOTO(out, rc = -EALREADY);
1079         } else {
1080                 OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_RECONNECT, 2 * obd_timeout);
1081         }
1082
1083         if (rc < 0) {
1084                 GOTO(out, rc);
1085         }
1086
1087         CDEBUG(D_HA, "%s: connection from %s@%s %st"LPU64" exp %p cur %ld last %ld\n",
1088                target->obd_name, cluuid.uuid, libcfs_nid2str(req->rq_peer.nid),
1089               target->obd_recovering ? "recovering/" : "", data->ocd_transno,
1090               export, (long)cfs_time_current_sec(),
1091               export ? (long)export->exp_last_request_time : 0);
1092
1093         /* If this is the first time a client connects, reset the recovery
1094          * timer. Discard lightweight connections which might be local. */
1095         if (!lw_client && rc == 0 && target->obd_recovering)
1096                 check_and_start_recovery_timer(target, req, export == NULL);
1097
1098         /* We want to handle EALREADY but *not* -EALREADY from
1099          * target_handle_reconnect(), return reconnection state in a flag. */
1100         if (rc == EALREADY) {
1101                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECONNECT);
1102                 rc = 0;
1103         } else {
1104                 LASSERT(rc == 0);
1105         }
1106
1107         /* Tell the client if we support replayable requests. */
1108         if (target->obd_replayable)
1109                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_REPLAYABLE);
1110         client_nid = &req->rq_peer.nid;
1111
1112         if (export == NULL) {
1113                 /* allow lightweight connections during recovery */
1114                 /* allow "new" MDT to be connected during recovery, since we
1115                  * need retrieve recovery update records from it */
1116                 if (target->obd_recovering && !lw_client && !mds_mds_conn) {
1117                         cfs_time_t t;
1118                         int     c; /* connected */
1119                         int     i; /* in progress */
1120                         int     k; /* known */
1121                         int     s; /* stale/evicted */
1122
1123                         c = atomic_read(&target->obd_connected_clients);
1124                         i = atomic_read(&target->obd_lock_replay_clients);
1125                         k = target->obd_max_recoverable_clients;
1126                         s = target->obd_stale_clients;
1127                         t = cfs_timer_deadline(&target->obd_recovery_timer);
1128                         t = cfs_time_sub(t, cfs_time_current());
1129                         t = cfs_duration_sec(t);
1130                         LCONSOLE_WARN("%s: Denying connection for new client %s"
1131                                       "(at %s), waiting for %d known clients "
1132                                       "(%d recovered, %d in progress, and %d "
1133                                       "evicted) to recover in %d:%.02d\n",
1134                                       target->obd_name, cluuid.uuid,
1135                                       libcfs_nid2str(req->rq_peer.nid), k,
1136                                       c - i, i, s, (int)t / 60,
1137                                       (int)t % 60);
1138                         rc = -EBUSY;
1139                 } else {
1140 dont_check_exports:
1141                         rc = obd_connect(req->rq_svc_thread->t_env,
1142                                          &export, target, &cluuid, data,
1143                                          client_nid);
1144                         if (mds_conn && OBD_FAIL_CHECK(OBD_FAIL_TGT_RCVG_FLAG))
1145                                 lustre_msg_add_op_flags(req->rq_repmsg,
1146                                                         MSG_CONNECT_RECOVERING);
1147                         if (rc == 0)
1148                                 conn.cookie = export->exp_handle.h_cookie;
1149
1150                         if (mds_mds_conn)
1151                                 new_mds_mds_conn = true;
1152                 }
1153         } else {
1154                 rc = obd_reconnect(req->rq_svc_thread->t_env,
1155                                    export, target, &cluuid, data, client_nid);
1156         }
1157         if (rc)
1158                 GOTO(out, rc);
1159
1160         LASSERT(target->u.obt.obt_magic == OBT_MAGIC);
1161         data->ocd_instance = target->u.obt.obt_instance;
1162
1163         /* Return only the parts of obd_connect_data that we understand, so the
1164          * client knows that we don't understand the rest. */
1165         if (data) {
1166                 tmpsize = req_capsule_get_size(&req->rq_pill, &RMF_CONNECT_DATA,
1167                                                RCL_SERVER);
1168                 tmpdata = req_capsule_server_get(&req->rq_pill,
1169                                                  &RMF_CONNECT_DATA);
1170                 /* Don't use struct assignment here, because the client reply
1171                  * buffer may be smaller/larger than the local struct
1172                  * obd_connect_data. */
1173                 memcpy(tmpdata, data, min(tmpsize, size));
1174         }
1175
1176         /* If all else goes well, this is our RPC return code. */
1177         req->rq_status = 0;
1178
1179         lustre_msg_set_handle(req->rq_repmsg, &conn);
1180
1181         /* If the client and the server are the same node, we will already
1182          * have an export that really points to the client's DLM export,
1183          * because we have a shared handles table.
1184          *
1185          * XXX this will go away when shaver stops sending the "connect" handle
1186          * in the real "remote handle" field of the request --phik 24 Apr 2003
1187          */
1188         ptlrpc_request_change_export(req, export);
1189
1190         spin_lock(&export->exp_lock);
1191         if (export->exp_conn_cnt >= lustre_msg_get_conn_cnt(req->rq_reqmsg)) {
1192                 spin_unlock(&export->exp_lock);
1193                 CDEBUG(D_RPCTRACE, "%s: %s already connected at greater "
1194                        "or equal conn_cnt: %d >= %d\n",
1195                        cluuid.uuid, libcfs_nid2str(req->rq_peer.nid),
1196                        export->exp_conn_cnt,
1197                        lustre_msg_get_conn_cnt(req->rq_reqmsg));
1198
1199                 GOTO(out, rc = -EALREADY);
1200         }
1201         LASSERT(lustre_msg_get_conn_cnt(req->rq_reqmsg) > 0);
1202         export->exp_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
1203
1204         /* Don't evict liblustre clients for not pinging. */
1205         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) {
1206                 export->exp_libclient = 1;
1207                 spin_unlock(&export->exp_lock);
1208
1209                 spin_lock(&target->obd_dev_lock);
1210                 list_del_init(&export->exp_obd_chain_timed);
1211                 spin_unlock(&target->obd_dev_lock);
1212         } else {
1213                 spin_unlock(&export->exp_lock);
1214         }
1215
1216         if (export->exp_connection != NULL) {
1217                 /* Check to see if connection came from another NID. */
1218                 if ((export->exp_connection->c_peer.nid != req->rq_peer.nid) &&
1219                     !hlist_unhashed(&export->exp_nid_hash))
1220                         cfs_hash_del(export->exp_obd->obd_nid_hash,
1221                                      &export->exp_connection->c_peer.nid,
1222                                      &export->exp_nid_hash);
1223
1224                 ptlrpc_connection_put(export->exp_connection);
1225         }
1226
1227         export->exp_connection = ptlrpc_connection_get(req->rq_peer,
1228                                                        req->rq_self,
1229                                                        &remote_uuid);
1230         if (hlist_unhashed(&export->exp_nid_hash)) {
1231                 cfs_hash_add(export->exp_obd->obd_nid_hash,
1232                              &export->exp_connection->c_peer.nid,
1233                              &export->exp_nid_hash);
1234         }
1235
1236         if (target->obd_recovering && !export->exp_in_recovery && !lw_client) {
1237                 int has_transno;
1238                 __u64 transno = data->ocd_transno;
1239
1240                 spin_lock(&export->exp_lock);
1241                 /* possible race with class_disconnect_stale_exports,
1242                  * export may be already in the eviction process */
1243                 if (export->exp_failed) {
1244                         spin_unlock(&export->exp_lock);
1245                         GOTO(out, rc = -ENODEV);
1246                 }
1247                 export->exp_in_recovery = 1;
1248                 export->exp_req_replay_needed = 1;
1249                 export->exp_lock_replay_needed = 1;
1250                 spin_unlock(&export->exp_lock);
1251
1252                 has_transno = !!(lustre_msg_get_op_flags(req->rq_reqmsg) &
1253                                  MSG_CONNECT_TRANSNO);
1254                 if (has_transno && transno == 0)
1255                         CWARN("Connect with zero transno!\n");
1256
1257                 if (has_transno && transno > 0 &&
1258                     transno < target->obd_next_recovery_transno &&
1259                     transno > target->obd_last_committed) {
1260                         /* Another way is to use cmpxchg() to be lock-free. */
1261                         spin_lock(&target->obd_recovery_task_lock);
1262                         if (transno < target->obd_next_recovery_transno)
1263                                 target->obd_next_recovery_transno = transno;
1264                         spin_unlock(&target->obd_recovery_task_lock);
1265                 }
1266
1267                 atomic_inc(&target->obd_req_replay_clients);
1268                 atomic_inc(&target->obd_lock_replay_clients);
1269                 /* Note: MDS-MDS connection is allowed to be connected during
1270                  * recovery, no matter if the exports needs to be recoveried.
1271                  * Because we need retrieve updates logs from all other MDTs.
1272                  * So if the MDS-MDS export is new, obd_max_recoverable_clients
1273                  * also needs to be increased to match other recovery checking
1274                  * condition. */
1275                 if (new_mds_mds_conn)
1276                         target->obd_max_recoverable_clients++;
1277                 if (atomic_inc_return(&target->obd_connected_clients) ==
1278                     target->obd_max_recoverable_clients)
1279                         wake_up(&target->obd_next_transno_waitq);
1280         }
1281
1282         /* Tell the client we're in recovery, when client is involved in it. */
1283         if (target->obd_recovering && !lw_client)
1284                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECOVERING);
1285
1286         tmp = req_capsule_client_get(&req->rq_pill, &RMF_CONN);
1287         conn = *tmp;
1288
1289         /* Return -ENOTCONN in case of errors to let client reconnect. */
1290         revimp = class_new_import(target);
1291         if (revimp == NULL) {
1292                 CERROR("fail to alloc new reverse import.\n");
1293                 GOTO(out, rc = -ENOTCONN);
1294         }
1295
1296         spin_lock(&export->exp_lock);
1297         if (export->exp_imp_reverse != NULL)
1298                 /* destroyed import can be still referenced in ctxt */
1299                 tmp_imp = export->exp_imp_reverse;
1300         export->exp_imp_reverse = revimp;
1301         spin_unlock(&export->exp_lock);
1302
1303         revimp->imp_connection = ptlrpc_connection_addref(export->exp_connection);
1304         revimp->imp_client = &export->exp_obd->obd_ldlm_client;
1305         revimp->imp_remote_handle = conn;
1306         revimp->imp_dlm_fake = 1;
1307         revimp->imp_state = LUSTRE_IMP_FULL;
1308
1309         /* Unknown versions will be caught in
1310          * ptlrpc_handle_server_req_in->lustre_unpack_msg(). */
1311         revimp->imp_msg_magic = req->rq_reqmsg->lm_magic;
1312
1313         if (data->ocd_connect_flags & OBD_CONNECT_AT)
1314                 revimp->imp_msghdr_flags |= MSGHDR_AT_SUPPORT;
1315         else
1316                 revimp->imp_msghdr_flags &= ~MSGHDR_AT_SUPPORT;
1317
1318         revimp->imp_msghdr_flags |= MSGHDR_CKSUM_INCOMPAT18;
1319
1320         rc = sptlrpc_import_sec_adapt(revimp, req->rq_svc_ctx, &req->rq_flvr);
1321         if (rc) {
1322                 CERROR("Failed to get sec for reverse import: %d\n", rc);
1323                 spin_lock(&export->exp_lock);
1324                 export->exp_imp_reverse = NULL;
1325                 spin_unlock(&export->exp_lock);
1326                 class_destroy_import(revimp);
1327         }
1328
1329         class_import_put(revimp);
1330
1331 out:
1332         if (tmp_imp != NULL)
1333                 client_destroy_import(tmp_imp);
1334         if (export) {
1335                 spin_lock(&export->exp_lock);
1336                 export->exp_connecting = 0;
1337                 spin_unlock(&export->exp_lock);
1338
1339                 class_export_put(export);
1340         }
1341         if (targref) {
1342                 spin_lock(&target->obd_dev_lock);
1343                 target->obd_conn_inprogress--;
1344                 spin_unlock(&target->obd_dev_lock);
1345
1346                 class_decref(targref, __func__, current);
1347         }
1348         if (rc)
1349                 req->rq_status = rc;
1350         RETURN(rc);
1351 }
1352
1353 int target_handle_disconnect(struct ptlrpc_request *req)
1354 {
1355         int rc;
1356         ENTRY;
1357
1358         rc = req_capsule_server_pack(&req->rq_pill);
1359         if (rc)
1360                 RETURN(rc);
1361
1362         /* Keep the rq_export around so we can send the reply. */
1363         req->rq_status = obd_disconnect(class_export_get(req->rq_export));
1364
1365         RETURN(0);
1366 }
1367
1368 void target_destroy_export(struct obd_export *exp)
1369 {
1370         struct obd_import       *imp = NULL;
1371         /* exports created from last_rcvd data, and "fake"
1372            exports created by lctl don't have an import */
1373         spin_lock(&exp->exp_lock);
1374         if (exp->exp_imp_reverse != NULL) {
1375                 imp = exp->exp_imp_reverse;
1376                 exp->exp_imp_reverse = NULL;
1377         }
1378         spin_unlock(&exp->exp_lock);
1379         if (imp != NULL)
1380                 client_destroy_import(imp);
1381
1382         LASSERT_ATOMIC_ZERO(&exp->exp_locks_count);
1383         LASSERT_ATOMIC_ZERO(&exp->exp_rpc_count);
1384         LASSERT_ATOMIC_ZERO(&exp->exp_cb_count);
1385         LASSERT_ATOMIC_ZERO(&exp->exp_replay_count);
1386 }
1387 EXPORT_SYMBOL(target_destroy_export);
1388
1389 /*
1390  * Recovery functions
1391  */
1392 static void target_request_copy_get(struct ptlrpc_request *req)
1393 {
1394         class_export_rpc_inc(req->rq_export);
1395         LASSERT(list_empty(&req->rq_list));
1396         INIT_LIST_HEAD(&req->rq_replay_list);
1397
1398         /* Increase refcount to keep request in queue. */
1399         atomic_inc(&req->rq_refcount);
1400         /* Let export know it has replays to be handled. */
1401         atomic_inc(&req->rq_export->exp_replay_count);
1402 }
1403
1404 static void target_request_copy_put(struct ptlrpc_request *req)
1405 {
1406         LASSERT(list_empty(&req->rq_replay_list));
1407         LASSERT_ATOMIC_POS(&req->rq_export->exp_replay_count);
1408
1409         atomic_dec(&req->rq_export->exp_replay_count);
1410         class_export_rpc_dec(req->rq_export);
1411         ptlrpc_server_drop_request(req);
1412 }
1413
1414 static int target_exp_enqueue_req_replay(struct ptlrpc_request *req)
1415 {
1416         __u64                  transno = lustre_msg_get_transno(req->rq_reqmsg);
1417         struct obd_export     *exp = req->rq_export;
1418         struct ptlrpc_request *reqiter;
1419         struct ptlrpc_request *dup_req = NULL;
1420         int                    dup = 0;
1421
1422         LASSERT(exp);
1423
1424         spin_lock(&exp->exp_lock);
1425         list_for_each_entry(reqiter, &exp->exp_req_replay_queue,
1426                                 rq_replay_list) {
1427                 if (lustre_msg_get_transno(reqiter->rq_reqmsg) == transno) {
1428                         dup_req = reqiter;
1429                         dup = 1;
1430                         break;
1431                 }
1432         }
1433
1434         if (dup) {
1435                 /* We expect it with RESENT and REPLAY flags. */
1436                 if ((lustre_msg_get_flags(req->rq_reqmsg) &
1437                      (MSG_RESENT | MSG_REPLAY)) != (MSG_RESENT | MSG_REPLAY))
1438                         CERROR("invalid flags %x of resent replay\n",
1439                                lustre_msg_get_flags(req->rq_reqmsg));
1440
1441                 if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REPLAY) {
1442                         __u32 new_conn;
1443
1444                         new_conn = lustre_msg_get_conn_cnt(req->rq_reqmsg);
1445                         if (new_conn >
1446                             lustre_msg_get_conn_cnt(dup_req->rq_reqmsg))
1447                                 lustre_msg_set_conn_cnt(dup_req->rq_reqmsg,
1448                                                         new_conn);
1449                 }
1450         } else {
1451                 list_add_tail(&req->rq_replay_list,
1452                                   &exp->exp_req_replay_queue);
1453         }
1454
1455         spin_unlock(&exp->exp_lock);
1456         return dup;
1457 }
1458
1459 static void target_exp_dequeue_req_replay(struct ptlrpc_request *req)
1460 {
1461         LASSERT(!list_empty(&req->rq_replay_list));
1462         LASSERT(req->rq_export);
1463
1464         spin_lock(&req->rq_export->exp_lock);
1465         list_del_init(&req->rq_replay_list);
1466         spin_unlock(&req->rq_export->exp_lock);
1467 }
1468
1469 static void target_finish_recovery(struct lu_target *lut)
1470 {
1471         struct obd_device *obd = lut->lut_obd;
1472         ENTRY;
1473
1474         /* Only log a recovery message when recovery has occurred. */
1475         if (obd->obd_recovery_start) {
1476                 time_t elapsed_time = max_t(time_t, 1, cfs_time_current_sec() -
1477                                         obd->obd_recovery_start);
1478                 LCONSOLE_INFO("%s: Recovery over after %d:%.02d, of %d clients "
1479                         "%d recovered and %d %s evicted.\n", obd->obd_name,
1480                         (int)elapsed_time / 60, (int)elapsed_time % 60,
1481                         obd->obd_max_recoverable_clients,
1482                         atomic_read(&obd->obd_connected_clients),
1483                         obd->obd_stale_clients,
1484                         obd->obd_stale_clients == 1 ? "was" : "were");
1485         }
1486
1487         ldlm_reprocess_all_ns(obd->obd_namespace);
1488         spin_lock(&obd->obd_recovery_task_lock);
1489         if (!list_empty(&obd->obd_req_replay_queue) ||
1490             !list_empty(&obd->obd_lock_replay_queue) ||
1491             !list_empty(&obd->obd_final_req_queue)) {
1492                 CERROR("%s: Recovery queues ( %s%s%s) are not empty\n",
1493                        obd->obd_name,
1494                        list_empty(&obd->obd_req_replay_queue) ? "" : "req ",
1495                        list_empty(&obd->obd_lock_replay_queue) ? \
1496                                "" : "lock ",
1497                        list_empty(&obd->obd_final_req_queue) ? \
1498                                "" : "final ");
1499                 spin_unlock(&obd->obd_recovery_task_lock);
1500                 LBUG();
1501         }
1502         spin_unlock(&obd->obd_recovery_task_lock);
1503
1504         if (lut->lut_tdtd != NULL &&
1505             !list_empty(&lut->lut_tdtd->tdtd_replay_list))
1506                 dtrq_list_dump(lut->lut_tdtd, D_ERROR);
1507
1508         obd->obd_recovery_end = cfs_time_current_sec();
1509
1510         /* When recovery finished, cleanup orphans on MDS and OST. */
1511         if (OBT(obd) && OBP(obd, postrecov)) {
1512                 int rc = OBP(obd, postrecov)(obd);
1513                 if (rc < 0)
1514                         LCONSOLE_WARN("%s: Post recovery failed, rc %d\n",
1515                                       obd->obd_name, rc);
1516         }
1517         EXIT;
1518 }
1519
1520 static void abort_req_replay_queue(struct obd_device *obd)
1521 {
1522         struct ptlrpc_request *req, *n;
1523         struct list_head abort_list;
1524
1525         INIT_LIST_HEAD(&abort_list);
1526         spin_lock(&obd->obd_recovery_task_lock);
1527         list_splice_init(&obd->obd_req_replay_queue, &abort_list);
1528         spin_unlock(&obd->obd_recovery_task_lock);
1529         list_for_each_entry_safe(req, n, &abort_list, rq_list) {
1530                 DEBUG_REQ(D_WARNING, req, "aborted:");
1531                 req->rq_status = -ENOTCONN;
1532                 if (ptlrpc_error(req)) {
1533                         DEBUG_REQ(D_ERROR, req,
1534                                   "failed abort_req_reply; skipping");
1535                 }
1536                 target_exp_dequeue_req_replay(req);
1537                 target_request_copy_put(req);
1538         }
1539 }
1540
1541 static void abort_lock_replay_queue(struct obd_device *obd)
1542 {
1543         struct ptlrpc_request *req, *n;
1544         struct list_head abort_list;
1545
1546         INIT_LIST_HEAD(&abort_list);
1547         spin_lock(&obd->obd_recovery_task_lock);
1548         list_splice_init(&obd->obd_lock_replay_queue, &abort_list);
1549         spin_unlock(&obd->obd_recovery_task_lock);
1550         list_for_each_entry_safe(req, n, &abort_list, rq_list) {
1551                 DEBUG_REQ(D_ERROR, req, "aborted:");
1552                 req->rq_status = -ENOTCONN;
1553                 if (ptlrpc_error(req)) {
1554                         DEBUG_REQ(D_ERROR, req,
1555                                   "failed abort_lock_reply; skipping");
1556                 }
1557                 target_request_copy_put(req);
1558         }
1559 }
1560
1561 /* Called from a cleanup function if the device is being cleaned up
1562    forcefully.  The exports should all have been disconnected already,
1563    the only thing left to do is
1564      - clear the recovery flags
1565      - cancel the timer
1566      - free queued requests and replies, but don't send replies
1567    Because the obd_stopping flag is set, no new requests should be received.
1568
1569 */
1570 void target_cleanup_recovery(struct obd_device *obd)
1571 {
1572         struct ptlrpc_request *req, *n;
1573         struct list_head clean_list;
1574
1575         INIT_LIST_HEAD(&clean_list);
1576         spin_lock(&obd->obd_dev_lock);
1577         if (!obd->obd_recovering) {
1578                 spin_unlock(&obd->obd_dev_lock);
1579                 EXIT;
1580                 return;
1581         }
1582         obd->obd_recovering = obd->obd_abort_recovery = 0;
1583         obd->obd_force_abort_recovery = 0;
1584         spin_unlock(&obd->obd_dev_lock);
1585
1586         spin_lock(&obd->obd_recovery_task_lock);
1587         target_cancel_recovery_timer(obd);
1588         list_splice_init(&obd->obd_req_replay_queue, &clean_list);
1589         spin_unlock(&obd->obd_recovery_task_lock);
1590
1591         list_for_each_entry_safe(req, n, &clean_list, rq_list) {
1592                 LASSERT(req->rq_reply_state == NULL);
1593                 target_exp_dequeue_req_replay(req);
1594                 target_request_copy_put(req);
1595         }
1596
1597         spin_lock(&obd->obd_recovery_task_lock);
1598         list_splice_init(&obd->obd_lock_replay_queue, &clean_list);
1599         list_splice_init(&obd->obd_final_req_queue, &clean_list);
1600         spin_unlock(&obd->obd_recovery_task_lock);
1601
1602         list_for_each_entry_safe(req, n, &clean_list, rq_list) {
1603                 LASSERT(req->rq_reply_state == NULL);
1604                 target_request_copy_put(req);
1605         }
1606
1607         EXIT;
1608 }
1609 EXPORT_SYMBOL(target_cleanup_recovery);
1610
1611 /* obd_recovery_task_lock should be held */
1612 void target_cancel_recovery_timer(struct obd_device *obd)
1613 {
1614         CDEBUG(D_HA, "%s: cancel recovery timer\n", obd->obd_name);
1615         cfs_timer_disarm(&obd->obd_recovery_timer);
1616 }
1617
1618 static void target_start_recovery_timer(struct obd_device *obd)
1619 {
1620         if (obd->obd_recovery_start != 0)
1621                 return;
1622
1623         spin_lock(&obd->obd_dev_lock);
1624         if (!obd->obd_recovering || obd->obd_abort_recovery ||
1625             obd->obd_force_abort_recovery) {
1626                 spin_unlock(&obd->obd_dev_lock);
1627                 return;
1628         }
1629
1630         LASSERT(obd->obd_recovery_timeout != 0);
1631
1632         if (obd->obd_recovery_start != 0) {
1633                 spin_unlock(&obd->obd_dev_lock);
1634                 return;
1635         }
1636
1637         cfs_timer_arm(&obd->obd_recovery_timer,
1638                       cfs_time_shift(obd->obd_recovery_timeout));
1639         obd->obd_recovery_start = cfs_time_current_sec();
1640         spin_unlock(&obd->obd_dev_lock);
1641
1642         LCONSOLE_WARN("%s: Will be in recovery for at least %d:%.02d, "
1643                       "or until %d client%s reconnect%s\n",
1644                       obd->obd_name,
1645                       obd->obd_recovery_timeout / 60,
1646                       obd->obd_recovery_timeout % 60,
1647                       obd->obd_max_recoverable_clients,
1648                       (obd->obd_max_recoverable_clients == 1) ? "" : "s",
1649                       (obd->obd_max_recoverable_clients == 1) ? "s": "");
1650 }
1651
1652 /**
1653  * extend recovery window.
1654  *
1655  * if @extend is true, extend recovery window to have @drt remaining at least;
1656  * otherwise, make sure the recovery timeout value is not less than @drt.
1657  */
1658 static void extend_recovery_timer(struct obd_device *obd, int drt, bool extend)
1659 {
1660         cfs_time_t now;
1661         cfs_time_t end;
1662         cfs_duration_t left;
1663         int to;
1664
1665         spin_lock(&obd->obd_dev_lock);
1666         if (!obd->obd_recovering || obd->obd_abort_recovery ||
1667             obd->obd_force_abort_recovery) {
1668                 spin_unlock(&obd->obd_dev_lock);
1669                 return;
1670         }
1671         LASSERT(obd->obd_recovery_start != 0);
1672
1673         now  = cfs_time_current_sec();
1674         to   = obd->obd_recovery_timeout;
1675         end  = obd->obd_recovery_start + to;
1676         left = cfs_time_sub(end, now);
1677
1678         if (extend && (drt > left)) {
1679                 to += drt - left;
1680         } else if (!extend && (drt > to)) {
1681                 to = drt;
1682         }
1683
1684         if (to > obd->obd_recovery_time_hard)
1685                 to = obd->obd_recovery_time_hard;
1686         if (obd->obd_recovery_timeout < to) {
1687                 obd->obd_recovery_timeout = to;
1688                 end = obd->obd_recovery_start + to;
1689                 cfs_timer_arm(&obd->obd_recovery_timer,
1690                                 cfs_time_shift(end - now));
1691         }
1692         spin_unlock(&obd->obd_dev_lock);
1693
1694         CDEBUG(D_HA, "%s: recovery timer will expire in %u seconds\n",
1695                 obd->obd_name, (unsigned)cfs_time_sub(end, now));
1696 }
1697
1698 /* Reset the timer with each new client connection */
1699 /*
1700  * This timer is actually reconnect_timer, which is for making sure
1701  * the total recovery window is at least as big as my reconnect
1702  * attempt timing. So the initial recovery time_out will be set to
1703  * OBD_RECOVERY_FACTOR * obd_timeout. If the timeout coming
1704  * from client is bigger than this, then the recovery time_out will
1705  * be extended to make sure the client could be reconnected, in the
1706  * process, the timeout from the new client should be ignored.
1707  */
1708
1709 static void
1710 check_and_start_recovery_timer(struct obd_device *obd,
1711                                struct ptlrpc_request *req,
1712                                int new_client)
1713 {
1714         int service_time = lustre_msg_get_service_time(req->rq_reqmsg);
1715         struct obd_device_target *obt = &obd->u.obt;
1716
1717         if (!new_client && service_time)
1718                 /* Teach server about old server's estimates, as first guess
1719                  * at how long new requests will take. */
1720                 at_measured(&req->rq_rqbd->rqbd_svcpt->scp_at_estimate,
1721                             service_time);
1722
1723         target_start_recovery_timer(obd);
1724
1725         /* Convert the service time to RPC timeout,
1726          * and reuse service_time to limit stack usage. */
1727         service_time = at_est2timeout(service_time);
1728
1729         /* We expect other clients to timeout within service_time, then try
1730          * to reconnect, then try the failover server.  The max delay between
1731          * connect attempts is SWITCH_MAX + SWITCH_INC + INITIAL. */
1732         service_time += 2 * INITIAL_CONNECT_TIMEOUT;
1733
1734         LASSERT(obt->obt_magic == OBT_MAGIC);
1735         service_time += 2 * (CONNECTION_SWITCH_MAX + CONNECTION_SWITCH_INC);
1736         if (service_time > obd->obd_recovery_timeout && !new_client)
1737                 extend_recovery_timer(obd, service_time, false);
1738 }
1739
1740 /** Health checking routines */
1741 static inline int exp_connect_healthy(struct obd_export *exp)
1742 {
1743         return (exp->exp_in_recovery);
1744 }
1745
1746 /** if export done req_replay or has replay in queue */
1747 static inline int exp_req_replay_healthy(struct obd_export *exp)
1748 {
1749         return (!exp->exp_req_replay_needed ||
1750                 atomic_read(&exp->exp_replay_count) > 0);
1751 }
1752 /** if export done lock_replay or has replay in queue */
1753 static inline int exp_lock_replay_healthy(struct obd_export *exp)
1754 {
1755         return (!exp->exp_lock_replay_needed ||
1756                 atomic_read(&exp->exp_replay_count) > 0);
1757 }
1758
1759 static inline int exp_vbr_healthy(struct obd_export *exp)
1760 {
1761         return (!exp->exp_vbr_failed);
1762 }
1763
1764 static inline int exp_finished(struct obd_export *exp)
1765 {
1766         return (exp->exp_in_recovery && !exp->exp_lock_replay_needed);
1767 }
1768
1769 static int check_for_next_transno(struct lu_target *lut)
1770 {
1771         struct ptlrpc_request *req = NULL;
1772         struct obd_device *obd = lut->lut_obd;
1773         int wake_up = 0, connected, completed, queue_len;
1774         __u64 req_transno = 0;
1775         __u64 update_transno = 0;
1776         __u64 next_transno = 0;
1777         ENTRY;
1778
1779         spin_lock(&obd->obd_recovery_task_lock);
1780         if (!list_empty(&obd->obd_req_replay_queue)) {
1781                 req = list_entry(obd->obd_req_replay_queue.next,
1782                                      struct ptlrpc_request, rq_list);
1783                 req_transno = lustre_msg_get_transno(req->rq_reqmsg);
1784         }
1785
1786         if (lut->lut_tdtd != NULL) {
1787                 struct target_distribute_txn_data *tdtd;
1788
1789                 tdtd = lut->lut_tdtd;
1790                 update_transno = distribute_txn_get_next_transno(lut->lut_tdtd);
1791         }
1792
1793         connected = atomic_read(&obd->obd_connected_clients);
1794         completed = connected - atomic_read(&obd->obd_req_replay_clients);
1795         queue_len = obd->obd_requests_queued_for_recovery;
1796         next_transno = obd->obd_next_recovery_transno;
1797
1798         CDEBUG(D_HA, "max: %d, connected: %d, completed: %d, queue_len: %d, "
1799                "req_transno: "LPU64", next_transno: "LPU64"\n",
1800                obd->obd_max_recoverable_clients, connected, completed,
1801                queue_len, req_transno, next_transno);
1802
1803         if (obd->obd_abort_recovery || obd->obd_force_abort_recovery) {
1804                 CDEBUG(D_HA, "waking for aborted recovery\n");
1805                 wake_up = 1;
1806         } else if (obd->obd_recovery_expired) {
1807                 CDEBUG(D_HA, "waking for expired recovery\n");
1808                 wake_up = 1;
1809         } else if (req_transno == next_transno ||
1810                    (update_transno != 0 && update_transno <= next_transno)) {
1811                 CDEBUG(D_HA, "waking for next ("LPD64")\n", next_transno);
1812                 wake_up = 1;
1813         } else if (queue_len > 0 &&
1814                    queue_len == atomic_read(&obd->obd_req_replay_clients)) {
1815                 int d_lvl = D_HA;
1816                 /** handle gaps occured due to lost reply or VBR */
1817                 LASSERTF(req_transno >= next_transno,
1818                          "req_transno: "LPU64", next_transno: "LPU64"\n",
1819                          req_transno, next_transno);
1820                 if (req_transno > obd->obd_last_committed &&
1821                     !obd->obd_version_recov)
1822                         d_lvl = D_ERROR;
1823                 CDEBUG(d_lvl,
1824                        "%s: waking for gap in transno, VBR is %s (skip: "
1825                        LPD64", ql: %d, comp: %d, conn: %d, next: "LPD64
1826                        ", next_update "LPD64" last_committed: "LPD64")\n",
1827                        obd->obd_name, obd->obd_version_recov ? "ON" : "OFF",
1828                        next_transno, queue_len, completed, connected,
1829                        req_transno, update_transno, obd->obd_last_committed);
1830                 obd->obd_next_recovery_transno = req_transno;
1831                 wake_up = 1;
1832         } else if (atomic_read(&obd->obd_req_replay_clients) == 0) {
1833                 CDEBUG(D_HA, "waking for completed recovery\n");
1834                 wake_up = 1;
1835         } else if (OBD_FAIL_CHECK(OBD_FAIL_MDS_RECOVERY_ACCEPTS_GAPS)) {
1836                 CDEBUG(D_HA, "accepting transno gaps is explicitly allowed"
1837                        " by fail_lock, waking up ("LPD64")\n", next_transno);
1838                 obd->obd_next_recovery_transno = req_transno;
1839                 wake_up = 1;
1840         }
1841         spin_unlock(&obd->obd_recovery_task_lock);
1842         return wake_up;
1843 }
1844
1845 static int check_for_next_lock(struct lu_target *lut)
1846 {
1847         struct obd_device *obd = lut->lut_obd;
1848         int wake_up = 0;
1849
1850         spin_lock(&obd->obd_recovery_task_lock);
1851         if (!list_empty(&obd->obd_lock_replay_queue)) {
1852                 CDEBUG(D_HA, "waking for next lock\n");
1853                 wake_up = 1;
1854         } else if (atomic_read(&obd->obd_lock_replay_clients) == 0) {
1855                 CDEBUG(D_HA, "waking for completed lock replay\n");
1856                 wake_up = 1;
1857         } else if (obd->obd_abort_recovery || obd->obd_force_abort_recovery) {
1858                 CDEBUG(D_HA, "waking for aborted recovery\n");
1859                 wake_up = 1;
1860         } else if (obd->obd_recovery_expired) {
1861                 CDEBUG(D_HA, "waking for expired recovery\n");
1862                 wake_up = 1;
1863         }
1864         spin_unlock(&obd->obd_recovery_task_lock);
1865
1866         return wake_up;
1867 }
1868
1869 /**
1870  * wait for recovery events,
1871  * check its status with help of check_routine
1872  * evict dead clients via health_check
1873  */
1874 static int target_recovery_overseer(struct lu_target *lut,
1875                                     int (*check_routine)(struct lu_target *),
1876                                     int (*health_check)(struct obd_export *))
1877 {
1878         struct obd_device       *obd = lut->lut_obd;
1879 repeat:
1880         if ((obd->obd_recovery_start != 0) && (cfs_time_current_sec() >=
1881               (obd->obd_recovery_start + obd->obd_recovery_time_hard))) {
1882                 CWARN("recovery is aborted by hard timeout\n");
1883                 obd->obd_abort_recovery = 1;
1884         }
1885
1886         while (wait_event_timeout(obd->obd_next_transno_waitq,
1887                                   check_routine(lut),
1888                                   msecs_to_jiffies(60 * MSEC_PER_SEC)) == 0)
1889                 /* wait indefinitely for event, but don't trigger watchdog */;
1890
1891         if (obd->obd_abort_recovery || obd->obd_force_abort_recovery) {
1892                 CWARN("recovery is aborted, evict exports in recovery\n");
1893                 /** evict exports which didn't finish recovery yet */
1894                 class_disconnect_stale_exports(obd, exp_finished);
1895                 return 1;
1896         } else if (obd->obd_recovery_expired) {
1897                 obd->obd_recovery_expired = 0;
1898                 /** If some clients died being recovered, evict them */
1899                 LCONSOLE_WARN("%s: recovery is timed out, "
1900                               "evict stale exports\n", obd->obd_name);
1901                 /** evict cexports with no replay in queue, they are stalled */
1902                 class_disconnect_stale_exports(obd, health_check);
1903                 /** continue with VBR */
1904                 spin_lock(&obd->obd_dev_lock);
1905                 obd->obd_version_recov = 1;
1906                 spin_unlock(&obd->obd_dev_lock);
1907                 /**
1908                  * reset timer, recovery will proceed with versions now,
1909                  * timeout is set just to handle reconnection delays
1910                  */
1911                 extend_recovery_timer(obd, RECONNECT_DELAY_MAX, true);
1912                 /** Wait for recovery events again, after evicting bad clients */
1913                 goto repeat;
1914         }
1915         return 0;
1916 }
1917
1918 static struct ptlrpc_request *target_next_replay_lock(struct lu_target *lut)
1919 {
1920         struct obd_device       *obd = lut->lut_obd;
1921         struct ptlrpc_request *req = NULL;
1922
1923         CDEBUG(D_HA, "Waiting for lock\n");
1924         if (target_recovery_overseer(lut, check_for_next_lock,
1925                                      exp_lock_replay_healthy))
1926                 abort_lock_replay_queue(obd);
1927
1928         spin_lock(&obd->obd_recovery_task_lock);
1929         if (!list_empty(&obd->obd_lock_replay_queue)) {
1930                 req = list_entry(obd->obd_lock_replay_queue.next,
1931                                      struct ptlrpc_request, rq_list);
1932                 list_del_init(&req->rq_list);
1933                 spin_unlock(&obd->obd_recovery_task_lock);
1934         } else {
1935                 spin_unlock(&obd->obd_recovery_task_lock);
1936                 LASSERT(list_empty(&obd->obd_lock_replay_queue));
1937                 LASSERT(atomic_read(&obd->obd_lock_replay_clients) == 0);
1938                 /** evict exports failed VBR */
1939                 class_disconnect_stale_exports(obd, exp_vbr_healthy);
1940         }
1941         return req;
1942 }
1943
1944 static struct ptlrpc_request *target_next_final_ping(struct obd_device *obd)
1945 {
1946         struct ptlrpc_request *req = NULL;
1947
1948         spin_lock(&obd->obd_recovery_task_lock);
1949         if (!list_empty(&obd->obd_final_req_queue)) {
1950                 req = list_entry(obd->obd_final_req_queue.next,
1951                                      struct ptlrpc_request, rq_list);
1952                 list_del_init(&req->rq_list);
1953                 spin_unlock(&obd->obd_recovery_task_lock);
1954                 if (req->rq_export->exp_in_recovery) {
1955                         spin_lock(&req->rq_export->exp_lock);
1956                         req->rq_export->exp_in_recovery = 0;
1957                         spin_unlock(&req->rq_export->exp_lock);
1958                 }
1959         } else {
1960                 spin_unlock(&obd->obd_recovery_task_lock);
1961         }
1962         return req;
1963 }
1964
1965 static void handle_recovery_req(struct ptlrpc_thread *thread,
1966                                 struct ptlrpc_request *req,
1967                                 svc_handler_t handler)
1968 {
1969         ENTRY;
1970
1971         /**
1972          * export can be evicted during recovery, no need to handle replays for
1973          * it after that, discard such request silently
1974          */
1975         if (req->rq_export->exp_disconnected)
1976                 RETURN_EXIT;
1977
1978         req->rq_session.lc_thread = thread;
1979         req->rq_svc_thread = thread;
1980         req->rq_svc_thread->t_env->le_ses = &req->rq_session;
1981
1982         /* thread context */
1983         lu_context_enter(&thread->t_env->le_ctx);
1984         (void)handler(req);
1985         lu_context_exit(&thread->t_env->le_ctx);
1986
1987         /* don't reset timer for final stage */
1988         if (!exp_finished(req->rq_export)) {
1989                 int to = obd_timeout;
1990
1991                 /**
1992                  * Add request timeout to the recovery time so next request from
1993                  * this client may come in recovery time
1994                  */
1995                 if (!AT_OFF) {
1996                         struct ptlrpc_service_part *svcpt;
1997
1998                         svcpt = req->rq_rqbd->rqbd_svcpt;
1999                         /* If the server sent early reply for this request,
2000                          * the client will recalculate the timeout according to
2001                          * current server estimate service time, so we will
2002                          * use the maxium timeout here for waiting the client
2003                          * sending the next req */
2004                         to = max((int)at_est2timeout(
2005                                  at_get(&svcpt->scp_at_estimate)),
2006                                  (int)lustre_msg_get_timeout(req->rq_reqmsg));
2007                         /* Add 2 net_latency, one for balance rq_deadline
2008                          * (see ptl_send_rpc), one for resend the req to server,
2009                          * Note: client will pack net_latency in replay req
2010                          * (see ptlrpc_replay_req) */
2011                         to += 2 * lustre_msg_get_service_time(req->rq_reqmsg);
2012                 }
2013                 extend_recovery_timer(class_exp2obd(req->rq_export), to, true);
2014         }
2015         EXIT;
2016 }
2017
2018 /** Checking routines for recovery */
2019 static int check_for_recovery_ready(struct lu_target *lut)
2020 {
2021         struct obd_device *obd = lut->lut_obd;
2022         unsigned int clnts = atomic_read(&obd->obd_connected_clients);
2023
2024         CDEBUG(D_HA, "connected %d stale %d max_recoverable_clients %d"
2025                " abort %d expired %d\n", clnts, obd->obd_stale_clients,
2026                obd->obd_max_recoverable_clients, obd->obd_abort_recovery,
2027                obd->obd_recovery_expired);
2028
2029         if (obd->obd_force_abort_recovery)
2030                 return 1;
2031
2032         if (!obd->obd_abort_recovery && !obd->obd_recovery_expired) {
2033                 LASSERT(clnts <= obd->obd_max_recoverable_clients);
2034                 if (clnts + obd->obd_stale_clients <
2035                     obd->obd_max_recoverable_clients)
2036                         return 0;
2037         }
2038
2039         if (lut->lut_tdtd != NULL) {
2040                 if (!lut->lut_tdtd->tdtd_replay_ready) {
2041                         /* Let's extend recovery timer, in case the recovery
2042                          * timer expired, and some clients got evicted */
2043                         extend_recovery_timer(obd, obd->obd_recovery_timeout,
2044                                               true);
2045                         return 0;
2046                 } else {
2047                         dtrq_list_dump(lut->lut_tdtd, D_HA);
2048                 }
2049         }
2050
2051         return 1;
2052 }
2053
2054 enum {
2055         REQUEST_RECOVERY = 1,
2056         UPDATE_RECOVERY = 2,
2057 };
2058
2059 static __u64 get_next_replay_req_transno(struct obd_device *obd)
2060 {
2061         __u64 transno = 0;
2062
2063         if (!list_empty(&obd->obd_req_replay_queue)) {
2064                 struct ptlrpc_request *req;
2065
2066                 req = list_entry(obd->obd_req_replay_queue.next,
2067                                  struct ptlrpc_request, rq_list);
2068                 transno = lustre_msg_get_transno(req->rq_reqmsg);
2069         }
2070
2071         return transno;
2072 }
2073 __u64 get_next_transno(struct lu_target *lut, int *type)
2074 {
2075         struct obd_device *obd = lut->lut_obd;
2076         struct target_distribute_txn_data *tdtd = lut->lut_tdtd;
2077         __u64 transno = 0;
2078         __u64 update_transno;
2079         ENTRY;
2080
2081         transno = get_next_replay_req_transno(obd);
2082         if (type != NULL)
2083                 *type = REQUEST_RECOVERY;
2084
2085         if (tdtd == NULL)
2086                 RETURN(transno);
2087
2088         update_transno = distribute_txn_get_next_transno(tdtd);
2089         if (transno == 0 || (transno >= update_transno &&
2090                              update_transno != 0)) {
2091                 transno = update_transno;
2092                 if (type != NULL)
2093                         *type = UPDATE_RECOVERY;
2094         }
2095
2096         RETURN(transno);
2097 }
2098
2099 /**
2100  * drop duplicate replay request
2101  *
2102  * Because the operation has been replayed by update recovery, the request
2103  * with the same transno will be dropped and also notify the client to send
2104  * next replay request.
2105  *
2106  * \param[in] env       execution environment
2107  * \param[in] obd       failover obd device
2108  * \param[in] req       request to be dropped
2109  */
2110 static void drop_duplicate_replay_req(struct lu_env *env,
2111                                       struct obd_device *obd,
2112                                       struct ptlrpc_request *req)
2113 {
2114         DEBUG_REQ(D_HA, req, "remove t"LPD64" from %s because of duplicate"
2115                   " update records are found.\n",
2116                   lustre_msg_get_transno(req->rq_reqmsg),
2117                   libcfs_nid2str(req->rq_peer.nid));
2118
2119         /* Right now, only for MDS reint operation update replay and
2120          * normal request replay can have the same transno */
2121         if (lustre_msg_get_opc(req->rq_reqmsg) == MDS_REINT) {
2122                 req_capsule_set(&req->rq_pill, &RQF_MDS_REINT);
2123                 req->rq_status = req_capsule_server_pack(&req->rq_pill);
2124                 if (likely(req->rq_export))
2125                         target_committed_to_req(req);
2126                 lustre_msg_set_transno(req->rq_repmsg, req->rq_transno);
2127                 target_send_reply(req, req->rq_status, 0);
2128         } else {
2129                 DEBUG_REQ(D_ERROR, req, "wrong opc" "from %s\n",
2130                 libcfs_nid2str(req->rq_peer.nid));
2131         }
2132         target_exp_dequeue_req_replay(req);
2133         target_request_copy_put(req);
2134         obd->obd_replayed_requests++;
2135 }
2136
2137 static void replay_request_or_update(struct lu_env *env,
2138                                      struct lu_target *lut,
2139                                      struct target_recovery_data *trd,
2140                                      struct ptlrpc_thread *thread)
2141 {
2142         struct obd_device *obd = lut->lut_obd;
2143         struct ptlrpc_request *req = NULL;
2144         int                     type;
2145         __u64                   transno;
2146         ENTRY;
2147
2148         CDEBUG(D_HA, "Waiting for transno "LPD64"\n",
2149                obd->obd_next_recovery_transno);
2150
2151         /* Replay all of request and update by transno */
2152         do {
2153                 struct target_distribute_txn_data *tdtd = lut->lut_tdtd;
2154
2155                 CFS_FAIL_TIMEOUT(OBD_FAIL_TGT_REPLAY_DELAY2, cfs_fail_val);
2156
2157                 /** It is needed to extend recovery window above
2158                  *  recovery_time_soft. Extending is possible only in the
2159                  *  end of recovery window (see more details in
2160                  *  handle_recovery_req()).
2161                  */
2162                 CFS_FAIL_TIMEOUT_MS(OBD_FAIL_TGT_REPLAY_DELAY, 300);
2163
2164                 if (target_recovery_overseer(lut, check_for_next_transno,
2165                                              exp_req_replay_healthy)) {
2166                         abort_req_replay_queue(obd);
2167                         abort_lock_replay_queue(obd);
2168                 }
2169
2170                 spin_lock(&obd->obd_recovery_task_lock);
2171                 transno = get_next_transno(lut, &type);
2172                 if (type == REQUEST_RECOVERY && tdtd != NULL &&
2173                     transno == tdtd->tdtd_last_update_transno) {
2174                         /* Drop replay request from client side, if the
2175                          * replay has been executed by update with the
2176                          * same transno */
2177                         req = list_entry(obd->obd_req_replay_queue.next,
2178                                         struct ptlrpc_request, rq_list);
2179                         list_del_init(&req->rq_list);
2180                         obd->obd_requests_queued_for_recovery--;
2181                         spin_unlock(&obd->obd_recovery_task_lock);
2182                         drop_duplicate_replay_req(env, obd, req);
2183                 } else if (type == REQUEST_RECOVERY && transno != 0) {
2184                         req = list_entry(obd->obd_req_replay_queue.next,
2185                                              struct ptlrpc_request, rq_list);
2186                         list_del_init(&req->rq_list);
2187                         obd->obd_requests_queued_for_recovery--;
2188                         spin_unlock(&obd->obd_recovery_task_lock);
2189                         LASSERT(trd->trd_processing_task == current_pid());
2190                         DEBUG_REQ(D_HA, req, "processing t"LPD64" from %s",
2191                                   lustre_msg_get_transno(req->rq_reqmsg),
2192                                   libcfs_nid2str(req->rq_peer.nid));
2193
2194                         handle_recovery_req(thread, req,
2195                                             trd->trd_recovery_handler);
2196                         /**
2197                          * bz18031: increase next_recovery_transno before
2198                          * target_request_copy_put() will drop exp_rpc reference
2199                          */
2200                         spin_lock(&obd->obd_recovery_task_lock);
2201                         obd->obd_next_recovery_transno++;
2202                         spin_unlock(&obd->obd_recovery_task_lock);
2203                         target_exp_dequeue_req_replay(req);
2204                         target_request_copy_put(req);
2205                         obd->obd_replayed_requests++;
2206                 } else if (type == UPDATE_RECOVERY && transno != 0) {
2207                         struct distribute_txn_replay_req *dtrq;
2208
2209                         spin_unlock(&obd->obd_recovery_task_lock);
2210
2211                         LASSERT(tdtd != NULL);
2212                         dtrq = distribute_txn_get_next_req(tdtd);
2213                         lu_context_enter(&thread->t_env->le_ctx);
2214                         tdtd->tdtd_replay_handler(env, tdtd, dtrq);
2215                         lu_context_exit(&thread->t_env->le_ctx);
2216                         extend_recovery_timer(obd, obd_timeout, true);
2217                         LASSERT(tdtd->tdtd_last_update_transno <= transno);
2218                         tdtd->tdtd_last_update_transno = transno;
2219                         spin_lock(&obd->obd_recovery_task_lock);
2220                         if (transno > obd->obd_next_recovery_transno)
2221                                 obd->obd_next_recovery_transno = transno;
2222                         spin_unlock(&obd->obd_recovery_task_lock);
2223                         dtrq_destroy(dtrq);
2224                 } else {
2225                         spin_unlock(&obd->obd_recovery_task_lock);
2226                         LASSERT(list_empty(&obd->obd_req_replay_queue));
2227                         LASSERT(atomic_read(&obd->obd_req_replay_clients) == 0);
2228                         /** evict exports failed VBR */
2229                         class_disconnect_stale_exports(obd, exp_vbr_healthy);
2230                         break;
2231                 }
2232         } while (1);
2233 }
2234
2235 static int target_recovery_thread(void *arg)
2236 {
2237         struct lu_target *lut = arg;
2238         struct obd_device *obd = lut->lut_obd;
2239         struct ptlrpc_request *req;
2240         struct target_recovery_data *trd = &obd->obd_recovery_data;
2241         unsigned long delta;
2242         struct lu_env *env;
2243         struct ptlrpc_thread *thread = NULL;
2244         int rc = 0;
2245         ENTRY;
2246
2247         unshare_fs_struct();
2248         OBD_ALLOC_PTR(thread);
2249         if (thread == NULL)
2250                 RETURN(-ENOMEM);
2251
2252         OBD_ALLOC_PTR(env);
2253         if (env == NULL) {
2254                 OBD_FREE_PTR(thread);
2255                 RETURN(-ENOMEM);
2256         }
2257
2258         rc = lu_context_init(&env->le_ctx, LCT_MD_THREAD | LCT_DT_THREAD);
2259         if (rc) {
2260                 OBD_FREE_PTR(thread);
2261                 OBD_FREE_PTR(env);
2262                 RETURN(rc);
2263         }
2264
2265         thread->t_env = env;
2266         thread->t_id = -1; /* force filter_iobuf_get/put to use local buffers */
2267         env->le_ctx.lc_thread = thread;
2268         tgt_io_thread_init(thread); /* init thread_big_cache for IO requests */
2269         thread->t_watchdog = NULL;
2270
2271         CDEBUG(D_HA, "%s: started recovery thread pid %d\n", obd->obd_name,
2272                current_pid());
2273         trd->trd_processing_task = current_pid();
2274
2275         spin_lock(&obd->obd_dev_lock);
2276         obd->obd_recovering = 1;
2277         spin_unlock(&obd->obd_dev_lock);
2278         complete(&trd->trd_starting);
2279
2280         /* first of all, we have to know the first transno to replay */
2281         if (target_recovery_overseer(lut, check_for_recovery_ready,
2282                                      exp_connect_healthy)) {
2283                 abort_req_replay_queue(obd);
2284                 abort_lock_replay_queue(obd);
2285                 if (lut->lut_tdtd != NULL)
2286                         dtrq_list_destroy(lut->lut_tdtd);
2287         }
2288
2289         /* next stage: replay requests or update */
2290         delta = jiffies;
2291         CDEBUG(D_INFO, "1: request replay stage - %d clients from t"LPU64"\n",
2292                atomic_read(&obd->obd_req_replay_clients),
2293                obd->obd_next_recovery_transno);
2294         replay_request_or_update(env, lut, trd, thread);
2295
2296         /**
2297          * The second stage: replay locks
2298          */
2299         CDEBUG(D_INFO, "2: lock replay stage - %d clients\n",
2300                atomic_read(&obd->obd_lock_replay_clients));
2301         while ((req = target_next_replay_lock(lut))) {
2302                 LASSERT(trd->trd_processing_task == current_pid());
2303                 DEBUG_REQ(D_HA, req, "processing lock from %s: ",
2304                           libcfs_nid2str(req->rq_peer.nid));
2305                 handle_recovery_req(thread, req,
2306                                     trd->trd_recovery_handler);
2307                 target_request_copy_put(req);
2308                 obd->obd_replayed_locks++;
2309         }
2310
2311         /**
2312          * The third stage: reply on final pings, at this moment all clients
2313          * must have request in final queue
2314          */
2315         CFS_FAIL_TIMEOUT(OBD_FAIL_TGT_REPLAY_RECONNECT, cfs_fail_val);
2316         CDEBUG(D_INFO, "3: final stage - process recovery completion pings\n");
2317         /** Update server last boot epoch */
2318         tgt_boot_epoch_update(lut);
2319         /* We drop recoverying flag to forward all new requests
2320          * to regular mds_handle() since now */
2321         spin_lock(&obd->obd_dev_lock);
2322         obd->obd_recovering = obd->obd_abort_recovery = 0;
2323         spin_unlock(&obd->obd_dev_lock);
2324         spin_lock(&obd->obd_recovery_task_lock);
2325         target_cancel_recovery_timer(obd);
2326         spin_unlock(&obd->obd_recovery_task_lock);
2327         while ((req = target_next_final_ping(obd))) {
2328                 LASSERT(trd->trd_processing_task == current_pid());
2329                 DEBUG_REQ(D_HA, req, "processing final ping from %s: ",
2330                           libcfs_nid2str(req->rq_peer.nid));
2331                 handle_recovery_req(thread, req,
2332                                     trd->trd_recovery_handler);
2333                 /* Because the waiting client can not send ping to server,
2334                  * so we need refresh the last_request_time, to avoid the
2335                  * export is being evicted */
2336                 ptlrpc_update_export_timer(req->rq_export, 0);
2337                 target_request_copy_put(req);
2338         }
2339
2340         delta = jiffies_to_msecs(jiffies - delta) / MSEC_PER_SEC;
2341         CDEBUG(D_INFO,"4: recovery completed in %lus - %d/%d reqs/locks\n",
2342               delta, obd->obd_replayed_requests, obd->obd_replayed_locks);
2343         if (delta > OBD_RECOVERY_TIME_SOFT) {
2344                 CWARN("too long recovery - read logs\n");
2345                 libcfs_debug_dumplog();
2346         }
2347
2348         target_finish_recovery(lut);
2349
2350         lu_context_fini(&env->le_ctx);
2351         trd->trd_processing_task = 0;
2352         complete(&trd->trd_finishing);
2353
2354         tgt_io_thread_done(thread);
2355         OBD_FREE_PTR(thread);
2356         OBD_FREE_PTR(env);
2357         RETURN(rc);
2358 }
2359
2360 static int target_start_recovery_thread(struct lu_target *lut,
2361                                         svc_handler_t handler)
2362 {
2363         struct obd_device *obd = lut->lut_obd;
2364         int rc = 0;
2365         struct target_recovery_data *trd = &obd->obd_recovery_data;
2366
2367         memset(trd, 0, sizeof(*trd));
2368         init_completion(&trd->trd_starting);
2369         init_completion(&trd->trd_finishing);
2370         trd->trd_recovery_handler = handler;
2371
2372         if (!IS_ERR(kthread_run(target_recovery_thread,
2373                                 lut, "tgt_recov"))) {
2374                 wait_for_completion(&trd->trd_starting);
2375                 LASSERT(obd->obd_recovering != 0);
2376         } else {
2377                 rc = -ECHILD;
2378         }
2379
2380         return rc;
2381 }
2382
2383 void target_stop_recovery_thread(struct obd_device *obd)
2384 {
2385         if (obd->obd_recovery_data.trd_processing_task > 0) {
2386                 struct target_recovery_data *trd = &obd->obd_recovery_data;
2387                 /** recovery can be done but postrecovery is not yet */
2388                 spin_lock(&obd->obd_dev_lock);
2389                 if (obd->obd_recovering) {
2390                         CERROR("%s: Aborting recovery\n", obd->obd_name);
2391                         obd->obd_abort_recovery = 1;
2392                         wake_up(&obd->obd_next_transno_waitq);
2393                 }
2394                 spin_unlock(&obd->obd_dev_lock);
2395                 wait_for_completion(&trd->trd_finishing);
2396         }
2397 }
2398 EXPORT_SYMBOL(target_stop_recovery_thread);
2399
2400 void target_recovery_fini(struct obd_device *obd)
2401 {
2402         class_disconnect_exports(obd);
2403         target_stop_recovery_thread(obd);
2404         target_cleanup_recovery(obd);
2405 }
2406 EXPORT_SYMBOL(target_recovery_fini);
2407
2408 static void target_recovery_expired(unsigned long castmeharder)
2409 {
2410         struct obd_device *obd = (struct obd_device *)castmeharder;
2411         CDEBUG(D_HA, "%s: recovery timed out; %d clients are still in recovery"
2412                " after %lds (%d clients connected)\n",
2413                obd->obd_name, atomic_read(&obd->obd_lock_replay_clients),
2414                cfs_time_current_sec()- obd->obd_recovery_start,
2415                atomic_read(&obd->obd_connected_clients));
2416
2417         obd->obd_recovery_expired = 1;
2418         wake_up(&obd->obd_next_transno_waitq);
2419 }
2420
2421 void target_recovery_init(struct lu_target *lut, svc_handler_t handler)
2422 {
2423         struct obd_device *obd = lut->lut_obd;
2424
2425         if (obd->obd_max_recoverable_clients == 0) {
2426                 /** Update server last boot epoch */
2427                 tgt_boot_epoch_update(lut);
2428                 return;
2429         }
2430
2431         CDEBUG(D_HA, "RECOVERY: service %s, %d recoverable clients, "
2432                "last_transno "LPU64"\n", obd->obd_name,
2433                obd->obd_max_recoverable_clients, obd->obd_last_committed);
2434         LASSERT(obd->obd_stopping == 0);
2435         obd->obd_next_recovery_transno = obd->obd_last_committed + 1;
2436         obd->obd_recovery_start = 0;
2437         obd->obd_recovery_end = 0;
2438
2439         cfs_timer_init(&obd->obd_recovery_timer, target_recovery_expired, obd);
2440         target_start_recovery_thread(lut, handler);
2441 }
2442 EXPORT_SYMBOL(target_recovery_init);
2443
2444 static int target_process_req_flags(struct obd_device *obd,
2445                                     struct ptlrpc_request *req)
2446 {
2447         struct obd_export *exp = req->rq_export;
2448         LASSERT(exp != NULL);
2449         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REQ_REPLAY_DONE) {
2450                 /* client declares he's ready to replay locks */
2451                 spin_lock(&exp->exp_lock);
2452                 if (exp->exp_req_replay_needed) {
2453                         exp->exp_req_replay_needed = 0;
2454                         spin_unlock(&exp->exp_lock);
2455
2456                         LASSERT_ATOMIC_POS(&obd->obd_req_replay_clients);
2457                         atomic_dec(&obd->obd_req_replay_clients);
2458                 } else {
2459                         spin_unlock(&exp->exp_lock);
2460                 }
2461         }
2462         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LOCK_REPLAY_DONE) {
2463                 /* client declares he's ready to complete recovery
2464                  * so, we put the request on th final queue */
2465                 spin_lock(&exp->exp_lock);
2466                 if (exp->exp_lock_replay_needed) {
2467                         exp->exp_lock_replay_needed = 0;
2468                         spin_unlock(&exp->exp_lock);
2469
2470                         LASSERT_ATOMIC_POS(&obd->obd_lock_replay_clients);
2471                         atomic_dec(&obd->obd_lock_replay_clients);
2472                 } else {
2473                         spin_unlock(&exp->exp_lock);
2474                 }
2475         }
2476         return 0;
2477 }
2478
2479 int target_queue_recovery_request(struct ptlrpc_request *req,
2480                                   struct obd_device *obd)
2481 {
2482         __u64 transno = lustre_msg_get_transno(req->rq_reqmsg);
2483         struct ptlrpc_request *reqiter;
2484         int inserted = 0;
2485         ENTRY;
2486
2487         if (obd->obd_recovery_data.trd_processing_task == current_pid()) {
2488                 /* Processing the queue right now, don't re-add. */
2489                 RETURN(1);
2490         }
2491
2492         target_process_req_flags(obd, req);
2493
2494         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LOCK_REPLAY_DONE) {
2495                 /* client declares he's ready to complete recovery
2496                  * so, we put the request on th final queue */
2497                 target_request_copy_get(req);
2498                 DEBUG_REQ(D_HA, req, "queue final req");
2499                 wake_up(&obd->obd_next_transno_waitq);
2500                 spin_lock(&obd->obd_recovery_task_lock);
2501                 if (obd->obd_recovering) {
2502                         list_add_tail(&req->rq_list,
2503                                           &obd->obd_final_req_queue);
2504                 } else {
2505                         spin_unlock(&obd->obd_recovery_task_lock);
2506                         target_request_copy_put(req);
2507                         RETURN(obd->obd_stopping ? -ENOTCONN : 1);
2508                 }
2509                 spin_unlock(&obd->obd_recovery_task_lock);
2510                 RETURN(0);
2511         }
2512         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REQ_REPLAY_DONE) {
2513                 /* client declares he's ready to replay locks */
2514                 target_request_copy_get(req);
2515                 DEBUG_REQ(D_HA, req, "queue lock replay req");
2516                 wake_up(&obd->obd_next_transno_waitq);
2517                 spin_lock(&obd->obd_recovery_task_lock);
2518                 LASSERT(obd->obd_recovering);
2519                 /* usually due to recovery abort */
2520                 if (!req->rq_export->exp_in_recovery) {
2521                         spin_unlock(&obd->obd_recovery_task_lock);
2522                         target_request_copy_put(req);
2523                         RETURN(-ENOTCONN);
2524                 }
2525                 LASSERT(req->rq_export->exp_lock_replay_needed);
2526                 list_add_tail(&req->rq_list, &obd->obd_lock_replay_queue);
2527                 spin_unlock(&obd->obd_recovery_task_lock);
2528                 RETURN(0);
2529         }
2530
2531         /* CAVEAT EMPTOR: The incoming request message has been swabbed
2532          * (i.e. buflens etc are in my own byte order), but type-dependent
2533          * buffers (eg mdt_body, ost_body etc) have NOT been swabbed. */
2534
2535         if (!transno) {
2536                 INIT_LIST_HEAD(&req->rq_list);
2537                 DEBUG_REQ(D_HA, req, "not queueing");
2538                 RETURN(1);
2539         }
2540
2541         /* If we're processing the queue, we want don't want to queue this
2542          * message.
2543          *
2544          * Also, if this request has a transno less than the one we're waiting
2545          * for, we should process it now.  It could (and currently always will)
2546          * be an open request for a descriptor that was opened some time ago.
2547          *
2548          * Also, a resent, replayed request that has already been
2549          * handled will pass through here and be processed immediately.
2550          */
2551         CDEBUG(D_HA, "Next recovery transno: "LPU64
2552                ", current: "LPU64", replaying\n",
2553                obd->obd_next_recovery_transno, transno);
2554         spin_lock(&obd->obd_recovery_task_lock);
2555         if (transno < obd->obd_next_recovery_transno) {
2556                 /* Processing the queue right now, don't re-add. */
2557                 LASSERT(list_empty(&req->rq_list));
2558                 spin_unlock(&obd->obd_recovery_task_lock);
2559                 RETURN(1);
2560         }
2561         spin_unlock(&obd->obd_recovery_task_lock);
2562
2563         if (OBD_FAIL_CHECK(OBD_FAIL_TGT_REPLAY_DROP))
2564                 RETURN(0);
2565
2566         target_request_copy_get(req);
2567         if (!req->rq_export->exp_in_recovery) {
2568                 target_request_copy_put(req);
2569                 RETURN(-ENOTCONN);
2570         }
2571         LASSERT(req->rq_export->exp_req_replay_needed);
2572
2573         if (target_exp_enqueue_req_replay(req)) {
2574                 DEBUG_REQ(D_ERROR, req, "dropping resent queued req");
2575                 target_request_copy_put(req);
2576                 RETURN(0);
2577         }
2578
2579         /* XXX O(n^2) */
2580         spin_lock(&obd->obd_recovery_task_lock);
2581         LASSERT(obd->obd_recovering);
2582         list_for_each_entry(reqiter, &obd->obd_req_replay_queue, rq_list) {
2583                 if (lustre_msg_get_transno(reqiter->rq_reqmsg) > transno) {
2584                         list_add_tail(&req->rq_list, &reqiter->rq_list);
2585                         inserted = 1;
2586                         goto added;
2587                 }
2588
2589                 if (unlikely(lustre_msg_get_transno(reqiter->rq_reqmsg) ==
2590                              transno)) {
2591                         DEBUG_REQ(D_ERROR, req, "dropping replay: transno "
2592                                   "has been claimed by another client");
2593                         spin_unlock(&obd->obd_recovery_task_lock);
2594                         target_exp_dequeue_req_replay(req);
2595                         target_request_copy_put(req);
2596                         RETURN(0);
2597                 }
2598         }
2599 added:
2600         if (!inserted)
2601                 list_add_tail(&req->rq_list, &obd->obd_req_replay_queue);
2602
2603         obd->obd_requests_queued_for_recovery++;
2604         spin_unlock(&obd->obd_recovery_task_lock);
2605         wake_up(&obd->obd_next_transno_waitq);
2606         RETURN(0);
2607 }
2608
2609 int target_handle_ping(struct ptlrpc_request *req)
2610 {
2611         obd_ping(req->rq_svc_thread->t_env, req->rq_export);
2612         return req_capsule_server_pack(&req->rq_pill);
2613 }
2614
2615 void target_committed_to_req(struct ptlrpc_request *req)
2616 {
2617         struct obd_export *exp = req->rq_export;
2618
2619         if (!exp->exp_obd->obd_no_transno && req->rq_repmsg != NULL)
2620                 lustre_msg_set_last_committed(req->rq_repmsg,
2621                                               exp->exp_last_committed);
2622         else
2623                 DEBUG_REQ(D_IOCTL, req, "not sending last_committed update (%d/"
2624                           "%d)", exp->exp_obd->obd_no_transno,
2625                           req->rq_repmsg == NULL);
2626
2627         CDEBUG(D_INFO, "last_committed "LPU64", transno "LPU64", xid "LPU64"\n",
2628                exp->exp_last_committed, req->rq_transno, req->rq_xid);
2629 }
2630
2631 #endif /* HAVE_SERVER_SUPPORT */
2632
2633 /**
2634  * Packs current SLV and Limit into \a req.
2635  */
2636 int target_pack_pool_reply(struct ptlrpc_request *req)
2637 {
2638         struct obd_device *obd;
2639         ENTRY;
2640
2641         /* Check that we still have all structures alive as this may
2642          * be some late RPC at shutdown time. */
2643         if (unlikely(!req->rq_export || !req->rq_export->exp_obd ||
2644                      !exp_connect_lru_resize(req->rq_export))) {
2645                 lustre_msg_set_slv(req->rq_repmsg, 0);
2646                 lustre_msg_set_limit(req->rq_repmsg, 0);
2647                 RETURN(0);
2648         }
2649
2650         /* OBD is alive here as export is alive, which we checked above. */
2651         obd = req->rq_export->exp_obd;
2652
2653         read_lock(&obd->obd_pool_lock);
2654         lustre_msg_set_slv(req->rq_repmsg, obd->obd_pool_slv);
2655         lustre_msg_set_limit(req->rq_repmsg, obd->obd_pool_limit);
2656         read_unlock(&obd->obd_pool_lock);
2657
2658         RETURN(0);
2659 }
2660
2661 static int target_send_reply_msg(struct ptlrpc_request *req,
2662                                  int rc, int fail_id)
2663 {
2664         if (OBD_FAIL_CHECK_ORSET(fail_id & ~OBD_FAIL_ONCE, OBD_FAIL_ONCE)) {
2665                 DEBUG_REQ(D_ERROR, req, "dropping reply");
2666                 return -ECOMM;
2667         }
2668         if (unlikely(lustre_msg_get_opc(req->rq_reqmsg) == MDS_REINT &&
2669                      OBD_FAIL_CHECK(OBD_FAIL_MDS_REINT_MULTI_NET_REP)))
2670                 return -ECOMM;
2671
2672         if (unlikely(rc)) {
2673                 DEBUG_REQ(D_NET, req, "processing error (%d)", rc);
2674                 req->rq_status = rc;
2675                 return ptlrpc_send_error(req, 1);
2676         } else {
2677                 DEBUG_REQ(D_NET, req, "sending reply");
2678         }
2679
2680         return ptlrpc_send_reply(req, PTLRPC_REPLY_MAYBE_DIFFICULT);
2681 }
2682
2683 void target_send_reply(struct ptlrpc_request *req, int rc, int fail_id)
2684 {
2685         struct ptlrpc_service_part *svcpt;
2686         int                        netrc;
2687         struct ptlrpc_reply_state *rs;
2688         struct obd_export         *exp;
2689         ENTRY;
2690
2691         if (req->rq_no_reply) {
2692                 EXIT;
2693                 return;
2694         }
2695
2696         svcpt = req->rq_rqbd->rqbd_svcpt;
2697         rs = req->rq_reply_state;
2698         if (rs == NULL || !rs->rs_difficult) {
2699                 /* no notifiers */
2700                 target_send_reply_msg (req, rc, fail_id);
2701                 EXIT;
2702                 return;
2703         }
2704
2705         /* must be an export if locks saved */
2706         LASSERT(req->rq_export != NULL);
2707         /* req/reply consistent */
2708         LASSERT(rs->rs_svcpt == svcpt);
2709
2710         /* "fresh" reply */
2711         LASSERT(!rs->rs_scheduled);
2712         LASSERT(!rs->rs_scheduled_ever);
2713         LASSERT(!rs->rs_handled);
2714         LASSERT(!rs->rs_on_net);
2715         LASSERT(rs->rs_export == NULL);
2716         LASSERT(list_empty(&rs->rs_obd_list));
2717         LASSERT(list_empty(&rs->rs_exp_list));
2718
2719         exp = class_export_get(req->rq_export);
2720
2721         /* disable reply scheduling while I'm setting up */
2722         rs->rs_scheduled = 1;
2723         rs->rs_on_net    = 1;
2724         rs->rs_xid       = req->rq_xid;
2725         rs->rs_transno   = req->rq_transno;
2726         rs->rs_export    = exp;
2727         rs->rs_opc       = lustre_msg_get_opc(req->rq_reqmsg);
2728
2729         spin_lock(&exp->exp_uncommitted_replies_lock);
2730         CDEBUG(D_NET, "rs transno = "LPU64", last committed = "LPU64"\n",
2731                rs->rs_transno, exp->exp_last_committed);
2732         if (rs->rs_transno > exp->exp_last_committed) {
2733                 /* not committed already */
2734                 list_add_tail(&rs->rs_obd_list,
2735                                   &exp->exp_uncommitted_replies);
2736         }
2737         spin_unlock(&exp->exp_uncommitted_replies_lock);
2738
2739         spin_lock(&exp->exp_lock);
2740         list_add_tail(&rs->rs_exp_list, &exp->exp_outstanding_replies);
2741         spin_unlock(&exp->exp_lock);
2742
2743         netrc = target_send_reply_msg(req, rc, fail_id);
2744
2745         spin_lock(&svcpt->scp_rep_lock);
2746
2747         atomic_inc(&svcpt->scp_nreps_difficult);
2748
2749         if (netrc != 0) {
2750                 /* error sending: reply is off the net.  Also we need +1
2751                  * reply ref until ptlrpc_handle_rs() is done
2752                  * with the reply state (if the send was successful, there
2753                  * would have been +1 ref for the net, which
2754                  * reply_out_callback leaves alone) */
2755                 rs->rs_on_net = 0;
2756                 ptlrpc_rs_addref(rs);
2757         }
2758
2759         spin_lock(&rs->rs_lock);
2760         if (rs->rs_transno <= exp->exp_last_committed ||
2761             (!rs->rs_on_net && !rs->rs_no_ack) ||
2762             list_empty(&rs->rs_exp_list) ||     /* completed already */
2763             list_empty(&rs->rs_obd_list)) {
2764                 CDEBUG(D_HA, "Schedule reply immediately\n");
2765                 ptlrpc_dispatch_difficult_reply(rs);
2766         } else {
2767                 list_add(&rs->rs_list, &svcpt->scp_rep_active);
2768                 rs->rs_scheduled = 0;   /* allow notifier to schedule */
2769         }
2770         spin_unlock(&rs->rs_lock);
2771         spin_unlock(&svcpt->scp_rep_lock);
2772         EXIT;
2773 }
2774
2775 ldlm_mode_t lck_compat_array[] = {
2776         [LCK_EX]    = LCK_COMPAT_EX,
2777         [LCK_PW]    = LCK_COMPAT_PW,
2778         [LCK_PR]    = LCK_COMPAT_PR,
2779         [LCK_CW]    = LCK_COMPAT_CW,
2780         [LCK_CR]    = LCK_COMPAT_CR,
2781         [LCK_NL]    = LCK_COMPAT_NL,
2782         [LCK_GROUP] = LCK_COMPAT_GROUP,
2783         [LCK_COS]   = LCK_COMPAT_COS,
2784 };
2785
2786 /**
2787  * Rather arbitrary mapping from LDLM error codes to errno values. This should
2788  * not escape to the user level.
2789  */
2790 int ldlm_error2errno(ldlm_error_t error)
2791 {
2792         int result;
2793
2794         switch (error) {
2795         case ELDLM_OK:
2796         case ELDLM_LOCK_MATCHED:
2797                 result = 0;
2798                 break;
2799         case ELDLM_LOCK_CHANGED:
2800                 result = -ESTALE;
2801                 break;
2802         case ELDLM_LOCK_ABORTED:
2803                 result = -ENAVAIL;
2804                 break;
2805         case ELDLM_LOCK_REPLACED:
2806                 result = -ESRCH;
2807                 break;
2808         case ELDLM_NO_LOCK_DATA:
2809                 result = -ENOENT;
2810                 break;
2811         case ELDLM_NAMESPACE_EXISTS:
2812                 result = -EEXIST;
2813                 break;
2814         case ELDLM_BAD_NAMESPACE:
2815                 result = -EBADF;
2816                 break;
2817         default:
2818                 if (((int)error) < 0)  /* cast to signed type */
2819                         result = error; /* as ldlm_error_t can be unsigned */
2820                 else {
2821                         CERROR("Invalid DLM result code: %d\n", error);
2822                         result = -EPROTO;
2823                 }
2824         }
2825         return result;
2826 }
2827 EXPORT_SYMBOL(ldlm_error2errno);
2828
2829 /**
2830  * Dual to ldlm_error2errno(): maps errno values back to ldlm_error_t.
2831  */
2832 ldlm_error_t ldlm_errno2error(int err_no)
2833 {
2834         int error;
2835
2836         switch (err_no) {
2837         case 0:
2838                 error = ELDLM_OK;
2839                 break;
2840         case -ESTALE:
2841                 error = ELDLM_LOCK_CHANGED;
2842                 break;
2843         case -ENAVAIL:
2844                 error = ELDLM_LOCK_ABORTED;
2845                 break;
2846         case -ESRCH:
2847                 error = ELDLM_LOCK_REPLACED;
2848                 break;
2849         case -ENOENT:
2850                 error = ELDLM_NO_LOCK_DATA;
2851                 break;
2852         case -EEXIST:
2853                 error = ELDLM_NAMESPACE_EXISTS;
2854                 break;
2855         case -EBADF:
2856                 error = ELDLM_BAD_NAMESPACE;
2857                 break;
2858         default:
2859                 error = err_no;
2860         }
2861         return error;
2862 }
2863
2864 #if LUSTRE_TRACKS_LOCK_EXP_REFS
2865 void ldlm_dump_export_locks(struct obd_export *exp)
2866 {
2867         spin_lock(&exp->exp_locks_list_guard);
2868         if (!list_empty(&exp->exp_locks_list)) {
2869                 struct ldlm_lock *lock;
2870
2871                 CERROR("dumping locks for export %p,"
2872                        "ignore if the unmount doesn't hang\n", exp);
2873                 list_for_each_entry(lock, &exp->exp_locks_list,
2874                                         l_exp_refs_link)
2875                         LDLM_ERROR(lock, "lock:");
2876         }
2877         spin_unlock(&exp->exp_locks_list_guard);
2878 }
2879 #endif
2880
2881 #ifdef HAVE_SERVER_SUPPORT
2882 static int target_bulk_timeout(void *data)
2883 {
2884         ENTRY;
2885         /* We don't fail the connection here, because having the export
2886          * killed makes the (vital) call to commitrw very sad.
2887          */
2888         RETURN(1);
2889 }
2890
2891 static inline const char *bulk2type(struct ptlrpc_request *req)
2892 {
2893         if (req->rq_bulk_read)
2894                 return "READ";
2895         if (req->rq_bulk_write)
2896                 return "WRITE";
2897         return "UNKNOWN";
2898 }
2899
2900 int target_bulk_io(struct obd_export *exp, struct ptlrpc_bulk_desc *desc,
2901                    struct l_wait_info *lwi)
2902 {
2903         struct ptlrpc_request   *req = desc->bd_req;
2904         time_t                   start = cfs_time_current_sec();
2905         time_t                   deadline;
2906         int                      rc = 0;
2907
2908         ENTRY;
2909
2910         /* If there is eviction in progress, wait for it to finish. */
2911         if (unlikely(atomic_read(&exp->exp_obd->obd_evict_inprogress))) {
2912                 *lwi = LWI_INTR(NULL, NULL);
2913                 rc = l_wait_event(exp->exp_obd->obd_evict_inprogress_waitq,
2914                                   !atomic_read(&exp->exp_obd->
2915                                                    obd_evict_inprogress),
2916                                   lwi);
2917         }
2918
2919         /* Check if client was evicted or reconnected already. */
2920         if (exp->exp_failed ||
2921             exp->exp_conn_cnt > lustre_msg_get_conn_cnt(req->rq_reqmsg)) {
2922                 rc = -ENOTCONN;
2923         } else {
2924                 if (req->rq_bulk_read)
2925                         rc = sptlrpc_svc_wrap_bulk(req, desc);
2926
2927                 if ((exp->exp_connect_data.ocd_connect_flags &
2928                      OBD_CONNECT_BULK_MBITS) != 0)
2929                         req->rq_mbits = lustre_msg_get_mbits(req->rq_reqmsg);
2930                 else /* old version, bulk matchbits is rq_xid */
2931                         req->rq_mbits = req->rq_xid;
2932
2933                 if (rc == 0)
2934                         rc = ptlrpc_start_bulk_transfer(desc);
2935         }
2936
2937         if (rc < 0) {
2938                 DEBUG_REQ(D_ERROR, req, "bulk %s failed: rc %d",
2939                           bulk2type(req), rc);
2940                 RETURN(rc);
2941         }
2942
2943         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_SENDPAGE)) {
2944                 ptlrpc_abort_bulk(desc);
2945                 RETURN(0);
2946         }
2947
2948         /* limit actual bulk transfer to bulk_timeout seconds */
2949         deadline = start + bulk_timeout;
2950         if (deadline > req->rq_deadline)
2951                 deadline = req->rq_deadline;
2952
2953         do {
2954                 long timeoutl = deadline - cfs_time_current_sec();
2955                 cfs_duration_t timeout = timeoutl <= 0 ?
2956                                          CFS_TICK : cfs_time_seconds(timeoutl);
2957                 time_t  rq_deadline;
2958
2959                 *lwi = LWI_TIMEOUT_INTERVAL(timeout, cfs_time_seconds(1),
2960                                             target_bulk_timeout, desc);
2961                 rc = l_wait_event(desc->bd_waitq,
2962                                   !ptlrpc_server_bulk_active(desc) ||
2963                                   exp->exp_failed ||
2964                                   exp->exp_conn_cnt >
2965                                   lustre_msg_get_conn_cnt(req->rq_reqmsg),
2966                                   lwi);
2967                 LASSERT(rc == 0 || rc == -ETIMEDOUT);
2968                 /* Wait again if we changed rq_deadline. */
2969                 rq_deadline = ACCESS_ONCE(req->rq_deadline);
2970                 deadline = start + bulk_timeout;
2971                 if (deadline > rq_deadline)
2972                         deadline = rq_deadline;
2973         } while ((rc == -ETIMEDOUT) &&
2974                  (deadline > cfs_time_current_sec()));
2975
2976         if (rc == -ETIMEDOUT) {
2977                 DEBUG_REQ(D_ERROR, req, "timeout on bulk %s after %ld%+lds",
2978                           bulk2type(req), deadline - start,
2979                           cfs_time_current_sec() - deadline);
2980                 ptlrpc_abort_bulk(desc);
2981         } else if (exp->exp_failed) {
2982                 DEBUG_REQ(D_ERROR, req, "Eviction on bulk %s",
2983                           bulk2type(req));
2984                 rc = -ENOTCONN;
2985                 ptlrpc_abort_bulk(desc);
2986         } else if (exp->exp_conn_cnt >
2987                    lustre_msg_get_conn_cnt(req->rq_reqmsg)) {
2988                 DEBUG_REQ(D_ERROR, req, "Reconnect on bulk %s",
2989                           bulk2type(req));
2990                 /* We don't reply anyway. */
2991                 rc = -ETIMEDOUT;
2992                 ptlrpc_abort_bulk(desc);
2993         } else if (desc->bd_failure) {
2994                 DEBUG_REQ(D_ERROR, req, "network error on bulk %s",
2995                           bulk2type(req));
2996                 /* XXX should this be a different errno? */
2997                 rc = -ETIMEDOUT;
2998         } else {
2999                 if (req->rq_bulk_write)
3000                         rc = sptlrpc_svc_unwrap_bulk(req, desc);
3001                 if (rc == 0 && desc->bd_nob_transferred != desc->bd_nob) {
3002                         DEBUG_REQ(D_ERROR, req, "truncated bulk %s %d(%d)",
3003                                   bulk2type(req), desc->bd_nob_transferred,
3004                                   desc->bd_nob);
3005                         /* XXX should this be a different errno? */
3006                         rc = -ETIMEDOUT;
3007                 }
3008         }
3009
3010         RETURN(rc);
3011 }
3012 EXPORT_SYMBOL(target_bulk_io);
3013
3014 #endif /* HAVE_SERVER_SUPPORT */