Whamcloud - gitweb
LU-7156 mdd: add changelog_size to procfs
[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_changelog_size_ctxt(const struct lu_env *env,
182                                    struct mdd_device *mdd,
183                                    int index, __u64 *val)
184 {
185         struct llog_ctxt        *ctxt;
186
187         ctxt = llog_get_context(mdd2obd_dev(mdd),
188                                 index);
189         if (ctxt == NULL)
190                 return -ENXIO;
191
192         if (!(ctxt->loc_handle->lgh_hdr->llh_flags & LLOG_F_IS_CAT)) {
193                 CERROR("%s: ChangeLog has wrong flags: rc = %d\n",
194                        ctxt->loc_obd->obd_name, -EINVAL);
195                 llog_ctxt_put(ctxt);
196                 return -EINVAL;
197         }
198
199         *val += llog_cat_size(env, ctxt->loc_handle);
200
201         llog_ctxt_put(ctxt);
202
203         return 0;
204 }
205
206 static int mdd_changelog_size_seq_show(struct seq_file *m, void *data)
207 {
208         struct lu_env            env;
209         struct mdd_device       *mdd = m->private;
210         __u64                    tmp = 0;
211         int                      rc;
212
213         rc = lu_env_init(&env, LCT_LOCAL);
214         if (rc)
215                 return rc;
216
217         rc = mdd_changelog_size_ctxt(&env, mdd, LLOG_CHANGELOG_ORIG_CTXT, &tmp);
218         if (rc) {
219                 lu_env_fini(&env);
220                 return rc;
221         }
222
223         rc = mdd_changelog_size_ctxt(&env, mdd, LLOG_CHANGELOG_USER_ORIG_CTXT,
224                                      &tmp);
225
226         seq_printf(m, LPU64"\n", tmp);
227         lu_env_fini(&env);
228         return rc;
229 }
230 LPROC_SEQ_FOPS_RO(mdd_changelog_size);
231
232 static int mdd_sync_perm_seq_show(struct seq_file *m, void *data)
233 {
234         struct mdd_device *mdd = m->private;
235
236         LASSERT(mdd != NULL);
237         seq_printf(m, "%d\n", mdd->mdd_sync_permission);
238         return 0;
239 }
240
241 static ssize_t
242 mdd_sync_perm_seq_write(struct file *file, const char __user *buffer,
243                         size_t count, loff_t *off)
244 {
245         struct seq_file *m = file->private_data;
246         struct mdd_device *mdd = m->private;
247         int val, rc;
248
249         LASSERT(mdd != NULL);
250         rc = lprocfs_write_helper(buffer, count, &val);
251         if (rc)
252                 return rc;
253
254         mdd->mdd_sync_permission = !!val;
255         return count;
256 }
257 LPROC_SEQ_FOPS(mdd_sync_perm);
258
259 static int mdd_lfsck_speed_limit_seq_show(struct seq_file *m, void *data)
260 {
261         struct mdd_device *mdd = m->private;
262
263         LASSERT(mdd != NULL);
264         return lfsck_get_speed(m, mdd->mdd_bottom);
265 }
266
267 static ssize_t
268 mdd_lfsck_speed_limit_seq_write(struct file *file, const char __user *buffer,
269                                 size_t count, loff_t *off)
270 {
271         struct seq_file *m = file->private_data;
272         struct mdd_device *mdd = m->private;
273         __u32 val;
274         int rc;
275
276         LASSERT(mdd != NULL);
277         rc = lprocfs_write_helper(buffer, count, &val);
278         if (rc != 0)
279                 return rc;
280
281         rc = lfsck_set_speed(mdd->mdd_bottom, val);
282         return rc != 0 ? rc : count;
283 }
284 LPROC_SEQ_FOPS(mdd_lfsck_speed_limit);
285
286 static int mdd_lfsck_async_windows_seq_show(struct seq_file *m, void *data)
287 {
288         struct mdd_device *mdd = m->private;
289
290         LASSERT(mdd != NULL);
291         return lfsck_get_windows(m, mdd->mdd_bottom);
292 }
293
294 static ssize_t
295 mdd_lfsck_async_windows_seq_write(struct file *file, const char __user *buffer,
296                                   size_t count, loff_t *off)
297 {
298         struct seq_file   *m = file->private_data;
299         struct mdd_device *mdd = m->private;
300         __u32              val;
301         int                rc;
302
303         LASSERT(mdd != NULL);
304         rc = lprocfs_write_helper(buffer, count, &val);
305         if (rc == 0)
306                 rc = lfsck_set_windows(mdd->mdd_bottom, val);
307
308         return rc != 0 ? rc : count;
309 }
310 LPROC_SEQ_FOPS(mdd_lfsck_async_windows);
311
312 static int mdd_lfsck_namespace_seq_show(struct seq_file *m, void *data)
313 {
314         struct mdd_device *mdd = m->private;
315
316         LASSERT(mdd != NULL);
317
318         return lfsck_dump(m, mdd->mdd_bottom, LFSCK_TYPE_NAMESPACE);
319 }
320 LPROC_SEQ_FOPS_RO(mdd_lfsck_namespace);
321
322 static int mdd_lfsck_layout_seq_show(struct seq_file *m, void *data)
323 {
324         struct mdd_device *mdd = m->private;
325
326         LASSERT(mdd != NULL);
327
328         return lfsck_dump(m, mdd->mdd_bottom, LFSCK_TYPE_LAYOUT);
329 }
330 LPROC_SEQ_FOPS_RO(mdd_lfsck_layout);
331
332 static struct lprocfs_vars lprocfs_mdd_obd_vars[] = {
333         { .name =       "atime_diff",
334           .fops =       &mdd_atime_diff_fops            },
335         { .name =       "changelog_mask",
336           .fops =       &mdd_changelog_mask_fops        },
337         { .name =       "changelog_users",
338           .fops =       &mdd_changelog_users_fops       },
339         { .name =       "changelog_size",
340           .fops =       &mdd_changelog_size_fops        },
341         { .name =       "sync_permission",
342           .fops =       &mdd_sync_perm_fops             },
343         { .name =       "lfsck_speed_limit",
344           .fops =       &mdd_lfsck_speed_limit_fops     },
345         { .name =       "lfsck_async_windows",
346           .fops =       &mdd_lfsck_async_windows_fops   },
347         { .name =       "lfsck_namespace",
348           .fops =       &mdd_lfsck_namespace_fops       },
349         { .name =       "lfsck_layout",
350           .fops =       &mdd_lfsck_layout_fops          },
351         { NULL }
352 };
353
354 int mdd_procfs_init(struct mdd_device *mdd, const char *name)
355 {
356         struct obd_device *obd = mdd2obd_dev(mdd);
357         struct obd_type   *type;
358         int                rc;
359         ENTRY;
360
361         /* at the moment there is no linkage between lu_type
362          * and obd_type, so we lookup obd_type this way */
363         type = class_search_type(LUSTRE_MDD_NAME);
364
365         LASSERT(name != NULL);
366         LASSERT(type != NULL);
367         LASSERT(obd  != NULL);
368
369         /* Find the type procroot and add the proc entry for this device */
370         obd->obd_vars = lprocfs_mdd_obd_vars;
371         mdd->mdd_proc_entry = lprocfs_register(name, type->typ_procroot,
372                                                obd->obd_vars, mdd);
373         if (IS_ERR(mdd->mdd_proc_entry)) {
374                 rc = PTR_ERR(mdd->mdd_proc_entry);
375                 CERROR("Error %d setting up lprocfs for %s\n",
376                        rc, name);
377                 mdd->mdd_proc_entry = NULL;
378                 GOTO(out, rc);
379         }
380         rc = 0;
381         EXIT;
382 out:
383         if (rc)
384                 mdd_procfs_fini(mdd);
385         return rc;
386 }
387
388 void mdd_procfs_fini(struct mdd_device *mdd)
389 {
390         if (mdd->mdd_proc_entry)
391                 lprocfs_remove(&mdd->mdd_proc_entry);
392 }