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