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