Whamcloud - gitweb
Land b1_8_gate onto b1_8 (20081218_1708)
[fs/lustre-release.git] / lustre / mgs / lproc_mgs.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 #define DEBUG_SUBSYSTEM S_CLASS
37
38 #include <linux/version.h>
39 #include <asm/statfs.h>
40 #include <obd.h>
41 #include <obd_class.h>
42 #include <lprocfs_status.h>
43 #include "mgs_internal.h"
44
45
46 #ifdef LPROCFS
47
48 static int lprocfs_mgs_rd_mntdev(char *page, char **start, off_t off, int count,
49                                  int *eof, void *data)
50 {
51         struct obd_device* obd = (struct obd_device *)data;
52
53         LASSERT(obd != NULL);
54         LASSERT(obd->u.mgs.mgs_vfsmnt->mnt_devname);
55         *eof = 1;
56
57         return snprintf(page, count, "%s\n",obd->u.mgs.mgs_vfsmnt->mnt_devname);
58 }
59
60 static int mgs_fs_seq_show(struct seq_file *seq, void *v)
61 {
62         struct obd_device *obd = seq->private;
63         struct mgs_obd *mgs = &obd->u.mgs;
64         struct list_head dentry_list;
65         struct l_linux_dirent *dirent, *n;
66         int rc, len;
67         ENTRY;
68
69         LASSERT(obd != NULL);
70         rc = class_dentry_readdir(obd, mgs->mgs_configs_dir,
71                                   mgs->mgs_vfsmnt, &dentry_list);
72         if (rc) {
73                 CERROR("Can't read config dir\n");
74                 RETURN(rc);
75         }
76         list_for_each_entry_safe(dirent, n, &dentry_list, lld_list) {
77                 list_del(&dirent->lld_list);
78                 len = strlen(dirent->lld_name);
79                 if ((len > 7) && (strncmp(dirent->lld_name + len - 7, "-client",
80                                           len) == 0)) {
81                         seq_printf(seq, "%.*s\n", len - 7, dirent->lld_name);
82                 }
83                 OBD_FREE(dirent, sizeof(*dirent));
84         }
85
86         RETURN(0);
87 }
88
89 LPROC_SEQ_FOPS_RO(mgs_fs);
90
91 int lproc_mgs_setup(struct obd_device *obd)
92 {
93         struct mgs_obd *mgs = &obd->u.mgs;
94         int rc;
95
96         rc = lprocfs_obd_seq_create(obd, "filesystems", 0444,
97                                     &mgs_fs_fops, obd);
98         mgs->mgs_proc_live = proc_mkdir("live", obd->obd_proc_entry);
99         obd->obd_proc_exports_entry = proc_mkdir("exports",
100                                                  obd->obd_proc_entry);
101
102         return rc;
103 }
104
105 int lproc_mgs_cleanup(struct obd_device *obd)
106 {
107         struct mgs_obd *mgs;
108
109         if (!obd)
110                 return -EINVAL;
111
112         mgs = &obd->u.mgs;
113         if (mgs->mgs_proc_live) {
114                 /* Should be no live entries */
115                 LASSERT(mgs->mgs_proc_live->subdir == NULL);
116                 lprocfs_remove(&mgs->mgs_proc_live);
117                 mgs->mgs_proc_live = NULL;
118         }
119         lprocfs_free_per_client_stats(obd);
120         lprocfs_free_obd_stats(obd);
121
122         return lprocfs_obd_cleanup(obd);
123 }
124
125 static int mgs_live_seq_show(struct seq_file *seq, void *v) 
126 {
127         struct fs_db *fsdb = seq->private;
128         int i;
129         
130         down(&fsdb->fsdb_sem);
131
132         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
133         seq_printf(seq, "flags: %#x     gen: %d\n", 
134                    fsdb->fsdb_flags, fsdb->fsdb_gen);
135         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
136                  if (test_bit(i, fsdb->fsdb_mdt_index_map)) 
137                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
138         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
139                  if (test_bit(i, fsdb->fsdb_ost_index_map)) 
140                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
141
142         up(&fsdb->fsdb_sem);
143         return 0;
144 }
145
146 LPROC_SEQ_FOPS_RO(mgs_live);
147
148 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
149 {
150         struct mgs_obd *mgs = &obd->u.mgs;
151         int rc;
152
153         if (!mgs->mgs_proc_live) 
154                 return 0;
155         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0444, 
156                                 &mgs_live_fops, fsdb);
157
158         return 0;
159 }
160
161 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
162 {
163         struct mgs_obd *mgs = &obd->u.mgs;
164
165         if (!mgs->mgs_proc_live) 
166                 return 0;
167         remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
168         return 0;
169 }
170
171 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
172         { "uuid",            lprocfs_rd_uuid,        0, 0 },
173         { "fstype",          lprocfs_rd_fstype,      0, 0 },
174         { "mntdev",          lprocfs_mgs_rd_mntdev,  0, 0 },
175         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
176         { "hash_stats",      lprocfs_obd_rd_hash,    0, 0 },
177         { "evict_client",    0, lprocfs_wr_evict_client, 0 },
178         { 0 }
179 };
180
181 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
182         { 0 }
183 };
184
185 void mgs_counter_incr(struct obd_export *exp, int opcode)
186 {
187         lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode);
188         lprocfs_counter_incr(exp->exp_ops_stats, opcode);
189 }
190
191 void mgs_stats_counter_init(struct lprocfs_stats *stats)
192 {
193         lprocfs_counter_init(stats, LPROC_MGS_CONNECT, 0, "connect", "reqs");
194         lprocfs_counter_init(stats, LPROC_MGS_DISCONNECT, 0, "disconnect",
195                              "reqs");
196         lprocfs_counter_init(stats, LPROC_MGS_EXCEPTION, 0, "exception",
197                              "reqs");
198         lprocfs_counter_init(stats, LPROC_MGS_TARGET_REG, 0, "tgtreg", "reqs");
199         lprocfs_counter_init(stats, LPROC_MGS_TARGET_DEL, 0, "tgtdel", "reqs");
200 }
201
202 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
203 {
204     lvars->module_vars  = lprocfs_mgs_module_vars;
205     lvars->obd_vars     = lprocfs_mgs_obd_vars;
206 }
207 #endif