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