blob: c529b5f16ee40f7158007cc8d44eb450c2176373 [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>
Kees Cooke579d2c2013-02-27 17:03:15 -080014#include <linux/binfmts.h>
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080015struct ctl_table_header;
KAMEZAWA Hiroyuki9e781442012-10-19 17:00:55 +090016struct mempolicy;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Alexey Dobriyanc74c1202008-04-29 01:01:44 -070018extern struct proc_dir_entry proc_root;
Eric W. Biedermane656d8a2010-07-10 14:52:49 -070019extern void proc_self_init(void);
Andrew Morton05565b62007-04-01 23:49:35 -070020#ifdef CONFIG_PROC_SYSCTL
Eric W. Biederman77b14db2007-02-14 00:34:12 -080021extern int proc_sys_init(void);
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080022extern void sysctl_head_put(struct ctl_table_header *head);
Andrew Morton05565b62007-04-01 23:49:35 -070023#else
24static inline void proc_sys_init(void) { }
Eric W. Biederman1f87f0b2012-01-06 04:07:15 -080025static inline void sysctl_head_put(struct ctl_table_header *head) { }
Andrew Morton05565b62007-04-01 23:49:35 -070026#endif
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020027#ifdef CONFIG_NET
28extern int proc_net_init(void);
29#else
30static inline int proc_net_init(void) { return 0; }
31#endif
Eric W. Biederman77b14db2007-02-14 00:34:12 -080032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct vmalloc_info {
34 unsigned long used;
35 unsigned long largest_chunk;
36};
37
38#ifdef CONFIG_MMU
39#define VMALLOC_TOTAL (VMALLOC_END - VMALLOC_START)
40extern void get_vmalloc_info(struct vmalloc_info *vmi);
41#else
42
43#define VMALLOC_TOTAL 0UL
44#define get_vmalloc_info(vmi) \
45do { \
46 (vmi)->used = 0; \
47 (vmi)->largest_chunk = 0; \
48} while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#endif
50
Eric W. Biedermanee992742008-02-08 04:18:31 -080051extern int proc_tid_stat(struct seq_file *m, struct pid_namespace *ns,
52 struct pid *pid, struct task_struct *task);
53extern int proc_tgid_stat(struct seq_file *m, struct pid_namespace *ns,
54 struct pid *pid, struct task_struct *task);
Eric W. Biedermandf5f8312008-02-08 04:18:33 -080055extern int proc_pid_status(struct seq_file *m, struct pid_namespace *ns,
56 struct pid *pid, struct task_struct *task);
Eric W. Biedermana56d3fc2008-02-08 04:18:32 -080057extern int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns,
58 struct pid *pid, struct task_struct *task);
Matt Mackall85863e42008-02-04 22:29:04 -080059extern loff_t mem_lseek(struct file *file, loff_t offset, int orig);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Cyrill Gorcunov818411612012-05-31 16:26:43 -070061extern const struct file_operations proc_tid_children_operations;
Siddhesh Poyarekarb7643752012-03-21 16:34:04 -070062extern const struct file_operations proc_pid_maps_operations;
63extern const struct file_operations proc_tid_maps_operations;
64extern const struct file_operations proc_pid_numa_maps_operations;
65extern const struct file_operations proc_tid_numa_maps_operations;
66extern const struct file_operations proc_pid_smaps_operations;
67extern const struct file_operations proc_tid_smaps_operations;
Matt Mackallf248dcb2008-02-04 22:29:03 -080068extern const struct file_operations proc_clear_refs_operations;
Matt Mackall85863e42008-02-04 22:29:04 -080069extern const struct file_operations proc_pagemap_operations;
Pavel Emelyanove9720ac2008-03-07 11:08:40 -080070extern const struct file_operations proc_net_operations;
71extern const struct inode_operations proc_net_inode_operations;
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040072extern const struct inode_operations proc_pid_link_inode_operations;
Eric W. Biederman99f89552006-06-26 00:25:55 -070073
Stephen Wilsonf2beb792011-05-24 17:12:48 -070074struct proc_maps_private {
75 struct pid *pid;
76 struct task_struct *task;
77#ifdef CONFIG_MMU
78 struct vm_area_struct *tail_vma;
79#endif
KAMEZAWA Hiroyuki9e781442012-10-19 17:00:55 +090080#ifdef CONFIG_NUMA
81 struct mempolicy *task_mempolicy;
82#endif
Stephen Wilsonf2beb792011-05-24 17:12:48 -070083};
84
Alexey Dobriyan5bcd7ff2008-10-17 03:43:55 +040085void proc_init_inodecache(void);
Adrian Bunkfee781e2006-01-08 01:04:16 -080086
Eric W. Biederman13b41b02006-06-26 00:25:56 -070087static inline struct pid *proc_pid(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Eric W. Biederman13b41b02006-06-26 00:25:56 -070089 return PROC_I(inode)->pid;
Eric W. Biederman99f89552006-06-26 00:25:55 -070090}
91
92static inline struct task_struct *get_proc_task(struct inode *inode)
93{
Eric W. Biederman13b41b02006-06-26 00:25:56 -070094 return get_pid_task(proc_pid(inode), PIDTYPE_PID);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +040097static inline int task_dumpable(struct task_struct *task)
98{
99 int dumpable = 0;
100 struct mm_struct *mm;
101
102 task_lock(task);
103 mm = task->mm;
104 if (mm)
105 dumpable = get_dumpable(mm);
106 task_unlock(task);
Kees Cooke579d2c2013-02-27 17:03:15 -0800107 if (dumpable == SUID_DUMP_USER)
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400108 return 1;
109 return 0;
110}
111
Cyrill Gorcunovfaf60af2012-08-23 14:43:24 +0400112static inline unsigned name_to_int(struct dentry *dentry)
113{
114 const char *name = dentry->d_name.name;
115 int len = dentry->d_name.len;
116 unsigned n = 0;
117
118 if (len > 1 && *name == '0')
119 goto out;
120 while (len-- > 0) {
121 unsigned c = *name++ - '0';
122 if (c > 9)
123 goto out;
124 if (n >= (~0U-9)/10)
125 goto out;
126 n *= 10;
127 n += c;
128 }
129 return n;
130out:
131 return ~0U;
132}
133
David Howells1dd704b2013-04-12 01:08:50 +0100134/*
135 * base.c
136 */
137extern int pid_delete_dentry(const struct dentry *);
138
Pavel Emelyanove9720ac2008-03-07 11:08:40 -0800139struct dentry *proc_lookup_de(struct proc_dir_entry *de, struct inode *ino,
140 struct dentry *dentry);
141int proc_readdir_de(struct proc_dir_entry *de, struct file *filp, void *dirent,
142 filldir_t filldir);
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700143
144struct pde_opener {
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700145 struct file *file;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700146 struct list_head lh;
Al Viro05c0ae22013-04-04 16:28:47 -0400147 int closing;
148 struct completion *c;
Alexey Dobriyan881adb82008-07-25 01:48:29 -0700149};
Al Viro866ad9a2013-04-03 19:07:30 -0400150
Al Viro866ad9a2013-04-03 19:07:30 -0400151void proc_entry_rundown(struct proc_dir_entry *);
Al Viro3174c212009-04-07 13:19:18 -0400152
153extern spinlock_t proc_subdir_lock;
154
Al Viro00cd8dd2012-06-10 17:13:09 -0400155struct dentry *proc_pid_lookup(struct inode *dir, struct dentry * dentry, unsigned int);
Al Viro3174c212009-04-07 13:19:18 -0400156int proc_pid_readdir(struct file * filp, void * dirent, filldir_t filldir);
157unsigned long task_vsize(struct mm_struct *);
Alexey Dobriyana2ade7b2011-01-12 17:00:32 -0800158unsigned long task_statm(struct mm_struct *,
159 unsigned long *, unsigned long *, unsigned long *, unsigned long *);
Al Viro3174c212009-04-07 13:19:18 -0400160void task_mem(struct seq_file *, struct mm_struct *);
161
Alexey Dobriyan135d5652009-12-15 16:45:39 -0800162static inline struct proc_dir_entry *pde_get(struct proc_dir_entry *pde)
163{
164 atomic_inc(&pde->count);
165 return pde;
166}
167void pde_put(struct proc_dir_entry *pde);
Al Viro3174c212009-04-07 13:19:18 -0400168
Al Viro3174c212009-04-07 13:19:18 -0400169int proc_fill_super(struct super_block *);
Alexey Dobriyan6d1b6e42011-01-12 17:00:33 -0800170struct inode *proc_get_inode(struct super_block *, struct proc_dir_entry *);
Vasiliy Kulikov97412952012-01-10 15:11:27 -0800171int proc_remount(struct super_block *sb, int *flags, char *data);
Al Viro3174c212009-04-07 13:19:18 -0400172
173/*
174 * These are generic /proc routines that use the internal
175 * "struct proc_dir_entry" tree to traverse the filesystem.
176 *
177 * The /proc root directory has extended versions to take care
178 * of the /proc/<pid> subdirectories.
179 */
180int proc_readdir(struct file *, void *, filldir_t);
Al Viro00cd8dd2012-06-10 17:13:09 -0400181struct dentry *proc_lookup(struct inode *, struct dentry *, unsigned int);
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800182
183
184
185/* Lookups */
186typedef struct dentry *instantiate_t(struct inode *, struct dentry *,
187 struct task_struct *, const void *);
188int proc_fill_cache(struct file *filp, void *dirent, filldir_t filldir,
189 const char *name, int len,
190 instantiate_t instantiate, struct task_struct *task, const void *ptr);
Al Viro0b728e12012-06-10 16:03:43 -0400191int pid_revalidate(struct dentry *dentry, unsigned int flags);
Eric W. Biederman6b4e3062010-03-07 16:41:34 -0800192struct inode *proc_pid_make_inode(struct super_block * sb, struct task_struct *task);
193extern const struct dentry_operations pid_dentry_operations;
194int pid_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat);
195int proc_setattr(struct dentry *dentry, struct iattr *attr);
196
197extern const struct inode_operations proc_ns_dir_inode_operations;
198extern const struct file_operations proc_ns_dir_operations;
199
Al Viro021ada72013-03-29 19:27:05 -0400200extern int proc_setup_self(struct super_block *);
David Howells34db8aa2013-04-12 02:29:19 +0100201
202/*
203 * proc_devtree.c
204 */
205#ifdef CONFIG_PROC_DEVICETREE
206extern void proc_device_tree_init(void);
207#endif /* CONFIG_PROC_DEVICETREE */
208
209/*
210 * proc_tty.c
211 */
212#ifdef CONFIG_TTY
213extern void proc_tty_init(void);
214#else
215static inline void proc_tty_init(void) {}
216#endif