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