Whamcloud - gitweb
b3fae3516468dc5de218208c52f2f14101d0e2b1
[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  *  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 #include <asm/statfs.h>
29 #include <obd.h>
30 #include <obd_class.h>
31 #include <lprocfs_status.h>
32 #include <lustre_param.h>
33 #include "mgs_internal.h"
34
35 #ifdef LPROCFS
36
37 static int lprocfs_mgs_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.mgs.mgs_vfsmnt->mnt_devname);
44         *eof = 1;
45
46         return snprintf(page, count, "%s\n",obd->u.mgs.mgs_vfsmnt->mnt_devname);
47 }
48
49 static int mgs_fs_seq_show(struct seq_file *seq, void *v)
50 {
51         struct obd_device *obd = seq->private;
52         struct mgs_obd *mgs = &obd->u.mgs;
53         struct list_head dentry_list;
54         struct l_linux_dirent *dirent, *n;
55         int rc, len;
56         ENTRY;
57
58         LASSERT(obd != NULL);
59         rc = class_dentry_readdir(obd, mgs->mgs_configs_dir,
60                                   mgs->mgs_vfsmnt, &dentry_list);
61         if (rc) {
62                 CERROR("Can't read config dir\n");
63                 RETURN(rc);
64         }
65         list_for_each_entry_safe(dirent, n, &dentry_list, lld_list) {
66                 list_del(&dirent->lld_list);
67                 len = strlen(dirent->lld_name);
68                 if ((len > 7) && (strncmp(dirent->lld_name + len - 7, "-client",
69                                           len) == 0)) {
70                         seq_printf(seq, "%.*s\n", len - 7, dirent->lld_name);
71                 }
72                 OBD_FREE(dirent, sizeof(*dirent));
73         }
74
75         RETURN(0);
76 }
77
78 LPROC_SEQ_FOPS_RO(mgs_fs);
79
80 int lproc_mgs_setup(struct obd_device *obd)
81 {
82         struct mgs_obd *mgs = &obd->u.mgs;
83         int rc;
84
85         rc = lprocfs_obd_seq_create(obd, "filesystems", 0444,
86                                     &mgs_fs_fops, obd);
87         mgs->mgs_proc_live = proc_mkdir("live", obd->obd_proc_entry);
88         obd->obd_proc_exports = proc_mkdir("exports", obd->obd_proc_entry);
89
90         return rc;
91 }
92
93 int lproc_mgs_cleanup(struct obd_device *obd)
94 {
95         struct mgs_obd *mgs = &obd->u.mgs;
96
97         if (obd)
98                 return -EINVAL;
99
100         if (mgs->mgs_proc_live) {
101                 /* Should be no live entries */
102                 LASSERT(mgs->mgs_proc_live->subdir == NULL);
103                 lprocfs_remove(&mgs->mgs_proc_live);
104                 mgs->mgs_proc_live = NULL;
105         }
106         lprocfs_free_obd_stats(obd);
107
108         return lprocfs_obd_cleanup(obd);
109 }
110
111 static void seq_show_srpc_rule(struct seq_file *seq, const char *tgtname,
112                                struct sptlrpc_rule_set *rset)
113 {
114         struct sptlrpc_rule    *r;
115         char                    dirbuf[10];
116         char                    flvrbuf[40];
117         char                   *net;
118         int                     i;
119
120         for (i = 0; i < rset->srs_nrule; i++) {
121                 r = &rset->srs_rules[i];
122
123                 if (r->sr_netid == LNET_NIDNET(LNET_NID_ANY))
124                         net = "default";
125                 else
126                         net = libcfs_net2str(r->sr_netid);
127
128                 if (r->sr_from == LUSTRE_SP_ANY && r->sr_to == LUSTRE_SP_ANY)
129                         dirbuf[0] = '\0';
130                 else
131                         snprintf(dirbuf, sizeof(dirbuf), ".%s2%s",
132                                  sptlrpc_part2name(r->sr_from),
133                                  sptlrpc_part2name(r->sr_to));
134
135                 sptlrpc_flavor2name(&r->sr_flvr, flvrbuf, sizeof(flvrbuf));
136                 seq_printf(seq, "%s.srpc.flavor.%s%s=%s\n", tgtname,
137                            net, dirbuf, flvrbuf);
138         }
139 }
140
141 static int mgs_live_seq_show(struct seq_file *seq, void *v) 
142 {
143         struct fs_db             *fsdb = seq->private;
144         struct mgs_tgt_srpc_conf *srpc_tgt;
145         int i;
146         
147         down(&fsdb->fsdb_sem);
148
149         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
150         seq_printf(seq, "flags: %#x     gen: %d\n", 
151                    fsdb->fsdb_flags, fsdb->fsdb_gen);
152         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
153                  if (test_bit(i, fsdb->fsdb_mdt_index_map)) 
154                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
155         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
156                  if (test_bit(i, fsdb->fsdb_ost_index_map)) 
157                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
158
159         seq_printf(seq, "\nSecure RPC Config Rules:\n");
160 #if 0
161         seq_printf(seq, "%s.%s=%s\n", fsdb->fsdb_name,
162                    PARAM_SRPC_UDESC, fsdb->fsdb_srpc_fl_udesc ? "yes" : "no");
163 #endif
164         for (srpc_tgt = fsdb->fsdb_srpc_tgt; srpc_tgt;
165              srpc_tgt = srpc_tgt->mtsc_next) {
166                 seq_show_srpc_rule(seq, srpc_tgt->mtsc_tgt,
167                                    &srpc_tgt->mtsc_rset);
168         }
169         seq_show_srpc_rule(seq, fsdb->fsdb_name, &fsdb->fsdb_srpc_gen);
170
171         up(&fsdb->fsdb_sem);
172         return 0;
173 }
174
175 LPROC_SEQ_FOPS_RO(mgs_live);
176
177 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
178 {
179         struct mgs_obd *mgs = &obd->u.mgs;
180         int rc;
181
182         if (!mgs->mgs_proc_live) 
183                 return 0;
184         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0444, 
185                                 &mgs_live_fops, fsdb);
186
187         return 0;
188 }
189
190 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
191 {
192         struct mgs_obd *mgs = &obd->u.mgs;
193
194         if (!mgs->mgs_proc_live) 
195                 return 0;
196         remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
197         return 0;
198 }
199
200 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
201         { "uuid",            lprocfs_rd_uuid,        0, 0 },
202         { "fstype",          lprocfs_rd_fstype,      0, 0 },
203         { "mntdev",          lprocfs_mgs_rd_mntdev,  0, 0 },
204         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
205         { "evict_client",    0, lprocfs_wr_evict_client, 0 },
206         { 0 }
207 };
208
209 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
210         { 0 }
211 };
212
213 void mgs_counter_incr(struct obd_export *exp, int opcode)
214 {
215         lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode);
216         lprocfs_counter_incr(exp->exp_ops_stats, opcode);
217 }
218
219 void mgs_stats_counter_init(struct lprocfs_stats *stats)
220 {
221         lprocfs_counter_init(stats, LPROC_MGS_CONNECT, 0, "connect", "reqs");
222         lprocfs_counter_init(stats, LPROC_MGS_DISCONNECT, 0, "disconnect",
223                              "reqs");
224         lprocfs_counter_init(stats, LPROC_MGS_EXCEPTION, 0, "exception",
225                              "reqs");
226         lprocfs_counter_init(stats, LPROC_MGS_TARGET_REG, 0, "tgtreg", "reqs");
227         lprocfs_counter_init(stats, LPROC_MGS_TARGET_DEL, 0, "tgtdel", "reqs");
228 }
229
230 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
231 {
232     lvars->module_vars  = lprocfs_mgs_module_vars;
233     lvars->obd_vars     = lprocfs_mgs_obd_vars;
234 }
235 #endif