Whamcloud - gitweb
b=14184
[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 "mgs_internal.h"
33
34 #ifdef LPROCFS
35
36 static int lprocfs_mgs_rd_mntdev(char *page, char **start, off_t off, int count,
37                                  int *eof, void *data)
38 {
39         struct obd_device* obd = (struct obd_device *)data;
40
41         LASSERT(obd != NULL);
42         LASSERT(obd->u.mgs.mgs_vfsmnt->mnt_devname);
43         *eof = 1;
44
45         return snprintf(page, count, "%s\n",obd->u.mgs.mgs_vfsmnt->mnt_devname);
46 }
47
48 static int mgs_fs_seq_show(struct seq_file *seq, void *v)
49 {
50         struct obd_device *obd = seq->private;
51         struct mgs_obd *mgs = &obd->u.mgs;
52         struct list_head dentry_list;
53         struct l_linux_dirent *dirent, *n;
54         int rc, len;
55         ENTRY;
56
57         LASSERT(obd != NULL);
58         rc = class_dentry_readdir(obd, mgs->mgs_configs_dir,
59                                   mgs->mgs_vfsmnt, &dentry_list);
60         if (rc) {
61                 CERROR("Can't read config dir\n");
62                 RETURN(rc);
63         }
64         list_for_each_entry_safe(dirent, n, &dentry_list, lld_list) {
65                 list_del(&dirent->lld_list);
66                 len = strlen(dirent->lld_name);
67                 if ((len > 7) && (strncmp(dirent->lld_name + len - 7, "-client",
68                                           len) == 0)) {
69                         seq_printf(seq, "%.*s\n", len - 7, dirent->lld_name);
70                 }
71                 OBD_FREE(dirent, sizeof(*dirent));
72         }
73
74         RETURN(0);
75 }
76
77 LPROC_SEQ_FOPS_RO(mgs_fs);
78
79 int lproc_mgs_setup(struct obd_device *obd)
80 {
81         struct mgs_obd *mgs = &obd->u.mgs;
82         int rc;
83
84         rc = lprocfs_obd_seq_create(obd, "filesystems", 0444,
85                                     &mgs_fs_fops, obd);
86         mgs->mgs_proc_live = proc_mkdir("live", obd->obd_proc_entry);
87
88         return rc;
89 }
90
91 static int mgs_live_seq_show(struct seq_file *seq, void *v) 
92 {
93         struct fs_db *fsdb = seq->private;
94         int i;
95         
96         down(&fsdb->fsdb_sem);
97
98         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
99         seq_printf(seq, "flags: %#x     gen: %d\n", 
100                    fsdb->fsdb_flags, fsdb->fsdb_gen);
101         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
102                  if (test_bit(i, fsdb->fsdb_mdt_index_map)) 
103                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
104         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
105                  if (test_bit(i, fsdb->fsdb_ost_index_map)) 
106                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
107
108         up(&fsdb->fsdb_sem);
109         return 0;
110 }
111
112 LPROC_SEQ_FOPS_RO(mgs_live);
113
114 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
115 {
116         struct mgs_obd *mgs = &obd->u.mgs;
117         int rc;
118
119         if (!mgs->mgs_proc_live) 
120                 return 0;
121         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0444, 
122                                 &mgs_live_fops, fsdb);
123
124         return 0;
125 }
126
127 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
128 {
129         struct mgs_obd *mgs = &obd->u.mgs;
130
131         if (!mgs->mgs_proc_live) 
132                 return 0;
133         remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
134         return 0;
135 }
136
137 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
138         { "uuid",            lprocfs_rd_uuid,        0, 0 },
139         { "fstype",          lprocfs_rd_fstype,      0, 0 },
140         { "mntdev",          lprocfs_mgs_rd_mntdev,  0, 0 },
141         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
142         { 0 }
143 };
144
145 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
146         { 0 }
147 };
148
149 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
150 {
151     lvars->module_vars  = lprocfs_mgs_module_vars;
152     lvars->obd_vars     = lprocfs_mgs_obd_vars;
153 }
154 #endif