Whamcloud - gitweb
LU-2145 server: use unified request handler for MGS
[fs/lustre-release.git] / lustre / mgs / lproc_mgs.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, 2013, Intel Corporation.
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 mgs_fs_seq_show(struct seq_file *seq, void *v)
49 {
50         struct obd_device *obd = seq->private;
51         struct mgs_device *mgs;
52         cfs_list_t list;
53         struct mgs_direntry *dirent, *n;
54         struct lu_env env;
55         int rc, len;
56         ENTRY;
57
58         LASSERT(obd != NULL);
59         LASSERT(obd->obd_lu_dev != NULL);
60         mgs = lu2mgs_dev(obd->obd_lu_dev);
61
62         rc = lu_env_init(&env, LCT_MG_THREAD);
63         if (rc)
64                 RETURN(rc);
65
66         rc = class_dentry_readdir(&env, mgs, &list);
67         if (rc) {
68                 CERROR("Can't read config dir\n");
69                 GOTO(out, rc);
70         }
71         cfs_list_for_each_entry_safe(dirent, n, &list, list) {
72                 cfs_list_del(&dirent->list);
73                 len = strlen(dirent->name);
74                 if (len > 7 &&
75                     strncmp(dirent->name + len - 7, "-client", len) == 0)
76                         seq_printf(seq, "%.*s\n", len - 7, dirent->name);
77                 mgs_direntry_free(dirent);
78         }
79
80 out:
81         lu_env_fini(&env);
82         RETURN(0);
83 }
84
85 LPROC_SEQ_FOPS_RO(mgs_fs);
86
87 static void seq_show_srpc_rules(struct seq_file *seq, const char *tgtname,
88                                 struct sptlrpc_rule_set *rset)
89 {
90         struct sptlrpc_rule    *r;
91         char                    dirbuf[10];
92         char                    flvrbuf[40];
93         char                   *net;
94         int                     i;
95
96         for (i = 0; i < rset->srs_nrule; i++) {
97                 r = &rset->srs_rules[i];
98
99                 if (r->sr_netid == LNET_NIDNET(LNET_NID_ANY))
100                         net = "default";
101                 else
102                         net = libcfs_net2str(r->sr_netid);
103
104                 if (r->sr_from == LUSTRE_SP_ANY && r->sr_to == LUSTRE_SP_ANY)
105                         dirbuf[0] = '\0';
106                 else
107                         snprintf(dirbuf, sizeof(dirbuf), ".%s2%s",
108                                  sptlrpc_part2name(r->sr_from),
109                                  sptlrpc_part2name(r->sr_to));
110
111                 sptlrpc_flavor2name(&r->sr_flvr, flvrbuf, sizeof(flvrbuf));
112                 seq_printf(seq, "%s.srpc.flavor.%s%s=%s\n", tgtname,
113                            net, dirbuf, flvrbuf);
114         }
115 }
116
117 static int mgsself_srpc_seq_show(struct seq_file *seq, void *v)
118 {
119         struct obd_device       *obd = seq->private;
120         struct mgs_device       *mgs = lu2mgs_dev(obd->obd_lu_dev);
121         struct lu_target        *tgt = &mgs->mgs_lut;
122
123         read_lock(&tgt->lut_sptlrpc_lock);
124         seq_show_srpc_rules(seq, MGSSELF_NAME, &tgt->lut_sptlrpc_rset);
125         read_unlock(&tgt->lut_sptlrpc_lock);
126
127         return 0;
128 }
129
130 LPROC_SEQ_FOPS_RO(mgsself_srpc);
131
132 int lproc_mgs_setup(struct mgs_device *mgs, const char *osd_name)
133 {
134         struct obd_device *obd = mgs->mgs_obd;
135         struct obd_device *osd_obd = mgs->mgs_bottom->dd_lu_dev.ld_obd;
136         int                osd_len = strlen(osd_name) - strlen("-osd");
137         int                rc;
138         struct lprocfs_static_vars lvars;
139
140         lprocfs_mgs_init_vars(&lvars);
141         rc = lprocfs_obd_setup(obd, lvars.obd_vars);
142         if (rc != 0)
143                 GOTO(out, rc);
144
145         rc = lprocfs_obd_seq_create(obd, "filesystems", 0444,
146                                     &mgs_fs_fops, obd);
147         if (rc != 0)
148                 GOTO(out, rc);
149
150         rc = lprocfs_obd_seq_create(obd, "srpc_rules", 0400,
151                                     &mgsself_srpc_fops, obd);
152         if (rc != 0)
153                 GOTO(out, rc);
154
155         mgs->mgs_proc_live = lprocfs_register("live", obd->obd_proc_entry,
156                                               NULL, NULL);
157         if (IS_ERR(mgs->mgs_proc_live)) {
158                 rc = PTR_ERR(mgs->mgs_proc_live);
159                 mgs->mgs_proc_live = NULL;
160                 GOTO(out, rc);
161         }
162
163         obd->obd_proc_exports_entry = lprocfs_register("exports",
164                                                        obd->obd_proc_entry,
165                                                        NULL, NULL);
166         if (IS_ERR(obd->obd_proc_exports_entry)) {
167                 rc = PTR_ERR(obd->obd_proc_exports_entry);
168                 obd->obd_proc_exports_entry = NULL;
169                 GOTO(out, rc);
170         }
171
172         mgs->mgs_proc_osd = lprocfs_add_symlink("osd",
173                                                 obd->obd_proc_entry,
174                                                 "../../%s/%.*s",
175                                                 osd_obd->obd_type->typ_name,
176                                                 osd_len, /* Strip "-osd". */
177                                                 osd_name);
178         if (mgs->mgs_proc_osd == NULL)
179                 GOTO(out, rc = -ENOMEM);
180
181         mgs->mgs_proc_mntdev = lprocfs_add_symlink("mntdev",
182                                                    obd->obd_proc_entry,
183                                                    "osd/mntdev");
184         if (mgs->mgs_proc_mntdev == NULL)
185                 GOTO(out, rc = -ENOMEM);
186
187         mgs->mgs_proc_fstype = lprocfs_add_symlink("fstype",
188                                                    obd->obd_proc_entry,
189                                                    "osd/fstype");
190         if (mgs->mgs_proc_fstype == NULL)
191                 GOTO(out, rc = -ENOMEM);
192
193 out:
194         if (rc != 0)
195                 lproc_mgs_cleanup(mgs);
196
197         return rc;
198 }
199
200 void lproc_mgs_cleanup(struct mgs_device *mgs)
201 {
202         struct obd_device *obd = mgs->mgs_obd;
203
204         if (obd == NULL)
205                 return;
206
207         if (mgs->mgs_proc_osd != NULL)
208                 lprocfs_remove(&mgs->mgs_proc_osd);
209
210         if (mgs->mgs_proc_fstype != NULL)
211                 lprocfs_remove(&mgs->mgs_proc_fstype);
212
213         if (mgs->mgs_proc_mntdev != NULL)
214                 lprocfs_remove(&mgs->mgs_proc_mntdev);
215
216         if (mgs->mgs_proc_live != NULL) {
217                 /* Should be no live entries */
218                 LASSERT(mgs->mgs_proc_live->subdir == NULL);
219                 lprocfs_remove(&mgs->mgs_proc_live);
220                 mgs->mgs_proc_live = NULL;
221         }
222
223         lprocfs_free_per_client_stats(obd);
224         lprocfs_obd_cleanup(obd);
225         lprocfs_free_obd_stats(obd);
226         lprocfs_free_md_stats(obd);
227 }
228
229 static int mgs_live_seq_show(struct seq_file *seq, void *v)
230 {
231         struct fs_db             *fsdb = seq->private;
232         struct mgs_tgt_srpc_conf *srpc_tgt;
233         int i;
234
235         mutex_lock(&fsdb->fsdb_mutex);
236
237         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
238         seq_printf(seq, "flags: %#lx     gen: %d\n",
239                    fsdb->fsdb_flags, fsdb->fsdb_gen);
240         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
241                 if (test_bit(i, fsdb->fsdb_mdt_index_map))
242                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
243         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
244                 if (test_bit(i, fsdb->fsdb_ost_index_map))
245                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
246
247         seq_printf(seq, "\nSecure RPC Config Rules:\n");
248 #if 0
249         seq_printf(seq, "%s.%s=%s\n", fsdb->fsdb_name,
250                    PARAM_SRPC_UDESC, fsdb->fsdb_srpc_fl_udesc ? "yes" : "no");
251 #endif
252         for (srpc_tgt = fsdb->fsdb_srpc_tgt; srpc_tgt;
253              srpc_tgt = srpc_tgt->mtsc_next) {
254                 seq_show_srpc_rules(seq, srpc_tgt->mtsc_tgt,
255                                     &srpc_tgt->mtsc_rset);
256         }
257         seq_show_srpc_rules(seq, fsdb->fsdb_name, &fsdb->fsdb_srpc_gen);
258
259         lprocfs_rd_ir_state(seq, fsdb);
260
261         mutex_unlock(&fsdb->fsdb_mutex);
262         return 0;
263 }
264
265 static ssize_t mgs_live_seq_write(struct file *file, const char *buf,
266                                   size_t len, loff_t *off)
267 {
268         struct seq_file *seq  = file->private_data;
269         struct fs_db    *fsdb = seq->private;
270         ssize_t rc;
271
272         rc = lprocfs_wr_ir_state(file, buf, len, fsdb);
273         if (rc >= 0)
274                 rc = len;
275         return rc;
276 }
277 LPROC_SEQ_FOPS(mgs_live);
278
279 int lproc_mgs_add_live(struct mgs_device *mgs, struct fs_db *fsdb)
280 {
281         int rc;
282
283         if (!mgs->mgs_proc_live)
284                 return 0;
285         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0644,
286                                 &mgs_live_fops, fsdb);
287
288         return 0;
289 }
290
291 int lproc_mgs_del_live(struct mgs_device *mgs, struct fs_db *fsdb)
292 {
293         if (!mgs->mgs_proc_live)
294                 return 0;
295
296         /* didn't create the proc file for MGSSELF_NAME */
297         if (!test_bit(FSDB_MGS_SELF, &fsdb->fsdb_flags))
298                 lprocfs_remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
299         return 0;
300 }
301
302 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
303         { "uuid",            lprocfs_rd_uuid,        0, 0 },
304         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
305         { "hash_stats",      lprocfs_obd_rd_hash,    0, 0 },
306         { "evict_client",    0, lprocfs_wr_evict_client, 0 },
307         { "ir_timeout",      lprocfs_rd_ir_timeout, lprocfs_wr_ir_timeout, 0 },
308         { 0 }
309 };
310
311 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
312         { 0 }
313 };
314
315 void mgs_counter_incr(struct obd_export *exp, int opcode)
316 {
317         lprocfs_counter_incr(exp->exp_obd->obd_stats, opcode);
318         if (exp->exp_nid_stats && exp->exp_nid_stats->nid_stats != NULL)
319                 lprocfs_counter_incr(exp->exp_nid_stats->nid_stats, opcode);
320 }
321
322 void mgs_stats_counter_init(struct lprocfs_stats *stats)
323 {
324         lprocfs_counter_init(stats, LPROC_MGS_CONNECT, 0, "connect", "reqs");
325         lprocfs_counter_init(stats, LPROC_MGS_DISCONNECT, 0, "disconnect",
326                              "reqs");
327         lprocfs_counter_init(stats, LPROC_MGS_EXCEPTION, 0, "exception",
328                              "reqs");
329         lprocfs_counter_init(stats, LPROC_MGS_TARGET_REG, 0, "tgtreg", "reqs");
330         lprocfs_counter_init(stats, LPROC_MGS_TARGET_DEL, 0, "tgtdel", "reqs");
331 }
332
333 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
334 {
335     lvars->module_vars  = lprocfs_mgs_module_vars;
336     lvars->obd_vars     = lprocfs_mgs_obd_vars;
337 }
338 #endif