Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / ptlrpc / import.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Mike Shaver <shaver@clusterfs.com>
6  *
7  *   This file is part of the Lustre file system, http://www.lustre.org
8  *   Lustre is a trademark of Cluster File Systems, Inc.
9  *
10  *   You may have signed or agreed to another license before downloading
11  *   this software.  If so, you are bound by the terms and conditions
12  *   of that agreement, and the following does not apply to you.  See the
13  *   LICENSE file included with this distribution for more information.
14  *
15  *   If you did not agree to a different license, then this copy of Lustre
16  *   is open source software; you can redistribute it and/or modify it
17  *   under the terms of version 2 of the GNU General Public License as
18  *   published by the Free Software Foundation.
19  *
20  *   In either case, Lustre is distributed in the hope that it will be
21  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
22  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  *   license text for more details.
24  */
25
26 #define DEBUG_SUBSYSTEM S_RPC
27 #ifndef __KERNEL__
28 # include <liblustre.h>
29 #endif
30
31 #include <obd_support.h>
32 #include <lustre_ha.h>
33 #include <lustre_net.h>
34 #include <lustre_import.h>
35 #include <lustre_export.h>
36 #include <obd.h>
37 #include <obd_class.h>
38
39 #include "ptlrpc_internal.h"
40
41 struct ptlrpc_connect_async_args {
42          __u64 pcaa_peer_committed;
43         int pcaa_initial_connect;
44 };
45
46 /* A CLOSED import should remain so. */
47 #define IMPORT_SET_STATE_NOLOCK(imp, state)                                    \
48 do {                                                                           \
49         if (imp->imp_state != LUSTRE_IMP_CLOSED) {                             \
50                CDEBUG(D_HA, "%p %s: changing import state from %s to %s\n",    \
51                       imp, obd2cli_tgt(imp->imp_obd),                          \
52                       ptlrpc_import_state_name(imp->imp_state),                \
53                       ptlrpc_import_state_name(state));                        \
54                imp->imp_state = state;                                         \
55         }                                                                      \
56 } while(0)
57
58 #define IMPORT_SET_STATE(imp, state)            \
59 do {                                            \
60         spin_lock(&imp->imp_lock);              \
61         IMPORT_SET_STATE_NOLOCK(imp, state);    \
62         spin_unlock(&imp->imp_lock);            \
63 } while(0)
64
65
66 static int ptlrpc_connect_interpret(struct ptlrpc_request *request,
67                                     void * data, int rc);
68 int ptlrpc_import_recovery_state_machine(struct obd_import *imp);
69
70 /* Only this function is allowed to change the import state when it is
71  * CLOSED. I would rather refcount the import and free it after
72  * disconnection like we do with exports. To do that, the client_obd
73  * will need to save the peer info somewhere other than in the import,
74  * though. */
75 int ptlrpc_init_import(struct obd_import *imp)
76 {
77         spin_lock(&imp->imp_lock);
78
79         imp->imp_generation++;
80         imp->imp_state =  LUSTRE_IMP_NEW;
81
82         spin_unlock(&imp->imp_lock);
83
84         return 0;
85 }
86 EXPORT_SYMBOL(ptlrpc_init_import);
87
88 #define UUID_STR "_UUID"
89 static void deuuidify(char *uuid, const char *prefix, char **uuid_start,
90                       int *uuid_len)
91 {
92         *uuid_start = !prefix || strncmp(uuid, prefix, strlen(prefix))
93                 ? uuid : uuid + strlen(prefix);
94
95         *uuid_len = strlen(*uuid_start);
96
97         if (*uuid_len < strlen(UUID_STR))
98                 return;
99
100         if (!strncmp(*uuid_start + *uuid_len - strlen(UUID_STR),
101                     UUID_STR, strlen(UUID_STR)))
102                 *uuid_len -= strlen(UUID_STR);
103 }
104
105 /* Returns true if import was FULL, false if import was already not
106  * connected.
107  * @imp - import to be disconnected
108  * @conn_cnt - connection count (epoch) of the request that timed out
109  *             and caused the disconnection.  In some cases, multiple
110  *             inflight requests can fail to a single target (e.g. OST
111  *             bulk requests) and if one has already caused a reconnection
112  *             (increasing the import->conn_cnt) the older failure should
113  *             not also cause a reconnection.  If zero it forces a reconnect.
114  */
115 int ptlrpc_set_import_discon(struct obd_import *imp, __u32 conn_cnt)
116 {
117         int rc = 0;
118
119         spin_lock(&imp->imp_lock);
120
121         if (imp->imp_state == LUSTRE_IMP_FULL &&
122             (conn_cnt == 0 || conn_cnt == imp->imp_conn_cnt)) {
123                 char *target_start;
124                 int   target_len;
125
126                 deuuidify(obd2cli_tgt(imp->imp_obd), NULL,
127                           &target_start, &target_len);
128                 if (imp->imp_replayable) {
129                         LCONSOLE_WARN("%s: Connection to service %.*s via nid "
130                                "%s was lost; in progress operations using this "
131                                "service will wait for recovery to complete.\n",
132                                imp->imp_obd->obd_name, target_len, target_start,
133                                libcfs_nid2str(imp->imp_connection->c_peer.nid));
134                 } else {
135                         LCONSOLE_ERROR("%s: Connection to service %.*s via nid "
136                                "%s was lost; in progress operations using this "
137                                "service will fail.\n",
138                                imp->imp_obd->obd_name, target_len, target_start,
139                                libcfs_nid2str(imp->imp_connection->c_peer.nid));
140                 }
141                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_DISCON);
142                 spin_unlock(&imp->imp_lock);
143     
144                 if (obd_dump_on_timeout)
145                         libcfs_debug_dumplog();
146
147                 obd_import_event(imp->imp_obd, imp, IMP_EVENT_DISCON);
148                 rc = 1;
149         } else {
150                 spin_unlock(&imp->imp_lock);
151                 CDEBUG(D_HA, "%s: import %p already %s (conn %u, was %u): %s\n",
152                        imp->imp_client->cli_name, imp,
153                        (imp->imp_state == LUSTRE_IMP_FULL &&
154                         imp->imp_conn_cnt > conn_cnt) ?
155                        "reconnected" : "not connected", imp->imp_conn_cnt,
156                        conn_cnt, ptlrpc_import_state_name(imp->imp_state));
157         }
158
159         return rc;
160 }
161
162 /*
163  * This acts as a barrier; all existing requests are rejected, and
164  * no new requests will be accepted until the import is valid again.
165  */
166 void ptlrpc_deactivate_import(struct obd_import *imp)
167 {
168         ENTRY;
169
170         spin_lock(&imp->imp_lock);
171         CDEBUG(D_HA, "setting import %s INVALID\n", obd2cli_tgt(imp->imp_obd));
172         imp->imp_invalid = 1;
173         imp->imp_generation++;
174         spin_unlock(&imp->imp_lock);
175
176         ptlrpc_abort_inflight(imp);
177         obd_import_event(imp->imp_obd, imp, IMP_EVENT_INACTIVE);
178 }
179
180 /*
181  * This function will invalidate the import, if necessary, then block
182  * for all the RPC completions, and finally notify the obd to
183  * invalidate its state (ie cancel locks, clear pending requests,
184  * etc).
185  */
186 void ptlrpc_invalidate_import(struct obd_import *imp)
187 {
188         struct l_wait_info lwi;
189         int rc;
190
191         if (!imp->imp_invalid)
192                 ptlrpc_deactivate_import(imp);
193
194         LASSERT(imp->imp_invalid);
195
196         /* wait for all requests to error out and call completion callbacks */
197         lwi = LWI_TIMEOUT_INTERVAL(cfs_timeout_cap(cfs_time_seconds(obd_timeout)), 
198                                    HZ, NULL, NULL);
199         rc = l_wait_event(imp->imp_recovery_waitq,
200                           (atomic_read(&imp->imp_inflight) == 0),
201                           &lwi);
202
203         if (rc)
204                 CDEBUG(D_HA, "%s: rc = %d waiting for callback (%d != 0)\n",
205                        obd2cli_tgt(imp->imp_obd), rc,
206                        atomic_read(&imp->imp_inflight));
207
208         obd_import_event(imp->imp_obd, imp, IMP_EVENT_INVALIDATE);
209 }
210
211 /* unset imp_invalid */
212 void ptlrpc_activate_import(struct obd_import *imp)
213 {
214         struct obd_device *obd = imp->imp_obd;
215
216         spin_lock(&imp->imp_lock);
217         imp->imp_invalid = 0;
218         spin_unlock(&imp->imp_lock);
219
220         obd_import_event(obd, imp, IMP_EVENT_ACTIVE);
221 }
222
223 void ptlrpc_fail_import(struct obd_import *imp, __u32 conn_cnt)
224 {
225         ENTRY;
226
227         LASSERT(!imp->imp_dlm_fake);
228
229         if (ptlrpc_set_import_discon(imp, conn_cnt)) {
230                 if (!imp->imp_replayable) {
231                         CDEBUG(D_HA, "import %s@%s for %s not replayable, "
232                                "auto-deactivating\n",
233                                obd2cli_tgt(imp->imp_obd),
234                                imp->imp_connection->c_remote_uuid.uuid,
235                                imp->imp_obd->obd_name);
236                         ptlrpc_deactivate_import(imp);
237                 }
238
239                 CDEBUG(D_HA, "%s: waking up pinger\n",
240                        obd2cli_tgt(imp->imp_obd));
241
242                 spin_lock(&imp->imp_lock);
243                 imp->imp_force_verify = 1;
244                 spin_unlock(&imp->imp_lock);
245
246                 ptlrpc_pinger_wake_up();
247         }
248         EXIT;
249 }
250
251 static int import_select_connection(struct obd_import *imp)
252 {
253         struct obd_import_conn *imp_conn = NULL, *conn;
254         struct obd_export *dlmexp;
255         ENTRY;
256
257         spin_lock(&imp->imp_lock);
258
259         if (list_empty(&imp->imp_conn_list)) {
260                 CERROR("%s: no connections available\n",
261                         imp->imp_obd->obd_name);
262                 spin_unlock(&imp->imp_lock);
263                 RETURN(-EINVAL);
264         }
265
266         list_for_each_entry(conn, &imp->imp_conn_list, oic_item) {
267                 CDEBUG(D_HA, "%s: connect to NID %s last attempt "LPU64"\n",
268                        imp->imp_obd->obd_name,
269                        libcfs_nid2str(conn->oic_conn->c_peer.nid),
270                        conn->oic_last_attempt);
271                 /* Throttle the reconnect rate to once per RECONNECT_INTERVAL */
272                 if (cfs_time_before_64(conn->oic_last_attempt + 
273                                        RECONNECT_INTERVAL * HZ,
274                                        cfs_time_current_64())) {
275                         /* If we have never tried this connection since the
276                            the last successful attempt, go with this one */
277                         if (cfs_time_before_64(conn->oic_last_attempt,
278                                                imp->imp_last_success_conn)) {
279                                 imp_conn = conn;
280                                 break;
281                         }
282
283                         /* Both of these connections have already been tried
284                            since the last successful connection; just choose the
285                            least recently used */
286                         if (!imp_conn)
287                                 imp_conn = conn;
288                         else if (cfs_time_before_64(conn->oic_last_attempt,
289                                                     imp_conn->oic_last_attempt))
290                                 imp_conn = conn;
291                 }
292         }
293
294         /* if not found, simply choose the current one */
295         if (!imp_conn) {
296                 LASSERT(imp->imp_conn_current);
297                 imp_conn = imp->imp_conn_current;
298         }
299         LASSERT(imp_conn->oic_conn);
300
301         imp_conn->oic_last_attempt = cfs_time_current_64();
302
303         /* switch connection, don't mind if it's same as the current one */
304         if (imp->imp_connection)
305                 ptlrpc_put_connection(imp->imp_connection);
306         imp->imp_connection = ptlrpc_connection_addref(imp_conn->oic_conn);
307
308         dlmexp =  class_conn2export(&imp->imp_dlm_handle);
309         LASSERT(dlmexp != NULL);
310         if (dlmexp->exp_connection)
311                 ptlrpc_put_connection(dlmexp->exp_connection);
312         dlmexp->exp_connection = ptlrpc_connection_addref(imp_conn->oic_conn);
313         class_export_put(dlmexp);
314
315         if (imp->imp_conn_current != imp_conn) {
316                 if (imp->imp_conn_current)
317                         LCONSOLE_INFO("Changing connection for %s to %s/%s\n",
318                                       imp->imp_obd->obd_name,
319                                       imp_conn->oic_uuid.uuid,
320                                       libcfs_nid2str(imp_conn->oic_conn->c_peer.nid));
321                 imp->imp_conn_current = imp_conn;
322         }
323
324         CDEBUG(D_HA, "%s: import %p using connection %s/%s\n",
325                imp->imp_obd->obd_name, imp, imp_conn->oic_uuid.uuid,
326                libcfs_nid2str(imp_conn->oic_conn->c_peer.nid));
327
328         spin_unlock(&imp->imp_lock);
329
330         RETURN(0);
331 }
332
333 int ptlrpc_connect_import(struct obd_import *imp, char *new_uuid)
334 {
335         struct obd_device *obd = imp->imp_obd;
336         int initial_connect = 0;
337         int rc;
338         __u64 committed_before_reconnect = 0;
339         struct ptlrpc_request *request;
340         int size[] = { sizeof(struct ptlrpc_body),
341                        sizeof(imp->imp_obd->u.cli.cl_target_uuid),
342                        sizeof(obd->obd_uuid),
343                        sizeof(imp->imp_dlm_handle),
344                        sizeof(imp->imp_connect_data) };
345         char *tmp[] = { NULL,
346                         obd2cli_tgt(imp->imp_obd),
347                         obd->obd_uuid.uuid,
348                         (char *)&imp->imp_dlm_handle,
349                         (char *)&imp->imp_connect_data };
350         struct ptlrpc_connect_async_args *aa;
351
352         ENTRY;
353         spin_lock(&imp->imp_lock);
354         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
355                 spin_unlock(&imp->imp_lock);
356                 CERROR("can't connect to a closed import\n");
357                 RETURN(-EINVAL);
358         } else if (imp->imp_state == LUSTRE_IMP_FULL) {
359                 spin_unlock(&imp->imp_lock);
360                 CERROR("already connected\n");
361                 RETURN(0);
362         } else if (imp->imp_state == LUSTRE_IMP_CONNECTING) {
363                 spin_unlock(&imp->imp_lock);
364                 CERROR("already connecting\n");
365                 RETURN(-EALREADY);
366         }
367
368         IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CONNECTING);
369
370         imp->imp_conn_cnt++;
371         imp->imp_resend_replay = 0;
372
373         if (!lustre_handle_is_used(&imp->imp_remote_handle))
374                 initial_connect = 1;
375         else
376                 committed_before_reconnect = imp->imp_peer_committed_transno;
377
378         spin_unlock(&imp->imp_lock);
379
380         if (new_uuid) {
381                 struct obd_uuid uuid;
382
383                 obd_str2uuid(&uuid, new_uuid);
384                 rc = import_set_conn_priority(imp, &uuid);
385                 if (rc)
386                         GOTO(out, rc);
387         }
388
389         rc = import_select_connection(imp);
390         if (rc)
391                 GOTO(out, rc);
392
393         /* last in connection list */
394         if (imp->imp_conn_current->oic_item.next == &imp->imp_conn_list) {
395                 if (imp->imp_initial_recov_bk && initial_connect) {
396                         CDEBUG(D_HA, "Last connection attempt (%d) for %s\n",
397                                imp->imp_conn_cnt, obd2cli_tgt(imp->imp_obd));
398                         /* Don't retry if connect fails */
399                         rc = 0;
400                         obd_set_info_async(obd->obd_self_export,
401                                            strlen(KEY_INIT_RECOV),
402                                            KEY_INIT_RECOV,
403                                            sizeof(rc), &rc, NULL);
404                 }
405                 if (imp->imp_recon_bk) {
406                         CDEBUG(D_HA, "Last reconnection attempt (%d) for %s\n",
407                                imp->imp_conn_cnt, obd2cli_tgt(imp->imp_obd));
408                         imp->imp_last_recon = 1;
409                 }
410         }
411
412         /* Reset connect flags to the originally requested flags, in case
413          * the server is updated on-the-fly we will get the new features. */
414         imp->imp_connect_data.ocd_connect_flags = imp->imp_connect_flags_orig;
415         rc = obd_reconnect(imp->imp_obd->obd_self_export, obd,
416                            &obd->obd_uuid, &imp->imp_connect_data);
417         if (rc)
418                 GOTO(out, rc);
419
420         request = ptlrpc_prep_req(imp, LUSTRE_OBD_VERSION, imp->imp_connect_op,
421                                   5, size, tmp);
422         if (!request)
423                 GOTO(out, rc = -ENOMEM);
424
425 #ifndef __KERNEL__
426         lustre_msg_add_op_flags(request->rq_reqmsg, MSG_CONNECT_LIBCLIENT);
427 #endif
428         lustre_msg_add_op_flags(request->rq_reqmsg, MSG_CONNECT_NEXT_VER);
429
430         request->rq_send_state = LUSTRE_IMP_CONNECTING;
431         /* Allow a slightly larger reply for future growth compatibility */
432         size[REPLY_REC_OFF] = sizeof(struct obd_connect_data) +
433                               16 * sizeof(__u64);
434         ptlrpc_req_set_repsize(request, 2, size);
435         request->rq_interpret_reply = ptlrpc_connect_interpret;
436
437         CLASSERT(sizeof (*aa) <= sizeof (request->rq_async_args));
438         aa = (struct ptlrpc_connect_async_args *)&request->rq_async_args;
439         memset(aa, 0, sizeof *aa);
440
441         aa->pcaa_peer_committed = committed_before_reconnect;
442         aa->pcaa_initial_connect = initial_connect;
443
444         if (aa->pcaa_initial_connect) {
445                 imp->imp_replayable = 1;
446                 /* On an initial connect, we don't know which one of a
447                    failover server pair is up.  Don't wait long. */
448 #ifdef CRAY_XT3
449                 request->rq_timeout = max((int)(obd_timeout / 2), 5);
450 #else
451                 request->rq_timeout = max((int)(obd_timeout / 20), 5);
452 #endif
453         }
454
455         DEBUG_REQ(D_RPCTRACE, request, "(re)connect request");
456         ptlrpcd_add_req(request);
457         rc = 0;
458 out:
459         if (rc != 0) {
460                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
461         }
462
463         RETURN(rc);
464 }
465 EXPORT_SYMBOL(ptlrpc_connect_import);
466
467 static void ptlrpc_maybe_ping_import_soon(struct obd_import *imp)
468 {
469 #ifdef __KERNEL__
470         struct obd_import_conn *imp_conn;
471 #endif
472         int wake_pinger = 0;
473
474         ENTRY;
475
476         spin_lock(&imp->imp_lock);
477         if (list_empty(&imp->imp_conn_list))
478                 GOTO(unlock, 0);
479
480 #ifdef __KERNEL__
481         imp_conn = list_entry(imp->imp_conn_list.prev,
482                               struct obd_import_conn,
483                               oic_item);
484
485         if (imp->imp_conn_current != imp_conn) {
486                 ptlrpc_ping_import_soon(imp);
487                 wake_pinger = 1;
488         }
489
490 #else
491         /* liblustre has no pinger thead, so we wakup pinger anyway */
492         wake_pinger = 1;
493 #endif 
494  unlock:
495         spin_unlock(&imp->imp_lock);
496
497         if (wake_pinger)
498                 ptlrpc_pinger_wake_up();
499
500         EXIT;
501 }
502
503 static int ptlrpc_connect_interpret(struct ptlrpc_request *request,
504                                     void * data, int rc)
505 {
506         struct ptlrpc_connect_async_args *aa = data;
507         struct obd_import *imp = request->rq_import;
508         struct client_obd *cli = &imp->imp_obd->u.cli;
509         struct lustre_handle old_hdl;
510         int msg_flags;
511         ENTRY;
512
513         spin_lock(&imp->imp_lock);
514         if (imp->imp_state == LUSTRE_IMP_CLOSED) {
515                 spin_unlock(&imp->imp_lock);
516                 RETURN(0);
517         }
518         spin_unlock(&imp->imp_lock);
519
520         if (rc)
521                 GOTO(out, rc);
522
523         LASSERT(imp->imp_conn_current);
524
525         msg_flags = lustre_msg_get_op_flags(request->rq_repmsg);
526
527         /* All imports are pingable */
528         imp->imp_pingable = 1;
529
530         if (aa->pcaa_initial_connect) {
531                 if (msg_flags & MSG_CONNECT_REPLAYABLE) {
532                         CDEBUG(D_HA, "connected to replayable target: %s\n",
533                                obd2cli_tgt(imp->imp_obd));
534                         imp->imp_replayable = 1;
535                 } else {
536                         imp->imp_replayable = 0;
537                 }
538
539                 if (msg_flags & MSG_CONNECT_NEXT_VER) {
540                         imp->imp_msg_magic = LUSTRE_MSG_MAGIC_V2;
541                         CDEBUG(D_RPCTRACE, "connect to %s with lustre_msg_v2\n",
542                                obd2cli_tgt(imp->imp_obd));
543                 } else {
544                         CDEBUG(D_RPCTRACE, "connect to %s with lustre_msg_v1\n",
545                                obd2cli_tgt(imp->imp_obd));
546                 }
547
548                 imp->imp_remote_handle =
549                                 *lustre_msg_get_handle(request->rq_repmsg);
550
551                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
552                 GOTO(finish, rc = 0);
553         }
554
555         /* Determine what recovery state to move the import to. */
556         if (MSG_CONNECT_RECONNECT & msg_flags) {
557                 memset(&old_hdl, 0, sizeof(old_hdl));
558                 if (!memcmp(&old_hdl, lustre_msg_get_handle(request->rq_repmsg),
559                             sizeof (old_hdl))) {
560                         CERROR("%s@%s didn't like our handle "LPX64
561                                ", failed\n", obd2cli_tgt(imp->imp_obd),
562                                imp->imp_connection->c_remote_uuid.uuid,
563                                imp->imp_dlm_handle.cookie);
564                         GOTO(out, rc = -ENOTCONN);
565                 }
566
567                 if (memcmp(&imp->imp_remote_handle,
568                            lustre_msg_get_handle(request->rq_repmsg),
569                            sizeof(imp->imp_remote_handle))) {
570                         int level = D_ERROR;
571                         /* Old MGC can reconnect to a restarted MGS */
572                         if (strcmp(imp->imp_obd->obd_type->typ_name,
573                                    LUSTRE_MGC_NAME) == 0) {
574                                 level = D_CONFIG;
575                         }
576                         CDEBUG(level, 
577                                "%s@%s changed handle from "LPX64" to "LPX64
578                                "; copying, but this may foreshadow disaster\n",
579                                obd2cli_tgt(imp->imp_obd),
580                                imp->imp_connection->c_remote_uuid.uuid,
581                                imp->imp_remote_handle.cookie,
582                                lustre_msg_get_handle(request->rq_repmsg)->
583                                         cookie);
584                         imp->imp_remote_handle =
585                                      *lustre_msg_get_handle(request->rq_repmsg);
586                 } else {
587                         CDEBUG(D_HA, "reconnected to %s@%s after partition\n",
588                                obd2cli_tgt(imp->imp_obd),
589                                imp->imp_connection->c_remote_uuid.uuid);
590                 }
591
592                 if (imp->imp_invalid) {
593                         IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
594                 } else if (MSG_CONNECT_RECOVERING & msg_flags) {
595                         CDEBUG(D_HA, "%s: reconnected to %s during replay\n",
596                                imp->imp_obd->obd_name,
597                                obd2cli_tgt(imp->imp_obd));
598                         imp->imp_resend_replay = 1;
599                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY);
600                 } else {
601                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
602                 }
603         } else if ((MSG_CONNECT_RECOVERING & msg_flags) && !imp->imp_invalid) {
604                 LASSERT(imp->imp_replayable);
605                 imp->imp_remote_handle =
606                                 *lustre_msg_get_handle(request->rq_repmsg);
607                 imp->imp_last_replay_transno = 0;
608                 IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY);
609         } else {
610                 imp->imp_remote_handle =
611                                 *lustre_msg_get_handle(request->rq_repmsg);
612                 IMPORT_SET_STATE(imp, LUSTRE_IMP_EVICTED);
613         }
614
615         /* Sanity checks for a reconnected import. */
616         if (!(imp->imp_replayable) != !(msg_flags & MSG_CONNECT_REPLAYABLE)) {
617                 CERROR("imp_replayable flag does not match server "
618                        "after reconnect. We should LBUG right here.\n");
619         }
620
621         if (lustre_msg_get_last_committed(request->rq_repmsg) <
622             aa->pcaa_peer_committed) {
623                 CERROR("%s went back in time (transno "LPD64
624                        " was previously committed, server now claims "LPD64
625                        ")!  See https://bugzilla.clusterfs.com/"
626                        "long_list.cgi?buglist=9646\n",
627                        obd2cli_tgt(imp->imp_obd), aa->pcaa_peer_committed,
628                        lustre_msg_get_last_committed(request->rq_repmsg));
629         }
630
631 finish:
632         rc = ptlrpc_import_recovery_state_machine(imp);
633         if (rc != 0) {
634                 if (rc == -ENOTCONN) {
635                         CDEBUG(D_HA, "evicted/aborted by %s@%s during recovery;"
636                                "invalidating and reconnecting\n",
637                                obd2cli_tgt(imp->imp_obd),
638                                imp->imp_connection->c_remote_uuid.uuid);
639                         ptlrpc_connect_import(imp, NULL);
640                         RETURN(0);
641                 }
642         } else {
643                 struct obd_connect_data *ocd;
644                 struct obd_export *exp;
645
646                 ocd = lustre_swab_repbuf(request, REPLY_REC_OFF, sizeof(*ocd),
647                                          lustre_swab_connect);
648
649                 spin_lock(&imp->imp_lock);
650                 list_del(&imp->imp_conn_current->oic_item);
651                 list_add(&imp->imp_conn_current->oic_item, &imp->imp_conn_list);
652                 imp->imp_last_success_conn =
653                         imp->imp_conn_current->oic_last_attempt;
654
655                 if (ocd == NULL) {
656                         spin_unlock(&imp->imp_lock);
657                         CERROR("Wrong connect data from server\n");
658                         rc = -EPROTO;
659                         GOTO(out, rc);
660                 }
661
662                 imp->imp_connect_data = *ocd;
663
664                 exp = class_conn2export(&imp->imp_dlm_handle);
665                 spin_unlock(&imp->imp_lock);
666
667                 /* check that server granted subset of flags we asked for. */
668                 LASSERTF((ocd->ocd_connect_flags &
669                           imp->imp_connect_flags_orig) ==
670                          ocd->ocd_connect_flags, LPX64" != "LPX64,
671                          imp->imp_connect_flags_orig, ocd->ocd_connect_flags);
672
673                 if (!exp) {
674                         /* This could happen if export is cleaned during the 
675                            connect attempt */
676                         spin_unlock(&imp->imp_lock);
677                         CERROR("Missing export for %s\n", 
678                                imp->imp_obd->obd_name);
679                         GOTO(out, rc = -ENODEV);
680                 }
681                 exp->exp_connect_flags = ocd->ocd_connect_flags;
682                 class_export_put(exp);
683
684                 obd_import_event(imp->imp_obd, imp, IMP_EVENT_OCD);
685
686                 if (!ocd->ocd_ibits_known &&
687                     ocd->ocd_connect_flags & OBD_CONNECT_IBITS)
688                         CERROR("Inodebits aware server returned zero compatible"
689                                " bits?\n");
690
691                 if ((ocd->ocd_connect_flags & OBD_CONNECT_VERSION) &&
692                     (ocd->ocd_version > LUSTRE_VERSION_CODE +
693                                         LUSTRE_VERSION_OFFSET_WARN ||
694                      ocd->ocd_version < LUSTRE_VERSION_CODE -
695                                         LUSTRE_VERSION_OFFSET_WARN)) {
696                         /* Sigh, some compilers do not like #ifdef in the middle
697                            of macro arguments */
698 #ifdef __KERNEL__
699                         const char *older =
700                                 "older.  Consider upgrading this client";
701 #else
702                         const char *older =
703                                 "older.  Consider recompiling this application";
704 #endif
705                         const char *newer = "newer than client version";
706
707                         LCONSOLE_WARN("Server %s version (%d.%d.%d.%d) "
708                                       "is much %s (%s)\n",
709                                       obd2cli_tgt(imp->imp_obd),
710                                       OBD_OCD_VERSION_MAJOR(ocd->ocd_version),
711                                       OBD_OCD_VERSION_MINOR(ocd->ocd_version),
712                                       OBD_OCD_VERSION_PATCH(ocd->ocd_version),
713                                       OBD_OCD_VERSION_FIX(ocd->ocd_version),
714                                       ocd->ocd_version > LUSTRE_VERSION_CODE ?
715                                       newer : older, LUSTRE_VERSION_STRING);
716                 }
717
718                 if (ocd->ocd_connect_flags & OBD_CONNECT_BRW_SIZE) {
719                         cli->cl_max_pages_per_rpc = 
720                                 ocd->ocd_brw_size >> CFS_PAGE_SHIFT;
721                 }
722
723                 LASSERT((cli->cl_max_pages_per_rpc <= PTLRPC_MAX_BRW_PAGES) &&
724                         (cli->cl_max_pages_per_rpc > 0));
725         }
726
727  out:
728         if (rc != 0) {
729                 IMPORT_SET_STATE(imp, LUSTRE_IMP_DISCON);
730                 if (aa->pcaa_initial_connect && !imp->imp_initial_recov)
731                         ptlrpc_deactivate_import(imp);
732
733                 if (imp->imp_recon_bk && imp->imp_last_recon) {
734                         /* Give up trying to reconnect */
735                         imp->imp_obd->obd_no_recov = 1;
736                         ptlrpc_deactivate_import(imp);
737                 }
738
739                 if (rc == -EPROTO) {
740                         struct obd_connect_data *ocd;
741                         ocd = lustre_swab_repbuf(request, REPLY_REC_OFF,
742                                                  sizeof *ocd,
743                                                  lustre_swab_connect);
744                         if (ocd &&
745                             (ocd->ocd_connect_flags & OBD_CONNECT_VERSION) &&
746                             (ocd->ocd_version != LUSTRE_VERSION_CODE)) {
747                            /* Actually servers are only supposed to refuse
748                               connection from liblustre clients, so we should
749                               never see this from VFS context */
750                                 LCONSOLE_ERROR("Server %s version (%d.%d.%d.%d)"
751                                         " refused connection from this client "
752                                         "with an incompatible version (%s).  "
753                                         "Client must be recompiled\n",
754                                         obd2cli_tgt(imp->imp_obd),
755                                         OBD_OCD_VERSION_MAJOR(ocd->ocd_version),
756                                         OBD_OCD_VERSION_MINOR(ocd->ocd_version),
757                                         OBD_OCD_VERSION_PATCH(ocd->ocd_version),
758                                         OBD_OCD_VERSION_FIX(ocd->ocd_version),
759                                         LUSTRE_VERSION_STRING);
760                                 ptlrpc_deactivate_import(imp);
761                                 IMPORT_SET_STATE(imp, LUSTRE_IMP_CLOSED);
762                         }
763                         RETURN(-EPROTO);
764                 }
765
766                 ptlrpc_maybe_ping_import_soon(imp);
767
768                 CDEBUG(D_HA, "recovery of %s on %s failed (%d)\n",
769                        obd2cli_tgt(imp->imp_obd),
770                        (char *)imp->imp_connection->c_remote_uuid.uuid, rc);
771         }
772         
773         imp->imp_last_recon = 0;
774
775         cfs_waitq_signal(&imp->imp_recovery_waitq);
776         RETURN(rc);
777 }
778
779 static int completed_replay_interpret(struct ptlrpc_request *req,
780                                     void * data, int rc)
781 {
782         ENTRY;
783         atomic_dec(&req->rq_import->imp_replay_inflight);
784         if (req->rq_status == 0) {
785                 ptlrpc_import_recovery_state_machine(req->rq_import);
786         } else {
787                 CDEBUG(D_HA, "%s: LAST_REPLAY message error: %d, "
788                        "reconnecting\n",
789                        req->rq_import->imp_obd->obd_name, req->rq_status);
790                 ptlrpc_connect_import(req->rq_import, NULL);
791         }
792
793         RETURN(0);
794 }
795
796 static int signal_completed_replay(struct obd_import *imp)
797 {
798         struct ptlrpc_request *req;
799         ENTRY;
800
801         LASSERT(atomic_read(&imp->imp_replay_inflight) == 0);
802         atomic_inc(&imp->imp_replay_inflight);
803
804         req = ptlrpc_prep_req(imp, LUSTRE_OBD_VERSION, OBD_PING, 1, NULL, NULL);
805         if (!req) {
806                 atomic_dec(&imp->imp_replay_inflight);
807                 RETURN(-ENOMEM);
808         }
809
810         ptlrpc_req_set_repsize(req, 1, NULL);
811         req->rq_send_state = LUSTRE_IMP_REPLAY_WAIT;
812         lustre_msg_add_flags(req->rq_reqmsg, MSG_LAST_REPLAY);
813         req->rq_timeout *= 3;
814         req->rq_interpret_reply = completed_replay_interpret;
815
816         ptlrpcd_add_req(req);
817         RETURN(0);
818 }
819
820 #ifdef __KERNEL__
821 static int ptlrpc_invalidate_import_thread(void *data)
822 {
823         struct obd_import *imp = data;
824
825         ENTRY;
826
827         ptlrpc_daemonize("ll_imp_inval");
828         
829         CDEBUG(D_HA, "thread invalidate import %s to %s@%s\n",
830                imp->imp_obd->obd_name, obd2cli_tgt(imp->imp_obd),
831                imp->imp_connection->c_remote_uuid.uuid);
832
833         ptlrpc_invalidate_import(imp);
834
835         if (obd_dump_on_eviction) {
836                 CERROR("dump the log upon eviction\n");
837                 libcfs_debug_dumplog();
838         }
839
840         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
841         ptlrpc_import_recovery_state_machine(imp);
842
843         RETURN(0);
844 }
845 #endif
846
847 int ptlrpc_import_recovery_state_machine(struct obd_import *imp)
848 {
849         int rc = 0;
850         int inflight;
851         char *target_start;
852         int target_len;
853
854         ENTRY;
855         if (imp->imp_state == LUSTRE_IMP_EVICTED) {
856                 deuuidify(obd2cli_tgt(imp->imp_obd), NULL,
857                           &target_start, &target_len);
858                 /* Don't care about MGC eviction */
859                 if (strcmp(imp->imp_obd->obd_type->typ_name,
860                            LUSTRE_MGC_NAME) != 0) {
861                         LCONSOLE_ERROR("This client was evicted by %.*s; "
862                                        "in progress operations using this "
863                                        "service will fail.\n",
864                                        target_len, target_start);
865                 }
866                 CDEBUG(D_HA, "evicted from %s@%s; invalidating\n",
867                        obd2cli_tgt(imp->imp_obd),
868                        imp->imp_connection->c_remote_uuid.uuid);
869
870 #ifdef __KERNEL__
871                 rc = cfs_kernel_thread(ptlrpc_invalidate_import_thread, imp,
872                                    CLONE_VM | CLONE_FILES);
873                 if (rc < 0)
874                         CERROR("error starting invalidate thread: %d\n", rc);
875                 else
876                         rc = 0;
877                 RETURN(rc);
878 #else
879                 ptlrpc_invalidate_import(imp);
880
881                 IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
882 #endif
883         }
884
885         if (imp->imp_state == LUSTRE_IMP_REPLAY) {
886                 CDEBUG(D_HA, "replay requested by %s\n",
887                        obd2cli_tgt(imp->imp_obd));
888                 rc = ptlrpc_replay_next(imp, &inflight);
889                 if (inflight == 0 &&
890                     atomic_read(&imp->imp_replay_inflight) == 0) {
891                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_LOCKS);
892                         rc = ldlm_replay_locks(imp);
893                         if (rc)
894                                 GOTO(out, rc);
895                 }
896                 rc = 0;
897         }
898
899         if (imp->imp_state == LUSTRE_IMP_REPLAY_LOCKS) {
900                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
901                         IMPORT_SET_STATE(imp, LUSTRE_IMP_REPLAY_WAIT);
902                         rc = signal_completed_replay(imp);
903                         if (rc)
904                                 GOTO(out, rc);
905                 }
906
907         }
908
909         if (imp->imp_state == LUSTRE_IMP_REPLAY_WAIT) {
910                 if (atomic_read(&imp->imp_replay_inflight) == 0) {
911                         IMPORT_SET_STATE(imp, LUSTRE_IMP_RECOVER);
912                 }
913         }
914
915         if (imp->imp_state == LUSTRE_IMP_RECOVER) {
916                 CDEBUG(D_HA, "reconnected to %s@%s\n",
917                        obd2cli_tgt(imp->imp_obd),
918                        imp->imp_connection->c_remote_uuid.uuid);
919
920                 rc = ptlrpc_resend(imp);
921                 if (rc)
922                         GOTO(out, rc);
923                 IMPORT_SET_STATE(imp, LUSTRE_IMP_FULL);
924                 ptlrpc_activate_import(imp);
925
926                 deuuidify(obd2cli_tgt(imp->imp_obd), NULL,
927                           &target_start, &target_len);
928                 LCONSOLE_INFO("%s: Connection restored to service %.*s "
929                               "using nid %s.\n", imp->imp_obd->obd_name,
930                               target_len, target_start,
931                               libcfs_nid2str(imp->imp_connection->c_peer.nid));
932         }
933
934         if (imp->imp_state == LUSTRE_IMP_FULL) {
935                 cfs_waitq_signal(&imp->imp_recovery_waitq);
936                 ptlrpc_wake_delayed(imp);
937         }
938
939  out:
940         RETURN(rc);
941 }
942
943 static int back_to_sleep(void *unused)
944 {
945         return 0;
946 }
947
948 int ptlrpc_disconnect_import(struct obd_import *imp, int noclose)
949 {
950         struct ptlrpc_request *req;
951         int rq_opc, rc = 0;
952         ENTRY;
953
954         switch (imp->imp_connect_op) {
955         case OST_CONNECT: rq_opc = OST_DISCONNECT; break;
956         case MDS_CONNECT: rq_opc = MDS_DISCONNECT; break;
957         case MGS_CONNECT: rq_opc = MGS_DISCONNECT; break;
958         default:
959                 CERROR("don't know how to disconnect from %s (connect_op %d)\n",
960                        obd2cli_tgt(imp->imp_obd), imp->imp_connect_op);
961                 RETURN(-EINVAL);
962         }
963
964         if (ptlrpc_import_in_recovery(imp)) {
965                 struct l_wait_info lwi;
966                 cfs_duration_t timeout = cfs_time_seconds(obd_timeout);
967
968                 lwi = LWI_TIMEOUT_INTR(cfs_timeout_cap(timeout), 
969                                        back_to_sleep, LWI_ON_SIGNAL_NOOP, NULL);
970                 rc = l_wait_event(imp->imp_recovery_waitq,
971                                   !ptlrpc_import_in_recovery(imp), &lwi);
972
973         }
974
975         spin_lock(&imp->imp_lock);
976         if (imp->imp_state != LUSTRE_IMP_FULL)
977                 GOTO(out, 0);
978
979         spin_unlock(&imp->imp_lock);
980
981         req = ptlrpc_prep_req(imp, LUSTRE_OBD_VERSION, rq_opc, 1, NULL, NULL);
982         if (req) {
983                 /* We are disconnecting, do not retry a failed DISCONNECT rpc if
984                  * it fails.  We can get through the above with a down server
985                  * if the client doesn't know the server is gone yet. */
986                 req->rq_no_resend = 1;
987 #ifdef CRAY_XT3
988                 req->rq_timeout = obd_timeout / 3;
989 #else
990                 req->rq_timeout = 5;
991 #endif
992                 IMPORT_SET_STATE(imp, LUSTRE_IMP_CONNECTING);
993                 req->rq_send_state =  LUSTRE_IMP_CONNECTING;
994                 ptlrpc_req_set_repsize(req, 1, NULL);
995                 rc = ptlrpc_queue_wait(req);
996                 ptlrpc_req_finished(req);
997         }
998
999         spin_lock(&imp->imp_lock);
1000 out:
1001         if (noclose) 
1002                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_DISCON);
1003         else
1004                 IMPORT_SET_STATE_NOLOCK(imp, LUSTRE_IMP_CLOSED);
1005         memset(&imp->imp_remote_handle, 0, sizeof(imp->imp_remote_handle));
1006         spin_unlock(&imp->imp_lock);
1007
1008         RETURN(rc);
1009 }
1010