2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _LINUX_SEQ_FILE_H
|
|
|
|
#define _LINUX_SEQ_FILE_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/string.h>
|
2011-11-24 09:12:59 +08:00
|
|
|
#include <linux/bug.h>
|
2006-03-23 19:00:37 +08:00
|
|
|
#include <linux/mutex.h>
|
2008-08-13 06:09:02 +08:00
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <linux/nodemask.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct seq_operations;
|
|
|
|
struct file;
|
2008-02-15 11:38:43 +08:00
|
|
|
struct path;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct inode;
|
2008-03-27 20:06:20 +08:00
|
|
|
struct dentry;
|
2012-05-24 08:01:20 +08:00
|
|
|
struct user_namespace;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct seq_file {
|
|
|
|
char *buf;
|
|
|
|
size_t size;
|
|
|
|
size_t from;
|
|
|
|
size_t count;
|
2013-11-15 06:31:56 +08:00
|
|
|
size_t pad_until;
|
2005-04-17 06:20:36 +08:00
|
|
|
loff_t index;
|
2009-02-19 06:48:16 +08:00
|
|
|
loff_t read_pos;
|
2007-10-17 14:27:21 +08:00
|
|
|
u64 version;
|
2006-03-23 19:00:37 +08:00
|
|
|
struct mutex lock;
|
2006-12-07 12:40:36 +08:00
|
|
|
const struct seq_operations *op;
|
2011-07-13 02:48:39 +08:00
|
|
|
int poll_event;
|
2012-05-24 08:01:20 +08:00
|
|
|
#ifdef CONFIG_USER_NS
|
|
|
|
struct user_namespace *user_ns;
|
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
void *private;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct seq_operations {
|
|
|
|
void * (*start) (struct seq_file *m, loff_t *pos);
|
|
|
|
void (*stop) (struct seq_file *m, void *v);
|
|
|
|
void * (*next) (struct seq_file *m, void *v, loff_t *pos);
|
|
|
|
int (*show) (struct seq_file *m, void *v);
|
|
|
|
};
|
|
|
|
|
2008-03-28 12:46:41 +08:00
|
|
|
#define SEQ_SKIP 1
|
|
|
|
|
2014-09-30 07:08:21 +08:00
|
|
|
/**
|
|
|
|
* seq_has_overflowed - check if the buffer has overflowed
|
|
|
|
* @m: the seq_file handle
|
|
|
|
*
|
|
|
|
* seq_files have a buffer which may overflow. When this happens a larger
|
|
|
|
* buffer is reallocated and all the data will be printed again.
|
|
|
|
* The overflow state is true when m->count == m->size.
|
|
|
|
*
|
|
|
|
* Returns true if the buffer received more than it can hold.
|
|
|
|
*/
|
|
|
|
static inline bool seq_has_overflowed(struct seq_file *m)
|
|
|
|
{
|
|
|
|
return m->count == m->size;
|
|
|
|
}
|
|
|
|
|
2009-09-21 20:48:36 +08:00
|
|
|
/**
|
|
|
|
* seq_get_buf - get buffer to write arbitrary data to
|
|
|
|
* @m: the seq_file handle
|
|
|
|
* @bufp: the beginning of the buffer is stored here
|
|
|
|
*
|
|
|
|
* Return the number of bytes available in the buffer, or zero if
|
|
|
|
* there's no space.
|
|
|
|
*/
|
|
|
|
static inline size_t seq_get_buf(struct seq_file *m, char **bufp)
|
|
|
|
{
|
|
|
|
BUG_ON(m->count > m->size);
|
|
|
|
if (m->count < m->size)
|
|
|
|
*bufp = m->buf + m->count;
|
|
|
|
else
|
|
|
|
*bufp = NULL;
|
|
|
|
|
|
|
|
return m->size - m->count;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* seq_commit - commit data to the buffer
|
|
|
|
* @m: the seq_file handle
|
|
|
|
* @num: the number of bytes to commit
|
|
|
|
*
|
|
|
|
* Commit @num bytes of data written to a buffer previously acquired
|
|
|
|
* by seq_buf_get. To signal an error condition, or that the data
|
|
|
|
* didn't fit in the available space, pass a negative @num value.
|
|
|
|
*/
|
|
|
|
static inline void seq_commit(struct seq_file *m, int num)
|
|
|
|
{
|
|
|
|
if (num < 0) {
|
|
|
|
m->count = m->size;
|
|
|
|
} else {
|
|
|
|
BUG_ON(m->count + num > m->size);
|
|
|
|
m->count += num;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-15 06:31:56 +08:00
|
|
|
/**
|
|
|
|
* seq_setwidth - set padding width
|
|
|
|
* @m: the seq_file handle
|
|
|
|
* @size: the max number of bytes to pad.
|
|
|
|
*
|
|
|
|
* Call seq_setwidth() for setting max width, then call seq_printf() etc. and
|
|
|
|
* finally call seq_pad() to pad the remaining bytes.
|
|
|
|
*/
|
|
|
|
static inline void seq_setwidth(struct seq_file *m, size_t size)
|
|
|
|
{
|
|
|
|
m->pad_until = m->count + size;
|
|
|
|
}
|
|
|
|
void seq_pad(struct seq_file *m, char c);
|
|
|
|
|
2011-12-09 09:18:57 +08:00
|
|
|
char *mangle_path(char *s, const char *p, const char *esc);
|
2006-12-07 12:40:36 +08:00
|
|
|
int seq_open(struct file *, const struct seq_operations *);
|
2005-04-17 06:20:36 +08:00
|
|
|
ssize_t seq_read(struct file *, char __user *, size_t, loff_t *);
|
|
|
|
loff_t seq_lseek(struct file *, loff_t, int);
|
|
|
|
int seq_release(struct inode *, struct file *);
|
|
|
|
int seq_escape(struct seq_file *, const char *, const char *);
|
|
|
|
int seq_putc(struct seq_file *m, char c);
|
|
|
|
int seq_puts(struct seq_file *m, const char *s);
|
2009-06-18 07:28:05 +08:00
|
|
|
int seq_write(struct seq_file *seq, const void *data, size_t len);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-11-01 08:11:33 +08:00
|
|
|
__printf(2, 3) int seq_printf(struct seq_file *, const char *, ...);
|
2012-06-11 20:16:35 +08:00
|
|
|
__printf(2, 0) int seq_vprintf(struct seq_file *, const char *, va_list args);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2011-12-09 09:18:57 +08:00
|
|
|
int seq_path(struct seq_file *, const struct path *, const char *);
|
|
|
|
int seq_dentry(struct seq_file *, struct dentry *, const char *);
|
|
|
|
int seq_path_root(struct seq_file *m, const struct path *path,
|
|
|
|
const struct path *root, const char *esc);
|
2008-10-19 11:28:19 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
int single_open(struct file *, int (*)(struct seq_file *, void *), void *);
|
2013-04-01 01:43:23 +08:00
|
|
|
int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t);
|
2005-04-17 06:20:36 +08:00
|
|
|
int single_release(struct inode *, struct file *);
|
2007-10-10 17:28:42 +08:00
|
|
|
void *__seq_open_private(struct file *, const struct seq_operations *, int);
|
|
|
|
int seq_open_private(struct file *, const struct seq_operations *, int);
|
2005-04-17 06:20:36 +08:00
|
|
|
int seq_release_private(struct inode *, struct file *);
|
2012-03-24 06:02:54 +08:00
|
|
|
int seq_put_decimal_ull(struct seq_file *m, char delimiter,
|
|
|
|
unsigned long long num);
|
2012-03-24 06:02:54 +08:00
|
|
|
int seq_put_decimal_ll(struct seq_file *m, char delimiter,
|
|
|
|
long long num);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-05-24 08:01:20 +08:00
|
|
|
static inline struct user_namespace *seq_user_ns(struct seq_file *seq)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_USER_NS
|
|
|
|
return seq->user_ns;
|
|
|
|
#else
|
|
|
|
extern struct user_namespace init_user_ns;
|
|
|
|
return &init_user_ns;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#define SEQ_START_TOKEN ((void *)1)
|
2007-07-11 08:22:26 +08:00
|
|
|
/*
|
|
|
|
* Helpers for iteration over list_head-s in seq_files
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern struct list_head *seq_list_start(struct list_head *head,
|
|
|
|
loff_t pos);
|
|
|
|
extern struct list_head *seq_list_start_head(struct list_head *head,
|
|
|
|
loff_t pos);
|
|
|
|
extern struct list_head *seq_list_next(void *v, struct list_head *head,
|
|
|
|
loff_t *ppos);
|
|
|
|
|
2010-02-09 07:18:22 +08:00
|
|
|
/*
|
|
|
|
* Helpers for iteration over hlist_head-s in seq_files
|
|
|
|
*/
|
|
|
|
|
|
|
|
extern struct hlist_node *seq_hlist_start(struct hlist_head *head,
|
2010-02-22 15:57:17 +08:00
|
|
|
loff_t pos);
|
2010-02-09 07:18:22 +08:00
|
|
|
extern struct hlist_node *seq_hlist_start_head(struct hlist_head *head,
|
2010-02-22 15:57:17 +08:00
|
|
|
loff_t pos);
|
2010-02-09 07:18:22 +08:00
|
|
|
extern struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head,
|
2010-02-22 15:57:17 +08:00
|
|
|
loff_t *ppos);
|
|
|
|
|
|
|
|
extern struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head,
|
|
|
|
loff_t pos);
|
|
|
|
extern struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head,
|
|
|
|
loff_t pos);
|
|
|
|
extern struct hlist_node *seq_hlist_next_rcu(void *v,
|
|
|
|
struct hlist_head *head,
|
|
|
|
loff_t *ppos);
|
2013-06-21 20:58:21 +08:00
|
|
|
|
|
|
|
/* Helpers for iterating over per-cpu hlist_head-s in seq_files */
|
|
|
|
extern struct hlist_node *seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos);
|
|
|
|
|
|
|
|
extern struct hlist_node *seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head, int *cpu, loff_t *pos);
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif
|