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