2014-05-02 11:19:51 +00:00
|
|
|
#define pr_fmt(fmt) "drbd debugfs: " fmt
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/debugfs.h>
|
2014-05-02 11:20:05 +00:00
|
|
|
#include <linux/seq_file.h>
|
2014-05-02 11:19:51 +00:00
|
|
|
#include <linux/stat.h>
|
2014-05-02 11:20:05 +00:00
|
|
|
#include <linux/jiffies.h>
|
2014-05-02 11:19:51 +00:00
|
|
|
#include <linux/list.h>
|
|
|
|
|
|
|
|
#include "drbd_int.h"
|
|
|
|
#include "drbd_req.h"
|
|
|
|
#include "drbd_debugfs.h"
|
|
|
|
|
|
|
|
static struct dentry *drbd_debugfs_root;
|
|
|
|
static struct dentry *drbd_debugfs_resources;
|
|
|
|
static struct dentry *drbd_debugfs_minors;
|
|
|
|
|
2014-05-02 11:20:05 +00:00
|
|
|
static void seq_print_age_or_dash(struct seq_file *m, bool valid, unsigned long dt)
|
|
|
|
{
|
|
|
|
if (valid)
|
|
|
|
seq_printf(m, "\t%d", jiffies_to_msecs(dt));
|
|
|
|
else
|
|
|
|
seq_printf(m, "\t-");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void seq_print_rq_state_bit(struct seq_file *m,
|
|
|
|
bool is_set, char *sep, const char *name)
|
|
|
|
{
|
|
|
|
if (!is_set)
|
|
|
|
return;
|
|
|
|
seq_putc(m, *sep);
|
|
|
|
seq_puts(m, name);
|
|
|
|
*sep = '|';
|
|
|
|
}
|
|
|
|
|
|
|
|
/* pretty print enum drbd_req_state_bits req->rq_state */
|
|
|
|
static void seq_print_request_state(struct seq_file *m, struct drbd_request *req)
|
|
|
|
{
|
|
|
|
unsigned int s = req->rq_state;
|
|
|
|
char sep = ' ';
|
|
|
|
seq_printf(m, "\t0x%08x", s);
|
|
|
|
seq_printf(m, "\tmaster: %s", req->master_bio ? "pending" : "completed");
|
|
|
|
|
|
|
|
/* RQ_WRITE ignored, already reported */
|
|
|
|
seq_puts(m, "\tlocal:");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_IN_ACT_LOG, &sep, "in-AL");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_POSTPONED, &sep, "postponed");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_COMPLETION_SUSP, &sep, "suspended");
|
|
|
|
sep = ' ';
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_LOCAL_PENDING, &sep, "pending");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_LOCAL_COMPLETED, &sep, "completed");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_LOCAL_ABORTED, &sep, "aborted");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_LOCAL_OK, &sep, "ok");
|
|
|
|
if (sep == ' ')
|
|
|
|
seq_puts(m, " -");
|
|
|
|
|
|
|
|
/* for_each_connection ... */
|
|
|
|
seq_printf(m, "\tnet:");
|
|
|
|
sep = ' ';
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_NET_PENDING, &sep, "pending");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_NET_QUEUED, &sep, "queued");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_NET_SENT, &sep, "sent");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_NET_DONE, &sep, "done");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_NET_SIS, &sep, "sis");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_NET_OK, &sep, "ok");
|
|
|
|
if (sep == ' ')
|
|
|
|
seq_puts(m, " -");
|
|
|
|
|
|
|
|
seq_printf(m, " :");
|
|
|
|
sep = ' ';
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_EXP_RECEIVE_ACK, &sep, "B");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_EXP_WRITE_ACK, &sep, "C");
|
|
|
|
seq_print_rq_state_bit(m, s & RQ_EXP_BARR_ACK, &sep, "barr");
|
|
|
|
if (sep == ' ')
|
|
|
|
seq_puts(m, " -");
|
|
|
|
seq_printf(m, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void seq_print_one_request(struct seq_file *m, struct drbd_request *req, unsigned long now)
|
|
|
|
{
|
|
|
|
/* change anything here, fixup header below! */
|
|
|
|
unsigned int s = req->rq_state;
|
|
|
|
|
|
|
|
#define RQ_HDR_1 "epoch\tsector\tsize\trw"
|
|
|
|
seq_printf(m, "0x%x\t%llu\t%u\t%s",
|
|
|
|
req->epoch,
|
|
|
|
(unsigned long long)req->i.sector, req->i.size >> 9,
|
|
|
|
(s & RQ_WRITE) ? "W" : "R");
|
|
|
|
|
|
|
|
#define RQ_HDR_2 "\tstart\tin AL\tsubmit"
|
|
|
|
seq_printf(m, "\t%d", jiffies_to_msecs(now - req->start_jif));
|
|
|
|
seq_print_age_or_dash(m, s & RQ_IN_ACT_LOG, now - req->in_actlog_jif);
|
|
|
|
seq_print_age_or_dash(m, s & RQ_LOCAL_PENDING, now - req->pre_submit_jif);
|
|
|
|
|
|
|
|
#define RQ_HDR_3 "\tsent\tacked\tdone"
|
|
|
|
seq_print_age_or_dash(m, s & RQ_NET_SENT, now - req->pre_send_jif);
|
|
|
|
seq_print_age_or_dash(m, (s & RQ_NET_SENT) && !(s & RQ_NET_PENDING), now - req->acked_jif);
|
|
|
|
seq_print_age_or_dash(m, s & RQ_NET_DONE, now - req->net_done_jif);
|
|
|
|
|
|
|
|
#define RQ_HDR_4 "\tstate\n"
|
|
|
|
seq_print_request_state(m, req);
|
|
|
|
}
|
|
|
|
#define RQ_HDR RQ_HDR_1 RQ_HDR_2 RQ_HDR_3 RQ_HDR_4
|
|
|
|
|
|
|
|
static void seq_print_minor_vnr_req(struct seq_file *m, struct drbd_request *req, unsigned long now)
|
|
|
|
{
|
|
|
|
seq_printf(m, "%u\t%u\t", req->device->minor, req->device->vnr);
|
|
|
|
seq_print_one_request(m, req, now);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void seq_print_resource_transfer_log_summary(struct seq_file *m,
|
|
|
|
struct drbd_resource *resource,
|
|
|
|
struct drbd_connection *connection,
|
|
|
|
unsigned long now)
|
|
|
|
{
|
|
|
|
struct drbd_request *req;
|
|
|
|
unsigned int count = 0;
|
|
|
|
unsigned int show_state = 0;
|
|
|
|
|
|
|
|
seq_puts(m, "n\tdevice\tvnr\t" RQ_HDR);
|
|
|
|
spin_lock_irq(&resource->req_lock);
|
|
|
|
list_for_each_entry(req, &connection->transfer_log, tl_requests) {
|
|
|
|
unsigned int tmp = 0;
|
|
|
|
unsigned int s;
|
|
|
|
++count;
|
|
|
|
|
|
|
|
/* don't disable irq "forever" */
|
|
|
|
if (!(count & 0x1ff)) {
|
|
|
|
struct drbd_request *req_next;
|
|
|
|
kref_get(&req->kref);
|
|
|
|
spin_unlock_irq(&resource->req_lock);
|
|
|
|
cond_resched();
|
|
|
|
spin_lock_irq(&resource->req_lock);
|
|
|
|
req_next = list_next_entry(req, tl_requests);
|
|
|
|
if (kref_put(&req->kref, drbd_req_destroy))
|
|
|
|
req = req_next;
|
|
|
|
if (&req->tl_requests == &connection->transfer_log)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = req->rq_state;
|
|
|
|
|
|
|
|
/* This is meant to summarize timing issues, to be able to tell
|
|
|
|
* local disk problems from network problems.
|
|
|
|
* Skip requests, if we have shown an even older request with
|
|
|
|
* similar aspects already. */
|
|
|
|
if (req->master_bio == NULL)
|
|
|
|
tmp |= 1;
|
|
|
|
if ((s & RQ_LOCAL_MASK) && (s & RQ_LOCAL_PENDING))
|
|
|
|
tmp |= 2;
|
|
|
|
if (s & RQ_NET_MASK) {
|
|
|
|
if (!(s & RQ_NET_SENT))
|
|
|
|
tmp |= 4;
|
|
|
|
if (s & RQ_NET_PENDING)
|
|
|
|
tmp |= 8;
|
|
|
|
if (!(s & RQ_NET_DONE))
|
|
|
|
tmp |= 16;
|
|
|
|
}
|
|
|
|
if ((tmp & show_state) == tmp)
|
|
|
|
continue;
|
|
|
|
show_state |= tmp;
|
|
|
|
seq_printf(m, "%u\t", count);
|
|
|
|
seq_print_minor_vnr_req(m, req, now);
|
|
|
|
if (show_state == 0x1f)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
spin_unlock_irq(&resource->req_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: transfer_log and friends should be moved to resource */
|
|
|
|
static int in_flight_summary_show(struct seq_file *m, void *pos)
|
|
|
|
{
|
|
|
|
struct drbd_resource *resource = m->private;
|
|
|
|
struct drbd_connection *connection;
|
|
|
|
unsigned long jif = jiffies;
|
|
|
|
|
|
|
|
connection = first_connection(resource);
|
|
|
|
/* This does not happen, actually.
|
|
|
|
* But be robust and prepare for future code changes. */
|
2014-05-05 12:05:54 +00:00
|
|
|
if (!connection || !kref_get_unless_zero(&connection->kref))
|
|
|
|
return -ESTALE;
|
2014-05-02 11:20:05 +00:00
|
|
|
|
|
|
|
seq_puts(m, "oldest application requests\n");
|
|
|
|
seq_print_resource_transfer_log_summary(m, resource, connection, jif);
|
|
|
|
seq_putc(m, '\n');
|
|
|
|
|
|
|
|
jif = jiffies - jif;
|
|
|
|
if (jif)
|
|
|
|
seq_printf(m, "generated in %d ms\n", jiffies_to_msecs(jif));
|
2014-05-05 12:05:54 +00:00
|
|
|
kref_put(&connection->kref, drbd_destroy_connection);
|
2014-05-02 11:20:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-05 12:05:54 +00:00
|
|
|
/* simple_positive(file->f_dentry) respectively debugfs_positive(),
|
|
|
|
* but neither is "reachable" from here.
|
|
|
|
* So we have our own inline version of it above. :-( */
|
|
|
|
static inline int debugfs_positive(struct dentry *dentry)
|
|
|
|
{
|
|
|
|
return dentry->d_inode && !d_unhashed(dentry);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* make sure at *open* time that the respective object won't go away. */
|
|
|
|
static int drbd_single_open(struct file *file, int (*show)(struct seq_file *, void *),
|
|
|
|
void *data, struct kref *kref,
|
|
|
|
void (*release)(struct kref *))
|
|
|
|
{
|
|
|
|
struct dentry *parent;
|
|
|
|
int ret = -ESTALE;
|
|
|
|
|
|
|
|
/* Are we still linked,
|
|
|
|
* or has debugfs_remove() already been called? */
|
|
|
|
parent = file->f_dentry->d_parent;
|
|
|
|
/* not sure if this can happen: */
|
|
|
|
if (!parent || !parent->d_inode)
|
|
|
|
goto out;
|
|
|
|
/* serialize with d_delete() */
|
|
|
|
mutex_lock(&parent->d_inode->i_mutex);
|
|
|
|
if (!debugfs_positive(file->f_dentry))
|
|
|
|
goto out_unlock;
|
|
|
|
/* Make sure the object is still alive */
|
|
|
|
if (kref_get_unless_zero(kref))
|
|
|
|
ret = 0;
|
|
|
|
out_unlock:
|
|
|
|
mutex_unlock(&parent->d_inode->i_mutex);
|
|
|
|
if (!ret) {
|
|
|
|
ret = single_open(file, show, data);
|
|
|
|
if (ret)
|
|
|
|
kref_put(kref, release);
|
|
|
|
}
|
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-05-02 11:20:05 +00:00
|
|
|
static int in_flight_summary_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
2014-05-05 12:05:54 +00:00
|
|
|
struct drbd_resource *resource = inode->i_private;
|
|
|
|
return drbd_single_open(file, in_flight_summary_show, resource,
|
|
|
|
&resource->kref, drbd_destroy_resource);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int in_flight_summary_release(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
struct drbd_resource *resource = inode->i_private;
|
|
|
|
kref_put(&resource->kref, drbd_destroy_resource);
|
|
|
|
return single_release(inode, file);
|
2014-05-02 11:20:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations in_flight_summary_fops = {
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.open = in_flight_summary_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
2014-05-05 12:05:54 +00:00
|
|
|
.release = in_flight_summary_release,
|
2014-05-02 11:20:05 +00:00
|
|
|
};
|
|
|
|
|
2014-05-02 11:19:51 +00:00
|
|
|
void drbd_debugfs_resource_add(struct drbd_resource *resource)
|
|
|
|
{
|
|
|
|
struct dentry *dentry;
|
|
|
|
if (!drbd_debugfs_resources)
|
|
|
|
return;
|
|
|
|
|
|
|
|
dentry = debugfs_create_dir(resource->name, drbd_debugfs_resources);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
resource->debugfs_res = dentry;
|
|
|
|
|
|
|
|
dentry = debugfs_create_dir("volumes", resource->debugfs_res);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
resource->debugfs_res_volumes = dentry;
|
|
|
|
|
|
|
|
dentry = debugfs_create_dir("connections", resource->debugfs_res);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
resource->debugfs_res_connections = dentry;
|
|
|
|
|
2014-05-02 11:20:05 +00:00
|
|
|
dentry = debugfs_create_file("in_flight_summary", S_IRUSR|S_IRGRP,
|
|
|
|
resource->debugfs_res, resource,
|
|
|
|
&in_flight_summary_fops);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
resource->debugfs_res_in_flight_summary = dentry;
|
2014-05-02 11:19:51 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
drbd_debugfs_resource_cleanup(resource);
|
|
|
|
drbd_err(resource, "failed to create debugfs dentry\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void drbd_debugfs_remove(struct dentry **dp)
|
|
|
|
{
|
|
|
|
debugfs_remove(*dp);
|
|
|
|
*dp = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_resource_cleanup(struct drbd_resource *resource)
|
|
|
|
{
|
|
|
|
/* it is ok to call debugfs_remove(NULL) */
|
|
|
|
drbd_debugfs_remove(&resource->debugfs_res_in_flight_summary);
|
|
|
|
drbd_debugfs_remove(&resource->debugfs_res_connections);
|
|
|
|
drbd_debugfs_remove(&resource->debugfs_res_volumes);
|
|
|
|
drbd_debugfs_remove(&resource->debugfs_res);
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_connection_add(struct drbd_connection *connection)
|
|
|
|
{
|
|
|
|
struct dentry *conns_dir = connection->resource->debugfs_res_connections;
|
|
|
|
struct dentry *dentry;
|
|
|
|
if (!conns_dir)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Once we enable mutliple peers,
|
|
|
|
* these connections will have descriptive names.
|
|
|
|
* For now, it is just the one connection to the (only) "peer". */
|
|
|
|
dentry = debugfs_create_dir("peer", conns_dir);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
connection->debugfs_conn = dentry;
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
drbd_debugfs_connection_cleanup(connection);
|
|
|
|
drbd_err(connection, "failed to create debugfs dentry\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_connection_cleanup(struct drbd_connection *connection)
|
|
|
|
{
|
|
|
|
drbd_debugfs_remove(&connection->debugfs_conn_callback_history);
|
|
|
|
drbd_debugfs_remove(&connection->debugfs_conn_oldest_requests);
|
|
|
|
drbd_debugfs_remove(&connection->debugfs_conn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_device_add(struct drbd_device *device)
|
|
|
|
{
|
|
|
|
struct dentry *vols_dir = device->resource->debugfs_res_volumes;
|
|
|
|
char minor_buf[8]; /* MINORMASK, MINORBITS == 20; */
|
|
|
|
char vnr_buf[8]; /* volume number vnr is even 16 bit only; */
|
|
|
|
char *slink_name = NULL;
|
|
|
|
|
|
|
|
struct dentry *dentry;
|
|
|
|
if (!vols_dir || !drbd_debugfs_minors)
|
|
|
|
return;
|
|
|
|
|
|
|
|
snprintf(vnr_buf, sizeof(vnr_buf), "%u", device->vnr);
|
|
|
|
dentry = debugfs_create_dir(vnr_buf, vols_dir);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
device->debugfs_vol = dentry;
|
|
|
|
|
|
|
|
snprintf(minor_buf, sizeof(minor_buf), "%u", device->minor);
|
|
|
|
slink_name = kasprintf(GFP_KERNEL, "../resources/%s/volumes/%u",
|
|
|
|
device->resource->name, device->vnr);
|
|
|
|
if (!slink_name)
|
|
|
|
goto fail;
|
|
|
|
dentry = debugfs_create_symlink(minor_buf, drbd_debugfs_minors, slink_name);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
device->debugfs_minor = dentry;
|
|
|
|
kfree(slink_name);
|
|
|
|
|
|
|
|
fail:
|
|
|
|
drbd_debugfs_device_cleanup(device);
|
|
|
|
drbd_err(device, "failed to create debugfs entries\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_device_cleanup(struct drbd_device *device)
|
|
|
|
{
|
|
|
|
drbd_debugfs_remove(&device->debugfs_minor);
|
|
|
|
drbd_debugfs_remove(&device->debugfs_vol_oldest_requests);
|
|
|
|
drbd_debugfs_remove(&device->debugfs_vol_act_log_extents);
|
|
|
|
drbd_debugfs_remove(&device->debugfs_vol_resync_extents);
|
|
|
|
drbd_debugfs_remove(&device->debugfs_vol_data_gen_id);
|
|
|
|
drbd_debugfs_remove(&device->debugfs_vol);
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_peer_device_add(struct drbd_peer_device *peer_device)
|
|
|
|
{
|
|
|
|
struct dentry *conn_dir = peer_device->connection->debugfs_conn;
|
|
|
|
struct dentry *dentry;
|
|
|
|
char vnr_buf[8];
|
|
|
|
|
|
|
|
if (!conn_dir)
|
|
|
|
return;
|
|
|
|
|
|
|
|
snprintf(vnr_buf, sizeof(vnr_buf), "%u", peer_device->device->vnr);
|
|
|
|
dentry = debugfs_create_dir(vnr_buf, conn_dir);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
peer_device->debugfs_peer_dev = dentry;
|
|
|
|
return;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
drbd_debugfs_peer_device_cleanup(peer_device);
|
|
|
|
drbd_err(peer_device, "failed to create debugfs entries\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void drbd_debugfs_peer_device_cleanup(struct drbd_peer_device *peer_device)
|
|
|
|
{
|
|
|
|
drbd_debugfs_remove(&peer_device->debugfs_peer_dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* not __exit, may be indirectly called
|
|
|
|
* from the module-load-failure path as well. */
|
|
|
|
void drbd_debugfs_cleanup(void)
|
|
|
|
{
|
|
|
|
drbd_debugfs_remove(&drbd_debugfs_resources);
|
|
|
|
drbd_debugfs_remove(&drbd_debugfs_minors);
|
|
|
|
drbd_debugfs_remove(&drbd_debugfs_root);
|
|
|
|
}
|
|
|
|
|
|
|
|
int __init drbd_debugfs_init(void)
|
|
|
|
{
|
|
|
|
struct dentry *dentry;
|
|
|
|
|
|
|
|
dentry = debugfs_create_dir("drbd", NULL);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
drbd_debugfs_root = dentry;
|
|
|
|
|
|
|
|
dentry = debugfs_create_dir("resources", drbd_debugfs_root);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
drbd_debugfs_resources = dentry;
|
|
|
|
|
|
|
|
dentry = debugfs_create_dir("minors", drbd_debugfs_root);
|
|
|
|
if (IS_ERR_OR_NULL(dentry))
|
|
|
|
goto fail;
|
|
|
|
drbd_debugfs_minors = dentry;
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
fail:
|
|
|
|
drbd_debugfs_cleanup();
|
|
|
|
if (dentry)
|
|
|
|
return PTR_ERR(dentry);
|
|
|
|
else
|
|
|
|
return -EINVAL;
|
|
|
|
}
|