Whamcloud - gitweb
land b_colibri_devel on HEAD:
[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
89         return rc;
90 }
91
92 static void seq_show_srpc_rule(struct seq_file *seq, const char *tgtname,
93                                struct sptlrpc_rule_set *rset)
94 {
95         struct sptlrpc_rule    *r;
96         char                    dirbuf[10];
97         char                    flvrbuf[40];
98         char                   *net;
99         int                     i;
100
101         for (i = 0; i < rset->srs_nrule; i++) {
102                 r = &rset->srs_rules[i];
103
104                 if (r->sr_netid == LNET_NIDNET(LNET_NID_ANY))
105                         net = "default";
106                 else
107                         net = libcfs_net2str(r->sr_netid);
108
109                 if (r->sr_from == LUSTRE_SP_ANY && r->sr_to == LUSTRE_SP_ANY)
110                         dirbuf[0] = '\0';
111                 else
112                         snprintf(dirbuf, sizeof(dirbuf), ".%s2%s",
113                                  sptlrpc_part2name(r->sr_from),
114                                  sptlrpc_part2name(r->sr_to));
115
116                 sptlrpc_flavor2name(&r->sr_flvr, flvrbuf, sizeof(flvrbuf));
117                 seq_printf(seq, "%s.srpc.flavor.%s%s=%s\n", tgtname,
118                            net, dirbuf, flvrbuf);
119         }
120 }
121
122 static int mgs_live_seq_show(struct seq_file *seq, void *v) 
123 {
124         struct fs_db             *fsdb = seq->private;
125         struct mgs_tgt_srpc_conf *srpc_tgt;
126         int i;
127         
128         down(&fsdb->fsdb_sem);
129
130         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
131         seq_printf(seq, "flags: %#x     gen: %d\n", 
132                    fsdb->fsdb_flags, fsdb->fsdb_gen);
133         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
134                  if (test_bit(i, fsdb->fsdb_mdt_index_map)) 
135                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
136         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
137                  if (test_bit(i, fsdb->fsdb_ost_index_map)) 
138                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
139
140         seq_printf(seq, "\nSecure RPC Config Rules:\n");
141 #if 0
142         seq_printf(seq, "%s.%s=%s\n", fsdb->fsdb_name,
143                    PARAM_SRPC_UDESC, fsdb->fsdb_srpc_fl_udesc ? "yes" : "no");
144 #endif
145         for (srpc_tgt = fsdb->fsdb_srpc_tgt; srpc_tgt;
146              srpc_tgt = srpc_tgt->mtsc_next) {
147                 seq_show_srpc_rule(seq, srpc_tgt->mtsc_tgt,
148                                    &srpc_tgt->mtsc_rset);
149         }
150         seq_show_srpc_rule(seq, fsdb->fsdb_name, &fsdb->fsdb_srpc_gen);
151
152         up(&fsdb->fsdb_sem);
153         return 0;
154 }
155
156 LPROC_SEQ_FOPS_RO(mgs_live);
157
158 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
159 {
160         struct mgs_obd *mgs = &obd->u.mgs;
161         int rc;
162
163         if (!mgs->mgs_proc_live) 
164                 return 0;
165         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0444, 
166                                 &mgs_live_fops, fsdb);
167
168         return 0;
169 }
170
171 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
172 {
173         struct mgs_obd *mgs = &obd->u.mgs;
174
175         if (!mgs->mgs_proc_live) 
176                 return 0;
177         remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
178         return 0;
179 }
180
181 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
182         { "uuid",            lprocfs_rd_uuid,        0, 0 },
183         { "fstype",          lprocfs_rd_fstype,      0, 0 },
184         { "mntdev",          lprocfs_mgs_rd_mntdev,  0, 0 },
185         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
186         { 0 }
187 };
188
189 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
190         { 0 }
191 };
192
193 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
194 {
195     lvars->module_vars  = lprocfs_mgs_module_vars;
196     lvars->obd_vars     = lprocfs_mgs_obd_vars;
197 }
198 #endif