blob: d635496ea1899dc06195812d2f0644d33ecff6c6 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001#include <linux/ceph/ceph_debug.h>
Sage Weil76aa8442009-10-06 11:31:14 -07002
Sage Weil06edf042009-12-15 14:44:32 -08003#include <linux/device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09004#include <linux/slab.h>
Sage Weil76aa8442009-10-06 11:31:14 -07005#include <linux/module.h>
6#include <linux/ctype.h>
7#include <linux/debugfs.h>
8#include <linux/seq_file.h>
9
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include <linux/ceph/libceph.h>
11#include <linux/ceph/mon_client.h>
12#include <linux/ceph/auth.h>
13#include <linux/ceph/debugfs.h>
Sage Weil76aa8442009-10-06 11:31:14 -070014
Randy Dunlap6f453ed2010-09-28 09:53:10 -070015#include "super.h"
16
Sage Weil039934b2009-11-12 15:05:52 -080017#ifdef CONFIG_DEBUG_FS
18
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070019#include "mds_client.h"
Sage Weil76aa8442009-10-06 11:31:14 -070020
21static int mdsmap_show(struct seq_file *s, void *p)
22{
23 int i;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070024 struct ceph_fs_client *fsc = s->private;
Yan, Zheng76201b62017-03-28 17:04:13 +080025 struct ceph_mdsmap *mdsmap;
Sage Weil76aa8442009-10-06 11:31:14 -070026
Markus Elfringd37b1d92017-08-20 20:22:02 +020027 if (!fsc->mdsc || !fsc->mdsc->mdsmap)
Sage Weil76aa8442009-10-06 11:31:14 -070028 return 0;
Yan, Zheng76201b62017-03-28 17:04:13 +080029 mdsmap = fsc->mdsc->mdsmap;
30 seq_printf(s, "epoch %d\n", mdsmap->m_epoch);
31 seq_printf(s, "root %d\n", mdsmap->m_root);
32 seq_printf(s, "max_mds %d\n", mdsmap->m_max_mds);
33 seq_printf(s, "session_timeout %d\n", mdsmap->m_session_timeout);
34 seq_printf(s, "session_autoclose %d\n", mdsmap->m_session_autoclose);
35 for (i = 0; i < mdsmap->m_num_mds; i++) {
36 struct ceph_entity_addr *addr = &mdsmap->m_info[i].addr;
37 int state = mdsmap->m_info[i].state;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070038 seq_printf(s, "\tmds%d\t%s\t(%s)\n", i,
39 ceph_pr_addr(&addr->in_addr),
Sage Weil76aa8442009-10-06 11:31:14 -070040 ceph_mds_state_name(state));
41 }
42 return 0;
43}
44
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070045/*
46 * mdsc debugfs
47 */
Sage Weil76aa8442009-10-06 11:31:14 -070048static int mdsc_show(struct seq_file *s, void *p)
49{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070050 struct ceph_fs_client *fsc = s->private;
51 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil44ca18f2010-02-15 12:08:46 -080052 struct ceph_mds_request *req;
53 struct rb_node *rp;
Sage Weil76aa8442009-10-06 11:31:14 -070054 int pathlen;
55 u64 pathbase;
56 char *path;
57
58 mutex_lock(&mdsc->mutex);
Sage Weil44ca18f2010-02-15 12:08:46 -080059 for (rp = rb_first(&mdsc->request_tree); rp; rp = rb_next(rp)) {
60 req = rb_entry(rp, struct ceph_mds_request, r_node);
Sage Weil76aa8442009-10-06 11:31:14 -070061
Sage Weil4af25fd2010-11-02 13:41:47 -070062 if (req->r_request && req->r_session)
63 seq_printf(s, "%lld\tmds%d\t", req->r_tid,
64 req->r_session->s_mds);
65 else if (!req->r_request)
Sage Weil76aa8442009-10-06 11:31:14 -070066 seq_printf(s, "%lld\t(no request)\t", req->r_tid);
Sage Weil4af25fd2010-11-02 13:41:47 -070067 else
68 seq_printf(s, "%lld\t(no session)\t", req->r_tid);
Sage Weil76aa8442009-10-06 11:31:14 -070069
70 seq_printf(s, "%s", ceph_mds_op_name(req->r_op));
71
Jeff Laytonbc2de10d2017-02-01 13:49:09 -050072 if (test_bit(CEPH_MDS_R_GOT_UNSAFE, &req->r_req_flags))
Fabian Frederick3364d112014-06-06 14:35:38 -070073 seq_puts(s, "\t(unsafe)");
Sage Weil76aa8442009-10-06 11:31:14 -070074 else
Fabian Frederick3364d112014-06-06 14:35:38 -070075 seq_puts(s, "\t");
Sage Weil76aa8442009-10-06 11:31:14 -070076
77 if (req->r_inode) {
78 seq_printf(s, " #%llx", ceph_ino(req->r_inode));
79 } else if (req->r_dentry) {
80 path = ceph_mdsc_build_path(req->r_dentry, &pathlen,
81 &pathbase, 0);
Dan Carpenterf44c3892010-08-26 11:07:24 +020082 if (IS_ERR(path))
83 path = NULL;
Sage Weil76aa8442009-10-06 11:31:14 -070084 spin_lock(&req->r_dentry->d_lock);
Al Viroa4555892014-10-21 20:11:25 -040085 seq_printf(s, " #%llx/%pd (%s)",
David Howells2b0143b2015-03-17 22:25:59 +000086 ceph_ino(d_inode(req->r_dentry->d_parent)),
Al Viroa4555892014-10-21 20:11:25 -040087 req->r_dentry,
Sage Weil76aa8442009-10-06 11:31:14 -070088 path ? path : "");
89 spin_unlock(&req->r_dentry->d_lock);
90 kfree(path);
91 } else if (req->r_path1) {
92 seq_printf(s, " #%llx/%s", req->r_ino1.ino,
93 req->r_path1);
Yan, Zhengc137a322014-03-01 22:22:57 +080094 } else {
95 seq_printf(s, " #%llx", req->r_ino1.ino);
Sage Weil76aa8442009-10-06 11:31:14 -070096 }
97
98 if (req->r_old_dentry) {
99 path = ceph_mdsc_build_path(req->r_old_dentry, &pathlen,
100 &pathbase, 0);
Dan Carpenterf44c3892010-08-26 11:07:24 +0200101 if (IS_ERR(path))
102 path = NULL;
Sage Weil76aa8442009-10-06 11:31:14 -0700103 spin_lock(&req->r_old_dentry->d_lock);
Al Viroa4555892014-10-21 20:11:25 -0400104 seq_printf(s, " #%llx/%pd (%s)",
Sage Weil844d87c2013-02-05 13:40:09 -0800105 req->r_old_dentry_dir ?
106 ceph_ino(req->r_old_dentry_dir) : 0,
Al Viroa4555892014-10-21 20:11:25 -0400107 req->r_old_dentry,
Sage Weil76aa8442009-10-06 11:31:14 -0700108 path ? path : "");
109 spin_unlock(&req->r_old_dentry->d_lock);
110 kfree(path);
Yan, Zhengaeda0812016-04-18 16:51:37 +0800111 } else if (req->r_path2 && req->r_op != CEPH_MDS_OP_SYMLINK) {
Sage Weil76aa8442009-10-06 11:31:14 -0700112 if (req->r_ino2.ino)
113 seq_printf(s, " #%llx/%s", req->r_ino2.ino,
114 req->r_path2);
115 else
116 seq_printf(s, " %s", req->r_path2);
117 }
118
Fabian Frederick3364d112014-06-06 14:35:38 -0700119 seq_puts(s, "\n");
Sage Weil76aa8442009-10-06 11:31:14 -0700120 }
121 mutex_unlock(&mdsc->mutex);
122
123 return 0;
124}
125
Sage Weil76aa8442009-10-06 11:31:14 -0700126static int caps_show(struct seq_file *s, void *p)
127{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700128 struct ceph_fs_client *fsc = s->private;
Sage Weil85ccce42010-02-17 10:02:43 -0800129 int total, avail, used, reserved, min;
Sage Weil76aa8442009-10-06 11:31:14 -0700130
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700131 ceph_reservation_status(fsc, &total, &avail, &used, &reserved, &min);
Sage Weil76aa8442009-10-06 11:31:14 -0700132 seq_printf(s, "total\t\t%d\n"
Sage Weil85ccce42010-02-17 10:02:43 -0800133 "avail\t\t%d\n"
134 "used\t\t%d\n"
135 "reserved\t%d\n"
136 "min\t%d\n",
137 total, avail, used, reserved, min);
Sage Weil76aa8442009-10-06 11:31:14 -0700138 return 0;
139}
140
141static int dentry_lru_show(struct seq_file *s, void *ptr)
142{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700143 struct ceph_fs_client *fsc = s->private;
144 struct ceph_mds_client *mdsc = fsc->mdsc;
Sage Weil76aa8442009-10-06 11:31:14 -0700145 struct ceph_dentry_info *di;
146
147 spin_lock(&mdsc->dentry_lru_lock);
148 list_for_each_entry(di, &mdsc->dentry_lru, lru) {
149 struct dentry *dentry = di->dentry;
Al Viroa4555892014-10-21 20:11:25 -0400150 seq_printf(s, "%p %p\t%pd\n",
151 di, dentry, dentry);
Sage Weil76aa8442009-10-06 11:31:14 -0700152 }
153 spin_unlock(&mdsc->dentry_lru_lock);
154
155 return 0;
156}
157
John Spray14ed9702014-09-12 16:58:49 +0100158static int mds_sessions_show(struct seq_file *s, void *ptr)
159{
160 struct ceph_fs_client *fsc = s->private;
161 struct ceph_mds_client *mdsc = fsc->mdsc;
162 struct ceph_auth_client *ac = fsc->client->monc.auth;
163 struct ceph_options *opt = fsc->client->options;
164 int mds = -1;
165
166 mutex_lock(&mdsc->mutex);
167
168 /* The 'num' portion of an 'entity name' */
169 seq_printf(s, "global_id %llu\n", ac->global_id);
170
171 /* The -o name mount argument */
172 seq_printf(s, "name \"%s\"\n", opt->name ? opt->name : "");
173
174 /* The list of MDS session rank+state */
175 for (mds = 0; mds < mdsc->max_sessions; mds++) {
176 struct ceph_mds_session *session =
177 __ceph_lookup_mds_session(mdsc, mds);
178 if (!session) {
179 continue;
180 }
181 mutex_unlock(&mdsc->mutex);
182 seq_printf(s, "mds.%d %s\n",
183 session->s_mds,
184 ceph_session_state_name(session->s_state));
185
186 ceph_put_mds_session(session);
187 mutex_lock(&mdsc->mutex);
188 }
189 mutex_unlock(&mdsc->mutex);
190
191 return 0;
192}
193
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700194CEPH_DEFINE_SHOW_FUNC(mdsmap_show)
195CEPH_DEFINE_SHOW_FUNC(mdsc_show)
196CEPH_DEFINE_SHOW_FUNC(caps_show)
197CEPH_DEFINE_SHOW_FUNC(dentry_lru_show)
John Spray14ed9702014-09-12 16:58:49 +0100198CEPH_DEFINE_SHOW_FUNC(mds_sessions_show)
Sage Weil76aa8442009-10-06 11:31:14 -0700199
Sage Weil76aa8442009-10-06 11:31:14 -0700200
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700201/*
202 * debugfs
203 */
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800204static int congestion_kb_set(void *data, u64 val)
205{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700206 struct ceph_fs_client *fsc = (struct ceph_fs_client *)data;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800207
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700208 fsc->mount_options->congestion_kb = (int)val;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800209 return 0;
210}
211
212static int congestion_kb_get(void *data, u64 *val)
213{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700214 struct ceph_fs_client *fsc = (struct ceph_fs_client *)data;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800215
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700216 *val = (u64)fsc->mount_options->congestion_kb;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800217 return 0;
218}
219
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800220DEFINE_SIMPLE_ATTRIBUTE(congestion_kb_fops, congestion_kb_get,
221 congestion_kb_set, "%llu\n");
222
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700223
224void ceph_fs_debugfs_cleanup(struct ceph_fs_client *fsc)
Sage Weil76aa8442009-10-06 11:31:14 -0700225{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700226 dout("ceph_fs_debugfs_cleanup\n");
227 debugfs_remove(fsc->debugfs_bdi);
228 debugfs_remove(fsc->debugfs_congestion_kb);
229 debugfs_remove(fsc->debugfs_mdsmap);
John Spray14ed9702014-09-12 16:58:49 +0100230 debugfs_remove(fsc->debugfs_mds_sessions);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700231 debugfs_remove(fsc->debugfs_caps);
232 debugfs_remove(fsc->debugfs_mdsc);
233 debugfs_remove(fsc->debugfs_dentry_lru);
Sage Weil76aa8442009-10-06 11:31:14 -0700234}
235
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700236int ceph_fs_debugfs_init(struct ceph_fs_client *fsc)
Sage Weil76aa8442009-10-06 11:31:14 -0700237{
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700238 char name[100];
239 int err = -ENOMEM;
Sage Weil76aa8442009-10-06 11:31:14 -0700240
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700241 dout("ceph_fs_debugfs_init\n");
Sage Weild1c338a2012-08-19 12:29:16 -0700242 BUG_ON(!fsc->client->debugfs_dir);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700243 fsc->debugfs_congestion_kb =
Sage Weil213c99e2010-08-03 10:25:11 -0700244 debugfs_create_file("writeback_congestion_kb",
245 0600,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700246 fsc->client->debugfs_dir,
247 fsc,
Sage Weil213c99e2010-08-03 10:25:11 -0700248 &congestion_kb_fops);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700249 if (!fsc->debugfs_congestion_kb)
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800250 goto out;
251
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700252 snprintf(name, sizeof(name), "../../bdi/%s",
Jan Kara09dc9fc2017-04-12 12:24:33 +0200253 dev_name(fsc->sb->s_bdi->dev));
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700254 fsc->debugfs_bdi =
255 debugfs_create_symlink("bdi",
256 fsc->client->debugfs_dir,
257 name);
258 if (!fsc->debugfs_bdi)
259 goto out;
260
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700261 fsc->debugfs_mdsmap = debugfs_create_file("mdsmap",
262 0600,
263 fsc->client->debugfs_dir,
264 fsc,
265 &mdsmap_show_fops);
266 if (!fsc->debugfs_mdsmap)
267 goto out;
268
John Spray14ed9702014-09-12 16:58:49 +0100269 fsc->debugfs_mds_sessions = debugfs_create_file("mds_sessions",
270 0600,
271 fsc->client->debugfs_dir,
272 fsc,
273 &mds_sessions_show_fops);
274 if (!fsc->debugfs_mds_sessions)
275 goto out;
276
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700277 fsc->debugfs_mdsc = debugfs_create_file("mdsc",
278 0600,
279 fsc->client->debugfs_dir,
280 fsc,
281 &mdsc_show_fops);
282 if (!fsc->debugfs_mdsc)
283 goto out;
284
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700285 fsc->debugfs_caps = debugfs_create_file("caps",
286 0400,
287 fsc->client->debugfs_dir,
288 fsc,
289 &caps_show_fops);
290 if (!fsc->debugfs_caps)
291 goto out;
292
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700293 fsc->debugfs_dentry_lru = debugfs_create_file("dentry_lru",
294 0600,
295 fsc->client->debugfs_dir,
296 fsc,
297 &dentry_lru_show_fops);
298 if (!fsc->debugfs_dentry_lru)
299 goto out;
Sage Weil06edf042009-12-15 14:44:32 -0800300
Sage Weil76aa8442009-10-06 11:31:14 -0700301 return 0;
302
303out:
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700304 ceph_fs_debugfs_cleanup(fsc);
305 return err;
Sage Weil76aa8442009-10-06 11:31:14 -0700306}
307
Sage Weil76aa8442009-10-06 11:31:14 -0700308
Sage Weil213c99e2010-08-03 10:25:11 -0700309#else /* CONFIG_DEBUG_FS */
Sage Weil039934b2009-11-12 15:05:52 -0800310
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700311int ceph_fs_debugfs_init(struct ceph_fs_client *fsc)
Sage Weil039934b2009-11-12 15:05:52 -0800312{
313 return 0;
314}
315
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700316void ceph_fs_debugfs_cleanup(struct ceph_fs_client *fsc)
Sage Weil039934b2009-11-12 15:05:52 -0800317{
318}
319
Sage Weil213c99e2010-08-03 10:25:11 -0700320#endif /* CONFIG_DEBUG_FS */