Whamcloud - gitweb
1329852e12bc8c162704d2d9e5542ebe41f7fa20
[fs/lustre-release.git] / lustre / mdd / mdd_lproc.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) 2012, 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/mdd/mdd_lproc.c
37  *
38  * Lustre Metadata Server (mdd) routines
39  *
40  * Author: Wang Di <wangdi@clusterfs.com>
41  */
42
43 #define DEBUG_SUBSYSTEM S_MDS
44
45 #include <obd.h>
46 #include <obd_class.h>
47 #include <obd_support.h>
48 #include <lprocfs_status.h>
49 #include <libcfs/libcfs_string.h>
50 #include "mdd_internal.h"
51
52 static ssize_t
53 mdd_atime_diff_seq_write(struct file *file, const char __user *buffer,
54                          size_t count, loff_t *off)
55 {
56         struct seq_file *m = file->private_data;
57         struct mdd_device *mdd = m->private;
58         char kernbuf[20], *end;
59         unsigned long diff = 0;
60
61         if (count > (sizeof(kernbuf) - 1))
62                 return -EINVAL;
63
64         if (copy_from_user(kernbuf, buffer, count))
65                 return -EFAULT;
66
67         kernbuf[count] = '\0';
68
69         diff = simple_strtoul(kernbuf, &end, 0);
70         if (kernbuf == end)
71                 return -EINVAL;
72
73         mdd->mdd_atime_diff = diff;
74         return count;
75 }
76
77 static int mdd_atime_diff_seq_show(struct seq_file *m, void *data)
78 {
79         struct mdd_device *mdd = m->private;
80
81         seq_printf(m, "%lu\n", mdd->mdd_atime_diff);
82         return 0;
83 }
84 LPROC_SEQ_FOPS(mdd_atime_diff);
85
86 /**** changelogs ****/
87 static int mdd_changelog_mask_seq_show(struct seq_file *m, void *data)
88 {
89         struct mdd_device *mdd = m->private;
90         int i = 0;
91
92         while (i < CL_LAST) {
93                 if (mdd->mdd_cl.mc_mask & (1 << i))
94                         seq_printf(m, "%s ", changelog_type2str(i));
95                 i++;
96         }
97         return 0;
98 }
99
100 static ssize_t
101 mdd_changelog_mask_seq_write(struct file *file, const char __user *buffer,
102                              size_t count, loff_t *off)
103 {
104         struct seq_file *m = file->private_data;
105         struct mdd_device *mdd = m->private;
106         char *kernbuf;
107         int rc;
108         ENTRY;
109
110         if (count >= PAGE_CACHE_SIZE)
111                 RETURN(-EINVAL);
112         OBD_ALLOC(kernbuf, PAGE_CACHE_SIZE);
113         if (kernbuf == NULL)
114                 RETURN(-ENOMEM);
115         if (copy_from_user(kernbuf, buffer, count))
116                 GOTO(out, rc = -EFAULT);
117         kernbuf[count] = 0;
118
119         rc = cfs_str2mask(kernbuf, changelog_type2str, &mdd->mdd_cl.mc_mask,
120                           CHANGELOG_MINMASK, CHANGELOG_ALLMASK);
121         if (rc == 0)
122                 rc = count;
123 out:
124         OBD_FREE(kernbuf, PAGE_CACHE_SIZE);
125         return rc;
126 }
127 LPROC_SEQ_FOPS(mdd_changelog_mask);
128
129 static int lprocfs_changelog_users_cb(const struct lu_env *env,
130                                       struct llog_handle *llh,
131                                       struct llog_rec_hdr *hdr, void *data)
132 {
133         struct llog_changelog_user_rec *rec;
134         struct seq_file *m = data;
135
136         LASSERT(llh->lgh_hdr->llh_flags & LLOG_F_IS_PLAIN);
137
138         rec = (struct llog_changelog_user_rec *)hdr;
139
140         seq_printf(m, CHANGELOG_USER_PREFIX"%-3d "LPU64"\n",
141                    rec->cur_id, rec->cur_endrec);
142         return 0;
143 }
144
145 static int mdd_changelog_users_seq_show(struct seq_file *m, void *data)
146 {
147         struct lu_env            env;
148         struct mdd_device       *mdd = m->private;
149         struct llog_ctxt        *ctxt;
150         __u64                    cur;
151         int                      rc;
152
153         ctxt = llog_get_context(mdd2obd_dev(mdd),
154                                 LLOG_CHANGELOG_USER_ORIG_CTXT);
155         if (ctxt == NULL)
156                 return -ENXIO;
157         LASSERT(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT);
158
159         rc = lu_env_init(&env, LCT_LOCAL);
160         if (rc) {
161                 llog_ctxt_put(ctxt);
162                 return rc;
163         }
164
165         spin_lock(&mdd->mdd_cl.mc_lock);
166         cur = mdd->mdd_cl.mc_index;
167         spin_unlock(&mdd->mdd_cl.mc_lock);
168
169         seq_printf(m, "current index: "LPU64"\n", cur);
170         seq_printf(m, "%-5s %s\n", "ID", "index");
171
172         llog_cat_process(&env, ctxt->loc_handle, lprocfs_changelog_users_cb,
173                          m, 0, 0);
174
175         lu_env_fini(&env);
176         llog_ctxt_put(ctxt);
177         return 0;
178 }
179 LPROC_SEQ_FOPS_RO(mdd_changelog_users);
180
181 static int mdd_sync_perm_seq_show(struct seq_file *m, void *data)
182 {
183         struct mdd_device *mdd = m->private;
184
185         LASSERT(mdd != NULL);
186         seq_printf(m, "%d\n", mdd->mdd_sync_permission);
187         return 0;
188 }
189
190 static ssize_t
191 mdd_sync_perm_seq_write(struct file *file, const char __user *buffer,
192                         size_t count, loff_t *off)
193 {
194         struct seq_file *m = file->private_data;
195         struct mdd_device *mdd = m->private;
196         int val, rc;
197
198         LASSERT(mdd != NULL);
199         rc = lprocfs_write_helper(buffer, count, &val);
200         if (rc)
201                 return rc;
202
203         mdd->mdd_sync_permission = !!val;
204         return count;
205 }
206 LPROC_SEQ_FOPS(mdd_sync_perm);
207
208 static int mdd_lfsck_speed_limit_seq_show(struct seq_file *m, void *data)
209 {
210         struct mdd_device *mdd = m->private;
211
212         LASSERT(mdd != NULL);
213         return lfsck_get_speed(m, mdd->mdd_bottom);
214 }
215
216 static ssize_t
217 mdd_lfsck_speed_limit_seq_write(struct file *file, const char __user *buffer,
218                                 size_t count, loff_t *off)
219 {
220         struct seq_file *m = file->private_data;
221         struct mdd_device *mdd = m->private;
222         __u32 val;
223         int rc;
224
225         LASSERT(mdd != NULL);
226         rc = lprocfs_write_helper(buffer, count, &val);
227         if (rc != 0)
228                 return rc;
229
230         rc = lfsck_set_speed(mdd->mdd_bottom, val);
231         return rc != 0 ? rc : count;
232 }
233 LPROC_SEQ_FOPS(mdd_lfsck_speed_limit);
234
235 static int mdd_lfsck_async_windows_seq_show(struct seq_file *m, void *data)
236 {
237         struct mdd_device *mdd = m->private;
238
239         LASSERT(mdd != NULL);
240         return lfsck_get_windows(m, mdd->mdd_bottom);
241 }
242
243 static ssize_t
244 mdd_lfsck_async_windows_seq_write(struct file *file, const char __user *buffer,
245                                   size_t count, loff_t *off)
246 {
247         struct seq_file   *m = file->private_data;
248         struct mdd_device *mdd = m->private;
249         __u32              val;
250         int                rc;
251
252         LASSERT(mdd != NULL);
253         rc = lprocfs_write_helper(buffer, count, &val);
254         if (rc == 0)
255                 rc = lfsck_set_windows(mdd->mdd_bottom, val);
256
257         return rc != 0 ? rc : count;
258 }
259 LPROC_SEQ_FOPS(mdd_lfsck_async_windows);
260
261 static int mdd_lfsck_namespace_seq_show(struct seq_file *m, void *data)
262 {
263         struct mdd_device *mdd = m->private;
264
265         LASSERT(mdd != NULL);
266
267         return lfsck_dump(m, mdd->mdd_bottom, LFSCK_TYPE_NAMESPACE);
268 }
269 LPROC_SEQ_FOPS_RO(mdd_lfsck_namespace);
270
271 static int mdd_lfsck_layout_seq_show(struct seq_file *m, void *data)
272 {
273         struct mdd_device *mdd = m->private;
274
275         LASSERT(mdd != NULL);
276
277         return lfsck_dump(m, mdd->mdd_bottom, LFSCK_TYPE_LAYOUT);
278 }
279 LPROC_SEQ_FOPS_RO(mdd_lfsck_layout);
280
281 static struct lprocfs_vars lprocfs_mdd_obd_vars[] = {
282         { .name =       "atime_diff",
283           .fops =       &mdd_atime_diff_fops            },
284         { .name =       "changelog_mask",
285           .fops =       &mdd_changelog_mask_fops        },
286         { .name =       "changelog_users",
287           .fops =       &mdd_changelog_users_fops       },
288         { .name =       "sync_permission",
289           .fops =       &mdd_sync_perm_fops             },
290         { .name =       "lfsck_speed_limit",
291           .fops =       &mdd_lfsck_speed_limit_fops     },
292         { .name =       "lfsck_async_windows",
293           .fops =       &mdd_lfsck_async_windows_fops   },
294         { .name =       "lfsck_namespace",
295           .fops =       &mdd_lfsck_namespace_fops       },
296         { .name =       "lfsck_layout",
297           .fops =       &mdd_lfsck_layout_fops          },
298         { NULL }
299 };
300
301 int mdd_procfs_init(struct mdd_device *mdd, const char *name)
302 {
303         struct obd_device *obd = mdd2obd_dev(mdd);
304         struct obd_type   *type;
305         int                rc;
306         ENTRY;
307
308         /* at the moment there is no linkage between lu_type
309          * and obd_type, so we lookup obd_type this way */
310         type = class_search_type(LUSTRE_MDD_NAME);
311
312         LASSERT(name != NULL);
313         LASSERT(type != NULL);
314         LASSERT(obd  != NULL);
315
316         /* Find the type procroot and add the proc entry for this device */
317         obd->obd_vars = lprocfs_mdd_obd_vars;
318         mdd->mdd_proc_entry = lprocfs_register(name, type->typ_procroot,
319                                                obd->obd_vars, mdd);
320         if (IS_ERR(mdd->mdd_proc_entry)) {
321                 rc = PTR_ERR(mdd->mdd_proc_entry);
322                 CERROR("Error %d setting up lprocfs for %s\n",
323                        rc, name);
324                 mdd->mdd_proc_entry = NULL;
325                 GOTO(out, rc);
326         }
327         rc = 0;
328         EXIT;
329 out:
330         if (rc)
331                 mdd_procfs_fini(mdd);
332         return rc;
333 }
334
335 void mdd_procfs_fini(struct mdd_device *mdd)
336 {
337         if (mdd->mdd_proc_entry)
338                 lprocfs_remove(&mdd->mdd_proc_entry);
339 }