Whamcloud - gitweb
b=16098
[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 [sun.com URL with a
20  * copy of GPLv2].
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 <lustre_param.h>
44 #include "mgs_internal.h"
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
99         mgs->mgs_proc_live = lprocfs_register("live", obd->obd_proc_entry,
100                                               NULL, NULL);
101         if (IS_ERR(mgs->mgs_proc_live)) {
102                 rc = PTR_ERR(mgs->mgs_proc_live);
103                 CERROR("error %d setting up lprocfs for %s\n", rc, "live");
104                 mgs->mgs_proc_live = NULL;
105         }
106
107         obd->obd_proc_exports_entry = lprocfs_register("exports",
108                                                        obd->obd_proc_entry,
109                                                        NULL, NULL);
110         if (IS_ERR(obd->obd_proc_exports_entry)) {
111                 rc = PTR_ERR(obd->obd_proc_exports_entry);
112                 CERROR("error %d setting up lprocfs for %s\n", rc, "exports");
113                 obd->obd_proc_exports_entry = NULL;
114         }
115
116         return rc;
117 }
118
119 int lproc_mgs_cleanup(struct obd_device *obd)
120 {
121         struct mgs_obd *mgs;
122
123         if (!obd)
124                 RETURN(-EINVAL);
125
126         mgs = &obd->u.mgs;
127         if (mgs->mgs_proc_live) {
128                 /* Should be no live entries */
129                 LASSERT(mgs->mgs_proc_live->subdir == NULL);
130                 lprocfs_remove(&mgs->mgs_proc_live);
131                 mgs->mgs_proc_live = NULL;
132         }
133         lprocfs_free_obd_stats(obd);
134
135         return lprocfs_obd_cleanup(obd);
136 }
137
138 static void seq_show_srpc_rule(struct seq_file *seq, const char *tgtname,
139                                struct sptlrpc_rule_set *rset)
140 {
141         struct sptlrpc_rule    *r;
142         char                    dirbuf[10];
143         char                    flvrbuf[40];
144         char                   *net;
145         int                     i;
146
147         for (i = 0; i < rset->srs_nrule; i++) {
148                 r = &rset->srs_rules[i];
149
150                 if (r->sr_netid == LNET_NIDNET(LNET_NID_ANY))
151                         net = "default";
152                 else
153                         net = libcfs_net2str(r->sr_netid);
154
155                 if (r->sr_from == LUSTRE_SP_ANY && r->sr_to == LUSTRE_SP_ANY)
156                         dirbuf[0] = '\0';
157                 else
158                         snprintf(dirbuf, sizeof(dirbuf), ".%s2%s",
159                                  sptlrpc_part2name(r->sr_from),
160                                  sptlrpc_part2name(r->sr_to));
161
162                 sptlrpc_flavor2name(&r->sr_flvr, flvrbuf, sizeof(flvrbuf));
163                 seq_printf(seq, "%s.srpc.flavor.%s%s=%s\n", tgtname,
164                            net, dirbuf, flvrbuf);
165         }
166 }
167
168 static int mgs_live_seq_show(struct seq_file *seq, void *v) 
169 {
170         struct fs_db             *fsdb = seq->private;
171         struct mgs_tgt_srpc_conf *srpc_tgt;
172         int i;
173         
174         down(&fsdb->fsdb_sem);
175
176         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
177         seq_printf(seq, "flags: %#x     gen: %d\n", 
178                    fsdb->fsdb_flags, fsdb->fsdb_gen);
179         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
180                  if (test_bit(i, fsdb->fsdb_mdt_index_map)) 
181                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
182         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
183                  if (test_bit(i, fsdb->fsdb_ost_index_map)) 
184                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
185
186         seq_printf(seq, "\nSecure RPC Config Rules:\n");
187 #if 0
188         seq_printf(seq, "%s.%s=%s\n", fsdb->fsdb_name,
189                    PARAM_SRPC_UDESC, fsdb->fsdb_srpc_fl_udesc ? "yes" : "no");
190 #endif
191         for (srpc_tgt = fsdb->fsdb_srpc_tgt; srpc_tgt;
192              srpc_tgt = srpc_tgt->mtsc_next) {
193                 seq_show_srpc_rule(seq, srpc_tgt->mtsc_tgt,
194                                    &srpc_tgt->mtsc_rset);
195         }
196         seq_show_srpc_rule(seq, fsdb->fsdb_name, &fsdb->fsdb_srpc_gen);
197
198         up(&fsdb->fsdb_sem);
199         return 0;
200 }
201
202 LPROC_SEQ_FOPS_RO(mgs_live);
203
204 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
205 {
206         struct mgs_obd *mgs = &obd->u.mgs;
207         int rc;
208
209         if (!mgs->mgs_proc_live) 
210                 return 0;
211         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0444, 
212                                 &mgs_live_fops, fsdb);
213
214         return 0;
215 }
216
217 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
218 {
219         struct mgs_obd *mgs = &obd->u.mgs;
220
221         if (!mgs->mgs_proc_live) 
222                 return 0;
223
224         lprocfs_remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
225         return 0;
226 }
227
228 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
229         { "uuid",            lprocfs_rd_uuid,        0, 0 },
230         { "fstype",          lprocfs_rd_fstype,      0, 0 },
231         { "mntdev",          lprocfs_mgs_rd_mntdev,  0, 0 },
232         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
233         { "evict_client",    0, lprocfs_wr_evict_client, 0 },
234         { 0 }
235 };
236
237 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
238         { 0 }
239 };
240
241 void mgs_counter_incr(struct obd_export *exp, int opcode)
242 {
243         lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode);
244         if (exp->exp_nid_stats && exp->exp_nid_stats->nid_stats != NULL)
245                 lprocfs_counter_incr(exp->exp_nid_stats->nid_stats, opcode);
246 }
247
248 void mgs_stats_counter_init(struct lprocfs_stats *stats)
249 {
250         lprocfs_counter_init(stats, LPROC_MGS_CONNECT, 0, "connect", "reqs");
251         lprocfs_counter_init(stats, LPROC_MGS_DISCONNECT, 0, "disconnect",
252                              "reqs");
253         lprocfs_counter_init(stats, LPROC_MGS_EXCEPTION, 0, "exception",
254                              "reqs");
255         lprocfs_counter_init(stats, LPROC_MGS_TARGET_REG, 0, "tgtreg", "reqs");
256         lprocfs_counter_init(stats, LPROC_MGS_TARGET_DEL, 0, "tgtdel", "reqs");
257 }
258
259 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
260 {
261     lvars->module_vars  = lprocfs_mgs_module_vars;
262     lvars->obd_vars     = lprocfs_mgs_obd_vars;
263 }
264 #endif