Whamcloud - gitweb
LU-11297 lnet: MR Routing Feature
[fs/lustre-release.git] / lustre / ptlrpc / import.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lustre/ptlrpc/import.c
33  *
34  * Author: Mike Shaver <shaver@clusterfs.com>
35  */
36
37 #define DEBUG_SUBSYSTEM S_RPC
38
39 #include <linux/kthread.h>
40 #include <linux/delay.h>
41 #include <obd_support.h>
42 #include <lustre_ha.h>
43 #include <lustre_net.h>
44 #include <lustre_import.h>
45 #include <lustre_export.h>
46 #include <obd.h>
47 #include <obd_cksum.h>
48 #include <obd_class.h>
49
50 #include "ptlrpc_internal.h"
51
52 struct ptlrpc_connect_async_args {
53          __u64 pcaa_peer_committed;
54         int pcaa_initial_connect;
55 };
56
57 /**
58  * Updates import \a imp current state to provided \a state value
59  * Helper function. Must be called under imp_lock.
60  */
61 static void __import_set_state(struct obd_import *imp,
62                                enum lustre_imp_state state)
63 {
64         switch (state) {
65         case LUSTRE_IMP_CLOSED:
66         case LUSTRE_IMP_NEW:
67         case LUSTRE_IMP_DISCON:
68         case LUSTRE_IMP_CONNECTING:
69                 break;
70         case LUSTRE_IMP_REPLAY_WAIT:
71                 imp->imp_replay_state = LUSTRE_IMP_REPLAY_LOCKS;
72                 break;
73         default:
74                 imp->imp_replay_state = LUSTRE_IMP_REPLAY;
75         }
76         imp->imp_state = state;
77         imp->imp_state_hist[imp->imp_state_hist_idx].ish_state = state;
78         imp->imp_state_hist[imp->imp_state_hist_idx].ish_time =
79                 ktime_get_real_seconds();
80         imp->imp_state_hist_idx = (imp->imp_state_hist_idx + 1) %
81                 IMP_STATE_HIST_LEN;
82 }
83
84 /* A CLOSED import should remain so. */
85 #define IMPORT_SET_STATE_NOLOCK(imp, state)                                    \
86 do {                                                                           \
87         if (imp->imp_state != LUSTRE_IMP_CLOSED) {                             \
88                CDEBUG(D_HA, "%p %s: changing import state from %s to %s\n",    \
89                       imp, obd2cli_tgt(imp->imp_obd),                          \
90                       ptlrpc_import_state_name(imp->imp_state),                \
91                       ptlrpc_import_state_name(state));                        \
92                __import_set_state(imp, state);                                 \
93         }                                                                      \
94 } while(0)
95
96 #define IMPORT_SET_STATE(imp, state)                                    \
97 do {                                                                    \
98         spin_lock(&imp->imp_lock);                                      \
99         IMPORT_SET_STATE_NOLOCK(imp, state);                            \
100         spin_unlock(&imp->imp_lock);                                    \
101 } while(0)
102
103 void ptlrpc_import_enter_resend(struct obd_import *imp)
104 {
105         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
106 }
107 EXPORT_SYMBOL(ptlrpc_import_enter_resend);
108
109
110 static int ptlrpc_connect_interpret(const struct lu_env *env,
111                                     struct ptlrpc_request *request,
112                                     void *args, int rc);
113 int ptlrpc_import_recovery_state_machine(struct obd_import *imp);
114
115 /* Only this function is allowed to change the import state when it is
116  * CLOSED. I would rather refcount the import and free it after
117  * disconnection like we do with exports. To do that, the client_obd
118  * will need to save the peer info somewhere other than in the import,
119  * though. */
120 int ptlrpc_init_import(struct obd_import *imp)
121 {
122         spin_lock(&imp->imp_lock);
123
124         imp->imp_generation++;
125         imp->imp_state =  LUSTRE_IMP_NEW;
126
127         spin_unlock(&imp->imp_lock);
128
129         return 0;
130 }
131 EXPORT_SYMBOL(ptlrpc_init_import);
132
133 #define UUID_STR "_UUID"
134 void deuuidify(char *uuid, const char *prefix, char **uuid_start, int *uuid_len)
135 {
136         *uuid_start = !prefix || strncmp(uuid, prefix, strlen(prefix))
137                 ? uuid : uuid + strlen(prefix);
138
139         *uuid_len = strlen(*uuid_start);
140
141         if (*uuid_len < strlen(UUID_STR))
142                 return;
143
144         if (!strncmp(*uuid_start + *uuid_len - strlen(UUID_STR),
145                     UUID_STR, strlen(UUID_STR)))
146                 *uuid_len -= strlen(UUID_STR);
147 }
148
149 /**
150  * Returns true if import was FULL, false if import was already not
151  * connected.
152  * @imp - import to be disconnected
153  * @conn_cnt - connection count (epoch) of the request that timed out
154  *             and caused the disconnection.  In some cases, multiple
155  *             inflight requests can fail to a single target (e.g. OST
156  *             bulk requests) and if one has already caused a reconnection
157  *             (increasing the import->conn_cnt) the older failure should
158  *             not also cause a reconnection.  If zero it forces a reconnect.
159  */
160 int ptlrpc_set_import_discon(struct obd_import *imp, __u32 conn_cnt)
161 {
162         int rc = 0;
163
164         spin_lock(&imp->imp_lock);
165
166         if (imp->imp_state == LUSTRE_IMP_FULL &&
167             (conn_cnt == 0 || conn_cnt == imp->imp_conn_cnt)) {
168                 char *target_start;
169                 int   target_len;
170
171                 deuuidify(obd2cli_tgt(imp->imp_obd), NULL,
172                           &target_start, &target_len);
173
174                 if (imp->imp_replayable) {
175                         LCONSOLE_WARN("%s: Connection to %.*s (at %s) was "
176                                "lost; in progress operations using this "
177                                "service will wait for recovery to complete\n",
178                                imp->imp_obd->obd_name, target_len, target_start,
179                                obd_import_nid2str(imp));
180                 } else {
181                         LCONSOLE_ERROR_MSG(0x166, "%s: Connection to "
182                                "%.*s (at %s) was lost; in progress "
183                                "operations using this service will fail\n",
184                                imp->imp_obd->obd_name, target_len, target_start,
185                                obd_import_nid2str(imp));
186                 }
187                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_DISCON);
188                 spin_unlock(&imp->imp_lock);
189
190                 if (obd_dump_on_timeout)
191                         libcfs_debug_dumplog();
192
193                 obd_import_event(imp->imp_obd, imp, IMP_EVENT_DISCON);
194                 rc = 1;
195         } else {
196                 spin_unlock(&imp->imp_lock);
197                 CDEBUG(D_HA, "%s: import %p already %s (conn %u, was %u): %s\n",
198                        imp->imp_client->cli_name, imp,
199                        (imp->imp_state == LUSTRE_IMP_FULL &&
200                         imp->imp_conn_cnt > conn_cnt) ?
201                        "reconnected" : "not connected", imp->imp_conn_cnt,
202                        conn_cnt, ptlrpc_import_state_name(imp->imp_state));
203         }
204
205         return rc;
206 }
207
208 /* Must be called with imp_lock held! */
209 static void ptlrpc_deactivate_and_unlock_import(struct obd_import *imp)
210 {
211         ENTRY;
212         assert_spin_locked(&imp->imp_lock);
213
214         CDEBUG(D_HA, "setting import %s INVALID\n", obd2cli_tgt(imp->imp_obd));
215         imp->imp_invalid = 1;
216         imp->imp_generation++;
217         spin_unlock(&imp->imp_lock);
218
219         ptlrpc_abort_inflight(imp);
220         obd_import_event(imp->imp_obd, imp, IMP_EVENT_INACTIVE);
221
222         EXIT;
223 }
224
225 /*
226  * This acts as a barrier; all existing requests are rejected, and
227  * no new requests will be accepted until the import is valid again.
228  */
229 void ptlrpc_deactivate_import(struct obd_import *imp)
230 {
231         spin_lock(&imp->imp_lock);
232         ptlrpc_deactivate_and_unlock_import(imp);
233 }
234 EXPORT_SYMBOL(ptlrpc_deactivate_import);
235
236 static time64_t ptlrpc_inflight_deadline(struct ptlrpc_request *req,
237                                          time64_t now)
238 {
239         time64_t dl;
240
241         if (!(((req->rq_phase == RQ_PHASE_RPC) && !req->rq_waiting) ||
242               (req->rq_phase == RQ_PHASE_BULK) ||
243               (req->rq_phase == RQ_PHASE_NEW)))
244                 return 0;
245
246         if (req->rq_timedout)
247                 return 0;
248
249         if (req->rq_phase == RQ_PHASE_NEW)
250                 dl = req->rq_sent;
251         else
252                 dl = req->rq_deadline;
253
254         if (dl <= now)
255                 return 0;
256
257         return dl - now;
258 }
259
260 static time64_t ptlrpc_inflight_timeout(struct obd_import *imp)
261 {
262         time64_t now = ktime_get_real_seconds();
263         struct list_head *tmp, *n;
264         struct ptlrpc_request *req;
265         time64_t timeout = 0;
266
267         spin_lock(&imp->imp_lock);
268         list_for_each_safe(tmp, n, &imp->imp_sending_list) {
269                 req = list_entry(tmp, struct ptlrpc_request, rq_list);
270                 timeout = max(ptlrpc_inflight_deadline(req, now), timeout);
271         }
272         spin_unlock(&imp->imp_lock);
273         return timeout;
274 }
275
276 /**
277  * This function will invalidate the import, if necessary, then block
278  * for all the RPC completions, and finally notify the obd to
279  * invalidate its state (ie cancel locks, clear pending requests,
280  * etc).
281  */
282 void ptlrpc_invalidate_import(struct obd_import *imp)
283 {
284         struct list_head *tmp, *n;
285         struct ptlrpc_request *req;
286         struct l_wait_info lwi;
287         time64_t timeout;
288         int rc;
289
290         atomic_inc(&imp->imp_inval_count);
291
292         if (!imp->imp_invalid || imp->imp_obd->obd_no_recov)
293                 ptlrpc_deactivate_import(imp);
294
295         if (OBD_FAIL_PRECHECK(OBD_FAIL_PTLRPC_CONNECT_RACE)) {
296                 OBD_RACE(OBD_FAIL_PTLRPC_CONNECT_RACE);
297                 msleep(10 * MSEC_PER_SEC);
298         }
299         CFS_FAIL_TIMEOUT(OBD_FAIL_MGS_CONNECT_NET, 3 * cfs_fail_val / 2);
300         LASSERT(imp->imp_invalid);
301
302         /* Wait forever until inflight == 0. We really can't do it another
303          * way because in some cases we need to wait for very long reply
304          * unlink. We can't do anything before that because there is really
305          * no guarantee that some rdma transfer is not in progress right now. */
306         do {
307                 long timeout_jiffies;
308
309                 /* Calculate max timeout for waiting on rpcs to error
310                  * out. Use obd_timeout if calculated value is smaller
311                  * than it.
312                  */
313                 if (!OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_LONG_REPL_UNLINK)) {
314                         timeout = ptlrpc_inflight_timeout(imp);
315                         timeout += div_u64(timeout, 3);
316
317                         if (timeout == 0)
318                                 timeout = obd_timeout;
319                 } else {
320                         /* decrease the interval to increase race condition */
321                         timeout = 1;
322                 }
323
324                 CDEBUG(D_RPCTRACE, "Sleeping %llds for inflight to error out\n",
325                        timeout);
326
327                 /* Wait for all requests to error out and call completion
328                  * callbacks. Cap it at obd_timeout -- these should all
329                  * have been locally cancelled by ptlrpc_abort_inflight.
330                  */
331                 timeout_jiffies = max_t(long, cfs_time_seconds(timeout), 1);
332                 lwi = LWI_TIMEOUT_INTERVAL(timeout_jiffies,
333                                            (timeout > 1) ? cfs_time_seconds(1) :
334                                                            cfs_time_seconds(1) / 2,
335                                                            NULL, NULL);
336                 rc = l_wait_event(imp->imp_recovery_waitq,
337                                   (atomic_read(&imp->imp_inflight) == 0),
338                                   &lwi);
339                 if (rc) {
340                         const char *cli_tgt = obd2cli_tgt(imp->imp_obd);
341
342                         CERROR("%s: rc = %d waiting for callback (%d != 0)\n",
343                                cli_tgt, rc, atomic_read(&imp->imp_inflight));
344
345                         spin_lock(&imp->imp_lock);
346                         if (atomic_read(&imp->imp_inflight) == 0) {
347                                 int count = atomic_read(&imp->imp_unregistering);
348
349                                 /* We know that "unregistering" rpcs only can
350                                  * survive in sending or delaying lists (they
351                                  * maybe waiting for long reply unlink in
352                                  * sluggish nets). Let's check this. If there
353                                  * is no inflight and unregistering != 0, this
354                                  * is bug. */
355                                 LASSERTF(count == 0, "Some RPCs are still "
356                                          "unregistering: %d\n", count);
357
358                                 /* Let's save one loop as soon as inflight have
359                                  * dropped to zero. No new inflights possible at
360                                  * this point. */
361                                 rc = 0;
362                         } else {
363                                 list_for_each_safe(tmp, n,
364                                                    &imp->imp_sending_list) {
365                                         req = list_entry(tmp,
366                                                          struct ptlrpc_request,
367                                                          rq_list);
368                                         DEBUG_REQ(D_ERROR, req,
369                                                   "still on sending list");
370                                 }
371                                 list_for_each_safe(tmp, n,
372                                                    &imp->imp_delayed_list) {
373                                         req = list_entry(tmp,
374                                                          struct ptlrpc_request,
375                                                          rq_list);
376                                         DEBUG_REQ(D_ERROR, req,
377                                                   "still on delayed list");
378                                 }
379
380                                 CERROR("%s: Unregistering RPCs found (%d). "
381                                        "Network is sluggish? Waiting them "
382                                        "to error out.\n", cli_tgt,
383                                        atomic_read(&imp->imp_unregistering));
384                         }
385                         spin_unlock(&imp->imp_lock);
386                 }
387         } while (rc != 0);
388
389         /*
390          * Let's additionally check that no new rpcs added to import in
391          * "invalidate" state.
392          */
393         LASSERT(atomic_read(&imp->imp_inflight) == 0);
394         obd_import_event(imp->imp_obd, imp, IMP_EVENT_INVALIDATE);
395         sptlrpc_import_flush_all_ctx(imp);
396
397         atomic_dec(&imp->imp_inval_count);
398         wake_up_all(&imp->imp_recovery_waitq);
399 }
400 EXPORT_SYMBOL(ptlrpc_invalidate_import);
401
402 /* unset imp_invalid */
403 void ptlrpc_activate_import(struct obd_import *imp)
404 {
405         struct obd_device *obd = imp->imp_obd;
406
407         spin_lock(&imp->imp_lock);
408         if (imp->imp_deactive != 0) {
409                 spin_unlock(&imp->imp_lock);
410                 return;
411         }
412
413         imp->imp_invalid = 0;
414         spin_unlock(&imp->imp_lock);
415         obd_import_event(obd, imp, IMP_EVENT_ACTIVE);
416 }
417 EXPORT_SYMBOL(ptlrpc_activate_import);
418
419 void ptlrpc_pinger_force(struct obd_import *imp)
420 {
421         CDEBUG(D_HA, "%s: waking up pinger s:%s\n", obd2cli_tgt(imp->imp_obd),
422                ptlrpc_import_state_name(imp->imp_state));
423
424         spin_lock(&imp->imp_lock);
425         imp->imp_force_verify = 1;
426         spin_unlock(&imp->imp_lock);
427
428         if (imp->imp_state != LUSTRE_IMP_CONNECTING)
429                 ptlrpc_pinger_wake_up();
430 }
431 EXPORT_SYMBOL(ptlrpc_pinger_force);
432
433 void ptlrpc_fail_import(struct obd_import *imp, __u32 conn_cnt)
434 {
435         ENTRY;
436
437         LASSERT(!imp->imp_dlm_fake);
438
439         if (ptlrpc_set_import_discon(imp, conn_cnt)) {
440                 if (!imp->imp_replayable) {
441                         CDEBUG(D_HA, "import %s@%s for %s not replayable, "
442                                "auto-deactivating\n",
443                                obd2cli_tgt(imp->imp_obd),
444                                imp->imp_connection->c_remote_uuid.uuid,
445                                imp->imp_obd->obd_name);
446                         ptlrpc_deactivate_import(imp);
447                 }
448
449                 ptlrpc_pinger_force(imp);
450         }
451         EXIT;
452 }
453
454 int ptlrpc_reconnect_import(struct obd_import *imp)
455 {
456 #ifdef ENABLE_PINGER
457         long timeout_jiffies = cfs_time_seconds(obd_timeout);
458         struct l_wait_info lwi;
459         int rc;
460
461         ptlrpc_pinger_force(imp);
462
463         CDEBUG(D_HA, "%s: recovery started, waiting %u seconds\n",
464                obd2cli_tgt(imp->imp_obd), obd_timeout);
465
466         lwi = LWI_TIMEOUT(timeout_jiffies, NULL, NULL);
467         rc = l_wait_event(imp->imp_recovery_waitq,
468                           !ptlrpc_import_in_recovery(imp), &lwi);
469         CDEBUG(D_HA, "%s: recovery finished s:%s\n", obd2cli_tgt(imp->imp_obd),
470                ptlrpc_import_state_name(imp->imp_state));
471         return rc;
472 #else
473         ptlrpc_set_import_discon(imp, 0);
474         /* Force a new connect attempt */
475         ptlrpc_invalidate_import(imp);
476         /* Do a fresh connect next time by zeroing the handle */
477         ptlrpc_disconnect_import(imp, 1);
478         /* Wait for all invalidate calls to finish */
479         if (atomic_read(&imp->imp_inval_count) > 0) {
480                 struct l_wait_info lwi = LWI_INTR(LWI_ON_SIGNAL_NOOP, NULL);
481                 int rc;
482
483                 rc = l_wait_event(imp->imp_recovery_waitq,
484                                   (atomic_read(&imp->imp_inval_count) == 0),
485                                   &lwi);
486                 if (rc)
487                         CERROR("Interrupted, inval=%d\n",
488                                atomic_read(&imp->imp_inval_count));
489         }
490
491         /* Allow reconnect attempts */
492         imp->imp_obd->obd_no_recov = 0;
493         /* Remove 'invalid' flag */
494         ptlrpc_activate_import(imp);
495         /* Attempt a new connect */
496         ptlrpc_recover_import(imp, NULL, 0);
497         return 0;
498 #endif
499 }
500 EXPORT_SYMBOL(ptlrpc_reconnect_import);
501
502 /**
503  * Connection on import \a imp is changed to another one (if more than one is
504  * present). We typically chose connection that we have not tried to connect to
505  * the longest
506  */
507 static int import_select_connection(struct obd_import *imp)
508 {
509         struct obd_import_conn *imp_conn = NULL, *conn;
510         struct obd_export *dlmexp;
511         char *target_start;
512         int target_len, tried_all = 1;
513         ENTRY;
514
515         spin_lock(&imp->imp_lock);
516
517         if (list_empty(&imp->imp_conn_list)) {
518                 CERROR("%s: no connections available\n",
519                        imp->imp_obd->obd_name);
520                 spin_unlock(&imp->imp_lock);
521                 RETURN(-EINVAL);
522         }
523
524         list_for_each_entry(conn, &imp->imp_conn_list, oic_item) {
525                 CDEBUG(D_HA, "%s: connect to NID %s last attempt %lld\n",
526                        imp->imp_obd->obd_name,
527                        libcfs_nid2str(conn->oic_conn->c_peer.nid),
528                        conn->oic_last_attempt);
529
530                 /* If we have not tried this connection since
531                    the last successful attempt, go with this one */
532                 if ((conn->oic_last_attempt == 0) ||
533                     conn->oic_last_attempt <= imp->imp_last_success_conn) {
534                         imp_conn = conn;
535                         tried_all = 0;
536                         break;
537                 }
538
539                 /* If all of the connections have already been tried
540                    since the last successful connection; just choose the
541                    least recently used */
542                 if (!imp_conn)
543                         imp_conn = conn;
544                 else if (imp_conn->oic_last_attempt > conn->oic_last_attempt)
545                         imp_conn = conn;
546         }
547
548         /* if not found, simply choose the current one */
549         if (!imp_conn || imp->imp_force_reconnect) {
550                 LASSERT(imp->imp_conn_current);
551                 imp_conn = imp->imp_conn_current;
552                 tried_all = 0;
553         }
554         LASSERT(imp_conn->oic_conn);
555
556         /* If we've tried everything, and we're back to the beginning of the
557            list, increase our timeout and try again. It will be reset when
558            we do finally connect. (FIXME: really we should wait for all network
559            state associated with the last connection attempt to drain before
560            trying to reconnect on it.) */
561         if (tried_all && (imp->imp_conn_list.next == &imp_conn->oic_item)) {
562                 struct adaptive_timeout *at = &imp->imp_at.iat_net_latency;
563                 if (at_get(at) < CONNECTION_SWITCH_MAX) {
564                         at_measured(at, at_get(at) + CONNECTION_SWITCH_INC);
565                         if (at_get(at) > CONNECTION_SWITCH_MAX)
566                                 at_reset(at, CONNECTION_SWITCH_MAX);
567                 }
568                 LASSERT(imp_conn->oic_last_attempt);
569                 CDEBUG(D_HA, "%s: tried all connections, increasing latency "
570                         "to %ds\n", imp->imp_obd->obd_name, at_get(at));
571         }
572
573         imp_conn->oic_last_attempt = ktime_get_seconds();
574
575         /* switch connection, don't mind if it's same as the current one */
576         if (imp->imp_connection)
577                 ptlrpc_connection_put(imp->imp_connection);
578         imp->imp_connection = ptlrpc_connection_addref(imp_conn->oic_conn);
579
580         dlmexp =  class_conn2export(&imp->imp_dlm_handle);
581         LASSERT(dlmexp != NULL);
582         if (dlmexp->exp_connection)
583                 ptlrpc_connection_put(dlmexp->exp_connection);
584         dlmexp->exp_connection = ptlrpc_connection_addref(imp_conn->oic_conn);
585         class_export_put(dlmexp);
586
587         if (imp->imp_conn_current != imp_conn) {
588                 if (imp->imp_conn_current) {
589                         deuuidify(obd2cli_tgt(imp->imp_obd), NULL,
590                                   &target_start, &target_len);
591
592                         CDEBUG(D_HA, "%s: Connection changing to"
593                                " %.*s (at %s)\n",
594                                imp->imp_obd->obd_name,
595                                target_len, target_start,
596                                libcfs_nid2str(imp_conn->oic_conn->c_peer.nid));
597                 }
598
599                 imp->imp_conn_current = imp_conn;
600         }
601
602         CDEBUG(D_HA, "%s: import %p using connection %s/%s\n",
603                imp->imp_obd->obd_name, imp, imp_conn->oic_uuid.uuid,
604                libcfs_nid2str(imp_conn->oic_conn->c_peer.nid));
605
606         spin_unlock(&imp->imp_lock);
607
608         RETURN(0);
609 }
610
611 /*
612  * must be called under imp_lock
613  */
614 static int ptlrpc_first_transno(struct obd_import *imp, __u64 *transno)
615 {
616         struct ptlrpc_request   *req;
617         struct list_head        *tmp;
618
619         /* The requests in committed_list always have smaller transnos than
620          * the requests in replay_list */
621         if (!list_empty(&imp->imp_committed_list)) {
622                 tmp = imp->imp_committed_list.next;
623                 req = list_entry(tmp, struct ptlrpc_request, rq_replay_list);
624                 *transno = req->rq_transno;
625                 if (req->rq_transno == 0) {
626                         DEBUG_REQ(D_ERROR, req, "zero transno in committed_list");
627                         LBUG();
628                 }
629                 return 1;
630         }
631         if (!list_empty(&imp->imp_replay_list)) {
632                 tmp = imp->imp_replay_list.next;
633                 req = list_entry(tmp, struct ptlrpc_request, rq_replay_list);
634                 *transno = req->rq_transno;
635                 if (req->rq_transno == 0) {
636                         DEBUG_REQ(D_ERROR, req, "zero transno in replay_list");
637                         LBUG();
638                 }
639                 return 1;
640         }
641         return 0;
642 }
643
644 /**
645  * Attempt to (re)connect import \a imp. This includes all preparations,
646  * initializing CONNECT RPC request and passing it to ptlrpcd for
647  * actual sending.
648  * Returns 0 on success or error code.
649  */
650 int ptlrpc_connect_import(struct obd_import *imp)
651 {
652         struct obd_device *obd = imp->imp_obd;
653         int initial_connect = 0;
654         int set_transno = 0;
655         __u64 committed_before_reconnect = 0;
656         struct ptlrpc_request *request;
657         struct obd_connect_data ocd;
658         char *bufs[] = { NULL,
659                          obd2cli_tgt(imp->imp_obd),
660                          obd->obd_uuid.uuid,
661                          (char *)&imp->imp_dlm_handle,
662                          (char *)&ocd,
663                          NULL };
664         struct ptlrpc_connect_async_args *aa;
665         int rc;
666         ENTRY;
667
668         spin_lock(&imp->imp_lock);
669         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
670                 spin_unlock(&imp->imp_lock);
671                 CERROR("can't connect to a closed import\n");
672                 RETURN(-EINVAL);
673         } else if (imp->imp_state == LUSTRE_IMP_FULL) {
674                 spin_unlock(&imp->imp_lock);
675                 CERROR("already connected\n");
676                 RETURN(0);
677         } else if (imp->imp_state == LUSTRE_IMP_CONNECTING ||
678                    imp->imp_state == LUSTRE_IMP_EVICTED ||
679                    imp->imp_connected) {
680                 spin_unlock(&imp->imp_lock);
681                 CERROR("already connecting\n");
682                 RETURN(-EALREADY);
683         }
684
685         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CONNECTING);
686
687         imp->imp_conn_cnt++;
688         imp->imp_resend_replay = 0;
689
690         if (!lustre_handle_is_used(&imp->imp_remote_handle))
691                 initial_connect = 1;
692         else
693                 committed_before_reconnect = imp->imp_peer_committed_transno;
694
695         set_transno = ptlrpc_first_transno(imp,
696                                            &imp->imp_connect_data.ocd_transno);
697         spin_unlock(&imp->imp_lock);
698
699         rc = import_select_connection(imp);
700         if (rc)
701                 GOTO(out, rc);
702
703         rc = sptlrpc_import_sec_adapt(imp, NULL, NULL);
704         if (rc)
705                 GOTO(out, rc);
706
707         /* Reset connect flags to the originally requested flags, in case
708          * the server is updated on-the-fly we will get the new features. */
709         ocd = imp->imp_connect_data;
710         ocd.ocd_connect_flags = imp->imp_connect_flags_orig;
711         ocd.ocd_connect_flags2 = imp->imp_connect_flags2_orig;
712         /* Reset ocd_version each time so the server knows the exact versions */
713         ocd.ocd_version = LUSTRE_VERSION_CODE;
714         imp->imp_msghdr_flags &= ~MSGHDR_AT_SUPPORT;
715         imp->imp_msghdr_flags &= ~MSGHDR_CKSUM_INCOMPAT18;
716
717         rc = obd_reconnect(NULL, imp->imp_obd->obd_self_export, obd,
718                            &obd->obd_uuid, &ocd, NULL);
719         if (rc)
720                 GOTO(out, rc);
721
722         request = ptlrpc_request_alloc(imp, &RQF_MDS_CONNECT);
723         if (request == NULL)
724                 GOTO(out, rc = -ENOMEM);
725
726         /* get SELinux policy info if any */
727         rc = sptlrpc_get_sepol(request);
728         if (rc < 0) {
729                 ptlrpc_request_free(request);
730                 GOTO(out, rc);
731         }
732
733         bufs[5] = request->rq_sepol;
734
735         req_capsule_set_size(&request->rq_pill, &RMF_SELINUX_POL, RCL_CLIENT,
736                              strlen(request->rq_sepol) ?
737                              strlen(request->rq_sepol) + 1 : 0);
738
739         rc = ptlrpc_request_bufs_pack(request, LUSTRE_OBD_VERSION,
740                                       imp->imp_connect_op, bufs, NULL);
741         if (rc) {
742                 ptlrpc_request_free(request);
743                 GOTO(out, rc);
744         }
745
746         /* Report the rpc service time to the server so that it knows how long
747          * to wait for clients to join recovery */
748         lustre_msg_set_service_time(request->rq_reqmsg,
749                                     at_timeout2est(request->rq_timeout));
750
751         /* The amount of time we give the server to process the connect req.
752          * import_select_connection will increase the net latency on
753          * repeated reconnect attempts to cover slow networks.
754          * We override/ignore the server rpc completion estimate here,
755          * which may be large if this is a reconnect attempt */
756         request->rq_timeout = INITIAL_CONNECT_TIMEOUT;
757         lustre_msg_set_timeout(request->rq_reqmsg, request->rq_timeout);
758
759         request->rq_no_resend = request->rq_no_delay = 1;
760         request->rq_send_state = LUSTRE_IMP_CONNECTING;
761         /* Allow a slightly larger reply for future growth compatibility */
762         req_capsule_set_size(&request->rq_pill, &RMF_CONNECT_DATA, RCL_SERVER,
763                              sizeof(struct obd_connect_data)+16*sizeof(__u64));
764         ptlrpc_request_set_replen(request);
765         request->rq_interpret_reply = ptlrpc_connect_interpret;
766
767         CLASSERT(sizeof(*aa) <= sizeof(request->rq_async_args));
768         aa = ptlrpc_req_async_args(request);
769         memset(aa, 0, sizeof *aa);
770
771         aa->pcaa_peer_committed = committed_before_reconnect;
772         aa->pcaa_initial_connect = initial_connect;
773
774         if (aa->pcaa_initial_connect) {
775                 spin_lock(&imp->imp_lock);
776                 imp->imp_replayable = 1;
777                 spin_unlock(&imp->imp_lock);
778                 lustre_msg_add_op_flags(request->rq_reqmsg,
779                                         MSG_CONNECT_INITIAL);
780         }
781
782         if (set_transno)
783                 lustre_msg_add_op_flags(request->rq_reqmsg,
784                                         MSG_CONNECT_TRANSNO);
785
786         DEBUG_REQ(D_RPCTRACE, request, "(re)connect request (timeout %ld)",
787                   request->rq_timeout);
788         ptlrpcd_add_req(request);
789         rc = 0;
790 out:
791         if (rc != 0)
792                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
793
794         RETURN(rc);
795 }
796 EXPORT_SYMBOL(ptlrpc_connect_import);
797
798 static void ptlrpc_maybe_ping_import_soon(struct obd_import *imp)
799 {
800         int force_verify;
801
802         spin_lock(&imp->imp_lock);
803         force_verify = imp->imp_force_verify != 0;
804         spin_unlock(&imp->imp_lock);
805
806         if (force_verify)
807                 ptlrpc_pinger_wake_up();
808 }
809
810 static int ptlrpc_busy_reconnect(int rc)
811 {
812         return (rc == -EBUSY) || (rc == -EAGAIN);
813 }
814
815 static int ptlrpc_connect_set_flags(struct obd_import *imp,
816                                     struct obd_connect_data *ocd,
817                                     __u64 old_connect_flags,
818                                     struct obd_export *exp, int init_connect)
819 {
820         static bool warned;
821         struct client_obd *cli = &imp->imp_obd->u.cli;
822
823         spin_lock(&imp->imp_lock);
824         list_del(&imp->imp_conn_current->oic_item);
825         list_add(&imp->imp_conn_current->oic_item,
826                  &imp->imp_conn_list);
827         imp->imp_last_success_conn =
828                 imp->imp_conn_current->oic_last_attempt;
829
830         spin_unlock(&imp->imp_lock);
831
832         if (!warned && (ocd->ocd_connect_flags & OBD_CONNECT_VERSION) &&
833             (ocd->ocd_version > LUSTRE_VERSION_CODE +
834                                 LUSTRE_VERSION_OFFSET_WARN ||
835              ocd->ocd_version < LUSTRE_VERSION_CODE -
836                                 LUSTRE_VERSION_OFFSET_WARN)) {
837                 /* Sigh, some compilers do not like #ifdef in the middle
838                    of macro arguments */
839                 const char *older = "older than client. "
840                                     "Consider upgrading server";
841                 const char *newer = "newer than client. "
842                                     "Consider upgrading client";
843
844                 LCONSOLE_WARN("Server %s version (%d.%d.%d.%d) "
845                               "is much %s (%s)\n",
846                               obd2cli_tgt(imp->imp_obd),
847                               OBD_OCD_VERSION_MAJOR(ocd->ocd_version),
848                               OBD_OCD_VERSION_MINOR(ocd->ocd_version),
849                               OBD_OCD_VERSION_PATCH(ocd->ocd_version),
850                               OBD_OCD_VERSION_FIX(ocd->ocd_version),
851                               ocd->ocd_version > LUSTRE_VERSION_CODE ?
852                               newer : older, LUSTRE_VERSION_STRING);
853                 warned = true;
854         }
855
856         if (ocd->ocd_connect_flags & OBD_CONNECT_CKSUM) {
857                 /* We sent to the server ocd_cksum_types with bits set
858                  * for algorithms we understand. The server masked off
859                  * the checksum types it doesn't support */
860                 if ((ocd->ocd_cksum_types &
861                      obd_cksum_types_supported_client()) == 0) {
862                         LCONSOLE_ERROR("The negotiation of the checksum "
863                                        "alogrithm to use with server %s "
864                                        "failed (%x/%x)\n",
865                                        obd2cli_tgt(imp->imp_obd),
866                                        ocd->ocd_cksum_types,
867                                        obd_cksum_types_supported_client());
868                         return -EPROTO;
869                 } else {
870                         cli->cl_supp_cksum_types = ocd->ocd_cksum_types;
871                 }
872         } else {
873                 /* The server does not support OBD_CONNECT_CKSUM.
874                  * Enforce ADLER for backward compatibility*/
875                 cli->cl_supp_cksum_types = OBD_CKSUM_ADLER;
876         }
877         cli->cl_cksum_type = obd_cksum_type_select(imp->imp_obd->obd_name,
878                                                    cli->cl_supp_cksum_types);
879
880         if (ocd->ocd_connect_flags & OBD_CONNECT_BRW_SIZE)
881                 cli->cl_max_pages_per_rpc =
882                         min(ocd->ocd_brw_size >> PAGE_SHIFT,
883                             cli->cl_max_pages_per_rpc);
884         else if (imp->imp_connect_op == MDS_CONNECT ||
885                  imp->imp_connect_op == MGS_CONNECT)
886                 cli->cl_max_pages_per_rpc = 1;
887
888         LASSERT((cli->cl_max_pages_per_rpc <= PTLRPC_MAX_BRW_PAGES) &&
889                 (cli->cl_max_pages_per_rpc > 0));
890
891         client_adjust_max_dirty(cli);
892
893         /* Update client max modify RPCs in flight with value returned
894          * by the server */
895         if (ocd->ocd_connect_flags & OBD_CONNECT_MULTIMODRPCS)
896                 cli->cl_max_mod_rpcs_in_flight = min(
897                                         cli->cl_max_mod_rpcs_in_flight,
898                                         ocd->ocd_maxmodrpcs);
899         else
900                 cli->cl_max_mod_rpcs_in_flight = 1;
901
902         /* Reset ns_connect_flags only for initial connect. It might be
903          * changed in while using FS and if we reset it in reconnect
904          * this leads to losing user settings done before such as
905          * disable lru_resize, etc. */
906         if (old_connect_flags != exp_connect_flags(exp) || init_connect) {
907                 CDEBUG(D_HA, "%s: Resetting ns_connect_flags to server "
908                              "flags: %#llx\n", imp->imp_obd->obd_name,
909                              ocd->ocd_connect_flags);
910                 imp->imp_obd->obd_namespace->ns_connect_flags =
911                         ocd->ocd_connect_flags;
912                 imp->imp_obd->obd_namespace->ns_orig_connect_flags =
913                         ocd->ocd_connect_flags;
914         }
915
916         if (ocd->ocd_connect_flags & OBD_CONNECT_AT)
917                 /* We need a per-message support flag, because
918                  * a. we don't know if the incoming connect reply
919                  *    supports AT or not (in reply_in_callback)
920                  *    until we unpack it.
921                  * b. failovered server means export and flags are gone
922                  *    (in ptlrpc_send_reply).
923                  *    Can only be set when we know AT is supported at
924                  *    both ends */
925                 imp->imp_msghdr_flags |= MSGHDR_AT_SUPPORT;
926         else
927                 imp->imp_msghdr_flags &= ~MSGHDR_AT_SUPPORT;
928
929         imp->imp_msghdr_flags |= MSGHDR_CKSUM_INCOMPAT18;
930
931         return 0;
932 }
933
934 /**
935  * Add all replay requests back to unreplied list before start replay,
936  * so that we can make sure the known replied XID is always increased
937  * only even if when replaying requests.
938  */
939 static void ptlrpc_prepare_replay(struct obd_import *imp)
940 {
941         struct ptlrpc_request *req;
942
943         if (imp->imp_state != LUSTRE_IMP_REPLAY ||
944             imp->imp_resend_replay)
945                 return;
946
947         /* If the server was restart during repaly, the requests may
948          * have been added to the unreplied list in former replay. */
949         spin_lock(&imp->imp_lock);
950
951         list_for_each_entry(req, &imp->imp_committed_list, rq_replay_list) {
952                 if (list_empty(&req->rq_unreplied_list))
953                         ptlrpc_add_unreplied(req);
954         }
955
956         list_for_each_entry(req, &imp->imp_replay_list, rq_replay_list) {
957                 if (list_empty(&req->rq_unreplied_list))
958                         ptlrpc_add_unreplied(req);
959         }
960
961         imp->imp_known_replied_xid = ptlrpc_known_replied_xid(imp);
962         spin_unlock(&imp->imp_lock);
963 }
964
965 /**
966  * interpret_reply callback for connect RPCs.
967  * Looks into returned status of connect operation and decides
968  * what to do with the import - i.e enter recovery, promote it to
969  * full state for normal operations of disconnect it due to an error.
970  */
971 static int ptlrpc_connect_interpret(const struct lu_env *env,
972                                     struct ptlrpc_request *request,
973                                     void *data, int rc)
974 {
975         struct ptlrpc_connect_async_args *aa = data;
976         struct obd_import *imp = request->rq_import;
977         struct lustre_handle old_hdl;
978         __u64 old_connect_flags;
979         int msg_flags;
980         struct obd_connect_data *ocd;
981         struct obd_export *exp = NULL;
982         int ret;
983         ENTRY;
984
985         spin_lock(&imp->imp_lock);
986         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
987                 imp->imp_connect_tried = 1;
988                 spin_unlock(&imp->imp_lock);
989                 RETURN(0);
990         }
991
992         imp->imp_connect_error = rc;
993         if (rc) {
994                 struct ptlrpc_request *free_req;
995                 struct ptlrpc_request *tmp;
996
997                 /* abort all delayed requests initiated connection */
998                 list_for_each_entry_safe(free_req, tmp, &imp->imp_delayed_list,
999                                          rq_list) {
1000                         spin_lock(&free_req->rq_lock);
1001                         if (free_req->rq_no_resend) {
1002                                 free_req->rq_err = 1;
1003                                 free_req->rq_status = -EIO;
1004                                 ptlrpc_client_wake_req(free_req);
1005                         }
1006                         spin_unlock(&free_req->rq_lock);
1007                 }
1008
1009                 /* if this reconnect to busy export - not need select new target
1010                  * for connecting*/
1011                 imp->imp_force_reconnect = ptlrpc_busy_reconnect(rc);
1012                 spin_unlock(&imp->imp_lock);
1013                 ptlrpc_maybe_ping_import_soon(imp);
1014                 GOTO(out, rc);
1015         }
1016
1017         /* LU-7558: indicate that we are interpretting connect reply,
1018          * pltrpc_connect_import() will not try to reconnect until
1019          * interpret will finish. */
1020         imp->imp_connected = 1;
1021         spin_unlock(&imp->imp_lock);
1022
1023         LASSERT(imp->imp_conn_current);
1024
1025         msg_flags = lustre_msg_get_op_flags(request->rq_repmsg);
1026
1027         ret = req_capsule_get_size(&request->rq_pill, &RMF_CONNECT_DATA,
1028                                    RCL_SERVER);
1029         /* server replied obd_connect_data is always bigger */
1030         ocd = req_capsule_server_sized_get(&request->rq_pill,
1031                                            &RMF_CONNECT_DATA, ret);
1032
1033         if (ocd == NULL) {
1034                 CERROR("%s: no connect data from server\n",
1035                        imp->imp_obd->obd_name);
1036                 rc = -EPROTO;
1037                 GOTO(out, rc);
1038         }
1039
1040         spin_lock(&imp->imp_lock);
1041
1042         /* All imports are pingable */
1043         imp->imp_pingable = 1;
1044         imp->imp_force_reconnect = 0;
1045         imp->imp_force_verify = 0;
1046
1047         imp->imp_connect_data = *ocd;
1048
1049         CDEBUG(D_HA, "%s: connect to target with instance %u\n",
1050                imp->imp_obd->obd_name, ocd->ocd_instance);
1051         exp = class_conn2export(&imp->imp_dlm_handle);
1052
1053         spin_unlock(&imp->imp_lock);
1054
1055         if (!exp) {
1056                 /* This could happen if export is cleaned during the
1057                    connect attempt */
1058                 CERROR("%s: missing export after connect\n",
1059                        imp->imp_obd->obd_name);
1060                 GOTO(out, rc = -ENODEV);
1061         }
1062
1063         /* check that server granted subset of flags we asked for. */
1064         if ((ocd->ocd_connect_flags & imp->imp_connect_flags_orig) !=
1065             ocd->ocd_connect_flags) {
1066                 CERROR("%s: Server didn't grant requested subset of flags: "
1067                        "asked=%#llx granted=%#llx\n",
1068                        imp->imp_obd->obd_name, imp->imp_connect_flags_orig,
1069                        ocd->ocd_connect_flags);
1070                 GOTO(out, rc = -EPROTO);
1071         }
1072
1073         if ((ocd->ocd_connect_flags2 & imp->imp_connect_flags2_orig) !=
1074             ocd->ocd_connect_flags2) {
1075                 CERROR("%s: Server didn't grant requested subset of flags2: "
1076                        "asked=%#llx granted=%#llx\n",
1077                        imp->imp_obd->obd_name, imp->imp_connect_flags2_orig,
1078                        ocd->ocd_connect_flags2);
1079                 GOTO(out, rc = -EPROTO);
1080         }
1081
1082         if (!(imp->imp_connect_flags_orig & OBD_CONNECT_LIGHTWEIGHT) &&
1083             (imp->imp_connect_flags_orig & OBD_CONNECT_MDS_MDS) &&
1084             (imp->imp_connect_flags_orig & OBD_CONNECT_FID) &&
1085             (ocd->ocd_connect_flags & OBD_CONNECT_VERSION)) {
1086                 __u32 major = OBD_OCD_VERSION_MAJOR(ocd->ocd_version);
1087                 __u32 minor = OBD_OCD_VERSION_MINOR(ocd->ocd_version);
1088                 __u32 patch = OBD_OCD_VERSION_PATCH(ocd->ocd_version);
1089
1090                 /* We do not support the MDT-MDT interoperations with
1091                  * different version MDT because of protocol changes. */
1092                 if (unlikely(major != LUSTRE_MAJOR ||
1093                              minor != LUSTRE_MINOR ||
1094                              abs(patch - LUSTRE_PATCH) > 3)) {
1095                         LCONSOLE_WARN("%s: import %p (%u.%u.%u.%u) tried the "
1096                                       "connection to different version MDT "
1097                                       "(%d.%d.%d.%d) %s\n",
1098                                       imp->imp_obd->obd_name, imp, LUSTRE_MAJOR,
1099                                       LUSTRE_MINOR, LUSTRE_PATCH, LUSTRE_FIX,
1100                                       major, minor, patch,
1101                                       OBD_OCD_VERSION_FIX(ocd->ocd_version),
1102                                       imp->imp_connection->c_remote_uuid.uuid);
1103
1104                         GOTO(out, rc = -EPROTO);
1105                 }
1106         }
1107
1108         old_connect_flags = exp_connect_flags(exp);
1109         exp->exp_connect_data = *ocd;
1110         imp->imp_obd->obd_self_export->exp_connect_data = *ocd;
1111
1112         /* The net statistics after (re-)connect is not valid anymore,
1113          * because may reflect other routing, etc. */
1114         at_reinit(&imp->imp_at.iat_net_latency, 0, 0);
1115         ptlrpc_at_adj_net_latency(request,
1116                         lustre_msg_get_service_time(request->rq_repmsg));
1117
1118         /* Import flags should be updated before waking import at FULL state */
1119         rc = ptlrpc_connect_set_flags(imp, ocd, old_connect_flags, exp,
1120                                       aa->pcaa_initial_connect);
1121         class_export_put(exp);
1122         exp = NULL;
1123
1124         if (rc != 0)
1125                 GOTO(out, rc);
1126
1127         obd_import_event(imp->imp_obd, imp, IMP_EVENT_OCD);
1128
1129         if (aa->pcaa_initial_connect) {
1130                 spin_lock(&imp->imp_lock);
1131                 if (msg_flags & MSG_CONNECT_REPLAYABLE) {
1132                         imp->imp_replayable = 1;
1133                         spin_unlock(&imp->imp_lock);
1134                         CDEBUG(D_HA, "connected to replayable target: %s\n",
1135                                obd2cli_tgt(imp->imp_obd));
1136                 } else {
1137                         imp->imp_replayable = 0;
1138                         spin_unlock(&imp->imp_lock);
1139                 }
1140
1141                 /* if applies, adjust the imp->imp_msg_magic here
1142                  * according to reply flags */
1143
1144                 imp->imp_remote_handle =
1145                                 *lustre_msg_get_handle(request->rq_repmsg);
1146
1147                 /* Initial connects are allowed for clients with non-random
1148                  * uuids when servers are in recovery.  Simply signal the
1149                  * servers replay is complete and wait in REPLAY_WAIT. */
1150                 if (msg_flags & MSG_CONNECT_RECOVERING) {
1151                         CDEBUG(D_HA, "connect to %s during recovery\n",
1152                                obd2cli_tgt(imp->imp_obd));
1153                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_LOCKS);
1154                 } else {
1155                         IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
1156                         ptlrpc_activate_import(imp);
1157                 }
1158
1159                 GOTO(finish, rc = 0);
1160         }
1161
1162         /* Determine what recovery state to move the import to. */
1163         if (MSG_CONNECT_RECONNECT & msg_flags) {
1164                 memset(&old_hdl, 0, sizeof(old_hdl));
1165                 if (!memcmp(&old_hdl, lustre_msg_get_handle(request->rq_repmsg),
1166                             sizeof (old_hdl))) {
1167                         LCONSOLE_WARN("Reconnect to %s (at @%s) failed due "
1168                                       "bad handle %#llx\n",
1169                                       obd2cli_tgt(imp->imp_obd),
1170                                       imp->imp_connection->c_remote_uuid.uuid,
1171                                       imp->imp_dlm_handle.cookie);
1172                         GOTO(out, rc = -ENOTCONN);
1173                 }
1174
1175                 if (memcmp(&imp->imp_remote_handle,
1176                            lustre_msg_get_handle(request->rq_repmsg),
1177                            sizeof(imp->imp_remote_handle))) {
1178                         int level = msg_flags & MSG_CONNECT_RECOVERING ?
1179                                 D_HA : D_WARNING;
1180
1181                         /* Bug 16611/14775: if server handle have changed,
1182                          * that means some sort of disconnection happened.
1183                          * If the server is not in recovery, that also means it
1184                          * already erased all of our state because of previous
1185                          * eviction. If it is in recovery - we are safe to
1186                          * participate since we can reestablish all of our state
1187                          * with server again */
1188                         if ((MSG_CONNECT_RECOVERING & msg_flags)) {
1189                                 CDEBUG(level,"%s@%s changed server handle from "
1190                                        "%#llx to %#llx"
1191                                        " but is still in recovery\n",
1192                                        obd2cli_tgt(imp->imp_obd),
1193                                        imp->imp_connection->c_remote_uuid.uuid,
1194                                        imp->imp_remote_handle.cookie,
1195                                        lustre_msg_get_handle(
1196                                        request->rq_repmsg)->cookie);
1197                         } else {
1198                                 LCONSOLE_WARN("Evicted from %s (at %s) "
1199                                               "after server handle changed from "
1200                                               "%#llx to %#llx\n",
1201                                               obd2cli_tgt(imp->imp_obd),
1202                                               imp->imp_connection-> \
1203                                               c_remote_uuid.uuid,
1204                                               imp->imp_remote_handle.cookie,
1205                                               lustre_msg_get_handle(
1206                                               request->rq_repmsg)->cookie);
1207                         }
1208
1209
1210                         imp->imp_remote_handle =
1211                                      *lustre_msg_get_handle(request->rq_repmsg);
1212
1213                         if (!(MSG_CONNECT_RECOVERING & msg_flags)) {
1214                                 IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
1215                                 GOTO(finish, rc = 0);
1216                         }
1217
1218                 } else {
1219                         CDEBUG(D_HA, "reconnected to %s@%s after partition\n",
1220                                obd2cli_tgt(imp->imp_obd),
1221                                imp->imp_connection->c_remote_uuid.uuid);
1222                 }
1223
1224                 if (imp->imp_invalid) {
1225                         CDEBUG(D_HA, "%s: reconnected but import is invalid; "
1226                                "marking evicted\n", imp->imp_obd->obd_name);
1227                         IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
1228                 } else if (MSG_CONNECT_RECOVERING & msg_flags) {
1229                         CDEBUG(D_HA, "%s: reconnected to %s during replay\n",
1230                                imp->imp_obd->obd_name,
1231                                obd2cli_tgt(imp->imp_obd));
1232
1233                         spin_lock(&imp->imp_lock);
1234                         imp->imp_resend_replay = 1;
1235                         spin_unlock(&imp->imp_lock);
1236
1237                         IMPORT_SET_STATE(imp, imp->imp_replay_state);
1238                 } else {
1239                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
1240                 }
1241         } else if ((MSG_CONNECT_RECOVERING & msg_flags) && !imp->imp_invalid) {
1242                 LASSERT(imp->imp_replayable);
1243                 imp->imp_remote_handle =
1244                                 *lustre_msg_get_handle(request->rq_repmsg);
1245                 imp->imp_last_replay_transno = 0;
1246                 imp->imp_replay_cursor = &imp->imp_committed_list;
1247                 IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY);
1248         } else if ((ocd->ocd_connect_flags & OBD_CONNECT_LIGHTWEIGHT) != 0 &&
1249                    !imp->imp_invalid) {
1250
1251                 obd_import_event(imp->imp_obd, imp, IMP_EVENT_INVALIDATE);
1252                 DEBUG_REQ(D_HA, request, "%s: lwp recover",
1253                           imp->imp_obd->obd_name);
1254                 imp->imp_remote_handle =
1255                         *lustre_msg_get_handle(request->rq_repmsg);
1256                 IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
1257         } else {
1258                 DEBUG_REQ(D_HA, request, "%s: evicting (reconnect/recover flags"
1259                           " not set: %x)", imp->imp_obd->obd_name, msg_flags);
1260                 imp->imp_remote_handle =
1261                                 *lustre_msg_get_handle(request->rq_repmsg);
1262                 IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
1263         }
1264
1265         /* Sanity checks for a reconnected import. */
1266         if (!(imp->imp_replayable) != !(msg_flags & MSG_CONNECT_REPLAYABLE)) {
1267                 CERROR("imp_replayable flag does not match server "
1268                        "after reconnect. We should LBUG right here.\n");
1269         }
1270
1271         if (lustre_msg_get_last_committed(request->rq_repmsg) > 0 &&
1272             lustre_msg_get_last_committed(request->rq_repmsg) <
1273             aa->pcaa_peer_committed) {
1274                 CERROR("%s went back in time (transno %lld"
1275                        " was previously committed, server now claims %lld"
1276                        ")!  See https://bugzilla.lustre.org/show_bug.cgi?"
1277                        "id=9646\n",
1278                        obd2cli_tgt(imp->imp_obd), aa->pcaa_peer_committed,
1279                        lustre_msg_get_last_committed(request->rq_repmsg));
1280         }
1281
1282 finish:
1283         ptlrpc_prepare_replay(imp);
1284         rc = ptlrpc_import_recovery_state_machine(imp);
1285         if (rc == -ENOTCONN) {
1286                 CDEBUG(D_HA, "evicted/aborted by %s@%s during recovery;"
1287                        "invalidating and reconnecting\n",
1288                        obd2cli_tgt(imp->imp_obd),
1289                        imp->imp_connection->c_remote_uuid.uuid);
1290                 ptlrpc_connect_import(imp);
1291                 spin_lock(&imp->imp_lock);
1292                 imp->imp_connected = 0;
1293                 imp->imp_connect_tried = 1;
1294                 spin_unlock(&imp->imp_lock);
1295                 RETURN(0);
1296         }
1297
1298 out:
1299         spin_lock(&imp->imp_lock);
1300         imp->imp_connected = 0;
1301         imp->imp_connect_tried = 1;
1302         spin_unlock(&imp->imp_lock);
1303
1304         if (exp != NULL)
1305                 class_export_put(exp);
1306
1307         if (rc != 0) {
1308                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
1309                 if (rc == -EACCES) {
1310                         /*
1311                          * Give up trying to reconnect
1312                          * EACCES means client has no permission for connection
1313                          */
1314                         imp->imp_obd->obd_no_recov = 1;
1315                         ptlrpc_deactivate_import(imp);
1316                 }
1317
1318                 if (rc == -EPROTO) {
1319                         struct obd_connect_data *ocd;
1320
1321                         /* reply message might not be ready */
1322                         if (request->rq_repmsg == NULL)
1323                                 RETURN(-EPROTO);
1324
1325                         ocd = req_capsule_server_get(&request->rq_pill,
1326                                                      &RMF_CONNECT_DATA);
1327                         /* Servers are not supposed to refuse connections from
1328                          * clients based on version, only connection feature
1329                          * flags.  We should never see this from llite, but it
1330                          * may be useful for debugging in the future. */
1331                         if (ocd &&
1332                             (ocd->ocd_connect_flags & OBD_CONNECT_VERSION) &&
1333                             (ocd->ocd_version != LUSTRE_VERSION_CODE)) {
1334                                 LCONSOLE_ERROR_MSG(0x16a, "Server %s version "
1335                                         "(%d.%d.%d.%d)"
1336                                         " refused connection from this client "
1337                                         "with an incompatible version (%s).  "
1338                                         "Client must be recompiled\n",
1339                                         obd2cli_tgt(imp->imp_obd),
1340                                         OBD_OCD_VERSION_MAJOR(ocd->ocd_version),
1341                                         OBD_OCD_VERSION_MINOR(ocd->ocd_version),
1342                                         OBD_OCD_VERSION_PATCH(ocd->ocd_version),
1343                                         OBD_OCD_VERSION_FIX(ocd->ocd_version),
1344                                         LUSTRE_VERSION_STRING);
1345                                 ptlrpc_deactivate_import(imp);
1346                                 IMPORT_SET_STATE(imp, LUSTRE_IMP_CLOSED);
1347                         }
1348                         RETURN(-EPROTO);
1349                 }
1350
1351                 ptlrpc_maybe_ping_import_soon(imp);
1352
1353                 CDEBUG(D_HA, "recovery of %s on %s failed (%d)\n",
1354                        obd2cli_tgt(imp->imp_obd),
1355                        (char *)imp->imp_connection->c_remote_uuid.uuid, rc);
1356         }
1357
1358         wake_up_all(&imp->imp_recovery_waitq);
1359         RETURN(rc);
1360 }
1361
1362 /**
1363  * interpret callback for "completed replay" RPCs.
1364  * \see signal_completed_replay
1365  */
1366 static int completed_replay_interpret(const struct lu_env *env,
1367                                       struct ptlrpc_request *req,
1368                                       void *args, int rc)
1369 {
1370         ENTRY;
1371         atomic_dec(&req->rq_import->imp_replay_inflight);
1372         if (req->rq_status == 0 && !req->rq_import->imp_vbr_failed) {
1373                 ptlrpc_import_recovery_state_machine(req->rq_import);
1374         } else {
1375                 if (req->rq_import->imp_vbr_failed) {
1376                         CDEBUG(D_WARNING,
1377                                "%s: version recovery fails, reconnecting\n",
1378                                req->rq_import->imp_obd->obd_name);
1379                 } else {
1380                         CDEBUG(D_HA, "%s: LAST_REPLAY message error: %d, "
1381                                      "reconnecting\n",
1382                                req->rq_import->imp_obd->obd_name,
1383                                req->rq_status);
1384                 }
1385                 ptlrpc_connect_import(req->rq_import);
1386         }
1387
1388         RETURN(0);
1389 }
1390
1391 /**
1392  * Let server know that we have no requests to replay anymore.
1393  * Achieved by just sending a PING request
1394  */
1395 static int signal_completed_replay(struct obd_import *imp)
1396 {
1397         struct ptlrpc_request *req;
1398         ENTRY;
1399
1400         if (unlikely(OBD_FAIL_CHECK(OBD_FAIL_PTLRPC_FINISH_REPLAY)))
1401                 RETURN(0);
1402
1403         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
1404         atomic_inc(&imp->imp_replay_inflight);
1405
1406         req = ptlrpc_request_alloc_pack(imp, &RQF_OBD_PING, LUSTRE_OBD_VERSION,
1407                                         OBD_PING);
1408         if (req == NULL) {
1409                 atomic_dec(&imp->imp_replay_inflight);
1410                 RETURN(-ENOMEM);
1411         }
1412
1413         ptlrpc_request_set_replen(req);
1414         req->rq_send_state = LUSTRE_IMP_REPLAY_WAIT;
1415         lustre_msg_add_flags(req->rq_reqmsg,
1416                              MSG_LOCK_REPLAY_DONE | MSG_REQ_REPLAY_DONE);
1417         if (AT_OFF)
1418                 req->rq_timeout *= 3;
1419         req->rq_interpret_reply = completed_replay_interpret;
1420
1421         ptlrpcd_add_req(req);
1422         RETURN(0);
1423 }
1424
1425 /**
1426  * In kernel code all import invalidation happens in its own
1427  * separate thread, so that whatever application happened to encounter
1428  * a problem could still be killed or otherwise continue
1429  */
1430 static int ptlrpc_invalidate_import_thread(void *data)
1431 {
1432         struct obd_import *imp = data;
1433
1434         ENTRY;
1435
1436         unshare_fs_struct();
1437
1438         CDEBUG(D_HA, "thread invalidate import %s to %s@%s\n",
1439                imp->imp_obd->obd_name, obd2cli_tgt(imp->imp_obd),
1440                imp->imp_connection->c_remote_uuid.uuid);
1441
1442         ptlrpc_invalidate_import(imp);
1443
1444         if (obd_dump_on_eviction) {
1445                 CERROR("dump the log upon eviction\n");
1446                 libcfs_debug_dumplog();
1447         }
1448
1449         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
1450         ptlrpc_import_recovery_state_machine(imp);
1451
1452         class_import_put(imp);
1453         RETURN(0);
1454 }
1455
1456 /**
1457  * This is the state machine for client-side recovery on import.
1458  *
1459  * Typicaly we have two possibly paths. If we came to server and it is not
1460  * in recovery, we just enter IMP_EVICTED state, invalidate our import
1461  * state and reconnect from scratch.
1462  * If we came to server that is in recovery, we enter IMP_REPLAY import state.
1463  * We go through our list of requests to replay and send them to server one by
1464  * one.
1465  * After sending all request from the list we change import state to
1466  * IMP_REPLAY_LOCKS and re-request all the locks we believe we have from server
1467  * and also all the locks we don't yet have and wait for server to grant us.
1468  * After that we send a special "replay completed" request and change import
1469  * state to IMP_REPLAY_WAIT.
1470  * Upon receiving reply to that "replay completed" RPC we enter IMP_RECOVER
1471  * state and resend all requests from sending list.
1472  * After that we promote import to FULL state and send all delayed requests
1473  * and import is fully operational after that.
1474  *
1475  */
1476 int ptlrpc_import_recovery_state_machine(struct obd_import *imp)
1477 {
1478         int rc = 0;
1479         int inflight;
1480         char *target_start;
1481         int target_len;
1482
1483         ENTRY;
1484         if (imp->imp_state == LUSTRE_IMP_EVICTED) {
1485                 deuuidify(obd2cli_tgt(imp->imp_obd), NULL,
1486                           &target_start, &target_len);
1487                 /* Don't care about MGC eviction */
1488                 if (strcmp(imp->imp_obd->obd_type->typ_name,
1489                            LUSTRE_MGC_NAME) != 0) {
1490                         LCONSOLE_ERROR_MSG(0x167, "%s: This client was evicted "
1491                                            "by %.*s; in progress operations "
1492                                            "using this service will fail.\n",
1493                                            imp->imp_obd->obd_name, target_len,
1494                                            target_start);
1495                         LASSERTF(!obd_lbug_on_eviction, "LBUG upon eviction");
1496                 }
1497                 CDEBUG(D_HA, "evicted from %s@%s; invalidating\n",
1498                        obd2cli_tgt(imp->imp_obd),
1499                        imp->imp_connection->c_remote_uuid.uuid);
1500                 /* reset vbr_failed flag upon eviction */
1501                 spin_lock(&imp->imp_lock);
1502                 imp->imp_vbr_failed = 0;
1503                 spin_unlock(&imp->imp_lock);
1504
1505                 {
1506                 struct task_struct *task;
1507                 /* bug 17802:  XXX client_disconnect_export vs connect request
1508                  * race. if client is evicted at this time then we start
1509                  * invalidate thread without reference to import and import can
1510                  * be freed at same time. */
1511                 class_import_get(imp);
1512                 task = kthread_run(ptlrpc_invalidate_import_thread, imp,
1513                                      "ll_imp_inval");
1514                 if (IS_ERR(task)) {
1515                         class_import_put(imp);
1516                         CERROR("error starting invalidate thread: %d\n", rc);
1517                         rc = PTR_ERR(task);
1518                 } else {
1519                         rc = 0;
1520                 }
1521                 RETURN(rc);
1522                 }
1523         }
1524
1525         if (imp->imp_state == LUSTRE_IMP_REPLAY) {
1526                 CDEBUG(D_HA, "replay requested by %s\n",
1527                        obd2cli_tgt(imp->imp_obd));
1528                 rc = ptlrpc_replay_next(imp, &inflight);
1529                 if (inflight == 0 &&
1530                     atomic_read(&imp->imp_replay_inflight) == 0) {
1531                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_LOCKS);
1532                         rc = ldlm_replay_locks(imp);
1533                         if (rc)
1534                                 GOTO(out, rc);
1535                 }
1536                 rc = 0;
1537         }
1538
1539         if (imp->imp_state == LUSTRE_IMP_REPLAY_LOCKS) {
1540                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
1541                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_WAIT);
1542                         rc = signal_completed_replay(imp);
1543                         if (rc)
1544                                 GOTO(out, rc);
1545                 }
1546         }
1547
1548         if (imp->imp_state == LUSTRE_IMP_REPLAY_WAIT) {
1549                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
1550                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
1551                 }
1552         }
1553
1554         if (imp->imp_state == LUSTRE_IMP_RECOVER) {
1555                 struct ptlrpc_connection *conn = imp->imp_connection;
1556
1557                 rc = ptlrpc_resend(imp);
1558                 if (rc)
1559                         GOTO(out, rc);
1560                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
1561                 ptlrpc_activate_import(imp);
1562
1563                 LCONSOLE_INFO("%s: Connection restored to %s (at %s)\n",
1564                               imp->imp_obd->obd_name,
1565                               obd_uuid2str(&conn->c_remote_uuid),
1566                               obd_import_nid2str(imp));
1567         }
1568
1569         if (imp->imp_state == LUSTRE_IMP_FULL) {
1570                 wake_up_all(&imp->imp_recovery_waitq);
1571                 ptlrpc_wake_delayed(imp);
1572         }
1573
1574 out:
1575         RETURN(rc);
1576 }
1577
1578 static struct ptlrpc_request *ptlrpc_disconnect_prep_req(struct obd_import *imp)
1579 {
1580         struct ptlrpc_request *req;
1581         int rq_opc, rc = 0;
1582         ENTRY;
1583
1584         switch (imp->imp_connect_op) {
1585         case OST_CONNECT:
1586                 rq_opc = OST_DISCONNECT;
1587                 break;
1588         case MDS_CONNECT:
1589                 rq_opc = MDS_DISCONNECT;
1590                 break;
1591         case MGS_CONNECT:
1592                 rq_opc = MGS_DISCONNECT;
1593                 break;
1594         default:
1595                 rc = -EINVAL;
1596                 CERROR("%s: don't know how to disconnect from %s "
1597                        "(connect_op %d): rc = %d\n",
1598                        imp->imp_obd->obd_name, obd2cli_tgt(imp->imp_obd),
1599                        imp->imp_connect_op, rc);
1600                 RETURN(ERR_PTR(rc));
1601         }
1602
1603         req = ptlrpc_request_alloc_pack(imp, &RQF_MDS_DISCONNECT,
1604                                         LUSTRE_OBD_VERSION, rq_opc);
1605         if (req == NULL)
1606                 RETURN(NULL);
1607
1608         /* We are disconnecting, do not retry a failed DISCONNECT rpc if
1609          * it fails.  We can get through the above with a down server
1610          * if the client doesn't know the server is gone yet. */
1611         req->rq_no_resend = 1;
1612
1613         /* We want client umounts to happen quickly, no matter the
1614            server state... */
1615         req->rq_timeout = min_t(int, req->rq_timeout,
1616                                 INITIAL_CONNECT_TIMEOUT);
1617
1618         IMPORT_SET_STATE(imp, LUSTRE_IMP_CONNECTING);
1619         req->rq_send_state =  LUSTRE_IMP_CONNECTING;
1620         ptlrpc_request_set_replen(req);
1621
1622         RETURN(req);
1623 }
1624
1625 int ptlrpc_disconnect_import(struct obd_import *imp, int noclose)
1626 {
1627         struct ptlrpc_request *req;
1628         int rc = 0;
1629         ENTRY;
1630
1631         if (imp->imp_obd->obd_force)
1632                 GOTO(set_state, rc);
1633
1634         /* probably the import has been disconnected already being idle */
1635         spin_lock(&imp->imp_lock);
1636         if (imp->imp_state == LUSTRE_IMP_IDLE)
1637                 GOTO(out, rc);
1638         spin_unlock(&imp->imp_lock);
1639
1640         if (ptlrpc_import_in_recovery(imp)) {
1641                 struct l_wait_info lwi;
1642                 long timeout_jiffies;
1643                 time64_t timeout;
1644
1645                 if (AT_OFF) {
1646                         if (imp->imp_server_timeout)
1647                                 timeout = obd_timeout >> 1;
1648                         else
1649                                 timeout = obd_timeout;
1650                 } else {
1651                         u32 req_portal;
1652                         int idx;
1653
1654                         req_portal = imp->imp_client->cli_request_portal;
1655                         idx = import_at_get_index(imp, req_portal);
1656                         timeout = at_get(&imp->imp_at.iat_service_estimate[idx]);
1657                 }
1658
1659                 timeout_jiffies = cfs_time_seconds(timeout);
1660                 lwi = LWI_TIMEOUT_INTR(max_t(long, timeout_jiffies, 1),
1661                                        back_to_sleep, LWI_ON_SIGNAL_NOOP, NULL);
1662                 rc = l_wait_event(imp->imp_recovery_waitq,
1663                                   !ptlrpc_import_in_recovery(imp), &lwi);
1664
1665         }
1666
1667         spin_lock(&imp->imp_lock);
1668         if (imp->imp_state != LUSTRE_IMP_FULL)
1669                 GOTO(out, rc);
1670         spin_unlock(&imp->imp_lock);
1671
1672         req = ptlrpc_disconnect_prep_req(imp);
1673         if (IS_ERR(req))
1674                 GOTO(set_state, rc = PTR_ERR(req));
1675         rc = ptlrpc_queue_wait(req);
1676         ptlrpc_req_finished(req);
1677
1678 set_state:
1679         spin_lock(&imp->imp_lock);
1680 out:
1681         if (noclose)
1682                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_DISCON);
1683         else
1684                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CLOSED);
1685         memset(&imp->imp_remote_handle, 0, sizeof(imp->imp_remote_handle));
1686         spin_unlock(&imp->imp_lock);
1687
1688         if (rc == -ETIMEDOUT || rc == -ENOTCONN || rc == -ESHUTDOWN)
1689                 rc = 0;
1690         RETURN(rc);
1691 }
1692 EXPORT_SYMBOL(ptlrpc_disconnect_import);
1693
1694 static void ptlrpc_reset_reqs_generation(struct obd_import *imp)
1695 {
1696         struct ptlrpc_request *old, *tmp;
1697
1698         /* tag all resendable requests generated before disconnection
1699          * notice this code is part of disconnect-at-idle path only */
1700         list_for_each_entry_safe(old, tmp, &imp->imp_delayed_list,
1701                         rq_list) {
1702                 spin_lock(&old->rq_lock);
1703                 if (old->rq_import_generation == imp->imp_generation - 1 &&
1704                     !old->rq_no_resend)
1705                         old->rq_import_generation = imp->imp_generation;
1706                 spin_unlock(&old->rq_lock);
1707         }
1708 }
1709
1710 static int ptlrpc_disconnect_idle_interpret(const struct lu_env *env,
1711                                             struct ptlrpc_request *req,
1712                                             void *args, int rc)
1713 {
1714         struct obd_import *imp = req->rq_import;
1715         int connect = 0;
1716
1717         DEBUG_REQ(D_HA, req, "inflight=%d, refcount=%d: rc = %d ",
1718                   atomic_read(&imp->imp_inflight),
1719                   atomic_read(&imp->imp_refcount), rc);
1720
1721         spin_lock(&imp->imp_lock);
1722         /* DISCONNECT reply can be late and another connection can just
1723          * be initiated. so we have to abort disconnection. */
1724         if (req->rq_import_generation == imp->imp_generation &&
1725             imp->imp_state != LUSTRE_IMP_CLOSED) {
1726                 LASSERTF(imp->imp_state == LUSTRE_IMP_CONNECTING,
1727                          "%s\n", ptlrpc_import_state_name(imp->imp_state));
1728                 imp->imp_state = LUSTRE_IMP_IDLE;
1729                 memset(&imp->imp_remote_handle, 0,
1730                        sizeof(imp->imp_remote_handle));
1731                 /* take our DISCONNECT into account */
1732                 if (atomic_read(&imp->imp_inflight) > 1) {
1733                         imp->imp_generation++;
1734                         imp->imp_initiated_at = imp->imp_generation;
1735                         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_NEW);
1736                         ptlrpc_reset_reqs_generation(imp);
1737                         connect = 1;
1738                 }
1739         }
1740         spin_unlock(&imp->imp_lock);
1741
1742         if (connect) {
1743                 rc = ptlrpc_connect_import(imp);
1744                 if (rc >= 0)
1745                         ptlrpc_pinger_add_import(imp);
1746         }
1747
1748         return 0;
1749 }
1750
1751 int ptlrpc_disconnect_and_idle_import(struct obd_import *imp)
1752 {
1753         struct ptlrpc_request *req;
1754         ENTRY;
1755
1756         if (imp->imp_obd->obd_force)
1757                 RETURN(0);
1758
1759         if (ptlrpc_import_in_recovery(imp))
1760                 RETURN(0);
1761
1762         spin_lock(&imp->imp_lock);
1763         if (imp->imp_state != LUSTRE_IMP_FULL) {
1764                 spin_unlock(&imp->imp_lock);
1765                 RETURN(0);
1766         }
1767         spin_unlock(&imp->imp_lock);
1768
1769         req = ptlrpc_disconnect_prep_req(imp);
1770         if (IS_ERR(req))
1771                 RETURN(PTR_ERR(req));
1772
1773         CDEBUG_LIMIT(imp->imp_idle_debug, "%s: disconnect after %llus idle\n",
1774                      imp->imp_obd->obd_name,
1775                      ktime_get_real_seconds() - imp->imp_last_reply_time);
1776         req->rq_interpret_reply = ptlrpc_disconnect_idle_interpret;
1777         ptlrpcd_add_req(req);
1778
1779         RETURN(0);
1780 }
1781 EXPORT_SYMBOL(ptlrpc_disconnect_and_idle_import);
1782
1783 void ptlrpc_cleanup_imp(struct obd_import *imp)
1784 {
1785         ENTRY;
1786
1787         spin_lock(&imp->imp_lock);
1788         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CLOSED);
1789         imp->imp_generation++;
1790         spin_unlock(&imp->imp_lock);
1791         ptlrpc_abort_inflight(imp);
1792
1793         EXIT;
1794 }
1795
1796 /* Adaptive Timeout utils */
1797 extern unsigned int at_min, at_max, at_history;
1798
1799 /* Update at_current with the specified value (bounded by at_min and at_max),
1800  * as well as the AT history "bins".
1801  *  - Bin into timeslices using AT_BINS bins.
1802  *  - This gives us a max of the last at_history seconds without the storage,
1803  *    but still smoothing out a return to normalcy from a slow response.
1804  *  - (E.g. remember the maximum latency in each minute of the last 4 minutes.)
1805  */
1806 int at_measured(struct adaptive_timeout *at, unsigned int val)
1807 {
1808         unsigned int old = at->at_current;
1809         time64_t now = ktime_get_real_seconds();
1810         long binlimit = max_t(long, at_history / AT_BINS, 1);
1811
1812         LASSERT(at);
1813         CDEBUG(D_OTHER, "add %u to %p time=%lu v=%u (%u %u %u %u)\n",
1814                val, at, (long)(now - at->at_binstart), at->at_current,
1815                at->at_hist[0], at->at_hist[1], at->at_hist[2], at->at_hist[3]);
1816
1817         if (val == 0)
1818                 /* 0's don't count, because we never want our timeout to
1819                    drop to 0, and because 0 could mean an error */
1820                 return 0;
1821
1822         spin_lock(&at->at_lock);
1823
1824         if (unlikely(at->at_binstart == 0)) {
1825                 /* Special case to remove default from history */
1826                 at->at_current = val;
1827                 at->at_worst_ever = val;
1828                 at->at_worst_time = now;
1829                 at->at_hist[0] = val;
1830                 at->at_binstart = now;
1831         } else if (now - at->at_binstart < binlimit ) {
1832                 /* in bin 0 */
1833                 at->at_hist[0] = max(val, at->at_hist[0]);
1834                 at->at_current = max(val, at->at_current);
1835         } else {
1836                 int i, shift;
1837                 unsigned int maxv = val;
1838
1839                 /* move bins over */
1840                 shift = (u32)(now - at->at_binstart) / binlimit;
1841                 LASSERT(shift > 0);
1842                 for(i = AT_BINS - 1; i >= 0; i--) {
1843                         if (i >= shift) {
1844                                 at->at_hist[i] = at->at_hist[i - shift];
1845                                 maxv = max(maxv, at->at_hist[i]);
1846                         } else {
1847                                 at->at_hist[i] = 0;
1848                         }
1849                 }
1850                 at->at_hist[0] = val;
1851                 at->at_current = maxv;
1852                 at->at_binstart += shift * binlimit;
1853         }
1854
1855         if (at->at_current > at->at_worst_ever) {
1856                 at->at_worst_ever = at->at_current;
1857                 at->at_worst_time = now;
1858         }
1859
1860         if (at->at_flags & AT_FLG_NOHIST)
1861                 /* Only keep last reported val; keeping the rest of the history
1862                    for proc only */
1863                 at->at_current = val;
1864
1865         if (at_max > 0)
1866                 at->at_current =  min(at->at_current, at_max);
1867         at->at_current =  max(at->at_current, at_min);
1868
1869         if (at->at_current != old)
1870                 CDEBUG(D_OTHER, "AT %p change: old=%u new=%u delta=%d "
1871                        "(val=%u) hist %u %u %u %u\n", at,
1872                        old, at->at_current, at->at_current - old, val,
1873                        at->at_hist[0], at->at_hist[1], at->at_hist[2],
1874                        at->at_hist[3]);
1875
1876         /* if we changed, report the old value */
1877         old = (at->at_current != old) ? old : 0;
1878
1879         spin_unlock(&at->at_lock);
1880         return old;
1881 }
1882
1883 /* Find the imp_at index for a given portal; assign if space available */
1884 int import_at_get_index(struct obd_import *imp, int portal)
1885 {
1886         struct imp_at *at = &imp->imp_at;
1887         int i;
1888
1889         for (i = 0; i < IMP_AT_MAX_PORTALS; i++) {
1890                 if (at->iat_portal[i] == portal)
1891                         return i;
1892                 if (at->iat_portal[i] == 0)
1893                         /* unused */
1894                         break;
1895         }
1896
1897         /* Not found in list, add it under a lock */
1898         spin_lock(&imp->imp_lock);
1899
1900         /* Check unused under lock */
1901         for (; i < IMP_AT_MAX_PORTALS; i++) {
1902                 if (at->iat_portal[i] == portal)
1903                         goto out;
1904                 if (at->iat_portal[i] == 0)
1905                         /* unused */
1906                         break;
1907         }
1908
1909         /* Not enough portals? */
1910         LASSERT(i < IMP_AT_MAX_PORTALS);
1911
1912         at->iat_portal[i] = portal;
1913 out:
1914         spin_unlock(&imp->imp_lock);
1915         return i;
1916 }