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