Blame view

fs/proc/uid.c 6.49 KB
81f7e3824   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
  /*
   * /proc/uid support
   */
  
  #include <linux/cpufreq_times.h>
  #include <linux/fs.h>
  #include <linux/hashtable.h>
  #include <linux/init.h>
  #include <linux/proc_fs.h>
  #include <linux/rtmutex.h>
  #include <linux/sched.h>
  #include <linux/seq_file.h>
  #include <linux/slab.h>
  #include "internal.h"
  
  static struct proc_dir_entry *proc_uid;
  
  #define UID_HASH_BITS 10
  
  static DECLARE_HASHTABLE(proc_uid_hash_table, UID_HASH_BITS);
  
  /*
   * use rt_mutex here to avoid priority inversion between high-priority readers
   * of these files and tasks calling proc_register_uid().
   */
  static DEFINE_RT_MUTEX(proc_uid_lock); /* proc_uid_hash_table */
  
  struct uid_hash_entry {
  	uid_t uid;
  	struct hlist_node hash;
  };
  
  /* Caller must hold proc_uid_lock */
  static bool uid_hash_entry_exists_locked(uid_t uid)
  {
  	struct uid_hash_entry *entry;
  
  	hash_for_each_possible(proc_uid_hash_table, entry, hash, uid) {
  		if (entry->uid == uid)
  			return true;
  	}
  	return false;
  }
  
  void proc_register_uid(kuid_t kuid)
  {
  	struct uid_hash_entry *entry;
  	bool exists;
  	uid_t uid = from_kuid_munged(current_user_ns(), kuid);
  
  	rt_mutex_lock(&proc_uid_lock);
  	exists = uid_hash_entry_exists_locked(uid);
  	rt_mutex_unlock(&proc_uid_lock);
  	if (exists)
  		return;
  
  	entry = kzalloc(sizeof(struct uid_hash_entry), GFP_KERNEL);
  	if (!entry)
  		return;
  	entry->uid = uid;
  
  	rt_mutex_lock(&proc_uid_lock);
  	if (uid_hash_entry_exists_locked(uid))
  		kfree(entry);
  	else
  		hash_add(proc_uid_hash_table, &entry->hash, uid);
  	rt_mutex_unlock(&proc_uid_lock);
  }
  
  struct uid_entry {
  	const char *name;
  	int len;
  	umode_t mode;
  	const struct inode_operations *iop;
  	const struct file_operations *fop;
  };
  
  #define NOD(NAME, MODE, IOP, FOP) {			\
  	.name	= (NAME),				\
  	.len	= sizeof(NAME) - 1,			\
  	.mode	= MODE,					\
  	.iop	= IOP,					\
  	.fop	= FOP,					\
  }
  
  #ifdef CONFIG_CPU_FREQ_TIMES
  static const struct file_operations proc_uid_time_in_state_operations = {
  	.open		= single_uid_time_in_state_open,
  	.read		= seq_read,
  	.llseek		= seq_lseek,
  	.release	= single_release,
  };
  #endif
  
  static const struct uid_entry uid_base_stuff[] = {
  #ifdef CONFIG_CPU_FREQ_TIMES
  	NOD("time_in_state", 0444, NULL, &proc_uid_time_in_state_operations),
  #endif
  };
  
  static const struct inode_operations proc_uid_def_inode_operations = {
  	.setattr	= proc_setattr,
  };
  
  static struct inode *proc_uid_make_inode(struct super_block *sb, kuid_t kuid)
  {
  	struct inode *inode;
  
  	inode = new_inode(sb);
  	if (!inode)
  		return NULL;
  
  	inode->i_ino = get_next_ino();
  	inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
  	inode->i_op = &proc_uid_def_inode_operations;
  	inode->i_uid = kuid;
  
  	return inode;
  }
  
  static int proc_uident_instantiate(struct inode *dir, struct dentry *dentry,
  				   struct task_struct *unused, const void *ptr)
  {
  	const struct uid_entry *u = ptr;
  	struct inode *inode;
  
  	inode = proc_uid_make_inode(dir->i_sb, dir->i_uid);
  	if (!inode)
  		return -ENOENT;
  
  	inode->i_mode = u->mode;
  	if (S_ISDIR(inode->i_mode))
  		set_nlink(inode, 2);
  	if (u->iop)
  		inode->i_op = u->iop;
  	if (u->fop)
  		inode->i_fop = u->fop;
  	d_add(dentry, inode);
  	return 0;
  }
  
  static struct dentry *proc_uid_base_lookup(struct inode *dir,
  					   struct dentry *dentry,
  					   unsigned int flags)
  {
  	const struct uid_entry *u, *last;
  	unsigned int nents = ARRAY_SIZE(uid_base_stuff);
  
  	if (nents == 0)
  		return ERR_PTR(-ENOENT);
  
  	last = &uid_base_stuff[nents - 1];
  	for (u = uid_base_stuff; u <= last; u++) {
  		if (u->len != dentry->d_name.len)
  			continue;
  		if (!memcmp(dentry->d_name.name, u->name, u->len))
  			break;
  	}
  	if (u > last)
  		return ERR_PTR(-ENOENT);
  
  	return ERR_PTR(proc_uident_instantiate(dir, dentry, NULL, u));
  }
  
  static int proc_uid_base_readdir(struct file *file, struct dir_context *ctx)
  {
  	unsigned int nents = ARRAY_SIZE(uid_base_stuff);
  	const struct uid_entry *u;
  
  	if (!dir_emit_dots(file, ctx))
  		return 0;
  
  	if (ctx->pos >= nents + 2)
  		return 0;
  
  	for (u = uid_base_stuff + (ctx->pos - 2);
  	     u < uid_base_stuff + nents; u++) {
  		if (!proc_fill_cache(file, ctx, u->name, u->len,
  				     proc_uident_instantiate, NULL, u))
  			break;
  		ctx->pos++;
  	}
  
  	return 0;
  }
  
  static const struct inode_operations proc_uid_base_inode_operations = {
  	.lookup		= proc_uid_base_lookup,
  	.setattr	= proc_setattr,
  };
  
  static const struct file_operations proc_uid_base_operations = {
  	.read		= generic_read_dir,
  	.iterate	= proc_uid_base_readdir,
  	.llseek		= default_llseek,
  };
  
  static int proc_uid_instantiate(struct inode *dir, struct dentry *dentry,
  				struct task_struct *unused, const void *ptr)
  {
  	unsigned int i, len;
  	nlink_t nlinks;
  	kuid_t *kuid = (kuid_t *)ptr;
  	struct inode *inode = proc_uid_make_inode(dir->i_sb, *kuid);
  
  	if (!inode)
  		return -ENOENT;
  
  	inode->i_mode = S_IFDIR | 0555;
  	inode->i_op = &proc_uid_base_inode_operations;
  	inode->i_fop = &proc_uid_base_operations;
  	inode->i_flags |= S_IMMUTABLE;
  
  	nlinks = 2;
  	len = ARRAY_SIZE(uid_base_stuff);
  	for (i = 0; i < len; ++i) {
  		if (S_ISDIR(uid_base_stuff[i].mode))
  			++nlinks;
  	}
  	set_nlink(inode, nlinks);
  
  	d_add(dentry, inode);
  
  	return 0;
  }
  
  static int proc_uid_readdir(struct file *file, struct dir_context *ctx)
  {
  	int last_shown, i;
  	unsigned long bkt;
  	struct uid_hash_entry *entry;
  
  	if (!dir_emit_dots(file, ctx))
  		return 0;
  
  	i = 0;
  	last_shown = ctx->pos - 2;
  	rt_mutex_lock(&proc_uid_lock);
  	hash_for_each(proc_uid_hash_table, bkt, entry, hash) {
  		int len;
  		char buf[PROC_NUMBUF];
  
  		if (i < last_shown)
  			continue;
  		len = snprintf(buf, sizeof(buf), "%u", entry->uid);
  		if (!proc_fill_cache(file, ctx, buf, len,
  				     proc_uid_instantiate, NULL, &entry->uid))
  			break;
  		i++;
  		ctx->pos++;
  	}
  	rt_mutex_unlock(&proc_uid_lock);
  	return 0;
  }
  
  static struct dentry *proc_uid_lookup(struct inode *dir, struct dentry *dentry,
  				      unsigned int flags)
  {
  	int result = -ENOENT;
  
  	uid_t uid = name_to_int(&dentry->d_name);
  	bool uid_exists;
  
  	rt_mutex_lock(&proc_uid_lock);
  	uid_exists = uid_hash_entry_exists_locked(uid);
  	rt_mutex_unlock(&proc_uid_lock);
  	if (uid_exists) {
  		kuid_t kuid = make_kuid(current_user_ns(), uid);
  
  		result = proc_uid_instantiate(dir, dentry, NULL, &kuid);
  	}
  	return ERR_PTR(result);
  }
  
  static const struct file_operations proc_uid_operations = {
  	.read		= generic_read_dir,
  	.iterate	= proc_uid_readdir,
  	.llseek		= default_llseek,
  };
  
  static const struct inode_operations proc_uid_inode_operations = {
  	.lookup		= proc_uid_lookup,
  	.setattr	= proc_setattr,
  };
  
  int __init proc_uid_init(void)
  {
  	proc_uid = proc_mkdir("uid", NULL);
  	if (!proc_uid)
  		return -ENOMEM;
  	proc_uid->proc_iops = &proc_uid_inode_operations;
  	proc_uid->proc_fops = &proc_uid_operations;
  
  	return 0;
  }