proc_fs.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:8k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_PROC_FS_H
  2. #define _LINUX_PROC_FS_H
  3. #include <linux/config.h>
  4. #include <linux/slab.h>
  5. #include <linux/fs.h>
  6. #include <asm/atomic.h>
  7. /*
  8.  * The proc filesystem constants/structures
  9.  */
  10. /*
  11.  * Offset of the first process in the /proc root directory..
  12.  */
  13. #define FIRST_PROCESS_ENTRY 256
  14. /*
  15.  * We always define these enumerators
  16.  */
  17. enum {
  18. PROC_ROOT_INO = 1,
  19. };
  20. #define PROC_SUPER_MAGIC 0x9fa0
  21. /*
  22.  * This is not completely implemented yet. The idea is to
  23.  * create an in-memory tree (like the actual /proc filesystem
  24.  * tree) of these proc_dir_entries, so that we can dynamically
  25.  * add new files to /proc.
  26.  *
  27.  * The "next" pointer creates a linked list of one /proc directory,
  28.  * while parent/subdir create the directory structure (every
  29.  * /proc file has a parent, but "subdir" is NULL for all
  30.  * non-directory entries).
  31.  *
  32.  * "get_info" is called at "read", while "owner" is used to protect module
  33.  * from unloading while proc_dir_entry is in use
  34.  */
  35. typedef int (read_proc_t)(char *page, char **start, off_t off,
  36.   int count, int *eof, void *data);
  37. typedef int (write_proc_t)(struct file *file, const char __user *buffer,
  38.    unsigned long count, void *data);
  39. typedef int (get_info_t)(char *, char **, off_t, int);
  40. struct proc_dir_entry {
  41. unsigned int low_ino;
  42. unsigned short namelen;
  43. const char *name;
  44. mode_t mode;
  45. nlink_t nlink;
  46. uid_t uid;
  47. gid_t gid;
  48. unsigned long size;
  49. struct inode_operations * proc_iops;
  50. struct file_operations * proc_fops;
  51. get_info_t *get_info;
  52. struct module *owner;
  53. struct proc_dir_entry *next, *parent, *subdir;
  54. void *data;
  55. read_proc_t *read_proc;
  56. write_proc_t *write_proc;
  57. atomic_t count; /* use count */
  58. int deleted; /* delete flag */
  59. void *set;
  60. };
  61. struct kcore_list {
  62. struct kcore_list *next;
  63. unsigned long addr;
  64. size_t size;
  65. };
  66. struct vmcore {
  67. struct list_head list;
  68. unsigned long long paddr;
  69. unsigned long size;
  70. loff_t offset;
  71. };
  72. #ifdef CONFIG_PROC_FS
  73. extern struct proc_dir_entry proc_root;
  74. extern struct proc_dir_entry *proc_root_fs;
  75. extern struct proc_dir_entry *proc_net;
  76. extern struct proc_dir_entry *proc_net_stat;
  77. extern struct proc_dir_entry *proc_bus;
  78. extern struct proc_dir_entry *proc_root_driver;
  79. extern struct proc_dir_entry *proc_root_kcore;
  80. extern void proc_root_init(void);
  81. extern void proc_misc_init(void);
  82. struct mm_struct;
  83. struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, struct nameidata *);
  84. struct dentry *proc_pid_unhash(struct task_struct *p);
  85. void proc_pid_flush(struct dentry *proc_dentry);
  86. int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir);
  87. unsigned long task_vsize(struct mm_struct *);
  88. int task_statm(struct mm_struct *, int *, int *, int *, int *);
  89. char *task_mem(struct mm_struct *, char *);
  90. extern struct proc_dir_entry *create_proc_entry(const char *name, mode_t mode,
  91. struct proc_dir_entry *parent);
  92. extern void remove_proc_entry(const char *name, struct proc_dir_entry *parent);
  93. extern struct vfsmount *proc_mnt;
  94. extern int proc_fill_super(struct super_block *,void *,int);
  95. extern struct inode *proc_get_inode(struct super_block *, unsigned int, struct proc_dir_entry *);
  96. extern int proc_match(int, const char *,struct proc_dir_entry *);
  97. /*
  98.  * These are generic /proc routines that use the internal
  99.  * "struct proc_dir_entry" tree to traverse the filesystem.
  100.  *
  101.  * The /proc root directory has extended versions to take care
  102.  * of the /proc/<pid> subdirectories.
  103.  */
  104. extern int proc_readdir(struct file *, void *, filldir_t);
  105. extern struct dentry *proc_lookup(struct inode *, struct dentry *, struct nameidata *);
  106. extern struct file_operations proc_kcore_operations;
  107. extern struct file_operations proc_kmsg_operations;
  108. extern struct file_operations ppc_htab_operations;
  109. /*
  110.  * proc_tty.c
  111.  */
  112. struct tty_driver;
  113. extern void proc_tty_init(void);
  114. extern void proc_tty_register_driver(struct tty_driver *driver);
  115. extern void proc_tty_unregister_driver(struct tty_driver *driver);
  116. /*
  117.  * proc_devtree.c
  118.  */
  119. struct device_node;
  120. extern void proc_device_tree_init(void);
  121. #ifdef CONFIG_PROC_DEVICETREE
  122. extern void proc_device_tree_add_node(struct device_node *, struct proc_dir_entry *);
  123. #else /* !CONFIG_PROC_DEVICETREE */
  124. static inline void proc_device_tree_add_node(struct device_node *np, struct proc_dir_entry *pde)
  125. {
  126. return;
  127. }
  128. #endif /* CONFIG_PROC_DEVICETREE */
  129. extern struct proc_dir_entry *proc_symlink(const char *,
  130. struct proc_dir_entry *, const char *);
  131. extern struct proc_dir_entry *proc_mkdir(const char *,struct proc_dir_entry *);
  132. extern struct proc_dir_entry *proc_mkdir_mode(const char *name, mode_t mode,
  133. struct proc_dir_entry *parent);
  134. static inline struct proc_dir_entry *create_proc_read_entry(const char *name,
  135. mode_t mode, struct proc_dir_entry *base, 
  136. read_proc_t *read_proc, void * data)
  137. {
  138. struct proc_dir_entry *res=create_proc_entry(name,mode,base);
  139. if (res) {
  140. res->read_proc=read_proc;
  141. res->data=data;
  142. }
  143. return res;
  144. }
  145.  
  146. static inline struct proc_dir_entry *create_proc_info_entry(const char *name,
  147. mode_t mode, struct proc_dir_entry *base, get_info_t *get_info)
  148. {
  149. struct proc_dir_entry *res=create_proc_entry(name,mode,base);
  150. if (res) res->get_info=get_info;
  151. return res;
  152. }
  153.  
  154. static inline struct proc_dir_entry *proc_net_create(const char *name,
  155. mode_t mode, get_info_t *get_info)
  156. {
  157. return create_proc_info_entry(name,mode,proc_net,get_info);
  158. }
  159. static inline struct proc_dir_entry *proc_net_fops_create(const char *name,
  160. mode_t mode, struct file_operations *fops)
  161. {
  162. struct proc_dir_entry *res = create_proc_entry(name, mode, proc_net);
  163. if (res)
  164. res->proc_fops = fops;
  165. return res;
  166. }
  167. static inline void proc_net_remove(const char *name)
  168. {
  169. remove_proc_entry(name,proc_net);
  170. }
  171. #else
  172. #define proc_root_driver NULL
  173. #define proc_net NULL
  174. #define proc_bus NULL
  175. #define proc_net_fops_create(name, mode, fops)  ({ (void)(mode), NULL; })
  176. #define proc_net_create(name, mode, info) ({ (void)(mode), NULL; })
  177. static inline void proc_net_remove(const char *name) {}
  178. static inline struct dentry *proc_pid_unhash(struct task_struct *p) { return NULL; }
  179. static inline void proc_pid_flush(struct dentry *proc_dentry) { }
  180. static inline struct proc_dir_entry *create_proc_entry(const char *name,
  181. mode_t mode, struct proc_dir_entry *parent) { return NULL; }
  182. #define remove_proc_entry(name, parent) do {} while (0)
  183. static inline struct proc_dir_entry *proc_symlink(const char *name,
  184. struct proc_dir_entry *parent,const char *dest) {return NULL;}
  185. static inline struct proc_dir_entry *proc_mkdir(const char *name,
  186. struct proc_dir_entry *parent) {return NULL;}
  187. static inline struct proc_dir_entry *create_proc_read_entry(const char *name,
  188. mode_t mode, struct proc_dir_entry *base, 
  189. read_proc_t *read_proc, void * data) { return NULL; }
  190. static inline struct proc_dir_entry *create_proc_info_entry(const char *name,
  191. mode_t mode, struct proc_dir_entry *base, get_info_t *get_info)
  192. { return NULL; }
  193. struct tty_driver;
  194. static inline void proc_tty_register_driver(struct tty_driver *driver) {};
  195. static inline void proc_tty_unregister_driver(struct tty_driver *driver) {};
  196. extern struct proc_dir_entry proc_root;
  197. #endif /* CONFIG_PROC_FS */
  198. #if !defined(CONFIG_PROC_KCORE)
  199. static inline void kclist_add(struct kcore_list *new, void *addr, size_t size)
  200. {
  201. }
  202. #else
  203. extern void kclist_add(struct kcore_list *, void *, size_t);
  204. #endif
  205. struct proc_inode {
  206. struct task_struct *task;
  207. int type;
  208. union {
  209. int (*proc_get_link)(struct inode *, struct dentry **, struct vfsmount **);
  210. int (*proc_read)(struct task_struct *task, char *page);
  211. } op;
  212. struct proc_dir_entry *pde;
  213. struct inode vfs_inode;
  214. };
  215. static inline struct proc_inode *PROC_I(const struct inode *inode)
  216. {
  217. return container_of(inode, struct proc_inode, vfs_inode);
  218. }
  219. static inline struct proc_dir_entry *PDE(const struct inode *inode)
  220. {
  221. return PROC_I(inode)->pde;
  222. }
  223. #endif /* _LINUX_PROC_FS_H */