]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - include/linux/proc_fs.h
Merge branches 'for-5.1/upstream-fixes', 'for-5.2/core', 'for-5.2/ish', 'for-5.2...
[mirror_ubuntu-kernels.git] / include / linux / proc_fs.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2/*
3 * The proc filesystem constants/structures
4 */
59d8053f
DH
5#ifndef _LINUX_PROC_FS_H
6#define _LINUX_PROC_FS_H
1da177e4 7
59d8053f
DH
8#include <linux/types.h>
9#include <linux/fs.h>
1da177e4 10
59d8053f 11struct proc_dir_entry;
3f3942ac 12struct seq_file;
fddda2b7 13struct seq_operations;
1da177e4 14
1da177e4
LT
15#ifdef CONFIG_PROC_FS
16
564def71
DH
17typedef int (*proc_write_t)(struct file *, char *, size_t);
18
1da177e4 19extern void proc_root_init(void);
59d8053f 20extern void proc_flush_task(struct task_struct *);
1da177e4 21
1da177e4
LT
22extern struct proc_dir_entry *proc_symlink(const char *,
23 struct proc_dir_entry *, const char *);
59d8053f 24extern struct proc_dir_entry *proc_mkdir(const char *, struct proc_dir_entry *);
270b5ac2
DH
25extern struct proc_dir_entry *proc_mkdir_data(const char *, umode_t,
26 struct proc_dir_entry *, void *);
59d8053f
DH
27extern struct proc_dir_entry *proc_mkdir_mode(const char *, umode_t,
28 struct proc_dir_entry *);
f97df70b 29struct proc_dir_entry *proc_create_mount_point(const char *name);
fddda2b7 30
44414d82 31struct proc_dir_entry *proc_create_seq_private(const char *name, umode_t mode,
fddda2b7 32 struct proc_dir_entry *parent, const struct seq_operations *ops,
44414d82
CH
33 unsigned int state_size, void *data);
34#define proc_create_seq_data(name, mode, parent, ops, data) \
35 proc_create_seq_private(name, mode, parent, ops, 0, data)
fddda2b7 36#define proc_create_seq(name, mode, parent, ops) \
44414d82 37 proc_create_seq_private(name, mode, parent, ops, 0, NULL)
3f3942ac
CH
38struct proc_dir_entry *proc_create_single_data(const char *name, umode_t mode,
39 struct proc_dir_entry *parent,
40 int (*show)(struct seq_file *, void *), void *data);
41#define proc_create_single(name, mode, parent, show) \
42 proc_create_single_data(name, mode, parent, show, NULL)
59d8053f
DH
43
44extern struct proc_dir_entry *proc_create_data(const char *, umode_t,
45 struct proc_dir_entry *,
46 const struct file_operations *,
47 void *);
48
855d9765 49struct proc_dir_entry *proc_create(const char *name, umode_t mode, struct proc_dir_entry *parent, const struct file_operations *proc_fops);
271a15ea
DH
50extern void proc_set_size(struct proc_dir_entry *, loff_t);
51extern void proc_set_user(struct proc_dir_entry *, kuid_t, kgid_t);
c30480b9 52extern void *PDE_DATA(const struct inode *);
4a520d27 53extern void *proc_get_parent_data(const struct inode *);
59d8053f
DH
54extern void proc_remove(struct proc_dir_entry *);
55extern void remove_proc_entry(const char *, struct proc_dir_entry *);
56extern int remove_proc_subtree(const char *, struct proc_dir_entry *);
57
c3506372
CH
58struct proc_dir_entry *proc_create_net_data(const char *name, umode_t mode,
59 struct proc_dir_entry *parent, const struct seq_operations *ops,
60 unsigned int state_size, void *data);
61#define proc_create_net(name, mode, parent, state_size, ops) \
62 proc_create_net_data(name, mode, parent, state_size, ops, NULL)
3617d949
CH
63struct proc_dir_entry *proc_create_net_single(const char *name, umode_t mode,
64 struct proc_dir_entry *parent,
65 int (*show)(struct seq_file *, void *), void *data);
564def71
DH
66struct proc_dir_entry *proc_create_net_data_write(const char *name, umode_t mode,
67 struct proc_dir_entry *parent,
68 const struct seq_operations *ops,
69 proc_write_t write,
70 unsigned int state_size, void *data);
71struct proc_dir_entry *proc_create_net_single_write(const char *name, umode_t mode,
72 struct proc_dir_entry *parent,
73 int (*show)(struct seq_file *, void *),
74 proc_write_t write,
75 void *data);
3eb39f47 76extern struct pid *tgid_pidfd_to_pid(const struct file *file);
c3506372 77
59d8053f 78#else /* CONFIG_PROC_FS */
1da177e4 79
647f010b
AM
80static inline void proc_root_init(void)
81{
82}
83
60347f67
PE
84static inline void proc_flush_task(struct task_struct *task)
85{
86}
1da177e4 87
1da177e4 88static inline struct proc_dir_entry *proc_symlink(const char *name,
59d8053f 89 struct proc_dir_entry *parent,const char *dest) { return NULL;}
1da177e4
LT
90static inline struct proc_dir_entry *proc_mkdir(const char *name,
91 struct proc_dir_entry *parent) {return NULL;}
f97df70b 92static inline struct proc_dir_entry *proc_create_mount_point(const char *name) { return NULL; }
270b5ac2
DH
93static inline struct proc_dir_entry *proc_mkdir_data(const char *name,
94 umode_t mode, struct proc_dir_entry *parent, void *data) { return NULL; }
f12a20fc 95static inline struct proc_dir_entry *proc_mkdir_mode(const char *name,
d161a13f 96 umode_t mode, struct proc_dir_entry *parent) { return NULL; }
3f3942ac 97#define proc_create_seq_private(name, mode, parent, ops, size, data) ({NULL;})
fddda2b7
CH
98#define proc_create_seq_data(name, mode, parent, ops, data) ({NULL;})
99#define proc_create_seq(name, mode, parent, ops) ({NULL;})
3f3942ac
CH
100#define proc_create_single(name, mode, parent, show) ({NULL;})
101#define proc_create_single_data(name, mode, parent, show, data) ({NULL;})
59d8053f
DH
102#define proc_create(name, mode, parent, proc_fops) ({NULL;})
103#define proc_create_data(name, mode, parent, proc_fops, data) ({NULL;})
104
271a15ea
DH
105static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {}
106static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {}
c30480b9 107static inline void *PDE_DATA(const struct inode *inode) {BUG(); return NULL;}
59d8053f 108static inline void *proc_get_parent_data(const struct inode *inode) { BUG(); return NULL; }
1da177e4 109
59d8053f
DH
110static inline void proc_remove(struct proc_dir_entry *de) {}
111#define remove_proc_entry(name, parent) do {} while (0)
112static inline int remove_proc_subtree(const char *name, struct proc_dir_entry *parent) { return 0; }
9043476f 113
c3506372
CH
114#define proc_create_net_data(name, mode, parent, ops, state_size, data) ({NULL;})
115#define proc_create_net(name, mode, parent, state_size, ops) ({NULL;})
3617d949 116#define proc_create_net_single(name, mode, parent, show, data) ({NULL;})
c3506372 117
3eb39f47
CB
118static inline struct pid *tgid_pidfd_to_pid(const struct file *file)
119{
120 return ERR_PTR(-EBADF);
121}
122
59d8053f 123#endif /* CONFIG_PROC_FS */
1da177e4 124
f7790029
JL
125struct net;
126
270b5ac2
DH
127static inline struct proc_dir_entry *proc_net_mkdir(
128 struct net *net, const char *name, struct proc_dir_entry *parent)
129{
130 return proc_mkdir_data(name, 0, parent, net);
131}
132
c62cce2c
AV
133struct ns_common;
134int open_related_ns(struct ns_common *ns,
135 struct ns_common *(*get_ns)(struct ns_common *ns));
136
76f668be 137/* get the associated pid namespace for a file in procfs */
891ae71d 138static inline struct pid_namespace *proc_pid_ns(const struct inode *inode)
76f668be
CH
139{
140 return inode->i_sb->s_fs_info;
141}
142
1da177e4 143#endif /* _LINUX_PROC_FS_H */