| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #ifndef _LINUX_SEQ_FILE_H
 | 
					
						
							|  |  |  | #define _LINUX_SEQ_FILE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <linux/string.h>
 | 
					
						
							| 
									
										
										
										
											2011-11-23 20:12:59 -05:00
										 |  |  | #include <linux/bug.h>
 | 
					
						
							| 
									
										
										
										
											2006-03-23 03:00:37 -08:00
										 |  |  | #include <linux/mutex.h>
 | 
					
						
							| 
									
										
										
										
											2008-08-12 15:09:02 -07:00
										 |  |  | #include <linux/cpumask.h>
 | 
					
						
							|  |  |  | #include <linux/nodemask.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct seq_operations; | 
					
						
							|  |  |  | struct file; | 
					
						
							| 
									
										
										
										
											2008-02-14 19:38:43 -08:00
										 |  |  | struct path; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | struct inode; | 
					
						
							| 
									
										
										
										
											2008-03-27 13:06:20 +01:00
										 |  |  | struct dentry; | 
					
						
							| 
									
										
										
										
											2012-05-23 18:01:20 -06:00
										 |  |  | struct user_namespace; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct seq_file { | 
					
						
							|  |  |  | 	char *buf; | 
					
						
							|  |  |  | 	size_t size; | 
					
						
							|  |  |  | 	size_t from; | 
					
						
							|  |  |  | 	size_t count; | 
					
						
							| 
									
										
										
										
											2013-11-14 14:31:56 -08:00
										 |  |  | 	size_t pad_until; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	loff_t index; | 
					
						
							| 
									
										
										
										
											2009-02-18 14:48:16 -08:00
										 |  |  | 	loff_t read_pos; | 
					
						
							| 
									
										
										
										
											2007-10-16 23:27:21 -07:00
										 |  |  | 	u64 version; | 
					
						
							| 
									
										
										
										
											2006-03-23 03:00:37 -08:00
										 |  |  | 	struct mutex lock; | 
					
						
							| 
									
										
										
										
											2006-12-06 20:40:36 -08:00
										 |  |  | 	const struct seq_operations *op; | 
					
						
							| 
									
										
										
										
											2011-07-12 20:48:39 +02:00
										 |  |  | 	int poll_event; | 
					
						
							| 
									
										
										
										
											2012-05-23 18:01:20 -06:00
										 |  |  | #ifdef CONFIG_USER_NS
 | 
					
						
							|  |  |  | 	struct user_namespace *user_ns; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07: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 00:46:41 -04:00
										 |  |  | #define SEQ_SKIP 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-21 14:48:36 +02: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-14 14: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-08 20:18:57 -05:00
										 |  |  | char *mangle_path(char *s, const char *p, const char *esc); | 
					
						
							| 
									
										
										
										
											2006-12-06 20:40:36 -08:00
										 |  |  | int seq_open(struct file *, const struct seq_operations *); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07: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-17 16:28:05 -07:00
										 |  |  | int seq_write(struct seq_file *seq, const void *data, size_t len); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-31 17:11:33 -07:00
										 |  |  | __printf(2, 3) int seq_printf(struct seq_file *, const char *, ...); | 
					
						
							| 
									
										
										
										
											2012-06-11 13:16:35 +01:00
										 |  |  | __printf(2, 0) int seq_vprintf(struct seq_file *, const char *, va_list args); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-08 20:18:57 -05: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-12-30 09:05:14 +10:30
										 |  |  | int seq_bitmap(struct seq_file *m, const unsigned long *bits, | 
					
						
							|  |  |  | 				   unsigned int nr_bits); | 
					
						
							|  |  |  | static inline int seq_cpumask(struct seq_file *m, const struct cpumask *mask) | 
					
						
							| 
									
										
										
										
											2008-08-12 15:09:02 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-30 22:05:11 -06:00
										 |  |  | 	return seq_bitmap(m, cpumask_bits(mask), nr_cpu_ids); | 
					
						
							| 
									
										
										
										
											2008-08-12 15:09:02 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return seq_bitmap(m, mask->bits, MAX_NUMNODES); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-30 22:05:11 -06:00
										 |  |  | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, | 
					
						
							| 
									
										
										
										
											2008-10-18 20:28:19 -07:00
										 |  |  | 		unsigned int nr_bits); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-03-30 22:05:11 -06:00
										 |  |  | static inline int seq_cpumask_list(struct seq_file *m, | 
					
						
							|  |  |  | 				   const struct cpumask *mask) | 
					
						
							| 
									
										
										
										
											2008-10-18 20:28:19 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-03-30 22:05:11 -06:00
										 |  |  | 	return seq_bitmap_list(m, cpumask_bits(mask), nr_cpu_ids); | 
					
						
							| 
									
										
										
										
											2008-10-18 20:28:19 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static inline int seq_nodemask_list(struct seq_file *m, nodemask_t *mask) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return seq_bitmap_list(m, mask->bits, MAX_NUMNODES); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); | 
					
						
							| 
									
										
										
										
											2013-03-31 13:43:23 -04:00
										 |  |  | int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | int single_release(struct inode *, struct file *); | 
					
						
							| 
									
										
										
										
											2007-10-10 02:28:42 -07: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-16 15:20:36 -07:00
										 |  |  | int seq_release_private(struct inode *, struct file *); | 
					
						
							| 
									
										
										
										
											2012-03-23 15:02:54 -07:00
										 |  |  | int seq_put_decimal_ull(struct seq_file *m, char delimiter, | 
					
						
							|  |  |  | 			unsigned long long num); | 
					
						
							| 
									
										
										
										
											2012-03-23 15:02:54 -07:00
										 |  |  | int seq_put_decimal_ll(struct seq_file *m, char delimiter, | 
					
						
							|  |  |  | 			long long num); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-23 18:01:20 -06: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-16 15:20:36 -07:00
										 |  |  | #define SEQ_START_TOKEN ((void *)1)
 | 
					
						
							| 
									
										
										
										
											2007-07-10 17:22:26 -07: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-08 23:18:22 +00: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 07:57:17 +00:00
										 |  |  | 					  loff_t pos); | 
					
						
							| 
									
										
										
										
											2010-02-08 23:18:22 +00:00
										 |  |  | extern struct hlist_node *seq_hlist_start_head(struct hlist_head *head, | 
					
						
							| 
									
										
										
										
											2010-02-22 07:57:17 +00:00
										 |  |  | 					       loff_t pos); | 
					
						
							| 
									
										
										
										
											2010-02-08 23:18:22 +00:00
										 |  |  | extern struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head, | 
					
						
							| 
									
										
										
										
											2010-02-22 07:57:17 +00: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 08:58:21 -04: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-16 15:20:36 -07:00
										 |  |  | #endif
 |