Whamcloud - gitweb
- Convert version to flags -- a few days earlier than I said, but I'll back it
[fs/lustre-release.git] / lustre / ptlrpc / recover.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Portal-RPC reconnection and replay operations, for use in recovery.
5  *
6  * This code is issued under the GNU General Public License.
7  * See the file COPYING in this distribution
8  *
9  * Copryright (C) 1996 Peter J. Braam <braam@stelias.com>
10  * Copryright (C) 1999 Stelias Computing Inc. <braam@stelias.com>
11  * Copryright (C) 1999 Seagate Technology Inc.
12  * Copryright (C) 2001 Mountain View Data, Inc.
13  * Copryright (C) 2002 Cluster File Systems, Inc.
14  *
15  */
16
17 #include <linux/config.h>
18 #include <linux/module.h>
19 #include <linux/kmod.h>
20
21 #define DEBUG_SUBSYSTEM S_RPC
22
23 #include <linux/lustre_ha.h>
24 #include <linux/lustre_net.h>
25 #include <linux/obd.h>
26
27 int ptlrpc_reconnect_import(struct obd_import *imp, int rq_opc)
28 {
29         struct obd_device *obd = imp->imp_obd;
30         struct client_obd *cli = &obd->u.cli;
31         int size[] = { sizeof(cli->cl_target_uuid), sizeof(obd->obd_uuid) };
32         char *tmp[] = {cli->cl_target_uuid, obd->obd_uuid };
33         struct ptlrpc_connection *conn = imp->imp_connection;
34         struct lustre_handle old_hdl;
35         struct ptlrpc_request *request; 
36         struct obd_export *ldlmexp;
37         int rc;
38
39         request = ptlrpc_prep_req(imp, rq_opc, 2, size, tmp);
40         request->rq_level = LUSTRE_CONN_NEW;
41         request->rq_replen = lustre_msg_size(0, NULL);
42         /*
43
44          * This address is the export that represents our client-side LDLM
45          * service (for ASTs).  We should only have one on this list, so we
46          * just grab the first one.
47          *
48          * XXX tear down export, call class_obd_connect?
49          */
50         ldlmexp = list_entry(obd->obd_exports.next, struct obd_export,
51                              exp_obd_chain);
52         request->rq_reqmsg->addr = (__u64)(unsigned long)ldlmexp;
53         request->rq_reqmsg->cookie = ldlmexp->exp_cookie;
54         rc = ptlrpc_queue_wait(request);
55         rc = ptlrpc_check_status(request, rc);
56         if (rc) {
57                 CERROR("cannot connect to %s@%s: rc = %d\n",
58                        cli->cl_target_uuid, conn->c_remote_uuid, rc);
59                 ptlrpc_free_req(request);
60                 GOTO(out_disc, rc = -ENOTCONN);
61         }
62         
63         old_hdl = imp->imp_handle;
64         imp->imp_handle.addr = request->rq_repmsg->addr;
65         imp->imp_handle.cookie = request->rq_repmsg->cookie;
66         CERROR("reconnected to %s@%s (%Lx/%Lx, was %Lx/%Lx)!\n",
67                cli->cl_target_uuid, conn->c_remote_uuid,
68                imp->imp_handle.addr, imp->imp_handle.cookie,
69                old_hdl.addr, old_hdl.cookie);
70         ptlrpc_req_finished(request);
71
72  out_disc:
73         return rc;
74 }
75
76 int ptlrpc_run_recovery_upcall(struct ptlrpc_connection *conn)
77 {
78         char *argv[3];
79         char *envp[3];
80         int rc;
81
82         ENTRY;
83         conn->c_level = LUSTRE_CONN_RECOVD;
84
85         argv[0] = obd_recovery_upcall;
86         argv[1] = conn->c_remote_uuid;
87         argv[2] = NULL;
88
89         envp[0] = "HOME=/";
90         envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin";
91         envp[2] = NULL;
92
93         rc = call_usermodehelper(argv[0], argv, envp);
94         if (rc < 0) {
95                 CERROR("Error invoking recovery upcall %s for %s: %d\n",
96                        argv[0], argv[1], rc);
97                 CERROR("Check /proc/sys/lustre/recovery_upcall?\n");
98         } else {
99                 CERROR("Invoked upcall %s for connection %s\n",
100                        argv[0], argv[1]);
101         }
102
103         /*
104          * We don't want to make this a "failed" recovery, because the system
105          * administrator -- or, perhaps, tester -- may well be able to rescue
106          * things by running the correct upcall.
107          */
108         RETURN(0);
109 }
110
111 #define REPLAY_COMMITTED     0 /* Fully processed (commit + reply) */
112 #define REPLAY_REPLAY        1 /* Forced-replay (e.g. open) */
113 #define REPLAY_RESEND        2 /* Resend required. */
114 #define REPLAY_RESEND_IGNORE 3 /* Resend, ignore the reply (already saw it) */
115 #define REPLAY_RESTART       4 /* Have to restart the call, sorry! */
116
117 static int replay_state(struct ptlrpc_request *req, __u64 last_xid)
118 {
119         /* This request must always be replayed. */
120         if (req->rq_flags & PTL_RPC_FL_REPLAY)
121                 return REPLAY_REPLAY;
122
123         /* Uncommitted request */
124         if (req->rq_xid > last_xid) {
125                 if (req->rq_flags & PTL_RPC_FL_REPLIED) {
126                         /* Saw reply, so resend and ignore new reply. */
127                         return REPLAY_RESEND_IGNORE;
128                 }
129
130                 /* Didn't see reply either, so resend. */
131                 return REPLAY_RESEND;
132         }
133
134         /* This request has been committed and we saw the reply.  Goodbye! */
135         if (req->rq_flags & PTL_RPC_FL_REPLIED)
136                 return REPLAY_COMMITTED;
137
138         /* Request committed, but we didn't see the reply: have to restart. */
139         return REPLAY_RESTART;
140 }
141
142 static char *replay_state2str(int state) {
143         static char *state_strings[] = {
144                 "COMMITTED", "REPLAY", "RESEND", "RESEND_IGNORE", "RESTART"
145         };
146         static char *unknown_state = "UNKNOWN";
147
148         if (state < 0 || 
149             state > (sizeof(state_strings) / sizeof(state_strings[0]))) {
150                 return unknown_state;
151         }
152
153         return state_strings[state];
154 }
155
156 int ptlrpc_replay(struct ptlrpc_connection *conn)
157 {
158         int rc = 0;
159         struct list_head *tmp, *pos;
160         struct ptlrpc_request *req;
161         ENTRY;
162
163         spin_lock(&conn->c_lock);
164
165         CDEBUG(D_HA, "connection %p to %s has last_xid "LPD64"\n",
166                conn, conn->c_remote_uuid, conn->c_last_xid);
167
168         list_for_each(tmp, &conn->c_sending_head) {
169                 int state;
170                 req = list_entry(tmp, struct ptlrpc_request, rq_list);
171                 state = replay_state(req, conn->c_last_xid);
172                 DEBUG_REQ(D_HA, req, "SENDING: %s: ", replay_state2str(state));
173         }
174
175         list_for_each(tmp, &conn->c_delayed_head) {
176                 int state;
177                 req = list_entry(tmp, struct ptlrpc_request, rq_list);
178                 state = replay_state(req, conn->c_last_xid);
179                 DEBUG_REQ(D_HA, req, "DELAYED: ");
180         }
181
182         list_for_each_safe(tmp, pos, &conn->c_sending_head) { 
183                 req = list_entry(tmp, struct ptlrpc_request, rq_list);
184                 
185                 switch (replay_state(req, conn->c_last_xid)) {
186                     case REPLAY_REPLAY:
187                         DEBUG_REQ(D_HA, req, "REPLAY:");
188                         rc = ptlrpc_replay_req(req);
189 #if 0
190 #error We should not hold a spinlock over such a lengthy operation.
191 #error If necessary, drop spinlock, do operation, re-get spinlock, restart loop.
192 #error If we need to avoid re-processint items, then delete them from the list
193 #error as they are replayed and re-add at the tail of this list, so the next
194 #error item to process will always be at the head of the list.
195 #endif
196                         if (rc) {
197                                 CERROR("recovery replay error %d for req %Ld\n",
198                                        rc, req->rq_xid);
199                                 GOTO(out, rc);
200                         }
201                         break;
202
203
204                     case REPLAY_COMMITTED:
205                         DEBUG_REQ(D_HA, req, "COMMITTED:");
206                         /* XXX commit now? */
207                         break;
208
209                     case REPLAY_RESEND_IGNORE:
210                         DEBUG_REQ(D_HA, req, "RESEND_IGNORE:");
211                         rc = ptlrpc_replay_req(req); 
212                         if (rc) {
213                                 CERROR("request resend error %d for req %Ld\n",
214                                        rc, req->rq_xid); 
215                                 GOTO(out, rc);
216                         }
217                         break;
218
219                     case REPLAY_RESTART:
220                         DEBUG_REQ(D_HA, req, "RESTART:");
221                         ptlrpc_restart_req(req);
222                         break;
223
224                     case REPLAY_RESEND:
225                         DEBUG_REQ(D_HA, req, "RESEND:");
226                         ptlrpc_resend_req(req);
227                         break;
228
229                     default:
230                         LBUG();
231                 }
232
233         }
234
235         conn->c_level = LUSTRE_CONN_FULL;
236         recovd_conn_fixed(conn);
237
238         CERROR("recovery complete on conn %p(%s), waking delayed reqs\n",
239                conn, conn->c_remote_uuid);
240         /* Finally, continue processing requests that blocked for recovery. */
241         list_for_each_safe(tmp, pos, &conn->c_delayed_head) { 
242                 req = list_entry(tmp, struct ptlrpc_request, rq_list);
243                 DEBUG_REQ(D_HA, req, "WAKING: ");
244                 ptlrpc_continue_req(req);
245         }
246
247         EXIT;
248  out:
249         spin_unlock(&conn->c_lock);
250         return rc;
251 }