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