Whamcloud - gitweb
land b1_5 onto HEAD
[fs/lustre-release.git] / lustre / mds / lproc_mds.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  *
24  */
25 #define DEBUG_SUBSYSTEM S_CLASS
26
27 #include <linux/version.h>
28 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
29 #include <asm/statfs.h>
30 #endif
31 #include <obd.h>
32 #include <obd_class.h>
33 #include <lprocfs_status.h>
34 #include "mds_internal.h"
35
36 #ifdef LPROCFS
37 static int lprocfs_mds_rd_mntdev(char *page, char **start, off_t off, int count,
38                                  int *eof, void *data)
39 {
40         struct obd_device* obd = (struct obd_device *)data;
41
42         LASSERT(obd != NULL);
43         LASSERT(obd->u.mds.mds_vfsmnt->mnt_devname);
44         *eof = 1;
45
46         return snprintf(page, count, "%s\n",obd->u.mds.mds_vfsmnt->mnt_devname);
47 }
48
49 static int lprocfs_mds_wr_evict_client(struct file *file, const char *buffer,
50                                        unsigned long count, void *data)
51 {
52         struct obd_device *obd = data;
53         struct mds_obd *mds = &obd->u.mds;
54         char tmpbuf[sizeof(struct obd_uuid)];
55         struct ptlrpc_request_set *set;
56         int rc;
57
58         sscanf(buffer, "%40s", tmpbuf);
59
60         if (strncmp(tmpbuf, "nid:", 4) != 0)
61                 return lprocfs_wr_evict_client(file, buffer, count, data);
62
63         set = ptlrpc_prep_set();
64         if (!set)
65                 return -ENOMEM;
66
67         rc = obd_set_info_async(mds->mds_osc_exp, strlen("evict_by_nid"),
68                                 "evict_by_nid", strlen(tmpbuf + 4) + 1,
69                                  tmpbuf + 4, set);
70         if (rc)
71                 CERROR("Failed to evict nid %s from OSTs: rc %d\n", tmpbuf + 4,
72                        rc);
73
74         ptlrpc_check_set(set);
75
76         /* See the comments in function lprocfs_wr_evict_client() 
77          * in ptlrpc/lproc_ptlrpc.c for details. - jay */
78         class_incref(obd);
79         LPROCFS_EXIT();
80
81         obd_export_evict_by_nid(obd, tmpbuf+4);
82
83         LPROCFS_ENTRY();
84         class_decref(obd);
85
86         rc = ptlrpc_set_wait(set);
87         if (rc)
88                 CERROR("Failed to evict nid %s from OSTs: rc %d\n", tmpbuf + 4,
89                        rc);
90         ptlrpc_set_destroy(set);
91         return count;
92 }
93
94 static int lprocfs_wr_group_info(struct file *file, const char *buffer,
95                                  unsigned long count, void *data)
96 {
97         struct obd_device *obd = data;
98         struct mds_obd *mds = &obd->u.mds;
99         struct mds_grp_downcall_data sparam, *param = &sparam;
100         int size = 0, rc = count;
101
102         if (count < sizeof(param)) {
103                 CERROR("%s: invalid data size %lu\n", obd->obd_name, count);
104                 return count;
105         }
106
107         if (copy_from_user(param, buffer, sizeof(*param)) ||
108             param->mgd_magic != MDS_GRP_DOWNCALL_MAGIC) {
109                 CERROR("%s: MDS group downcall bad params\n", obd->obd_name);
110                 return count;
111         }
112
113         if (param->mgd_ngroups > NGROUPS_MAX) {
114                 CWARN("%s: uid %u groups %d more than maximum %d\n",
115                       obd->obd_name, param->mgd_uid, param->mgd_ngroups,
116                       NGROUPS_MAX);
117                 param->mgd_ngroups = NGROUPS_MAX;
118         }
119
120         if (param->mgd_ngroups > 0) {
121                 size = offsetof(struct mds_grp_downcall_data,
122                                 mgd_groups[param->mgd_ngroups]);
123                 OBD_ALLOC(param, size);
124                 if (!param) {
125                         CERROR("%s: fail to alloc %d bytes for uid %u"
126                                " with %d groups\n", obd->obd_name, size,
127                                sparam.mgd_uid, sparam.mgd_ngroups);
128                         param = &sparam;
129                         param->mgd_ngroups = 0;
130                 } else if (copy_from_user(param, buffer, size)) {
131                         CERROR("%s: uid %u bad supplementary group data\n",
132                                obd->obd_name, sparam.mgd_uid);
133                         OBD_FREE(param, size);
134                         param = &sparam;
135                         param->mgd_ngroups = 0;
136                 }
137         }
138         rc = upcall_cache_downcall(mds->mds_group_hash, param->mgd_err,
139                                    param->mgd_uid, param->mgd_gid,
140                                    param->mgd_ngroups, param->mgd_groups);
141
142         if (param && param != &sparam)
143                 OBD_FREE(param, size);
144
145         return rc;
146 }
147
148 static int lprocfs_rd_group_expire(char *page, char **start, off_t off,
149                                    int count, int *eof, void *data)
150 {
151         struct obd_device *obd = data;
152
153         *eof = 1;
154         return snprintf(page, count, "%lu\n",
155                         obd->u.mds.mds_group_hash->uc_entry_expire / HZ);
156 }
157
158 static int lprocfs_wr_group_expire(struct file *file, const char *buffer,
159                                    unsigned long count, void *data)
160 {
161         struct obd_device *obd = data;
162         int val, rc;
163
164         rc = lprocfs_write_helper(buffer, count, &val);
165         if (rc)
166                 return rc;
167
168         if (val > 5)
169                 obd->u.mds.mds_group_hash->uc_entry_expire = val * HZ;
170         else
171                 CERROR("invalid expire time %u for group cache\n", val);
172
173         return count;
174 }
175
176 static int lprocfs_rd_group_acquire_expire(char *page, char **start, off_t off,
177                                            int count, int *eof, void *data)
178 {
179         struct obd_device *obd = data;
180
181         *eof = 1;
182         return snprintf(page, count, "%lu\n",
183                         obd->u.mds.mds_group_hash->uc_acquire_expire / HZ);
184 }
185
186 static int lprocfs_wr_group_acquire_expire(struct file *file,const char *buffer,
187                                            unsigned long count, void *data)
188 {
189         struct obd_device *obd = data;
190         int val, rc = 0;
191
192         rc = lprocfs_write_helper(buffer, count, &val);
193         if (rc)
194                 return rc;
195
196         if (val > 2)
197                 obd->u.mds.mds_group_hash->uc_acquire_expire = val * HZ;
198
199         return count;
200 }
201
202 static int lprocfs_rd_group_upcall(char *page, char **start, off_t off,
203                                    int count, int *eof, void *data)
204 {
205         struct obd_device *obd = data;
206
207         *eof = 1;
208         return snprintf(page, count, "%s\n",
209                         obd->u.mds.mds_group_hash->uc_upcall);
210 }
211
212 static int lprocfs_wr_group_upcall(struct file *file, const char *buffer,
213                                    unsigned long count, void *data)
214 {
215         struct obd_device *obd = data;
216         struct upcall_cache *hash = obd->u.mds.mds_group_hash;
217         char kernbuf[UC_CACHE_UPCALL_MAXPATH] = { '\0' };
218
219         if (count >= UC_CACHE_UPCALL_MAXPATH) {
220                 CERROR("%s: group upcall too long\n", obd->obd_name);
221                 return -EINVAL;
222         }
223
224         if (copy_from_user(kernbuf, buffer,
225                            min(count, UC_CACHE_UPCALL_MAXPATH - 1)))
226                 return -EFAULT;
227
228         /* Remove any extraneous bits from the upcall (e.g. linefeeds) */
229         sscanf(kernbuf, "%s", hash->uc_upcall);
230
231         if (strcmp(hash->uc_name, obd->obd_name) != 0)
232                 CWARN("%s: write to upcall name %s for MDS %s\n",
233                       obd->obd_name, hash->uc_upcall, obd->obd_name);
234         CWARN("%s: group upcall set to %s\n", obd->obd_name, hash->uc_upcall);
235
236         return count;
237 }
238
239 static int lprocfs_wr_group_flush(struct file *file, const char *buffer,
240                                   unsigned long count, void *data)
241 {
242         struct obd_device *obd = data;
243
244         upcall_cache_flush_idle(obd->u.mds.mds_group_hash);
245         return count;
246 }
247
248 static int lprocfs_wr_atime_diff(struct file *file, const char *buffer,
249                                  unsigned long count, void *data)
250 {
251         struct obd_device *obd = data;
252         struct mds_obd *mds = &obd->u.mds;
253         char kernbuf[20], *end;
254         unsigned long diff = 0;
255
256         if (count > (sizeof(kernbuf) - 1))
257                 return -EINVAL;
258
259         if (copy_from_user(kernbuf, buffer, count))
260                 return -EFAULT;
261
262         kernbuf[count] = '\0';
263
264         diff = simple_strtoul(kernbuf, &end, 0);
265         if (kernbuf == end)
266                 return -EINVAL;
267
268         mds->mds_atime_diff = diff;
269         return count;
270 }
271
272 static int lprocfs_rd_atime_diff(char *page, char **start, off_t off,
273                                  int count, int *eof, void *data)
274 {
275         struct obd_device *obd = data;
276         struct mds_obd *mds = &obd->u.mds;
277
278         *eof = 1;
279         return snprintf(page, count, "%lu\n", mds->mds_atime_diff);
280 }
281
282 struct lprocfs_vars lprocfs_mds_obd_vars[] = {
283         { "uuid",            lprocfs_rd_uuid,        0, 0 },
284         { "blocksize",       lprocfs_rd_blksize,     0, 0 },
285         { "kbytestotal",     lprocfs_rd_kbytestotal, 0, 0 },
286         { "kbytesfree",      lprocfs_rd_kbytesfree,  0, 0 },
287         { "kbytesavail",     lprocfs_rd_kbytesavail, 0, 0 },
288         { "filestotal",      lprocfs_rd_filestotal,  0, 0 },
289         { "filesfree",       lprocfs_rd_filesfree,   0, 0 },
290         { "fstype",          lprocfs_rd_fstype,      0, 0 },
291         { "mntdev",          lprocfs_mds_rd_mntdev,  0, 0 },
292         { "recovery_status", lprocfs_obd_rd_recovery_status, 0, 0 },
293         { "evict_client",    0,                lprocfs_mds_wr_evict_client, 0 },
294         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
295 #ifdef HAVE_QUOTA_SUPPORT
296         { "quota_bunit_sz",  lprocfs_rd_bunit, lprocfs_wr_bunit, 0 },
297         { "quota_btune_sz",  lprocfs_rd_btune, lprocfs_wr_btune, 0 },
298         { "quota_iunit_sz",  lprocfs_rd_iunit, lprocfs_wr_iunit, 0 },
299         { "quota_itune_sz",  lprocfs_rd_itune, lprocfs_wr_itune, 0 },
300         { "quota_type",      lprocfs_rd_type, lprocfs_wr_type, 0 },
301 #endif
302         { "group_expire_interval", lprocfs_rd_group_expire,
303                              lprocfs_wr_group_expire, 0},
304         { "group_acquire_expire", lprocfs_rd_group_acquire_expire,
305                              lprocfs_wr_group_acquire_expire, 0},
306         { "group_upcall",    lprocfs_rd_group_upcall,
307                              lprocfs_wr_group_upcall, 0},
308         { "group_flush",     0, lprocfs_wr_group_flush, 0},
309         { "group_info",      0, lprocfs_wr_group_info, 0 },
310         { "atime_diff",      lprocfs_rd_atime_diff, lprocfs_wr_atime_diff, 0 },
311         { 0 }
312 };
313
314 struct lprocfs_vars lprocfs_mds_module_vars[] = {
315         { "num_refs",     lprocfs_rd_numrefs,     0, 0 },
316         { 0 }
317 };
318
319 struct lprocfs_vars lprocfs_mdt_obd_vars[] = {
320         { "uuid",         lprocfs_rd_uuid,        0, 0 },
321         { 0 }
322 };
323
324 struct lprocfs_vars lprocfs_mdt_module_vars[] = {
325         { "num_refs",     lprocfs_rd_numrefs,     0, 0 },
326         { 0 }
327 };
328
329 void mds_counter_incr(struct obd_export *exp, int opcode)
330 {
331         lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode);
332         lprocfs_counter_incr(exp->exp_ops_stats, opcode);
333 }
334
335 void mds_stats_counter_init(struct lprocfs_stats *stats)
336 {
337         lprocfs_counter_init(stats, LPROC_MDS_OPEN, 0, "open", "reqs");
338         lprocfs_counter_init(stats, LPROC_MDS_CLOSE, 0, "close", "reqs");
339         lprocfs_counter_init(stats, LPROC_MDS_MKNOD, 0, "mknod", "reqs");
340         lprocfs_counter_init(stats, LPROC_MDS_LINK, 0, "link", "reqs");
341         lprocfs_counter_init(stats, LPROC_MDS_UNLINK, 0, "unlink", "reqs");
342         lprocfs_counter_init(stats, LPROC_MDS_MKDIR, 0, "mkdir", "reqs");
343         lprocfs_counter_init(stats, LPROC_MDS_RMDIR, 0, "rmdir", "reqs");
344         lprocfs_counter_init(stats, LPROC_MDS_RENAME, 0, "rename", "reqs");
345         lprocfs_counter_init(stats, LPROC_MDS_GETXATTR, 0, "getxattr", "reqs");
346         lprocfs_counter_init(stats, LPROC_MDS_SETXATTR, 0, "setxattr", "reqs");
347 }
348
349 LPROCFS_INIT_VARS(mds, lprocfs_mds_module_vars, lprocfs_mds_obd_vars);
350 LPROCFS_INIT_VARS(mdt, lprocfs_mdt_module_vars, lprocfs_mdt_obd_vars);
351 #endif