blob: 000cc0533c3366abe4bea0acb9f0e700381706c8 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/* SPDX-License-Identifier: GPL-2.0 */
2/*
3 * The proc filesystem constants/structures
4 */
5#ifndef _LINUX_PROC_FS_H
6#define _LINUX_PROC_FS_H
7
Olivier Deprez157378f2022-04-04 15:47:50 +02008#include <linux/compiler.h>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00009#include <linux/types.h>
10#include <linux/fs.h>
11
12struct proc_dir_entry;
13struct seq_file;
14struct seq_operations;
15
Olivier Deprez157378f2022-04-04 15:47:50 +020016enum {
17 /*
18 * All /proc entries using this ->proc_ops instance are never removed.
19 *
20 * If in doubt, ignore this flag.
21 */
22#ifdef MODULE
23 PROC_ENTRY_PERMANENT = 0U,
24#else
25 PROC_ENTRY_PERMANENT = 1U << 0,
26#endif
27};
28
29struct proc_ops {
30 unsigned int proc_flags;
31 int (*proc_open)(struct inode *, struct file *);
32 ssize_t (*proc_read)(struct file *, char __user *, size_t, loff_t *);
33 ssize_t (*proc_read_iter)(struct kiocb *, struct iov_iter *);
34 ssize_t (*proc_write)(struct file *, const char __user *, size_t, loff_t *);
35 loff_t (*proc_lseek)(struct file *, loff_t, int);
36 int (*proc_release)(struct inode *, struct file *);
37 __poll_t (*proc_poll)(struct file *, struct poll_table_struct *);
38 long (*proc_ioctl)(struct file *, unsigned int, unsigned long);
39#ifdef CONFIG_COMPAT
40 long (*proc_compat_ioctl)(struct file *, unsigned int, unsigned long);
41#endif
42 int (*proc_mmap)(struct file *, struct vm_area_struct *);
43 unsigned long (*proc_get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
44} __randomize_layout;
45
46/* definitions for hide_pid field */
47enum proc_hidepid {
48 HIDEPID_OFF = 0,
49 HIDEPID_NO_ACCESS = 1,
50 HIDEPID_INVISIBLE = 2,
51 HIDEPID_NOT_PTRACEABLE = 4, /* Limit pids to only ptraceable pids */
52};
53
54/* definitions for proc mount option pidonly */
55enum proc_pidonly {
56 PROC_PIDONLY_OFF = 0,
57 PROC_PIDONLY_ON = 1,
58};
59
60struct proc_fs_info {
61 struct pid_namespace *pid_ns;
62 struct dentry *proc_self; /* For /proc/self */
63 struct dentry *proc_thread_self; /* For /proc/thread-self */
64 kgid_t pid_gid;
65 enum proc_hidepid hide_pid;
66 enum proc_pidonly pidonly;
67};
68
69static inline struct proc_fs_info *proc_sb_info(struct super_block *sb)
70{
71 return sb->s_fs_info;
72}
73
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000074#ifdef CONFIG_PROC_FS
75
76typedef int (*proc_write_t)(struct file *, char *, size_t);
77
78extern void proc_root_init(void);
Olivier Deprez157378f2022-04-04 15:47:50 +020079extern void proc_flush_pid(struct pid *);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000080
81extern struct proc_dir_entry *proc_symlink(const char *,
82 struct proc_dir_entry *, const char *);
Olivier Deprez0e641232021-09-23 10:07:05 +020083struct proc_dir_entry *_proc_mkdir(const char *, umode_t, struct proc_dir_entry *, void *, bool);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000084extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
85extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
86 struct proc_dir_entry *, void *);
87extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
88 struct proc_dir_entry *);
89struct proc_dir_entry *proc_create_mount_point(const char *name);
90
91struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
92 struct proc_dir_entry *parent, const struct seq_operations *ops,
93 unsigned int state_size, void *data);
94#define proc_create_seq_data(name, mode, parent, ops, data) \
95 proc_create_seq_private(name, mode, parent, ops, 0, data)
96#define proc_create_seq(name, mode, parent, ops) \
97 proc_create_seq_private(name, mode, parent, ops, 0, NULL)
98struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
99 struct proc_dir_entry *parent,
100 int (*show)(struct seq_file *, void *), void *data);
101#define proc_create_single(name, mode, parent, show) \
102 proc_create_single_data(name, mode, parent, show, NULL)
103
104extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
105 struct proc_dir_entry *,
Olivier Deprez157378f2022-04-04 15:47:50 +0200106 const struct proc_ops *,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000107 void *);
108
Olivier Deprez157378f2022-04-04 15:47:50 +0200109struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, const struct proc_ops *proc_ops);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000110extern void proc_set_size(struct proc_dir_entry *, loff_t);
111extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
112extern void *PDE_DATA(const struct inode *);
113extern void *proc_get_parent_data(const struct inode *);
114extern void proc_remove(struct proc_dir_entry *);
115extern void remove_proc_entry(const char *, struct proc_dir_entry *);
116extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
117
118struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
119 struct proc_dir_entry *parent, const struct seq_operations *ops,
120 unsigned int state_size, void *data);
Olivier Deprez157378f2022-04-04 15:47:50 +0200121#define proc_create_net(name, mode, parent, ops, state_size) \
122 proc_create_net_data(name, mode, parent, ops, state_size, NULL)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000123struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
124 struct proc_dir_entry *parent,
125 int (*show)(struct seq_file *, void *), void *data);
126struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
127 struct proc_dir_entry *parent,
128 const struct seq_operations *ops,
129 proc_write_t write,
130 unsigned int state_size, void *data);
131struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
132 struct proc_dir_entry *parent,
133 int (*show)(struct seq_file *, void *),
134 proc_write_t write,
135 void *data);
David Brazdil0f672f62019-12-10 10:32:29 +0000136extern struct pid *tgid_pidfd_to_pid(const struct file *file);
137
Olivier Deprez157378f2022-04-04 15:47:50 +0200138struct bpf_iter_aux_info;
139extern int bpf_iter_init_seq_net(void *priv_data, struct bpf_iter_aux_info *aux);
140extern void bpf_iter_fini_seq_net(void *priv_data);
141
David Brazdil0f672f62019-12-10 10:32:29 +0000142#ifdef CONFIG_PROC_PID_ARCH_STATUS
143/*
144 * The architecture which selects CONFIG_PROC_PID_ARCH_STATUS must
145 * provide proc_pid_arch_status() definition.
146 */
147int proc_pid_arch_status(struct seq_file *m, struct pid_namespace *ns,
148 struct pid *pid, struct task_struct *task);
149#endif /* CONFIG_PROC_PID_ARCH_STATUS */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000150
151#else /* CONFIG_PROC_FS */
152
153static inline void proc_root_init(void)
154{
155}
156
Olivier Deprez157378f2022-04-04 15:47:50 +0200157static inline void proc_flush_pid(struct pid *pid)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000158{
159}
160
161static inline struct proc_dir_entry *proc_symlink(const char *name,
162 struct proc_dir_entry *parent,const char *dest) { return NULL;}
163static inline struct proc_dir_entry *proc_mkdir(const char *name,
164 struct proc_dir_entry *parent) {return NULL;}
165static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; }
Olivier Deprez0e641232021-09-23 10:07:05 +0200166static inline struct proc_dir_entry *_proc_mkdir(const char *name, umode_t mode,
167 struct proc_dir_entry *parent, void *data, bool force_lookup)
168{
169 return NULL;
170}
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000171static inline struct proc_dir_entry *proc_mkdir_data(const char *name,
172 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; }
173static inline struct proc_dir_entry *proc_mkdir_mode(const char *name,
174 umode_t mode, struct proc_dir_entry *parent) { return NULL; }
175#define proc_create_seq_private(name, mode, parent, ops, size, data) ({NULL;})
176#define proc_create_seq_data(name, mode, parent, ops, data) ({NULL;})
177#define proc_create_seq(name, mode, parent, ops) ({NULL;})
178#define proc_create_single(name, mode, parent, show) ({NULL;})
179#define proc_create_single_data(name, mode, parent, show, data) ({NULL;})
Olivier Deprez157378f2022-04-04 15:47:50 +0200180#define proc_create(name, mode, parent, proc_ops) ({NULL;})
181#define proc_create_data(name, mode, parent, proc_ops, data) ({NULL;})
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000182
183static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {}
184static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {}
185static inline void *PDE_DATA(const struct inode *inode) {BUG(); return NULL;}
186static inline void *proc_get_parent_data(const struct inode *inode) { BUG(); return NULL; }
187
188static inline void proc_remove(struct proc_dir_entry *de) {}
189#define remove_proc_entry(name, parent) do {} while (0)
190static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; }
191
192#define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;})
193#define proc_create_net(name, mode, parent, state_size, ops) ({NULL;})
194#define proc_create_net_single(name, mode, parent, show, data) ({NULL;})
195
David Brazdil0f672f62019-12-10 10:32:29 +0000196static inline struct pid *tgid_pidfd_to_pid(const struct file *file)
197{
198 return ERR_PTR(-EBADF);
199}
200
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000201#endif /* CONFIG_PROC_FS */
202
203struct net;
204
205static inline struct proc_dir_entry *proc_net_mkdir(
206 struct net *net, const char *name, struct proc_dir_entry *parent)
207{
Olivier Deprez0e641232021-09-23 10:07:05 +0200208 return _proc_mkdir(name, 0, parent, net, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000209}
210
211struct ns_common;
212int open_related_ns(struct ns_common *ns,
213 struct ns_common *(*get_ns)(struct ns_common *ns));
214
215/* get the associated pid namespace for a file in procfs */
Olivier Deprez157378f2022-04-04 15:47:50 +0200216static inline struct pid_namespace *proc_pid_ns(struct super_block *sb)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000217{
Olivier Deprez157378f2022-04-04 15:47:50 +0200218 return proc_sb_info(sb)->pid_ns;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000219}
220
Olivier Deprez157378f2022-04-04 15:47:50 +0200221bool proc_ns_file(const struct file *file);
222
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000223#endif /* _LINUX_PROC_FS_H */