Whamcloud - gitweb
LU-3031 ldlm: disconnect speedup
[fs/lustre-release.git] / lustre / mgs / mgs_fs.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2014, Intel Corporation.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lustre/mgs/mgs_fs.c
37  *
38  * Lustre Management Server (MGS) filesystem interface code
39  *
40  * Author: Nathan Rutman <nathan@clusterfs.com>
41  * Author: Alex Zhuravlev <bzzz@whamcloud.com>
42  */
43
44 #define DEBUG_SUBSYSTEM S_MGS
45
46 #include <lustre_fid.h>
47 #include "mgs_internal.h"
48
49 /**
50  * Initialize MGS per-export statistics.
51  *
52  * This function sets up procfs entries for various MGS export counters. These
53  * counters are for per-client statistics tracked on the server.
54  *
55  * \param[in] obd       OBD device
56  * \param[in] exp       OBD export
57  * \param[in] localdata NID of client
58  *
59  * \retval              0 if successful
60  * \retval              negative value on error
61  */
62 int mgs_export_stats_init(struct obd_device *obd, struct obd_export *exp,
63                           void *localdata)
64 {
65         lnet_nid_t *client_nid = localdata;
66         struct nid_stat *stats;
67         int rc;
68         ENTRY;
69
70         rc = lprocfs_exp_setup(exp, client_nid);
71         if (rc != 0)
72                 /* Mask error for already created /proc entries */
73                 RETURN(rc == -EALREADY ? 0 : rc);
74
75         stats = exp->exp_nid_stats;
76         stats->nid_stats = lprocfs_alloc_stats(NUM_OBD_STATS + LPROC_MGS_LAST,
77                                                 LPROCFS_STATS_FLAG_NOPERCPU);
78         if (stats->nid_stats == NULL)
79                 RETURN(-ENOMEM);
80
81         lprocfs_init_ops_stats(LPROC_MGS_LAST, stats->nid_stats);
82
83         mgs_stats_counter_init(stats->nid_stats);
84
85         rc = lprocfs_register_stats(stats->nid_proc, "stats", stats->nid_stats);
86         if (rc != 0) {
87                 lprocfs_free_stats(&stats->nid_stats);
88                 GOTO(out, rc);
89         }
90
91         rc = lprocfs_nid_ldlm_stats_init(stats);
92         if (rc != 0)
93                 GOTO(out, rc);
94
95 out:
96         RETURN(rc);
97 }
98
99 /**
100  * Add client export data to the MGS.  This data is currently NOT stored on
101  * disk in the last_rcvd file or anywhere else.  In the event of a MGS
102  * crash all connections are treated as new connections.
103  */
104 int mgs_client_add(struct obd_device *obd, struct obd_export *exp,
105                           void *localdata)
106 {
107         return 0;
108 }
109
110 /* Remove client export data from the MGS */
111 int mgs_client_free(struct obd_export *exp)
112 {
113         return 0;
114 }
115
116 int mgs_fs_setup(const struct lu_env *env, struct mgs_device *mgs)
117 {
118         struct lu_fid            fid;
119         struct dt_object        *o;
120         struct lu_fid            rfid;
121         struct dt_object        *root;
122         int                      rc;
123
124         ENTRY;
125
126         OBD_SET_CTXT_MAGIC(&mgs->mgs_obd->obd_lvfs_ctxt);
127         mgs->mgs_obd->obd_lvfs_ctxt.dt = mgs->mgs_bottom;
128
129         /* XXX: fix when support for N:1 layering is implemented */
130         LASSERT(mgs->mgs_dt_dev.dd_lu_dev.ld_site);
131         mgs->mgs_dt_dev.dd_lu_dev.ld_site->ls_top_dev =
132                 &mgs->mgs_dt_dev.dd_lu_dev;
133
134         /* Setup the configs dir */
135         fid.f_seq = FID_SEQ_LOCAL_NAME;
136         fid.f_oid = 1;
137         fid.f_ver = 0;
138         rc = local_oid_storage_init(env, mgs->mgs_bottom, &fid, &mgs->mgs_los);
139         if (rc)
140                 GOTO(out, rc);
141
142         rc = dt_root_get(env, mgs->mgs_bottom, &rfid);
143         if (rc)
144                 GOTO(out_los, rc);
145
146         root = dt_locate_at(env, mgs->mgs_bottom, &rfid,
147                             &mgs->mgs_dt_dev.dd_lu_dev, NULL);
148         if (unlikely(IS_ERR(root)))
149                 GOTO(out_los, rc = PTR_ERR(root));
150
151         o = local_file_find_or_create(env, mgs->mgs_los, root,
152                                       MOUNT_CONFIGS_DIR,
153                                       S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO);
154         if (IS_ERR(o))
155                 GOTO(out_root, rc = PTR_ERR(o));
156
157         if (!dt_try_as_dir(env, o)) {
158                 lu_object_put(env, &o->do_lu);
159                 GOTO(out_root, rc = -ENOTDIR);
160         }
161
162         mgs->mgs_configs_dir = o;
163
164         /* create directory to store nid table versions */
165         o = local_file_find_or_create(env, mgs->mgs_los, root, MGS_NIDTBL_DIR,
166                                       S_IFDIR | S_IRUGO | S_IWUSR | S_IXUGO);
167         if (IS_ERR(o)) {
168                 lu_object_put(env, &mgs->mgs_configs_dir->do_lu);
169                 mgs->mgs_configs_dir = NULL;
170                 GOTO(out_root, rc = PTR_ERR(o));
171         }
172
173         mgs->mgs_nidtbl_dir = o;
174
175 out_root:
176         lu_object_put(env, &root->do_lu);
177 out_los:
178         if (rc) {
179                 local_oid_storage_fini(env, mgs->mgs_los);
180                 mgs->mgs_los = NULL;
181         }
182 out:
183         mgs->mgs_dt_dev.dd_lu_dev.ld_site->ls_top_dev = NULL;
184
185         return rc;
186 }
187
188 int mgs_fs_cleanup(const struct lu_env *env, struct mgs_device *mgs)
189 {
190         if (mgs->mgs_configs_dir) {
191                 lu_object_put(env, &mgs->mgs_configs_dir->do_lu);
192                 mgs->mgs_configs_dir = NULL;
193         }
194         if (mgs->mgs_nidtbl_dir) {
195                 lu_object_put(env, &mgs->mgs_nidtbl_dir->do_lu);
196                 mgs->mgs_nidtbl_dir = NULL;
197         }
198         if (mgs->mgs_los) {
199                 local_oid_storage_fini(env, mgs->mgs_los);
200                 mgs->mgs_los = NULL;
201         }
202
203         return 0;
204 }