blob: 43973b084abf25649fdb12e16ad3d169c0e29c9e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* internal.h: internal procfs definitions
2 *
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040012#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/proc_fs.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080014struct ctl_table_header;
KAMEZAWA Hiroyuki9e781442012-10-19 17:00:55 +090015struct mempolicy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Alexey Dobriyanc74c1202008-04-29 01:01:44 -070017extern struct proc_dir_entry proc_root;
Andrew Morton05565b62007-04-01 23:49:35 -070018#ifdef CONFIG_PROC_SYSCTL
Eric W. Biederman77b14db2007-02-14 00:34:12 -080019extern int proc_sys_init(void);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080020extern void sysctl_head_put(struct ctl_table_header *head);
Andrew Morton05565b62007-04-01 23:49:35 -070021#else
22static inline void proc_sys_init(void) { }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080023static inline void sysctl_head_put(struct ctl_table_header *head) { }
Andrew Morton05565b62007-04-01 23:49:35 -070024#endif
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020025#ifdef CONFIG_NET
26extern int proc_net_init(void);
27#else
28static inline int proc_net_init(void) { return 0; }
29#endif
Eric W. Biederman77b14db2007-02-14 00:34:12 -080030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031struct vmalloc_info {
32 unsigned long used;
33 unsigned long largest_chunk;
34};
35
36#ifdef CONFIG_MMU
37#define VMALLOC_TOTAL (VMALLOC_END - VMALLOC_START)
38extern void get_vmalloc_info(struct vmalloc_info *vmi);
39#else
40
41#define VMALLOC_TOTAL 0UL
42#define get_vmalloc_info(vmi) \
43do { \
44 (vmi)->used = 0; \
45 (vmi)->largest_chunk = 0; \
46} while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#endif
48
Eric W. Biedermanee992742008-02-08 04:18:31 -080049extern int proc_tid_stat(struct seq_file *m, struct pid_namespace *ns,
50 struct pid *pid, struct task_struct *task);
51extern int proc_tgid_stat(struct seq_file *m, struct pid_namespace *ns,
52 struct pid *pid, struct task_struct *task);
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080053extern int proc_pid_status(struct seq_file *m, struct pid_namespace *ns,
54 struct pid *pid, struct task_struct *task);
Eric W. Biedermana56d3fc2008-02-08 04:18:32 -080055extern int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
56 struct pid *pid, struct task_struct *task);
Matt Mackall85863e42008-02-04 22:29:04 -080057extern loff_t mem_lseek(struct file *file, loff_t offset, int orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Cyrill Gorcunov818411612012-05-31 16:26:43 -070059extern const struct file_operations proc_tid_children_operations;
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -070060extern const struct file_operations proc_pid_maps_operations;
61extern const struct file_operations proc_tid_maps_operations;
62extern const struct file_operations proc_pid_numa_maps_operations;
63extern const struct file_operations proc_tid_numa_maps_operations;
64extern const struct file_operations proc_pid_smaps_operations;
65extern const struct file_operations proc_tid_smaps_operations;
Matt Mackallf248dcb2008-02-04 22:29:03 -080066extern const struct file_operations proc_clear_refs_operations;
Matt Mackall85863e42008-02-04 22:29:04 -080067extern const struct file_operations proc_pagemap_operations;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -080068extern const struct file_operations proc_net_operations;
69extern const struct inode_operations proc_net_inode_operations;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040070extern const struct inode_operations proc_pid_link_inode_operations;
Eric W. Biederman99f89552006-06-26 00:25:55 -070071
Stephen Wilsonf2beb792011-05-24 17:12:48 -070072struct proc_maps_private {
73 struct pid *pid;
74 struct task_struct *task;
75#ifdef CONFIG_MMU
76 struct vm_area_struct *tail_vma;
77#endif
KAMEZAWA Hiroyuki9e781442012-10-19 17:00:55 +090078#ifdef CONFIG_NUMA
79 struct mempolicy *task_mempolicy;
80#endif
Stephen Wilsonf2beb792011-05-24 17:12:48 -070081};
82
Alexey Dobriyan5bcd7ff2008-10-17 03:43:55 +040083void proc_init_inodecache(void);
Adrian Bunkfee781e2006-01-08 01:04:16 -080084
Eric W. Biederman13b41b02006-06-26 00:25:56 -070085static inline struct pid *proc_pid(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Eric W. Biederman13b41b02006-06-26 00:25:56 -070087 return PROC_I(inode)->pid;
Eric W. Biederman99f89552006-06-26 00:25:55 -070088}
89
90static inline struct task_struct *get_proc_task(struct inode *inode)
91{
Eric W. Biederman13b41b02006-06-26 00:25:56 -070092 return get_pid_task(proc_pid(inode), PIDTYPE_PID);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
Eric W. Biedermanaed7a6c2006-06-26 00:25:44 -070095static inline int proc_fd(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
Eric W. Biedermanaed7a6c2006-06-26 00:25:44 -070097 return PROC_I(inode)->fd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098}
Pavel Emelyanove9720ac2008-03-07 11:08:40 -080099
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400100static inline int task_dumpable(struct task_struct *task)
101{
102 int dumpable = 0;
103 struct mm_struct *mm;
104
105 task_lock(task);
106 mm = task->mm;
107 if (mm)
108 dumpable = get_dumpable(mm);
109 task_unlock(task);
Oleg Nesterov0f4cfb22012-10-04 17:15:27 -0700110 if (dumpable == SUID_DUMPABLE_ENABLED)
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400111 return 1;
112 return 0;
113}
114
115static inline int pid_delete_dentry(const struct dentry * dentry)
116{
117 /* Is the task we represent dead?
118 * If so, then don't put the dentry on the lru list,
119 * kill it immediately.
120 */
121 return !proc_pid(dentry->d_inode)->tasks[PIDTYPE_PID].first;
122}
123
124static inline unsigned name_to_int(struct dentry *dentry)
125{
126 const char *name = dentry->d_name.name;
127 int len = dentry->d_name.len;
128 unsigned n = 0;
129
130 if (len > 1 && *name == '0')
131 goto out;
132 while (len-- > 0) {
133 unsigned c = *name++ - '0';
134 if (c > 9)
135 goto out;
136 if (n >= (~0U-9)/10)
137 goto out;
138 n *= 10;
139 n += c;
140 }
141 return n;
142out:
143 return ~0U;
144}
145
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800146struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *ino,
147 struct dentry *dentry);
148int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent,
149 filldir_t filldir);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700150
151struct pde_opener {
152 struct inode *inode;
153 struct file *file;
154 int (*release)(struct inode *, struct file *);
155 struct list_head lh;
156};
Alexey Dobriyan3dec7f52009-02-20 17:04:33 +0300157void pde_users_dec(struct proc_dir_entry *pde);
Al Viro3174c212009-04-07 13:19:18 -0400158
159extern spinlock_t proc_subdir_lock;
160
Al Viro00cd8dd2012-06-10 17:13:09 -0400161struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int);
Al Viro3174c212009-04-07 13:19:18 -0400162int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir);
163unsigned long task_vsize(struct mm_struct *);
Alexey Dobriyana2ade7b2011-01-12 17:00:32 -0800164unsigned long task_statm(struct mm_struct *,
165 unsigned long *, unsigned long *, unsigned long *, unsigned long *);
Al Viro3174c212009-04-07 13:19:18 -0400166void task_mem(struct seq_file *, struct mm_struct *);
167
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800168static inline struct proc_dir_entry *pde_get(struct proc_dir_entry *pde)
169{
170 atomic_inc(&pde->count);
171 return pde;
172}
173void pde_put(struct proc_dir_entry *pde);
Al Viro3174c212009-04-07 13:19:18 -0400174
Al Viro3174c212009-04-07 13:19:18 -0400175int proc_fill_super(struct super_block *);
Alexey Dobriyan6d1b6e42011-01-12 17:00:33 -0800176struct inode *proc_get_inode(struct super_block *, struct proc_dir_entry *);
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800177int proc_remount(struct super_block *sb, int *flags, char *data);
Al Viro3174c212009-04-07 13:19:18 -0400178
179/*
180 * These are generic /proc routines that use the internal
181 * "struct proc_dir_entry" tree to traverse the filesystem.
182 *
183 * The /proc root directory has extended versions to take care
184 * of the /proc/<pid> subdirectories.
185 */
186int proc_readdir(struct file *, void *, filldir_t);
Al Viro00cd8dd2012-06-10 17:13:09 -0400187struct dentry *proc_lookup(struct inode *, struct dentry *, unsigned int);
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800188
189
190
191/* Lookups */
192typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
193 struct task_struct *, const void *);
194int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
195 const char *name, int len,
196 instantiate_t instantiate, struct task_struct *task, const void *ptr);
Al Viro0b728e12012-06-10 16:03:43 -0400197int pid_revalidate(struct dentry *dentry, unsigned int flags);
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800198struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task);
199extern const struct dentry_operations pid_dentry_operations;
200int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat);
201int proc_setattr(struct dentry *dentry, struct iattr *attr);
202
203extern const struct inode_operations proc_ns_dir_inode_operations;
204extern const struct file_operations proc_ns_dir_operations;
205