Whamcloud - gitweb
Land b_head_quota onto HEAD (20081116_0105)
[fs/lustre-release.git] / lustre / ldlm / ldlm_lib.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef EXPORT_SYMTAB
38 # define EXPORT_SYMTAB
39 #endif
40 #define DEBUG_SUBSYSTEM S_LDLM
41
42 #ifdef __KERNEL__
43 # include <libcfs/libcfs.h>
44 #else
45 # include <liblustre.h>
46 #endif
47 #include <obd.h>
48 #include <lustre_mds.h>
49 #include <lustre_dlm.h>
50 #include <lustre_net.h>
51 #include <lustre_sec.h>
52 #include "ldlm_internal.h"
53
54 /* @priority: if non-zero, move the selected to the list head
55  * @create: if zero, only search in existed connections
56  */
57 static int import_set_conn(struct obd_import *imp, struct obd_uuid *uuid,
58                            int priority, int create)
59 {
60         struct ptlrpc_connection *ptlrpc_conn;
61         struct obd_import_conn *imp_conn = NULL, *item;
62         int rc = 0;
63         ENTRY;
64
65         if (!create && !priority) {
66                 CDEBUG(D_HA, "Nothing to do\n");
67                 RETURN(-EINVAL);
68         }
69
70         ptlrpc_conn = ptlrpc_uuid_to_connection(uuid);
71         if (!ptlrpc_conn) {
72                 CDEBUG(D_HA, "can't find connection %s\n", uuid->uuid);
73                 RETURN (-ENOENT);
74         }
75
76         if (create) {
77                 OBD_ALLOC(imp_conn, sizeof(*imp_conn));
78                 if (!imp_conn) {
79                         GOTO(out_put, rc = -ENOMEM);
80                 }
81         }
82
83         spin_lock(&imp->imp_lock);
84         list_for_each_entry(item, &imp->imp_conn_list, oic_item) {
85                 if (obd_uuid_equals(uuid, &item->oic_uuid)) {
86                         if (priority) {
87                                 list_del(&item->oic_item);
88                                 list_add(&item->oic_item, &imp->imp_conn_list);
89                                 item->oic_last_attempt = 0;
90                         }
91                         CDEBUG(D_HA, "imp %p@%s: found existing conn %s%s\n",
92                                imp, imp->imp_obd->obd_name, uuid->uuid,
93                                (priority ? ", moved to head" : ""));
94                         spin_unlock(&imp->imp_lock);
95                         GOTO(out_free, rc = 0);
96                 }
97         }
98         /* not found */
99         if (create) {
100                 imp_conn->oic_conn = ptlrpc_conn;
101                 imp_conn->oic_uuid = *uuid;
102                 item->oic_last_attempt = 0;
103                 if (priority)
104                         list_add(&imp_conn->oic_item, &imp->imp_conn_list);
105                 else
106                         list_add_tail(&imp_conn->oic_item, &imp->imp_conn_list);
107                 CDEBUG(D_HA, "imp %p@%s: add connection %s at %s\n",
108                        imp, imp->imp_obd->obd_name, uuid->uuid,
109                        (priority ? "head" : "tail"));
110         } else {
111                 spin_unlock(&imp->imp_lock);
112                 GOTO(out_free, rc = -ENOENT);
113         }
114
115         spin_unlock(&imp->imp_lock);
116         RETURN(0);
117 out_free:
118         if (imp_conn)
119                 OBD_FREE(imp_conn, sizeof(*imp_conn));
120 out_put:
121         ptlrpc_connection_put(ptlrpc_conn);
122         RETURN(rc);
123 }
124
125 int import_set_conn_priority(struct obd_import *imp, struct obd_uuid *uuid)
126 {
127         return import_set_conn(imp, uuid, 1, 0);
128 }
129
130 int client_import_add_conn(struct obd_import *imp, struct obd_uuid *uuid,
131                            int priority)
132 {
133         return import_set_conn(imp, uuid, priority, 1);
134 }
135
136 int client_import_del_conn(struct obd_import *imp, struct obd_uuid *uuid)
137 {
138         struct obd_import_conn *imp_conn;
139         struct obd_export *dlmexp;
140         int rc = -ENOENT;
141         ENTRY;
142
143         spin_lock(&imp->imp_lock);
144         if (list_empty(&imp->imp_conn_list)) {
145                 LASSERT(!imp->imp_connection);
146                 GOTO(out, rc);
147         }
148
149         list_for_each_entry(imp_conn, &imp->imp_conn_list, oic_item) {
150                 if (!obd_uuid_equals(uuid, &imp_conn->oic_uuid))
151                         continue;
152                 LASSERT(imp_conn->oic_conn);
153
154                 /* is current conn? */
155                 if (imp_conn == imp->imp_conn_current) {
156                         LASSERT(imp_conn->oic_conn == imp->imp_connection);
157
158                         if (imp->imp_state != LUSTRE_IMP_CLOSED &&
159                             imp->imp_state != LUSTRE_IMP_DISCON) {
160                                 CERROR("can't remove current connection\n");
161                                 GOTO(out, rc = -EBUSY);
162                         }
163
164                         ptlrpc_connection_put(imp->imp_connection);
165                         imp->imp_connection = NULL;
166
167                         dlmexp = class_conn2export(&imp->imp_dlm_handle);
168                         if (dlmexp && dlmexp->exp_connection) {
169                                 LASSERT(dlmexp->exp_connection ==
170                                         imp_conn->oic_conn);
171                                 ptlrpc_connection_put(dlmexp->exp_connection);
172                                 dlmexp->exp_connection = NULL;
173                         }
174                 }
175
176                 list_del(&imp_conn->oic_item);
177                 ptlrpc_connection_put(imp_conn->oic_conn);
178                 OBD_FREE(imp_conn, sizeof(*imp_conn));
179                 CDEBUG(D_HA, "imp %p@%s: remove connection %s\n",
180                        imp, imp->imp_obd->obd_name, uuid->uuid);
181                 rc = 0;
182                 break;
183         }
184 out:
185         spin_unlock(&imp->imp_lock);
186         if (rc == -ENOENT)
187                 CERROR("connection %s not found\n", uuid->uuid);
188         RETURN(rc);
189 }
190
191 static void destroy_import(struct obd_import *imp)
192 {
193         /* drop security policy instance after all rpc finished/aborted
194          * to let all busy contexts be released. */
195         class_import_get(imp);
196         class_destroy_import(imp);
197         sptlrpc_import_sec_put(imp);
198         class_import_put(imp);
199 }
200
201 /* configure an RPC client OBD device
202  *
203  * lcfg parameters:
204  * 1 - client UUID
205  * 2 - server UUID
206  * 3 - inactive-on-startup
207  */
208 int client_obd_setup(struct obd_device *obddev, struct lustre_cfg *lcfg)
209 {
210         struct client_obd *cli = &obddev->u.cli;
211         struct obd_import *imp;
212         struct obd_uuid server_uuid;
213         int rq_portal, rp_portal, connect_op;
214         char *name = obddev->obd_type->typ_name;
215         int rc;
216         ENTRY;
217
218         /* In a more perfect world, we would hang a ptlrpc_client off of
219          * obd_type and just use the values from there. */
220         if (!strcmp(name, LUSTRE_OSC_NAME)) {
221                 rq_portal = OST_REQUEST_PORTAL;
222                 rp_portal = OSC_REPLY_PORTAL;
223                 connect_op = OST_CONNECT;
224         } else if (!strcmp(name, LUSTRE_MDC_NAME)) {
225                 rq_portal = MDS_REQUEST_PORTAL;
226                 rp_portal = MDC_REPLY_PORTAL;
227                 connect_op = MDS_CONNECT;
228         } else if (!strcmp(name, LUSTRE_MGC_NAME)) {
229                 rq_portal = MGS_REQUEST_PORTAL;
230                 rp_portal = MGC_REPLY_PORTAL;
231                 connect_op = MGS_CONNECT;
232         } else {
233                 CERROR("unknown client OBD type \"%s\", can't setup\n",
234                        name);
235                 RETURN(-EINVAL);
236         }
237
238         if (LUSTRE_CFG_BUFLEN(lcfg, 1) < 1) {
239                 CERROR("requires a TARGET UUID\n");
240                 RETURN(-EINVAL);
241         }
242
243         if (LUSTRE_CFG_BUFLEN(lcfg, 1) > 37) {
244                 CERROR("client UUID must be less than 38 characters\n");
245                 RETURN(-EINVAL);
246         }
247
248         if (LUSTRE_CFG_BUFLEN(lcfg, 2) < 1) {
249                 CERROR("setup requires a SERVER UUID\n");
250                 RETURN(-EINVAL);
251         }
252
253         if (LUSTRE_CFG_BUFLEN(lcfg, 2) > 37) {
254                 CERROR("target UUID must be less than 38 characters\n");
255                 RETURN(-EINVAL);
256         }
257
258         init_rwsem(&cli->cl_sem);
259         sema_init(&cli->cl_mgc_sem, 1);
260         sptlrpc_rule_set_init(&cli->cl_sptlrpc_rset);
261         cli->cl_sec_part = LUSTRE_SP_ANY;
262         cli->cl_conn_count = 0;
263         memcpy(server_uuid.uuid, lustre_cfg_buf(lcfg, 2),
264                min_t(unsigned int, LUSTRE_CFG_BUFLEN(lcfg, 2),
265                      sizeof(server_uuid)));
266
267         cli->cl_dirty = 0;
268         cli->cl_avail_grant = 0;
269         /* FIXME: should limit this for the sum of all cl_dirty_max */
270         cli->cl_dirty_max = OSC_MAX_DIRTY_DEFAULT * 1024 * 1024;
271         if (cli->cl_dirty_max >> CFS_PAGE_SHIFT > num_physpages / 8)
272                 cli->cl_dirty_max = num_physpages << (CFS_PAGE_SHIFT - 3);
273         CFS_INIT_LIST_HEAD(&cli->cl_cache_waiters);
274         CFS_INIT_LIST_HEAD(&cli->cl_loi_ready_list);
275         CFS_INIT_LIST_HEAD(&cli->cl_loi_write_list);
276         CFS_INIT_LIST_HEAD(&cli->cl_loi_read_list);
277         client_obd_list_lock_init(&cli->cl_loi_list_lock);
278         cli->cl_r_in_flight = 0;
279         cli->cl_w_in_flight = 0;
280
281         spin_lock_init(&cli->cl_read_rpc_hist.oh_lock);
282         spin_lock_init(&cli->cl_write_rpc_hist.oh_lock);
283         spin_lock_init(&cli->cl_read_page_hist.oh_lock);
284         spin_lock_init(&cli->cl_write_page_hist.oh_lock);
285         spin_lock_init(&cli->cl_read_offset_hist.oh_lock);
286         spin_lock_init(&cli->cl_write_offset_hist.oh_lock);
287         cfs_waitq_init(&cli->cl_destroy_waitq);
288         atomic_set(&cli->cl_destroy_in_flight, 0);
289 #ifdef ENABLE_CHECKSUM
290         /* Turn on checksumming by default. */
291         cli->cl_checksum = 1;
292         /*
293          * The supported checksum types will be worked out at connect time
294          * Set cl_chksum* to CRC32 for now to avoid returning screwed info
295          * through procfs.
296          */
297         cli->cl_cksum_type = cli->cl_supp_cksum_types = OBD_CKSUM_CRC32;
298 #endif
299         atomic_set(&cli->cl_resends, OSC_DEFAULT_RESENDS);
300
301         /* This value may be changed at connect time in
302            ptlrpc_connect_interpret. */
303         cli->cl_max_pages_per_rpc = min((int)PTLRPC_MAX_BRW_PAGES,
304                                         (int)(1024 * 1024 >> CFS_PAGE_SHIFT));
305
306         if (!strcmp(name, LUSTRE_MDC_NAME)) {
307                 cli->cl_max_rpcs_in_flight = MDC_MAX_RIF_DEFAULT;
308         } else if (num_physpages >> (20 - CFS_PAGE_SHIFT) <= 128 /* MB */) {
309                 cli->cl_max_rpcs_in_flight = 2;
310         } else if (num_physpages >> (20 - CFS_PAGE_SHIFT) <= 256 /* MB */) {
311                 cli->cl_max_rpcs_in_flight = 3;
312         } else if (num_physpages >> (20 - CFS_PAGE_SHIFT) <= 512 /* MB */) {
313                 cli->cl_max_rpcs_in_flight = 4;
314         } else {
315                 cli->cl_max_rpcs_in_flight = OSC_MAX_RIF_DEFAULT;
316         }
317
318         rc = ldlm_get_ref();
319         if (rc) {
320                 CERROR("ldlm_get_ref failed: %d\n", rc);
321                 GOTO(err, rc);
322         }
323
324         ptlrpc_init_client(rq_portal, rp_portal, name,
325                            &obddev->obd_ldlm_client);
326
327         imp = class_new_import(obddev);
328         if (imp == NULL)
329                 GOTO(err_ldlm, rc = -ENOENT);
330         imp->imp_client = &obddev->obd_ldlm_client;
331         imp->imp_connect_op = connect_op;
332         imp->imp_initial_recov = 1;
333         imp->imp_initial_recov_bk = 0;
334         CFS_INIT_LIST_HEAD(&imp->imp_pinger_chain);
335         memcpy(cli->cl_target_uuid.uuid, lustre_cfg_buf(lcfg, 1),
336                LUSTRE_CFG_BUFLEN(lcfg, 1));
337         class_import_put(imp);
338
339         rc = client_import_add_conn(imp, &server_uuid, 1);
340         if (rc) {
341                 CERROR("can't add initial connection\n");
342                 GOTO(err_import, rc);
343         }
344
345         cli->cl_import = imp;
346         /* cli->cl_max_mds_{easize,cookiesize} updated by mdc_init_ea_size() */
347         cli->cl_max_mds_easize = sizeof(struct lov_mds_md_v3);
348         cli->cl_max_mds_cookiesize = sizeof(struct llog_cookie);
349
350         if (LUSTRE_CFG_BUFLEN(lcfg, 3) > 0) {
351                 if (!strcmp(lustre_cfg_string(lcfg, 3), "inactive")) {
352                         CDEBUG(D_HA, "marking %s %s->%s as inactive\n",
353                                name, obddev->obd_name,
354                                cli->cl_target_uuid.uuid);
355                         spin_lock(&imp->imp_lock);
356                         imp->imp_invalid = 1;
357                         spin_unlock(&imp->imp_lock);
358                 }
359         }
360
361         cli->cl_qchk_stat = CL_NOT_QUOTACHECKED;
362
363         RETURN(rc);
364
365 err_import:
366         class_destroy_import(imp);
367 err_ldlm:
368         ldlm_put_ref();
369 err:
370         RETURN(rc);
371
372 }
373
374 int client_obd_cleanup(struct obd_device *obddev)
375 {
376         ENTRY;
377         sptlrpc_rule_set_free(&obddev->u.cli.cl_sptlrpc_rset);
378         ldlm_put_ref();
379         RETURN(0);
380 }
381
382 /* ->o_connect() method for client side (OSC and MDC and MGC) */
383 int client_connect_import(const struct lu_env *env,
384                           struct lustre_handle *dlm_handle,
385                           struct obd_device *obd, struct obd_uuid *cluuid,
386                           struct obd_connect_data *data, void *localdata)
387 {
388         struct client_obd *cli = &obd->u.cli;
389         struct obd_import *imp = cli->cl_import;
390         struct obd_export *exp;
391         struct obd_connect_data *ocd;
392         struct ldlm_namespace *to_be_freed = NULL;
393         int rc;
394         ENTRY;
395
396         down_write(&cli->cl_sem);
397         rc = class_connect(dlm_handle, obd, cluuid);
398         if (rc)
399                 GOTO(out_sem, rc);
400
401         cli->cl_conn_count++;
402         if (cli->cl_conn_count > 1)
403                 GOTO(out_sem, rc);
404         exp = class_conn2export(dlm_handle);
405
406         if (obd->obd_namespace != NULL)
407                 CERROR("already have namespace!\n");
408         obd->obd_namespace = ldlm_namespace_new(obd, obd->obd_name,
409                                                 LDLM_NAMESPACE_CLIENT,
410                                                 LDLM_NAMESPACE_GREEDY);
411         if (obd->obd_namespace == NULL)
412                 GOTO(out_disco, rc = -ENOMEM);
413
414         imp->imp_dlm_handle = *dlm_handle;
415         rc = ptlrpc_init_import(imp);
416         if (rc != 0)
417                 GOTO(out_ldlm, rc);
418
419         ocd = &imp->imp_connect_data;
420         if (data) {
421                 *ocd = *data;
422                 imp->imp_connect_flags_orig = data->ocd_connect_flags;
423         }
424
425         rc = ptlrpc_connect_import(imp, NULL);
426         if (rc != 0) {
427                 LASSERT (imp->imp_state == LUSTRE_IMP_DISCON);
428                 GOTO(out_ldlm, rc);
429         }
430         LASSERT(exp->exp_connection);
431
432         if (data) {
433                 LASSERTF((ocd->ocd_connect_flags & data->ocd_connect_flags) ==
434                          ocd->ocd_connect_flags, "old "LPX64", new "LPX64"\n",
435                          data->ocd_connect_flags, ocd->ocd_connect_flags);
436                 data->ocd_connect_flags = ocd->ocd_connect_flags;
437         }
438
439         ptlrpc_pinger_add_import(imp);
440
441         EXIT;
442
443         if (rc) {
444 out_ldlm:
445                 ldlm_namespace_free_prior(obd->obd_namespace, imp, 0);
446                 to_be_freed = obd->obd_namespace;
447                 obd->obd_namespace = NULL;
448 out_disco:
449                 cli->cl_conn_count--;
450                 class_disconnect(exp);
451         } else {
452                 class_export_put(exp);
453         }
454 out_sem:
455         up_write(&cli->cl_sem);
456         if (to_be_freed)
457                 ldlm_namespace_free_post(to_be_freed);
458
459         return rc;
460 }
461
462 int client_disconnect_export(struct obd_export *exp)
463 {
464         struct obd_device *obd = class_exp2obd(exp);
465         struct client_obd *cli;
466         struct obd_import *imp;
467         int rc = 0, err;
468         struct ldlm_namespace *to_be_freed = NULL;
469         ENTRY;
470
471         if (!obd) {
472                 CERROR("invalid export for disconnect: exp %p cookie "LPX64"\n",
473                        exp, exp ? exp->exp_handle.h_cookie : -1);
474                 RETURN(-EINVAL);
475         }
476
477         cli = &obd->u.cli;
478         imp = cli->cl_import;
479
480         down_write(&cli->cl_sem);
481         if (!cli->cl_conn_count) {
482                 CERROR("disconnecting disconnected device (%s)\n",
483                        obd->obd_name);
484                 GOTO(out_sem, rc = -EINVAL);
485         }
486
487         cli->cl_conn_count--;
488         if (cli->cl_conn_count)
489                 GOTO(out_no_disconnect, rc = 0);
490
491         /* Mark import deactivated now, so we don't try to reconnect if any
492          * of the cleanup RPCs fails (e.g. ldlm cancel, etc).  We don't
493          * fully deactivate the import, or that would drop all requests. */
494         spin_lock(&imp->imp_lock);
495         imp->imp_deactive = 1;
496         spin_unlock(&imp->imp_lock);
497
498         /* Some non-replayable imports (MDS's OSCs) are pinged, so just
499          * delete it regardless.  (It's safe to delete an import that was
500          * never added.) */
501         (void)ptlrpc_pinger_del_import(imp);
502
503         if (obd->obd_namespace != NULL) {
504                 /* obd_force == local only */
505                 ldlm_cli_cancel_unused(obd->obd_namespace, NULL,
506                                        obd->obd_force ? LDLM_FL_LOCAL_ONLY:0,
507                                        NULL);
508                 ldlm_namespace_free_prior(obd->obd_namespace, imp, obd->obd_force);
509                 to_be_freed = obd->obd_namespace;
510         }
511
512         rc = ptlrpc_disconnect_import(imp, 0);
513
514         ptlrpc_invalidate_import(imp);
515         /* set obd_namespace to NULL only after invalidate, because we can have
516          * some connect requests in flight, and his need store a connect flags
517          * in obd_namespace. bug 14260 */
518         obd->obd_namespace = NULL;
519
520         if (imp->imp_rq_pool) {
521                 ptlrpc_free_rq_pool(imp->imp_rq_pool);
522                 imp->imp_rq_pool = NULL;
523         }
524         destroy_import(imp);
525         cli->cl_import = NULL;
526
527         EXIT;
528  out_no_disconnect:
529         err = class_disconnect(exp);
530         if (!rc && err)
531                 rc = err;
532  out_sem:
533         up_write(&cli->cl_sem);
534         if (to_be_freed)
535                 ldlm_namespace_free_post(to_be_freed);
536
537         RETURN(rc);
538 }
539
540 /* --------------------------------------------------------------------------
541  * from old lib/target.c
542  * -------------------------------------------------------------------------- */
543
544 int target_handle_reconnect(struct lustre_handle *conn, struct obd_export *exp,
545                             struct obd_uuid *cluuid, int initial_conn)
546 {
547         ENTRY;
548         if (exp->exp_connection && exp->exp_imp_reverse && !initial_conn) {
549                 struct lustre_handle *hdl;
550                 hdl = &exp->exp_imp_reverse->imp_remote_handle;
551                 /* Might be a re-connect after a partition. */
552                 if (!memcmp(&conn->cookie, &hdl->cookie, sizeof conn->cookie)) {
553                         CWARN("%s: %s reconnecting\n", exp->exp_obd->obd_name,
554                               cluuid->uuid);
555                         conn->cookie = exp->exp_handle.h_cookie;
556                         /* target_handle_connect() treats EALREADY and
557                          * -EALREADY differently.  EALREADY means we are
558                          * doing a valid reconnect from the same client. */
559                         RETURN(EALREADY);
560                 } else {
561                         CERROR("%s reconnecting from %s, "
562                                "handle mismatch (ours "LPX64", theirs "
563                                LPX64")\n", cluuid->uuid,
564                                exp->exp_connection->c_remote_uuid.uuid,
565                                hdl->cookie, conn->cookie);
566                         memset(conn, 0, sizeof *conn);
567                         /* target_handle_connect() treats EALREADY and
568                          * -EALREADY differently.  -EALREADY is an error
569                          * (same UUID, different handle). */
570                         RETURN(-EALREADY);
571                 }
572         }
573
574         conn->cookie = exp->exp_handle.h_cookie;
575         CDEBUG(D_HA, "connect export for UUID '%s' at %p, cookie "LPX64"\n",
576                cluuid->uuid, exp, conn->cookie);
577         RETURN(0);
578 }
579
580 void target_client_add_cb(struct obd_device *obd, __u64 transno, void *cb_data,
581                           int error)
582 {
583         struct obd_export *exp = cb_data;
584
585         CDEBUG(D_RPCTRACE, "%s: committing for initial connect of %s\n",
586                obd->obd_name, exp->exp_client_uuid.uuid);
587
588         spin_lock(&exp->exp_lock);
589         exp->exp_need_sync = 0;
590         spin_unlock(&exp->exp_lock);
591 }
592 EXPORT_SYMBOL(target_client_add_cb);
593 static void
594 target_start_and_reset_recovery_timer(struct obd_device *obd,
595                                       struct ptlrpc_request *req,
596                                       int new_client);
597
598 int target_handle_connect(struct ptlrpc_request *req)
599 {
600         struct obd_device *target, *targref = NULL;
601         struct obd_export *export = NULL;
602         struct obd_import *revimp;
603         struct lustre_handle conn;
604         struct lustre_handle *tmp;
605         struct obd_uuid tgtuuid;
606         struct obd_uuid cluuid;
607         struct obd_uuid remote_uuid;
608         char *str;
609         int rc = 0;
610         int initial_conn = 0;
611         struct obd_connect_data *data, *tmpdata;
612         lnet_nid_t *client_nid = NULL;
613         ENTRY;
614
615         OBD_RACE(OBD_FAIL_TGT_CONN_RACE);
616
617         str = req_capsule_client_get(&req->rq_pill, &RMF_TGTUUID);
618         if (str == NULL) {
619                 DEBUG_REQ(D_ERROR, req, "bad target UUID for connect");
620                 GOTO(out, rc = -EINVAL);
621         }
622
623         obd_str2uuid(&tgtuuid, str);
624         target = class_uuid2obd(&tgtuuid);
625         if (!target)
626                 target = class_name2obd(str);
627
628         if (!target || target->obd_stopping || !target->obd_set_up) {
629                 LCONSOLE_ERROR_MSG(0x137, "UUID '%s' is not available "
630                                    " for connect (%s)\n", str,
631                                    !target ? "no target" :
632                                    (target->obd_stopping ? "stopping" :
633                                    "not set up"));
634                 GOTO(out, rc = -ENODEV);
635         }
636
637         if (target->obd_no_conn) {
638                 LCONSOLE_WARN("%s: temporarily refusing client connection "
639                               "from %s\n", target->obd_name,
640                               libcfs_nid2str(req->rq_peer.nid));
641                 GOTO(out, rc = -EAGAIN);
642         }
643
644         /* Make sure the target isn't cleaned up while we're here. Yes,
645            there's still a race between the above check and our incref here.
646            Really, class_uuid2obd should take the ref. */
647         targref = class_incref(target, __FUNCTION__, cfs_current());
648
649
650         str = req_capsule_client_get(&req->rq_pill, &RMF_CLUUID);
651         if (str == NULL) {
652                 DEBUG_REQ(D_ERROR, req, "bad client UUID for connect");
653                 GOTO(out, rc = -EINVAL);
654         }
655
656         obd_str2uuid(&cluuid, str);
657
658         /* XXX extract a nettype and format accordingly */
659         switch (sizeof(lnet_nid_t)) {
660                 /* NB the casts only avoid compiler warnings */
661         case 8:
662                 snprintf(remote_uuid.uuid, sizeof remote_uuid,
663                          "NET_"LPX64"_UUID", (__u64)req->rq_peer.nid);
664                 break;
665         case 4:
666                 snprintf(remote_uuid.uuid, sizeof remote_uuid,
667                          "NET_%x_UUID", (__u32)req->rq_peer.nid);
668                 break;
669         default:
670                 LBUG();
671         }
672
673         tmp = req_capsule_client_get(&req->rq_pill, &RMF_CONN);
674         if (tmp == NULL)
675                 GOTO(out, rc = -EPROTO);
676
677         conn = *tmp;
678
679         data = req_capsule_client_get(&req->rq_pill, &RMF_CONNECT_DATA);
680         if (!data)
681                 GOTO(out, rc = -EPROTO);
682
683         rc = req_capsule_server_pack(&req->rq_pill);
684         if (rc)
685                 GOTO(out, rc);
686
687         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) {
688                 if (!data) {
689                         DEBUG_REQ(D_WARNING, req, "Refusing old (unversioned) "
690                                   "libclient connection attempt");
691                         GOTO(out, rc = -EPROTO);
692                 } else if (data->ocd_version < LUSTRE_VERSION_CODE -
693                                                LUSTRE_VERSION_ALLOWED_OFFSET ||
694                            data->ocd_version > LUSTRE_VERSION_CODE +
695                                                LUSTRE_VERSION_ALLOWED_OFFSET) {
696                         DEBUG_REQ(D_WARNING, req, "Refusing %s (%d.%d.%d.%d) "
697                                   "libclient connection attempt",
698                                   data->ocd_version < LUSTRE_VERSION_CODE ?
699                                   "old" : "new",
700                                   OBD_OCD_VERSION_MAJOR(data->ocd_version),
701                                   OBD_OCD_VERSION_MINOR(data->ocd_version),
702                                   OBD_OCD_VERSION_PATCH(data->ocd_version),
703                                   OBD_OCD_VERSION_FIX(data->ocd_version));
704                         data = req_capsule_server_sized_get(&req->rq_pill,
705                                                         &RMF_CONNECT_DATA,
706                                     offsetof(typeof(*data), ocd_version) +
707                                              sizeof(data->ocd_version));
708                         if (data) {
709                                 data->ocd_connect_flags = OBD_CONNECT_VERSION;
710                                 data->ocd_version = LUSTRE_VERSION_CODE;
711                         }
712                         GOTO(out, rc = -EPROTO);
713                 }
714         }
715
716         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_INITIAL)
717                 initial_conn = 1;
718
719         /* lctl gets a backstage, all-access pass. */
720         if (obd_uuid_equals(&cluuid, &target->obd_uuid))
721                 goto dont_check_exports;
722
723         spin_lock(&target->obd_dev_lock);
724         export = lustre_hash_lookup(target->obd_uuid_hash, &cluuid);
725
726         if (export != NULL && export->exp_connecting) { /* bug 9635, et. al. */
727                 CWARN("%s: exp %p already connecting\n",
728                       export->exp_obd->obd_name, export);
729                 class_export_put(export);
730                 export = NULL;
731                 rc = -EALREADY;
732         } else if (export != NULL && export->exp_connection != NULL &&
733                    req->rq_peer.nid != export->exp_connection->c_peer.nid) {
734                 /* make darn sure this is coming from the same peer
735                  * if the UUIDs matched */
736                   CWARN("%s: cookie %s seen on new NID %s when "
737                           "existing NID %s is already connected\n",
738                         target->obd_name, cluuid.uuid,
739                   libcfs_nid2str(req->rq_peer.nid),
740                   libcfs_nid2str(export->exp_connection->c_peer.nid));
741                   class_export_put(export);
742                   export = NULL;
743                   rc = -EALREADY;
744         } else if (export != NULL) {
745                 spin_lock(&export->exp_lock);
746                 export->exp_connecting = 1;
747                 spin_unlock(&export->exp_lock);
748                 class_export_put(export);
749                 spin_unlock(&target->obd_dev_lock);
750                 LASSERT(export->exp_obd == target);
751
752                 rc = target_handle_reconnect(&conn, export, &cluuid, initial_conn);
753         }
754
755         /* If we found an export, we already unlocked. */
756         if (!export) {
757                 spin_unlock(&target->obd_dev_lock);
758                 OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_CONNECT, 2 * obd_timeout);
759         } else if (req->rq_export == NULL &&
760                    atomic_read(&export->exp_rpc_count) > 0) {
761                 CWARN("%s: refuse connection from %s/%s to 0x%p/%d\n",
762                       target->obd_name, cluuid.uuid,
763                       libcfs_nid2str(req->rq_peer.nid),
764                       export, atomic_read(&export->exp_refcount));
765                 GOTO(out, rc = -EBUSY);
766         } else if (req->rq_export != NULL &&
767                    (atomic_read(&export->exp_rpc_count) > 1)) {
768                 CWARN("%s: refuse reconnection from %s@%s to 0x%p/%d\n",
769                       target->obd_name, cluuid.uuid,
770                       libcfs_nid2str(req->rq_peer.nid),
771                       export, atomic_read(&export->exp_rpc_count));
772                 GOTO(out, rc = -EBUSY);
773         } else if (lustre_msg_get_conn_cnt(req->rq_reqmsg) == 1 &&
774                    !initial_conn) {
775                 CERROR("%s: NID %s (%s) reconnected with 1 conn_cnt; "
776                        "cookies not random?\n", target->obd_name,
777                        libcfs_nid2str(req->rq_peer.nid), cluuid.uuid);
778                 GOTO(out, rc = -EALREADY);
779         } else {
780                 OBD_FAIL_TIMEOUT(OBD_FAIL_TGT_DELAY_RECONNECT, 2 * obd_timeout);
781                 if (req->rq_export == NULL && initial_conn)
782                        export->exp_last_request_time =
783                                max(export->exp_last_request_time,
784                                    (time_t)cfs_time_current_sec());
785         }
786
787         if (rc < 0) {
788                 GOTO(out, rc);
789         }
790
791         CWARN("%s: connection from %s@%s %st"LPU64" exp %p cur %ld last %ld\n",
792                target->obd_name, cluuid.uuid, libcfs_nid2str(req->rq_peer.nid),
793               target->obd_recovering ? "recovering/" : "", data->ocd_transno,
794               export, (long)cfs_time_current_sec(),
795               export ? (long)export->exp_last_request_time : 0);
796
797         /* Tell the client if we're in recovery. */
798         if (target->obd_recovering) {
799                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECOVERING);
800                 /* If this is the first time a client connects,
801                    reset the recovery timer */
802                 if (rc == 0)
803                         target_start_and_reset_recovery_timer(target, req,
804                                                               !export);
805         }
806
807         /* We want to handle EALREADY but *not* -EALREADY from
808          * target_handle_reconnect(), return reconnection state in a flag */
809         if (rc == EALREADY) {
810                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_RECONNECT);
811                 rc = 0;
812         } else {
813                 LASSERT(rc == 0);
814         }
815
816         /* Tell the client if we support replayable requests */
817         if (target->obd_replayable)
818                 lustre_msg_add_op_flags(req->rq_repmsg, MSG_CONNECT_REPLAYABLE);
819         client_nid = &req->rq_peer.nid;
820
821         if (export == NULL) {
822                 if (target->obd_recovering) {
823                         cfs_time_t t;
824
825                         t = cfs_timer_deadline(&target->obd_recovery_timer);
826                         t = cfs_time_sub(t, cfs_time_current());
827                         CERROR("%s: denying connection for new client %s (%s): "
828                                "%d clients in recovery for "CFS_TIME_T"s\n",
829                                target->obd_name,
830                                libcfs_nid2str(req->rq_peer.nid), cluuid.uuid,
831                                target->obd_recoverable_clients,
832                                cfs_duration_sec(t));
833                         rc = -EBUSY;
834                 } else {
835 dont_check_exports:
836                         rc = obd_connect(req->rq_svc_thread->t_env,
837                                          &conn, target, &cluuid, data,
838                                          client_nid);
839                 }
840         } else {
841                 rc = obd_reconnect(req->rq_svc_thread->t_env,
842                                    export, target, &cluuid, data, client_nid);
843         }
844         if (rc)
845                 GOTO(out, rc);
846         /* Return only the parts of obd_connect_data that we understand, so the
847          * client knows that we don't understand the rest. */
848         if (data) {
849                  tmpdata = req_capsule_server_get(&req->rq_pill,
850                                                   &RMF_CONNECT_DATA);
851                   //data->ocd_connect_flags &= OBD_CONNECT_SUPPORTED;
852                  *tmpdata = *data;
853         }
854
855         /* If all else goes well, this is our RPC return code. */
856         req->rq_status = 0;
857
858         lustre_msg_set_handle(req->rq_repmsg, &conn);
859
860         /* ownership of this export ref transfers to the request AFTER we
861          * drop any previous reference the request had, but we don't want
862          * that to go to zero before we get our new export reference. */
863         export = class_conn2export(&conn);
864         if (!export) {
865                 DEBUG_REQ(D_ERROR, req, "Missing export!");
866                 GOTO(out, rc = -ENODEV);
867         }
868
869         /* If the client and the server are the same node, we will already
870          * have an export that really points to the client's DLM export,
871          * because we have a shared handles table.
872          *
873          * XXX this will go away when shaver stops sending the "connect" handle
874          * in the real "remote handle" field of the request --phik 24 Apr 2003
875          */
876         if (req->rq_export != NULL)
877                 class_export_put(req->rq_export);
878
879         req->rq_export = export;
880
881         spin_lock(&export->exp_lock);
882         if (initial_conn) {
883                 lustre_msg_set_conn_cnt(req->rq_repmsg, export->exp_conn_cnt + 1);
884         } else if (export->exp_conn_cnt >= lustre_msg_get_conn_cnt(req->rq_reqmsg)) {
885                 spin_unlock(&export->exp_lock);
886                 CERROR("%s: %s already connected at higher conn_cnt: %d > %d\n",
887                        cluuid.uuid, libcfs_nid2str(req->rq_peer.nid),
888                        export->exp_conn_cnt,
889                        lustre_msg_get_conn_cnt(req->rq_reqmsg));
890
891                 GOTO(out, rc = -EALREADY);
892         }
893         export->exp_conn_cnt = lustre_msg_get_conn_cnt(req->rq_reqmsg);
894
895         /* request from liblustre?  Don't evict it for not pinging. */
896         if (lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_LIBCLIENT) {
897                 export->exp_libclient = 1;
898                 spin_unlock(&export->exp_lock);
899
900                 spin_lock(&target->obd_dev_lock);
901                 list_del_init(&export->exp_obd_chain_timed);
902                 spin_unlock(&target->obd_dev_lock);
903         } else {
904                 spin_unlock(&export->exp_lock);
905         }
906
907         if (export->exp_connection != NULL)
908                 ptlrpc_connection_put(export->exp_connection);
909         export->exp_connection = ptlrpc_connection_get(req->rq_peer,
910                                                        req->rq_self,
911                                                        &remote_uuid);
912         if (hlist_unhashed(&export->exp_nid_hash)) {
913                 lustre_hash_add_unique(export->exp_obd->obd_nid_hash,
914                                        &export->exp_connection->c_peer.nid,
915                                        &export->exp_nid_hash);
916         }
917
918         spin_lock_bh(&target->obd_processing_task_lock);
919         if (target->obd_recovering && !export->exp_in_recovery) {
920                 spin_lock(&export->exp_lock);
921                 export->exp_in_recovery = 1;
922                 export->exp_req_replay_needed = 1;
923                 export->exp_lock_replay_needed = 1;
924                 spin_unlock(&export->exp_lock);
925                 if ((lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_TRANSNO)
926                      && (data->ocd_transno == 0))
927                         CWARN("Connect with zero transno!\n");
928
929                 if ((lustre_msg_get_op_flags(req->rq_reqmsg) & MSG_CONNECT_TRANSNO)
930                      && data->ocd_transno < target->obd_next_recovery_transno)
931                         target->obd_next_recovery_transno = data->ocd_transno;
932                 target->obd_connected_clients++;
933                 /* each connected client is counted as recoverable */
934                 target->obd_recoverable_clients++;
935                 atomic_inc(&target->obd_req_replay_clients);
936                 atomic_inc(&target->obd_lock_replay_clients);
937                 if (target->obd_connected_clients ==
938                     target->obd_max_recoverable_clients)
939                         wake_up(&target->obd_next_transno_waitq);
940         }
941         spin_unlock_bh(&target->obd_processing_task_lock);
942         tmp = req_capsule_client_get(&req->rq_pill, &RMF_CONN);
943         conn = *tmp;
944
945         if (export->exp_imp_reverse != NULL) {
946                 /* destroyed import can be still referenced in ctxt */
947                 obd_set_info_async(export, sizeof(KEY_REVIMP_UPD),
948                                    KEY_REVIMP_UPD, 0, NULL, NULL);
949
950                 /* in some recovery senarios, previous ctx init rpc handled
951                  * in sptlrpc_target_export_check() might be used to install
952                  * a reverse ctx in this reverse import, and later OBD_CONNECT
953                  * using the same gss ctx could reach here and following new
954                  * reverse import. note all reverse ctx in new/old import are
955                  * actually based on the same gss ctx. so we invalidate ctx
956                  * here before destroy import, otherwise flush old import will
957                  * lead to remote reverse ctx be destroied, thus the reverse
958                  * ctx of new import will lost its peer.
959                  * there might be a better way to deal with this???
960                  */
961                 sptlrpc_import_inval_all_ctx(export->exp_imp_reverse);
962
963                 destroy_import(export->exp_imp_reverse);
964         }
965
966         /* for the rest part, we return -ENOTCONN in case of errors
967          * in order to let client initialize connection again.
968          */
969         revimp = export->exp_imp_reverse = class_new_import(target);
970         if (!revimp) {
971                 CERROR("fail to alloc new reverse import.\n");
972                 GOTO(out, rc = -ENOTCONN);
973         }
974
975         revimp->imp_connection = ptlrpc_connection_addref(export->exp_connection);
976         revimp->imp_client = &export->exp_obd->obd_ldlm_client;
977         revimp->imp_remote_handle = conn;
978         revimp->imp_dlm_fake = 1;
979         revimp->imp_state = LUSTRE_IMP_FULL;
980
981         /* unknown versions will be caught in
982          * ptlrpc_handle_server_req_in->lustre_unpack_msg() */
983         revimp->imp_msg_magic = req->rq_reqmsg->lm_magic;
984
985         if ((export->exp_connect_flags & OBD_CONNECT_AT) &&
986             (revimp->imp_msg_magic != LUSTRE_MSG_MAGIC_V1))
987                 revimp->imp_msghdr_flags |= MSGHDR_AT_SUPPORT;
988         else
989                 revimp->imp_msghdr_flags &= ~MSGHDR_AT_SUPPORT;
990
991         rc = sptlrpc_import_sec_adapt(revimp, req->rq_svc_ctx,
992                                       req->rq_flvr.sf_rpc);
993         if (rc) {
994                 CERROR("Failed to get sec for reverse import: %d\n", rc);
995                 export->exp_imp_reverse = NULL;
996                 class_destroy_import(revimp);
997         }
998
999         class_import_put(revimp);
1000 out:
1001         if (export) {
1002                 spin_lock(&export->exp_lock);
1003                 export->exp_connecting = 0;
1004                 spin_unlock(&export->exp_lock);
1005         }
1006         if (targref)
1007                 class_decref(targref, __FUNCTION__, cfs_current());
1008         if (rc)
1009                 req->rq_status = rc;
1010         RETURN(rc);
1011 }
1012
1013 int target_handle_disconnect(struct ptlrpc_request *req)
1014 {
1015         int rc;
1016         ENTRY;
1017
1018         rc = req_capsule_server_pack(&req->rq_pill);
1019         if (rc)
1020                 RETURN(rc);
1021
1022         /* keep the rq_export around so we can send the reply */
1023         req->rq_status = obd_disconnect(class_export_get(req->rq_export));
1024
1025         RETURN(0);
1026 }
1027
1028 void target_destroy_export(struct obd_export *exp)
1029 {
1030         /* exports created from last_rcvd data, and "fake"
1031            exports created by lctl don't have an import */
1032         if (exp->exp_imp_reverse != NULL)
1033                 destroy_import(exp->exp_imp_reverse);
1034
1035         /* We cancel locks at disconnect time, but this will catch any locks
1036          * granted in a race with recovery-induced disconnect. */
1037         if (exp->exp_obd->obd_namespace != NULL)
1038                 ldlm_cancel_locks_for_export(exp);
1039 }
1040
1041 /*
1042  * Recovery functions
1043  */
1044
1045 struct ptlrpc_request *ptlrpc_clone_req( struct ptlrpc_request *orig_req)
1046 {
1047         struct ptlrpc_request *copy_req;
1048         struct lustre_msg *copy_reqmsg;
1049         struct ptlrpc_user_desc *udesc = NULL;
1050
1051         OBD_ALLOC_PTR(copy_req);
1052         if (!copy_req)
1053                 return NULL;
1054         OBD_ALLOC(copy_reqmsg, orig_req->rq_reqlen);
1055         if (!copy_reqmsg){
1056                 OBD_FREE_PTR(copy_req);
1057                 return NULL;
1058         }
1059
1060         if (orig_req->rq_user_desc) {
1061                 int ngroups = orig_req->rq_user_desc->pud_ngroups;
1062
1063                 OBD_ALLOC(udesc, sptlrpc_user_desc_size(ngroups));
1064                 if (!udesc) {
1065                         OBD_FREE(copy_reqmsg, orig_req->rq_reqlen);
1066                         OBD_FREE_PTR(copy_req);
1067                         return NULL;
1068                 }
1069                 memcpy(udesc, orig_req->rq_user_desc,
1070                        sptlrpc_user_desc_size(ngroups));
1071         }
1072
1073         *copy_req = *orig_req;
1074         memcpy(copy_reqmsg, orig_req->rq_reqmsg, orig_req->rq_reqlen);
1075         copy_req->rq_reqmsg = copy_reqmsg;
1076         copy_req->rq_user_desc = udesc;
1077
1078         class_export_rpc_get(copy_req->rq_export);
1079         CFS_INIT_LIST_HEAD(&copy_req->rq_list);
1080         CFS_INIT_LIST_HEAD(&copy_req->rq_replay_list);
1081         sptlrpc_svc_ctx_addref(copy_req);
1082
1083         if (copy_req->rq_reply_state) {
1084                 /* the copied req takes over the reply state */
1085                 orig_req->rq_reply_state = NULL;
1086                 /* to catch further access */
1087                 orig_req->rq_repmsg = NULL;
1088                 orig_req->rq_replen = 0;
1089         }
1090
1091         return copy_req;
1092 }
1093
1094 void ptlrpc_free_clone(struct ptlrpc_request *req)
1095 {
1096         LASSERT(list_empty(&req->rq_replay_list));
1097
1098         ptlrpc_req_drop_rs(req);
1099         sptlrpc_svc_ctx_decref(req);
1100         class_export_rpc_put(req->rq_export);
1101         list_del(&req->rq_list);
1102
1103         if (req->rq_user_desc) {
1104                 int ngroups = req->rq_user_desc->pud_ngroups;
1105                 OBD_FREE(req->rq_user_desc, sptlrpc_user_desc_size(ngroups));
1106         }
1107         OBD_FREE(req->rq_reqmsg, req->rq_reqlen);
1108         OBD_FREE_PTR(req);
1109 }
1110
1111 static int target_exp_enqueue_req_replay(struct ptlrpc_request *req)
1112 {
1113         __u64                  transno = lustre_msg_get_transno(req->rq_reqmsg);
1114         struct obd_export     *exp = req->rq_export;
1115         struct ptlrpc_request *reqiter;
1116         int                    dup = 0;
1117
1118         LASSERT(exp);
1119
1120         spin_lock(&exp->exp_lock);
1121         list_for_each_entry(reqiter, &exp->exp_req_replay_queue,
1122                             rq_replay_list) {
1123                 if (lustre_msg_get_transno(reqiter->rq_reqmsg) == transno) {
1124                         dup = 1;
1125                         break;
1126                 }
1127         }
1128
1129         if (dup) {
1130                 /* we expect it with RESENT and REPLAY flags */
1131                 if ((lustre_msg_get_flags(req->rq_reqmsg) &
1132                      (MSG_RESENT | MSG_REPLAY)) != (MSG_RESENT | MSG_REPLAY))
1133                         CERROR("invalid flags %x of resent replay\n",
1134                                lustre_msg_get_flags(req->rq_reqmsg));
1135         } else {
1136                 list_add_tail(&req->rq_replay_list, &exp->exp_req_replay_queue);
1137         }
1138
1139         spin_unlock(&exp->exp_lock);
1140         return dup;
1141 }
1142
1143 static void target_exp_dequeue_req_replay(struct ptlrpc_request *req)
1144 {
1145         LASSERT(!list_empty(&req->rq_replay_list));
1146         LASSERT(req->rq_export);
1147
1148         spin_lock(&req->rq_export->exp_lock);
1149         list_del_init(&req->rq_replay_list);
1150         spin_unlock(&req->rq_export->exp_lock);
1151 }
1152
1153 #ifdef __KERNEL__
1154 static void target_finish_recovery(struct obd_device *obd)
1155 {
1156         ENTRY;
1157         LCONSOLE_INFO("%s: sending delayed replies to recovered clients\n",
1158                       obd->obd_name);
1159
1160         ldlm_reprocess_all_ns(obd->obd_namespace);
1161
1162         /* when recovery finished, cleanup orphans on mds and ost */
1163         if (OBT(obd) && OBP(obd, postrecov)) {
1164                 int rc = OBP(obd, postrecov)(obd);
1165                 LCONSOLE_WARN("%s: recovery %s: rc %d\n", obd->obd_name,
1166                               rc < 0 ? "failed" : "complete", rc);
1167         }
1168
1169         obd->obd_recovery_end = cfs_time_current_sec();
1170         EXIT;
1171 }
1172
1173 static void abort_req_replay_queue(struct obd_device *obd)
1174 {
1175         struct ptlrpc_request *req, *n;
1176
1177         list_for_each_entry_safe(req, n, &obd->obd_req_replay_queue, rq_list) {
1178                 DEBUG_REQ(D_WARNING, req, "aborted:");
1179                 req->rq_status = -ENOTCONN;
1180                 if (ptlrpc_error(req)) {
1181                         DEBUG_REQ(D_ERROR, req,
1182                                   "failed abort_req_reply; skipping");
1183                 }
1184                 target_exp_dequeue_req_replay(req);
1185                 ptlrpc_free_clone(req);
1186         }
1187 }
1188
1189 static void abort_lock_replay_queue(struct obd_device *obd)
1190 {
1191         struct ptlrpc_request *req, *n;
1192
1193         list_for_each_entry_safe(req, n, &obd->obd_lock_replay_queue, rq_list){
1194                 DEBUG_REQ(D_ERROR, req, "aborted:");
1195                 req->rq_status = -ENOTCONN;
1196                 if (ptlrpc_error(req)) {
1197                         DEBUG_REQ(D_ERROR, req,
1198                                   "failed abort_lock_reply; skipping");
1199                 }
1200                 ptlrpc_free_clone(req);
1201         }
1202 }
1203 #endif
1204
1205 /* Called from a cleanup function if the device is being cleaned up
1206    forcefully.  The exports should all have been disconnected already,
1207    the only thing left to do is
1208      - clear the recovery flags
1209      - cancel the timer
1210      - free queued requests and replies, but don't send replies
1211    Because the obd_stopping flag is set, no new requests should be received.
1212
1213 */
1214 void target_cleanup_recovery(struct obd_device *obd)
1215 {
1216         struct ptlrpc_request *req, *n;
1217         ENTRY;
1218
1219         LASSERT(obd->obd_stopping);
1220
1221         spin_lock_bh(&obd->obd_processing_task_lock);
1222         if (!obd->obd_recovering) {
1223                 spin_unlock_bh(&obd->obd_processing_task_lock);
1224                 EXIT;
1225                 return;
1226         }
1227         obd->obd_recovering = obd->obd_abort_recovery = 0;
1228         target_cancel_recovery_timer(obd);
1229         spin_unlock_bh(&obd->obd_processing_task_lock);
1230
1231         list_for_each_entry_safe(req, n, &obd->obd_req_replay_queue, rq_list) {
1232                 LASSERT (req->rq_reply_state == 0);
1233                 target_exp_dequeue_req_replay(req);
1234                 ptlrpc_free_clone(req);
1235         }
1236         list_for_each_entry_safe(req, n, &obd->obd_lock_replay_queue, rq_list){
1237                 LASSERT (req->rq_reply_state == 0);
1238                 ptlrpc_free_clone(req);
1239         }
1240         list_for_each_entry_safe(req, n, &obd->obd_final_req_queue, rq_list) {
1241                 LASSERT (req->rq_reply_state == 0);
1242                 ptlrpc_free_clone(req);
1243         }
1244
1245         EXIT;
1246 }
1247
1248 /* obd_processing_task_lock should be held */
1249 void target_cancel_recovery_timer(struct obd_device *obd)
1250 {
1251         CDEBUG(D_HA, "%s: cancel recovery timer\n", obd->obd_name);
1252         cfs_timer_disarm(&obd->obd_recovery_timer);
1253 }
1254
1255 /* extend = 1 means require at least "duration" seconds left in the timer,
1256    extend = 0 means set the total duration (start_recovery_timer) */
1257 static void reset_recovery_timer(struct obd_device *obd, int duration,
1258                                  int extend)
1259 {
1260         cfs_time_t now = cfs_time_current_sec();
1261         cfs_duration_t left;
1262
1263         spin_lock_bh(&obd->obd_processing_task_lock);
1264         if (!obd->obd_recovering || obd->obd_abort_recovery) {
1265                 spin_unlock_bh(&obd->obd_processing_task_lock);
1266                 return;
1267         }
1268
1269         left = cfs_time_sub(obd->obd_recovery_end, now);
1270
1271         if (extend && (duration > left))
1272                 obd->obd_recovery_timeout += duration - left;
1273         else if (!extend && (duration > obd->obd_recovery_timeout))
1274                 /* Track the client's largest expected replay time */
1275                 obd->obd_recovery_timeout = duration;
1276 #ifdef CRAY_XT3
1277         /*
1278          * If total recovery time already exceed the
1279          * obd_recovery_max_time, then CRAY XT3 will
1280          * abort the recovery
1281          */
1282         if(obd->obd_recovery_timeout > obd->obd_recovery_max_time)
1283                 obd->obd_recovery_timeout = obd->obd_recovery_max_time;
1284 #endif
1285         obd->obd_recovery_end = obd->obd_recovery_start +
1286                                 obd->obd_recovery_timeout;
1287         if (!cfs_timer_is_armed(&obd->obd_recovery_timer) ||
1288             cfs_time_before(now, obd->obd_recovery_end)) {
1289                 left = cfs_time_sub(obd->obd_recovery_end, now);
1290                 cfs_timer_arm(&obd->obd_recovery_timer, cfs_time_shift(left));
1291         }
1292         spin_unlock_bh(&obd->obd_processing_task_lock);
1293         CDEBUG(D_HA, "%s: recovery timer will expire in %u seconds\n",
1294                obd->obd_name, (unsigned)left);
1295 }
1296
1297 static void check_and_start_recovery_timer(struct obd_device *obd)
1298 {
1299         spin_lock_bh(&obd->obd_processing_task_lock);
1300         if (cfs_timer_is_armed(&obd->obd_recovery_timer)) {
1301                 spin_unlock_bh(&obd->obd_processing_task_lock);
1302                 return;
1303         }
1304         CWARN("%s: starting recovery timer\n", obd->obd_name);
1305         obd->obd_recovery_start = cfs_time_current_sec();
1306         /* minimum */
1307         obd->obd_recovery_timeout = OBD_RECOVERY_FACTOR * obd_timeout;
1308         spin_unlock_bh(&obd->obd_processing_task_lock);
1309
1310         reset_recovery_timer(obd, obd->obd_recovery_timeout, 0);
1311 }
1312
1313 /* Reset the timer with each new client connection */
1314 /*
1315  * This timer is actually reconnect_timer, which is for making sure
1316  * the total recovery window is at least as big as my reconnect
1317  * attempt timing. So the initial recovery time_out will be set to
1318  * OBD_RECOVERY_FACTOR * obd_timeout. If the timeout coming
1319  * from client is bigger than this, then the recovery time_out will
1320  * be extend to make sure the client could be reconnected, in the
1321  * process, the timeout from the new client should be ignored.
1322  */
1323
1324 static void
1325 target_start_and_reset_recovery_timer(struct obd_device *obd,
1326                                       struct ptlrpc_request *req,
1327                                       int new_client)
1328 {
1329         int req_timeout = lustre_msg_get_timeout(req->rq_reqmsg);
1330
1331         /* teach server about old server's estimates */
1332         if (!new_client)
1333                 at_add(&req->rq_rqbd->rqbd_service->srv_at_estimate,
1334                        at_timeout2est(req_timeout));
1335
1336         check_and_start_recovery_timer(obd);
1337
1338         req_timeout *= OBD_RECOVERY_FACTOR;
1339         if (req_timeout > obd->obd_recovery_timeout && !new_client)
1340                 reset_recovery_timer(obd, req_timeout, 0);
1341 }
1342
1343 #ifdef __KERNEL__
1344 static int check_for_next_transno(struct obd_device *obd)
1345 {
1346         struct ptlrpc_request *req = NULL;
1347         int wake_up = 0, connected, completed, queue_len, max;
1348         __u64 next_transno, req_transno;
1349         ENTRY;
1350         spin_lock_bh(&obd->obd_processing_task_lock);
1351
1352         if (!list_empty(&obd->obd_req_replay_queue)) {
1353                 req = list_entry(obd->obd_req_replay_queue.next,
1354                                  struct ptlrpc_request, rq_list);
1355                 req_transno = lustre_msg_get_transno(req->rq_reqmsg);
1356         } else {
1357                 req_transno = 0;
1358         }
1359
1360         max = obd->obd_max_recoverable_clients;
1361         connected = obd->obd_connected_clients;
1362         completed = connected - obd->obd_recoverable_clients;
1363         queue_len = obd->obd_requests_queued_for_recovery;
1364         next_transno = obd->obd_next_recovery_transno;
1365
1366         CDEBUG(D_HA, "max: %d, connected: %d, completed: %d, queue_len: %d, "
1367                "req_transno: "LPU64", next_transno: "LPU64"\n",
1368                max, connected, completed, queue_len, req_transno, next_transno);
1369
1370         if (obd->obd_abort_recovery) {
1371                 CDEBUG(D_HA, "waking for aborted recovery\n");
1372                 wake_up = 1;
1373         } else if (atomic_read(&obd->obd_req_replay_clients) == 0) {
1374                 CDEBUG(D_HA, "waking for completed recovery\n");
1375                 wake_up = 1;
1376         } else if (req_transno == next_transno) {
1377                 CDEBUG(D_HA, "waking for next ("LPD64")\n", next_transno);
1378                 wake_up = 1;
1379         } else if (queue_len + completed == max) {
1380                 /* handle gaps occured due to lost reply. It is allowed gaps
1381                  * because all clients are connected and there will be resend
1382                  * for missed transaction */
1383                 LASSERTF(req_transno >= next_transno,
1384                          "req_transno: "LPU64", next_transno: "LPU64"\n",
1385                          req_transno, next_transno);
1386
1387                 CDEBUG(req_transno > obd->obd_last_committed ? D_ERROR : D_HA,
1388                        "waking for skipped transno (skip: "LPD64
1389                        ", ql: %d, comp: %d, conn: %d, next: "LPD64")\n",
1390                        next_transno, queue_len, completed, connected, req_transno);
1391                 obd->obd_next_recovery_transno = req_transno;
1392                 wake_up = 1;
1393         } else if (OBD_FAIL_CHECK(OBD_FAIL_MDS_RECOVERY_ACCEPTS_GAPS)) {
1394                 CDEBUG(D_HA, "accepting transno gaps is explicitly allowed"
1395                        " by fail_lock, waking up ("LPD64")\n", next_transno);
1396                 obd->obd_next_recovery_transno = req_transno;
1397                 wake_up = 1;
1398         } else if (queue_len == atomic_read(&obd->obd_req_replay_clients)) {
1399                 /* some clients haven't connected in time, but we can try
1400                  * to replay requests that demand on already committed ones
1401                  * also, we can replay first non-committed transation */
1402                 LASSERT(req_transno != 0);
1403                 if (req_transno == obd->obd_last_committed + 1) {
1404                         obd->obd_next_recovery_transno = req_transno;
1405                 } else if (req_transno > obd->obd_last_committed) {
1406                         /* can't continue recovery: have no needed transno */
1407                         obd->obd_abort_recovery = 1;
1408                         CDEBUG(D_ERROR, "abort due to missed clients. max: %d, "
1409                                "connected: %d, completed: %d, queue_len: %d, "
1410                                "req_transno: "LPU64", next_transno: "LPU64"\n",
1411                                max, connected, completed, queue_len,
1412                                req_transno, next_transno);
1413                 }
1414                 wake_up = 1;
1415         }
1416
1417         spin_unlock_bh(&obd->obd_processing_task_lock);
1418         return wake_up;
1419 }
1420
1421 static struct ptlrpc_request *target_next_replay_req(struct obd_device *obd)
1422 {
1423         struct l_wait_info lwi = { 0 };
1424         struct ptlrpc_request *req;
1425
1426         CDEBUG(D_HA, "Waiting for transno "LPD64"\n",
1427                obd->obd_next_recovery_transno);
1428         l_wait_event(obd->obd_next_transno_waitq,
1429                      check_for_next_transno(obd), &lwi);
1430
1431         spin_lock_bh(&obd->obd_processing_task_lock);
1432         if (obd->obd_abort_recovery) {
1433                 req = NULL;
1434         } else if (!list_empty(&obd->obd_req_replay_queue)) {
1435                 req = list_entry(obd->obd_req_replay_queue.next,
1436                                  struct ptlrpc_request, rq_list);
1437                 target_exp_dequeue_req_replay(req);
1438                 list_del_init(&req->rq_list);
1439                 obd->obd_requests_queued_for_recovery--;
1440         } else {
1441                 req = NULL;
1442         }
1443         spin_unlock_bh(&obd->obd_processing_task_lock);
1444         RETURN(req);
1445 }
1446
1447 static int check_for_next_lock(struct obd_device *obd)
1448 {
1449         struct ptlrpc_request *req = NULL;
1450         int wake_up = 0;
1451
1452         spin_lock_bh(&obd->obd_processing_task_lock);
1453         if (!list_empty(&obd->obd_lock_replay_queue)) {
1454                 req = list_entry(obd->obd_lock_replay_queue.next,
1455                                  struct ptlrpc_request, rq_list);
1456                 CDEBUG(D_HA, "waking for next lock\n");
1457                 wake_up = 1;
1458         } else if (atomic_read(&obd->obd_lock_replay_clients) == 0) {
1459                 CDEBUG(D_HA, "waking for completed lock replay\n");
1460                 wake_up = 1;
1461         } else if (obd->obd_abort_recovery) {
1462                 CDEBUG(D_HA, "waking for aborted recovery\n");
1463                 wake_up = 1;
1464         }
1465         spin_unlock_bh(&obd->obd_processing_task_lock);
1466
1467         return wake_up;
1468 }
1469
1470 static struct ptlrpc_request *target_next_replay_lock(struct obd_device *obd)
1471 {
1472         struct l_wait_info lwi = { 0 };
1473         struct ptlrpc_request *req;
1474
1475         CDEBUG(D_HA, "Waiting for lock\n");
1476         l_wait_event(obd->obd_next_transno_waitq,
1477                      check_for_next_lock(obd), &lwi);
1478
1479         spin_lock_bh(&obd->obd_processing_task_lock);
1480         if (obd->obd_abort_recovery) {
1481                 req = NULL;
1482         } else if (!list_empty(&obd->obd_lock_replay_queue)) {
1483                 req = list_entry(obd->obd_lock_replay_queue.next,
1484                                  struct ptlrpc_request, rq_list);
1485                 list_del_init(&req->rq_list);
1486         } else {
1487                 req = NULL;
1488         }
1489         spin_unlock_bh(&obd->obd_processing_task_lock);
1490         return req;
1491 }
1492
1493 static struct ptlrpc_request *target_next_final_ping(struct obd_device *obd)
1494 {
1495         struct ptlrpc_request *req;
1496
1497         spin_lock_bh(&obd->obd_processing_task_lock);
1498         if (!list_empty(&obd->obd_final_req_queue)) {
1499                 req = list_entry(obd->obd_final_req_queue.next,
1500                                  struct ptlrpc_request, rq_list);
1501                 list_del_init(&req->rq_list);
1502         } else {
1503                 req = NULL;
1504         }
1505         spin_unlock_bh(&obd->obd_processing_task_lock);
1506         return req;
1507 }
1508
1509 static inline int req_replay_done(struct obd_export *exp)
1510 {
1511         return (exp->exp_req_replay_needed == 0);
1512 }
1513
1514 static inline int lock_replay_done(struct obd_export *exp)
1515 {
1516         return (exp->exp_lock_replay_needed == 0);
1517 }
1518
1519 static inline int connect_done(struct obd_export *exp)
1520 {
1521         return (exp->exp_in_recovery != 0);
1522 }
1523
1524 static int check_for_clients(struct obd_device *obd)
1525 {
1526         if (obd->obd_abort_recovery)
1527                 return 1;
1528         LASSERT(obd->obd_connected_clients <= obd->obd_max_recoverable_clients);
1529         if (obd->obd_no_conn == 0 &&
1530             obd->obd_connected_clients == obd->obd_max_recoverable_clients)
1531                 return 1;
1532         return 0;
1533 }
1534
1535 static int handle_recovery_req(struct ptlrpc_thread *thread,
1536                                struct ptlrpc_request *req,
1537                                svc_handler_t handler)
1538 {
1539         int rc;
1540         ENTRY;
1541
1542         rc = lu_context_init(&req->rq_session, LCT_SESSION);
1543         if (rc) {
1544                 CERROR("Failure to initialize session: %d\n", rc);
1545                 return rc;
1546         }
1547         req->rq_session.lc_thread = thread;
1548         lu_context_enter(&req->rq_session);
1549         req->rq_svc_thread = thread;
1550         req->rq_svc_thread->t_env->le_ses = &req->rq_session;
1551
1552         /* thread context */
1553         lu_context_enter(&thread->t_env->le_ctx);
1554         (void)handler(req);
1555         lu_context_exit(&thread->t_env->le_ctx);
1556
1557         lu_context_exit(&req->rq_session);
1558         lu_context_fini(&req->rq_session);
1559         /* don't reset timer for final stage */
1560         if (!req_replay_done(req->rq_export) ||
1561             !lock_replay_done(req->rq_export))
1562                 reset_recovery_timer(class_exp2obd(req->rq_export),
1563                        OBD_RECOVERY_FACTOR * AT_OFF ? obd_timeout :
1564                        at_get(&req->rq_rqbd->rqbd_service->srv_at_estimate), 1);
1565         ptlrpc_free_clone(req);
1566         RETURN(0);
1567 }
1568
1569 static void resume_recovery_timer(struct obd_device *obd)
1570 {
1571         /* to be safe, make it at least OBD_RECOVERY_FACTOR * obd_timeout */
1572         reset_recovery_timer(obd, OBD_RECOVERY_FACTOR * obd_timeout, 1);
1573 }
1574
1575 static int target_recovery_thread(void *arg)
1576 {
1577         struct obd_device *obd = arg;
1578         struct ptlrpc_request *req;
1579         struct target_recovery_data *trd = &obd->obd_recovery_data;
1580         struct l_wait_info lwi = { 0 };
1581         unsigned long delta;
1582         unsigned long flags;
1583         struct lu_env env;
1584         struct ptlrpc_thread fake_svc_thread, *thread = &fake_svc_thread;
1585         int rc = 0;
1586         ENTRY;
1587
1588         cfs_daemonize("tgt_recov");
1589
1590         SIGNAL_MASK_LOCK(current, flags);
1591         sigfillset(&current->blocked);
1592         RECALC_SIGPENDING;
1593         SIGNAL_MASK_UNLOCK(current, flags);
1594
1595         rc = lu_context_init(&env.le_ctx, LCT_MD_THREAD);
1596         if (rc)
1597                 RETURN(rc);
1598
1599         thread->t_env = &env;
1600         env.le_ctx.lc_thread = thread;
1601
1602         CERROR("%s: started recovery thread pid %d\n", obd->obd_name,
1603                current->pid);
1604         trd->trd_processing_task = current->pid;
1605
1606         obd->obd_recovering = 1;
1607         complete(&trd->trd_starting);
1608
1609         /* first of all, we have to know the first transno to replay */
1610         obd->obd_abort_recovery = 0;
1611         l_wait_event(obd->obd_next_transno_waitq,
1612                      check_for_clients(obd), &lwi);
1613
1614         spin_lock_bh(&obd->obd_processing_task_lock);
1615         target_cancel_recovery_timer(obd);
1616         spin_unlock_bh(&obd->obd_processing_task_lock);
1617
1618         /* If some clients haven't connected in time, evict them */
1619         if (obd->obd_abort_recovery) {
1620                 CWARN("Some clients haven't connect in time (%d/%d),"
1621                        "evict them\n", obd->obd_connected_clients,
1622                        obd->obd_max_recoverable_clients);
1623                 obd->obd_abort_recovery = obd->obd_stopping;
1624                 class_disconnect_stale_exports(obd, connect_done);
1625         }
1626         /* next stage: replay requests */
1627         delta = jiffies;
1628         obd->obd_req_replaying = 1;
1629         CDEBUG(D_INFO, "1: request replay stage - %d clients from t"LPU64"\n",
1630               atomic_read(&obd->obd_req_replay_clients),
1631               obd->obd_next_recovery_transno);
1632         resume_recovery_timer(obd);
1633         while ((req = target_next_replay_req(obd))) {
1634                 LASSERT(trd->trd_processing_task == current->pid);
1635                 DEBUG_REQ(D_HA, req, "processing t"LPD64" from %s",
1636                           lustre_msg_get_transno(req->rq_reqmsg),
1637                           libcfs_nid2str(req->rq_peer.nid));
1638                 handle_recovery_req(thread, req,
1639                                     trd->trd_recovery_handler);
1640                 obd->obd_replayed_requests++;
1641                 spin_lock_bh(&obd->obd_processing_task_lock);
1642                 obd->obd_next_recovery_transno++;
1643                 spin_unlock_bh(&obd->obd_processing_task_lock);
1644         }
1645
1646         spin_lock_bh(&obd->obd_processing_task_lock);
1647         target_cancel_recovery_timer(obd);
1648         spin_unlock_bh(&obd->obd_processing_task_lock);
1649
1650         /* If some clients haven't replayed requests in time, evict them */
1651         if (obd->obd_abort_recovery) {
1652                 CDEBUG(D_ERROR, "req replay timed out, aborting ...\n");
1653                 obd->obd_abort_recovery = obd->obd_stopping;
1654                 class_disconnect_stale_exports(obd, req_replay_done);
1655                 abort_req_replay_queue(obd);
1656         }
1657
1658         /* The second stage: replay locks */
1659         CDEBUG(D_INFO, "2: lock replay stage - %d clients\n",
1660                atomic_read(&obd->obd_lock_replay_clients));
1661         resume_recovery_timer(obd);
1662         while ((req = target_next_replay_lock(obd))) {
1663                 LASSERT(trd->trd_processing_task == current->pid);
1664                 DEBUG_REQ(D_HA|D_WARNING, req, "processing lock from %s: ",
1665                           libcfs_nid2str(req->rq_peer.nid));
1666                 handle_recovery_req(thread, req,
1667                                     trd->trd_recovery_handler);
1668                 obd->obd_replayed_locks++;
1669         }
1670
1671         spin_lock_bh(&obd->obd_processing_task_lock);
1672         target_cancel_recovery_timer(obd);
1673         spin_unlock_bh(&obd->obd_processing_task_lock);
1674         /* If some clients haven't replayed requests in time, evict them */
1675         if (obd->obd_abort_recovery) {
1676                 int stale;
1677                 CERROR("lock replay timed out, aborting ...\n");
1678                 obd->obd_abort_recovery = obd->obd_stopping;
1679                 stale = class_disconnect_stale_exports(obd, lock_replay_done);
1680                 abort_lock_replay_queue(obd);
1681         }
1682
1683         /* We drop recoverying flag to forward all new requests
1684          * to regular mds_handle() since now */
1685         spin_lock_bh(&obd->obd_processing_task_lock);
1686         obd->obd_recovering = obd->obd_abort_recovery = 0;
1687         spin_unlock_bh(&obd->obd_processing_task_lock);
1688         /* The third stage: reply on final pings */
1689         CDEBUG(D_INFO, "3: final stage - process recovery completion pings\n");
1690         while ((req = target_next_final_ping(obd))) {
1691                 LASSERT(trd->trd_processing_task == current->pid);
1692                 DEBUG_REQ(D_HA, req, "processing final ping from %s: ",
1693                           libcfs_nid2str(req->rq_peer.nid));
1694                 handle_recovery_req(thread, req,
1695                                     trd->trd_recovery_handler);
1696         }
1697
1698         delta = (jiffies - delta) / HZ;
1699         CDEBUG(D_INFO,"4: recovery completed in %lus - %d/%d reqs/locks\n",
1700               delta, obd->obd_replayed_requests, obd->obd_replayed_locks);
1701         LASSERT(atomic_read(&obd->obd_req_replay_clients) == 0);
1702         LASSERT(atomic_read(&obd->obd_lock_replay_clients) == 0);
1703         if (delta > obd_timeout * 2) {
1704                 CWARN("too long recovery - read logs\n");
1705                 libcfs_debug_dumplog();
1706         }
1707
1708         target_finish_recovery(obd);
1709
1710         lu_context_fini(&env.le_ctx);
1711         trd->trd_processing_task = 0;
1712         complete(&trd->trd_finishing);
1713         RETURN(rc);
1714 }
1715
1716 int target_start_recovery_thread(struct obd_device *obd, svc_handler_t handler)
1717 {
1718         int rc = 0;
1719         struct target_recovery_data *trd = &obd->obd_recovery_data;
1720
1721         memset(trd, 0, sizeof(*trd));
1722         init_completion(&trd->trd_starting);
1723         init_completion(&trd->trd_finishing);
1724         trd->trd_recovery_handler = handler;
1725
1726         if (kernel_thread(target_recovery_thread, obd, 0) > 0) {
1727                 wait_for_completion(&trd->trd_starting);
1728                 LASSERT(obd->obd_recovering != 0);
1729         } else
1730                 rc = -ECHILD;
1731
1732         return rc;
1733 }
1734
1735 void target_stop_recovery_thread(struct obd_device *obd)
1736 {
1737         spin_lock_bh(&obd->obd_processing_task_lock);
1738         if (obd->obd_recovery_data.trd_processing_task > 0) {
1739                 struct target_recovery_data *trd = &obd->obd_recovery_data;
1740                 CERROR("%s: Aborting recovery\n", obd->obd_name);
1741                 obd->obd_abort_recovery = 1;
1742                 wake_up(&obd->obd_next_transno_waitq);
1743                 spin_unlock_bh(&obd->obd_processing_task_lock);
1744                 wait_for_completion(&trd->trd_finishing);
1745         } else {
1746                 spin_unlock_bh(&obd->obd_processing_task_lock);
1747         }
1748 }
1749
1750 void target_recovery_fini(struct obd_device *obd)
1751 {
1752         class_disconnect_exports(obd);
1753         target_stop_recovery_thread(obd);
1754         target_cleanup_recovery(obd);
1755 }
1756 EXPORT_SYMBOL(target_recovery_fini);
1757
1758 static void target_recovery_expired(unsigned long castmeharder)
1759 {
1760         struct obd_device *obd = (struct obd_device *)castmeharder;
1761         LCONSOLE_WARN("%s: recovery timed out; %d clients never reconnected "
1762                       "after %lds (%d clients did)\n",
1763                       obd->obd_name, obd->obd_recoverable_clients,
1764                       cfs_time_current_sec()- obd->obd_recovery_start,
1765                       obd->obd_connected_clients);
1766         spin_lock_bh(&obd->obd_processing_task_lock);
1767         if (obd->obd_recovering)
1768                 obd->obd_abort_recovery = 1;
1769         cfs_waitq_signal(&obd->obd_next_transno_waitq);
1770         spin_unlock_bh(&obd->obd_processing_task_lock);
1771 }
1772
1773 void target_recovery_init(struct obd_device *obd, svc_handler_t handler)
1774 {
1775         if (obd->obd_max_recoverable_clients == 0)
1776                 return;
1777
1778         CWARN("RECOVERY: service %s, %d recoverable clients, "
1779               "last_transno "LPU64"\n", obd->obd_name,
1780               obd->obd_max_recoverable_clients, obd->obd_last_committed);
1781         obd->obd_next_recovery_transno = obd->obd_last_committed + 1;
1782         obd->obd_recovery_start = 0;
1783         obd->obd_recovery_end = 0;
1784         obd->obd_recovery_timeout = OBD_RECOVERY_FACTOR * obd_timeout;
1785         /* bz13079: this should be set to desired value for ost but not for mds */
1786         obd->obd_recovery_max_time = OBD_RECOVERY_MAX_TIME;
1787         cfs_timer_init(&obd->obd_recovery_timer, target_recovery_expired, obd);
1788         target_start_recovery_thread(obd, handler);
1789 }
1790 EXPORT_SYMBOL(target_recovery_init);
1791
1792 #endif
1793
1794 int target_process_req_flags(struct obd_device *obd, struct ptlrpc_request *req)
1795 {
1796         struct obd_export *exp = req->rq_export;
1797         LASSERT(exp != NULL);
1798         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REQ_REPLAY_DONE) {
1799                 /* client declares he's ready to replay locks */
1800                 spin_lock_bh(&obd->obd_processing_task_lock);
1801                 if (exp->exp_req_replay_needed) {
1802                         LASSERT(atomic_read(&obd->obd_req_replay_clients) > 0);
1803                         spin_lock(&exp->exp_lock);
1804                         exp->exp_req_replay_needed = 0;
1805                         spin_unlock(&exp->exp_lock);
1806                         atomic_dec(&obd->obd_req_replay_clients);
1807                         LASSERT(obd->obd_recoverable_clients > 0);
1808                         obd->obd_recoverable_clients--;
1809                         if (atomic_read(&obd->obd_req_replay_clients) == 0)
1810                                 CDEBUG(D_HA, "all clients have replayed reqs\n");
1811                         wake_up(&obd->obd_next_transno_waitq);
1812                 }
1813                 spin_unlock_bh(&obd->obd_processing_task_lock);
1814         }
1815         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LOCK_REPLAY_DONE) {
1816                 /* client declares he's ready to complete recovery
1817                  * so, we put the request on th final queue */
1818                 spin_lock_bh(&obd->obd_processing_task_lock);
1819                 if (exp->exp_lock_replay_needed) {
1820                         LASSERT(atomic_read(&obd->obd_lock_replay_clients) > 0);
1821                         spin_lock(&exp->exp_lock);
1822                         exp->exp_lock_replay_needed = 0;
1823                         spin_unlock(&exp->exp_lock);
1824                         atomic_dec(&obd->obd_lock_replay_clients);
1825                         if (atomic_read(&obd->obd_lock_replay_clients) == 0)
1826                                 CDEBUG(D_HA, "all clients have replayed locks\n");
1827                         wake_up(&obd->obd_next_transno_waitq);
1828                 }
1829                 spin_unlock_bh(&obd->obd_processing_task_lock);
1830         }
1831
1832         return 0;
1833 }
1834
1835 int target_queue_recovery_request(struct ptlrpc_request *req,
1836                                   struct obd_device *obd)
1837 {
1838         struct list_head *tmp;
1839         int inserted = 0;
1840         __u64 transno = lustre_msg_get_transno(req->rq_reqmsg);
1841
1842         ENTRY;
1843
1844         if (obd->obd_recovery_data.trd_processing_task == cfs_curproc_pid()) {
1845                 /* Processing the queue right now, don't re-add. */
1846                 RETURN(1);
1847         }
1848
1849         target_process_req_flags(obd, req);
1850
1851         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_LOCK_REPLAY_DONE) {
1852                 /* client declares he's ready to complete recovery
1853                  * so, we put the request on th final queue */
1854                 req = ptlrpc_clone_req(req);
1855                 if (req == NULL)
1856                         RETURN(-ENOMEM);
1857                 DEBUG_REQ(D_HA, req, "queue final req");
1858                 spin_lock_bh(&obd->obd_processing_task_lock);
1859                 if (obd->obd_recovering)
1860                         list_add_tail(&req->rq_list, &obd->obd_final_req_queue);
1861                 else {
1862                         spin_unlock_bh(&obd->obd_processing_task_lock);
1863                         ptlrpc_free_clone(req);
1864                         if (obd->obd_stopping) {
1865                                 RETURN(-ENOTCONN);
1866                         } else {
1867                                 RETURN(1);
1868                         }
1869                 }
1870                 spin_unlock_bh(&obd->obd_processing_task_lock);
1871                 RETURN(0);
1872         }
1873         if (lustre_msg_get_flags(req->rq_reqmsg) & MSG_REQ_REPLAY_DONE) {
1874                 /* client declares he's ready to replay locks */
1875                 req = ptlrpc_clone_req(req);
1876                 if (req == NULL)
1877                         RETURN(-ENOMEM);
1878                 DEBUG_REQ(D_HA, req, "queue lock replay req");
1879                 spin_lock_bh(&obd->obd_processing_task_lock);
1880                 LASSERT(obd->obd_recovering);
1881                 /* usually due to recovery abort */
1882                 if (!req->rq_export->exp_in_recovery) {
1883                         spin_unlock_bh(&obd->obd_processing_task_lock);
1884                         ptlrpc_free_clone(req);
1885                         RETURN(-ENOTCONN);
1886                 }
1887                 LASSERT(req->rq_export->exp_lock_replay_needed);
1888                 list_add_tail(&req->rq_list, &obd->obd_lock_replay_queue);
1889                 spin_unlock_bh(&obd->obd_processing_task_lock);
1890                 wake_up(&obd->obd_next_transno_waitq);
1891                 RETURN(0);
1892         }
1893
1894         /* CAVEAT EMPTOR: The incoming request message has been swabbed
1895          * (i.e. buflens etc are in my own byte order), but type-dependent
1896          * buffers (eg mds_body, ost_body etc) have NOT been swabbed. */
1897
1898         if (!transno) {
1899                 CFS_INIT_LIST_HEAD(&req->rq_list);
1900                 DEBUG_REQ(D_HA, req, "not queueing");
1901                 RETURN(1);
1902         }
1903
1904         spin_lock_bh(&obd->obd_processing_task_lock);
1905
1906         /* If we're processing the queue, we want don't want to queue this
1907          * message.
1908          *
1909          * Also, if this request has a transno less than the one we're waiting
1910          * for, we should process it now.  It could (and currently always will)
1911          * be an open request for a descriptor that was opened some time ago.
1912          *
1913          * Also, a resent, replayed request that has already been
1914          * handled will pass through here and be processed immediately.
1915          */
1916         CWARN("Next recovery transno: "LPU64", current: "LPU64", replaying: %i\n",
1917               obd->obd_next_recovery_transno, transno, obd->obd_req_replaying);
1918         if (transno < obd->obd_next_recovery_transno && obd->obd_req_replaying) {
1919                 /* Processing the queue right now, don't re-add. */
1920                 LASSERT(list_empty(&req->rq_list));
1921                 spin_unlock_bh(&obd->obd_processing_task_lock);
1922                 RETURN(1);
1923         }
1924         spin_unlock_bh(&obd->obd_processing_task_lock);
1925
1926         if (OBD_FAIL_CHECK(OBD_FAIL_TGT_REPLAY_DROP))
1927                 RETURN(0);
1928
1929         req = ptlrpc_clone_req(req);
1930         if (req == NULL)
1931                 RETURN(-ENOMEM);
1932
1933         spin_lock_bh(&obd->obd_processing_task_lock);
1934         LASSERT(obd->obd_recovering);
1935         if (!req->rq_export->exp_in_recovery) {
1936                 spin_unlock_bh(&obd->obd_processing_task_lock);
1937                 ptlrpc_free_clone(req);
1938                 RETURN(-ENOTCONN);
1939         }
1940         LASSERT(req->rq_export->exp_req_replay_needed);
1941
1942         if (target_exp_enqueue_req_replay(req)) {
1943                 spin_unlock_bh(&obd->obd_processing_task_lock);
1944                 DEBUG_REQ(D_ERROR, req, "dropping resent queued req");
1945                 ptlrpc_free_clone(req);
1946                 RETURN(0);
1947         }
1948
1949         /* XXX O(n^2) */
1950         list_for_each(tmp, &obd->obd_req_replay_queue) {
1951                 struct ptlrpc_request *reqiter =
1952                         list_entry(tmp, struct ptlrpc_request, rq_list);
1953
1954                 if (lustre_msg_get_transno(reqiter->rq_reqmsg) > transno) {
1955                         list_add_tail(&req->rq_list, &reqiter->rq_list);
1956                         inserted = 1;
1957                         break;
1958                 }
1959
1960                 if (unlikely(lustre_msg_get_transno(reqiter->rq_reqmsg) ==
1961                              transno)) {
1962                         DEBUG_REQ(D_ERROR, req, "dropping replay: transno "
1963                                   "has been claimed by another client");
1964                         spin_unlock_bh(&obd->obd_processing_task_lock);
1965                         target_exp_dequeue_req_replay(req);
1966                         ptlrpc_free_clone(req);
1967                         RETURN(0);
1968                 }
1969         }
1970
1971         if (!inserted)
1972                 list_add_tail(&req->rq_list, &obd->obd_req_replay_queue);
1973
1974         obd->obd_requests_queued_for_recovery++;
1975         wake_up(&obd->obd_next_transno_waitq);
1976         spin_unlock_bh(&obd->obd_processing_task_lock);
1977         RETURN(0);
1978 }
1979
1980 struct obd_device * target_req2obd(struct ptlrpc_request *req)
1981 {
1982         return req->rq_export->exp_obd;
1983 }
1984
1985 static inline struct ldlm_pool *ldlm_exp2pl(struct obd_export *exp)
1986 {
1987         LASSERT(exp != NULL);
1988         return &exp->exp_obd->obd_namespace->ns_pool;
1989 }
1990
1991 /**
1992  * Packs current SLV and Limit into \a req.
1993  */
1994 int target_pack_pool_reply(struct ptlrpc_request *req)
1995 {
1996         struct obd_device *obd;
1997         ENTRY;
1998
1999         /*
2000          * Check that we still have all structures alive as this may
2001          * be some late rpc in shutdown time.
2002          */
2003         if (unlikely(!req->rq_export || !req->rq_export->exp_obd ||
2004                      !exp_connect_lru_resize(req->rq_export))) {
2005                 lustre_msg_set_slv(req->rq_repmsg, 0);
2006                 lustre_msg_set_limit(req->rq_repmsg, 0);
2007                 RETURN(0);
2008         }
2009
2010         /*
2011          * OBD is alive here as export is alive, which we checked above.
2012          */
2013         obd = req->rq_export->exp_obd;
2014
2015         read_lock(&obd->obd_pool_lock);
2016         lustre_msg_set_slv(req->rq_repmsg, obd->obd_pool_slv);
2017         lustre_msg_set_limit(req->rq_repmsg, obd->obd_pool_limit);
2018         read_unlock(&obd->obd_pool_lock);
2019
2020         RETURN(0);
2021 }
2022
2023 int target_send_reply_msg(struct ptlrpc_request *req, int rc, int fail_id)
2024 {
2025         if (OBD_FAIL_CHECK_ORSET(fail_id & ~OBD_FAIL_ONCE, OBD_FAIL_ONCE)) {
2026                 DEBUG_REQ(D_ERROR, req, "dropping reply");
2027                 return (-ECOMM);
2028         }
2029
2030         if (unlikely(rc)) {
2031                 DEBUG_REQ(D_ERROR, req, "processing error (%d)", rc);
2032                 req->rq_status = rc;
2033                 return (ptlrpc_send_error(req, 1));
2034         } else {
2035                 DEBUG_REQ(D_NET, req, "sending reply");
2036         }
2037
2038         return (ptlrpc_send_reply(req, PTLRPC_REPLY_MAYBE_DIFFICULT));
2039 }
2040
2041 void target_send_reply(struct ptlrpc_request *req, int rc, int fail_id)
2042 {
2043         int                        netrc;
2044         struct ptlrpc_reply_state *rs;
2045         struct obd_device         *obd;
2046         struct obd_export         *exp;
2047         struct ptlrpc_service     *svc;
2048         ENTRY;
2049
2050         if (req->rq_no_reply) {
2051                 EXIT;
2052                 return;
2053         }
2054
2055         svc = req->rq_rqbd->rqbd_service;
2056         rs = req->rq_reply_state;
2057         if (rs == NULL || !rs->rs_difficult) {
2058                 /* no notifiers */
2059                 target_send_reply_msg (req, rc, fail_id);
2060                 EXIT;
2061                 return;
2062         }
2063
2064         /* must be an export if locks saved */
2065         LASSERT (req->rq_export != NULL);
2066         /* req/reply consistent */
2067         LASSERT (rs->rs_service == svc);
2068
2069         /* "fresh" reply */
2070         LASSERT (!rs->rs_scheduled);
2071         LASSERT (!rs->rs_scheduled_ever);
2072         LASSERT (!rs->rs_handled);
2073         LASSERT (!rs->rs_on_net);
2074         LASSERT (rs->rs_export == NULL);
2075         LASSERT (list_empty(&rs->rs_obd_list));
2076         LASSERT (list_empty(&rs->rs_exp_list));
2077
2078         exp = class_export_get (req->rq_export);
2079         obd = exp->exp_obd;
2080
2081         /* disable reply scheduling onto srv_reply_queue while I'm setting up */
2082         rs->rs_scheduled = 1;
2083         rs->rs_on_net    = 1;
2084         rs->rs_xid       = req->rq_xid;
2085         rs->rs_transno   = req->rq_transno;
2086         rs->rs_export    = exp;
2087
2088         spin_lock(&obd->obd_uncommitted_replies_lock);
2089
2090         CDEBUG(D_NET, "rs transno = "LPU64", last committed = "LPU64"\n",
2091                rs->rs_transno, obd->obd_last_committed);
2092         if (rs->rs_transno > obd->obd_last_committed) {
2093                 /* not committed already */
2094                 list_add_tail (&rs->rs_obd_list,
2095                                &obd->obd_uncommitted_replies);
2096         }
2097
2098         spin_unlock (&obd->obd_uncommitted_replies_lock);
2099         spin_lock (&exp->exp_lock);
2100
2101         list_add_tail (&rs->rs_exp_list, &exp->exp_outstanding_replies);
2102
2103         spin_unlock(&exp->exp_lock);
2104
2105         netrc = target_send_reply_msg (req, rc, fail_id);
2106
2107         spin_lock(&svc->srv_lock);
2108
2109         svc->srv_n_difficult_replies++;
2110
2111         if (netrc != 0) {
2112                 /* error sending: reply is off the net.  Also we need +1
2113                  * reply ref until ptlrpc_server_handle_reply() is done
2114                  * with the reply state (if the send was successful, there
2115                  * would have been +1 ref for the net, which
2116                  * reply_out_callback leaves alone) */
2117                 rs->rs_on_net = 0;
2118                 ptlrpc_rs_addref(rs);
2119                 atomic_inc (&svc->srv_outstanding_replies);
2120         }
2121
2122         if (rs->rs_transno <= obd->obd_last_committed ||
2123             (!rs->rs_on_net && !rs->rs_no_ack) ||
2124              list_empty(&rs->rs_exp_list) ||     /* completed already */
2125              list_empty(&rs->rs_obd_list)) {
2126                 CDEBUG(D_HA, "Schedule reply immediately\n");
2127                 list_add_tail (&rs->rs_list, &svc->srv_reply_queue);
2128                 cfs_waitq_signal (&svc->srv_waitq);
2129         } else {
2130                 list_add (&rs->rs_list, &svc->srv_active_replies);
2131                 rs->rs_scheduled = 0;           /* allow notifier to schedule */
2132         }
2133
2134         spin_unlock(&svc->srv_lock);
2135         EXIT;
2136 }
2137
2138 int target_handle_ping(struct ptlrpc_request *req)
2139 {
2140         obd_ping(req->rq_export);
2141         return req_capsule_server_pack(&req->rq_pill);
2142 }
2143
2144 void target_committed_to_req(struct ptlrpc_request *req)
2145 {
2146         struct obd_device *obd;
2147
2148         if (req == NULL || req->rq_export == NULL)
2149                 return;
2150
2151         obd = req->rq_export->exp_obd;
2152         if (obd == NULL)
2153                 return;
2154
2155         if (!obd->obd_no_transno && req->rq_repmsg != NULL)
2156                 lustre_msg_set_last_committed(req->rq_repmsg,
2157                                               obd->obd_last_committed);
2158         else
2159                 DEBUG_REQ(D_IOCTL, req, "not sending last_committed update (%d/"
2160                           "%d)", obd->obd_no_transno, req->rq_repmsg == NULL);
2161
2162         CDEBUG(D_INFO, "last_committed "LPU64", transno "LPU64", xid "LPU64"\n",
2163                obd->obd_last_committed, req->rq_transno, req->rq_xid);
2164 }
2165
2166 EXPORT_SYMBOL(target_committed_to_req);
2167
2168 int target_handle_qc_callback(struct ptlrpc_request *req)
2169 {
2170         struct obd_quotactl *oqctl;
2171         struct client_obd *cli = &req->rq_export->exp_obd->u.cli;
2172
2173         oqctl = req_capsule_client_get(&req->rq_pill, &RMF_OBD_QUOTACTL);
2174         if (oqctl == NULL) {
2175                 CERROR("Can't unpack obd_quotactl\n");
2176                 RETURN(-EPROTO);
2177         }
2178
2179         cli->cl_qchk_stat = oqctl->qc_stat;
2180
2181         return 0;
2182 }
2183
2184 #ifdef HAVE_QUOTA_SUPPORT
2185 int target_handle_dqacq_callback(struct ptlrpc_request *req)
2186 {
2187 #ifdef __KERNEL__
2188         struct obd_device *obd = req->rq_export->exp_obd;
2189         struct obd_device *master_obd;
2190         struct obd_device_target *obt;
2191         struct lustre_quota_ctxt *qctxt;
2192         struct qunit_data *qdata = NULL;
2193         int rc = 0;
2194         ENTRY;
2195
2196         if (OBD_FAIL_CHECK(OBD_FAIL_MDS_DROP_QUOTA_REQ))
2197                 RETURN(rc);
2198
2199         rc = req_capsule_server_pack(&req->rq_pill);
2200         if (rc) {
2201                 CERROR("packing reply failed!: rc = %d\n", rc);
2202                 RETURN(rc);
2203         }
2204
2205         LASSERT(req->rq_export);
2206
2207         OBD_ALLOC(qdata, sizeof(struct qunit_data));
2208         if (!qdata)
2209                 RETURN(-ENOMEM);
2210         rc = quota_get_qdata(req, qdata, QUOTA_REQUEST, QUOTA_EXPORT);
2211         if (rc < 0) {
2212                 CDEBUG(D_ERROR, "Can't unpack qunit_data(rc: %d)\n", rc);
2213                 GOTO(out, rc);
2214         }
2215
2216         /* we use the observer */
2217         if (!obd->obd_observer || !obd->obd_observer->obd_observer) {
2218                 CERROR("Can't find the observer, it is recovering\n");
2219                 req->rq_status = -EIO;
2220                 GOTO(send_reply, rc = -EIO);
2221         }
2222
2223         master_obd = obd->obd_observer->obd_observer;
2224         obt = &master_obd->u.obt;
2225         qctxt = &obt->obt_qctxt;
2226
2227         if (!qctxt->lqc_setup || !qctxt->lqc_valid) {
2228                 /* quota_type has not been processed yet, return EAGAIN
2229                  * until we know whether or not quotas are supposed to
2230                  * be enabled */
2231                 CDEBUG(D_QUOTA, "quota_type not processed yet, return "
2232                        "-EAGAIN\n");
2233                 req->rq_status = -EAGAIN;
2234                 rc = ptlrpc_reply(req);
2235                 GOTO(out, rc);
2236         }
2237
2238         down_read(&obt->obt_rwsem);
2239         if (qctxt->lqc_lqs_hash == NULL) {
2240                 up_read(&obt->obt_rwsem);
2241                 /* quota_type has not been processed yet, return EAGAIN
2242                  * until we know whether or not quotas are supposed to
2243                  * be enabled */
2244                 CDEBUG(D_QUOTA, "quota_ctxt is not ready yet, return "
2245                        "-EAGAIN\n");
2246                 req->rq_status = -EAGAIN;
2247                 rc = ptlrpc_reply(req);
2248                 GOTO(out, rc);
2249         }
2250
2251         LASSERT(qctxt->lqc_handler);
2252         rc = qctxt->lqc_handler(master_obd, qdata,
2253                                 lustre_msg_get_opc(req->rq_reqmsg));
2254         up_read(&obt->obt_rwsem);
2255         if (rc && rc != -EDQUOT)
2256                 CDEBUG(rc == -EBUSY  ? D_QUOTA : D_ERROR,
2257                        "dqacq failed! (rc:%d)\n", rc);
2258         req->rq_status = rc;
2259
2260         /* there are three forms of qunit(historic causes), so we need to
2261          * adjust the same form to different forms slaves needed */
2262         rc = quota_copy_qdata(req, qdata, QUOTA_REPLY, QUOTA_EXPORT);
2263         if (rc < 0) {
2264                 CDEBUG(D_ERROR, "Can't pack qunit_data(rc: %d)\n", rc);
2265                 GOTO(out, rc);
2266         }
2267
2268         /* Block the quota req. b=14840 */
2269         OBD_FAIL_TIMEOUT(OBD_FAIL_MDS_BLOCK_QUOTA_REQ, obd_timeout);
2270 send_reply:
2271         rc = ptlrpc_reply(req);
2272 out:
2273         OBD_FREE(qdata, sizeof(struct qunit_data));
2274         RETURN(rc);
2275 #else
2276         return 0;
2277 #endif /* !__KERNEL__ */
2278 }
2279 #endif /* HAVE_QUOTA_SUPPORT */
2280
2281 ldlm_mode_t lck_compat_array[] = {
2282         [LCK_EX] LCK_COMPAT_EX,
2283         [LCK_PW] LCK_COMPAT_PW,
2284         [LCK_PR] LCK_COMPAT_PR,
2285         [LCK_CW] LCK_COMPAT_CW,
2286         [LCK_CR] LCK_COMPAT_CR,
2287         [LCK_NL] LCK_COMPAT_NL,
2288         [LCK_GROUP] LCK_COMPAT_GROUP,
2289         [LCK_COS] LCK_COMPAT_COS,
2290 };
2291
2292 /**
2293  * Rather arbitrary mapping from LDLM error codes to errno values. This should
2294  * not escape to the user level.
2295  */
2296 int ldlm_error2errno(ldlm_error_t error)
2297 {
2298         int result;
2299
2300         switch (error) {
2301         case ELDLM_OK:
2302                 result = 0;
2303                 break;
2304         case ELDLM_LOCK_CHANGED:
2305                 result = -ESTALE;
2306                 break;
2307         case ELDLM_LOCK_ABORTED:
2308                 result = -ENAVAIL;
2309                 break;
2310         case ELDLM_LOCK_REPLACED:
2311                 result = -ESRCH;
2312                 break;
2313         case ELDLM_NO_LOCK_DATA:
2314                 result = -ENOENT;
2315                 break;
2316         case ELDLM_NAMESPACE_EXISTS:
2317                 result = -EEXIST;
2318                 break;
2319         case ELDLM_BAD_NAMESPACE:
2320                 result = -EBADF;
2321                 break;
2322         default:
2323                 if (((int)error) < 0)  /* cast to signed type */
2324                         result = error; /* as ldlm_error_t can be unsigned */
2325                 else {
2326                         CERROR("Invalid DLM result code: %i\n", error);
2327                         result = -EPROTO;
2328                 }
2329         }
2330         return result;
2331 }
2332 EXPORT_SYMBOL(ldlm_error2errno);
2333
2334 /**
2335  * Dual to ldlm_error2errno(): maps errno values back to ldlm_error_t.
2336  */
2337 ldlm_error_t ldlm_errno2error(int err_no)
2338 {
2339         int error;
2340
2341         switch (err_no) {
2342         case 0:
2343                 error = ELDLM_OK;
2344                 break;
2345         case -ESTALE:
2346                 error = ELDLM_LOCK_CHANGED;
2347                 break;
2348         case -ENAVAIL:
2349                 error = ELDLM_LOCK_ABORTED;
2350                 break;
2351         case -ESRCH:
2352                 error = ELDLM_LOCK_REPLACED;
2353                 break;
2354         case -ENOENT:
2355                 error = ELDLM_NO_LOCK_DATA;
2356                 break;
2357         case -EEXIST:
2358                 error = ELDLM_NAMESPACE_EXISTS;
2359                 break;
2360         case -EBADF:
2361                 error = ELDLM_BAD_NAMESPACE;
2362                 break;
2363         default:
2364                 error = err_no;
2365         }
2366         return error;
2367 }
2368 EXPORT_SYMBOL(ldlm_errno2error);
2369