1 /* proc.c: proc files for key database enumeration
3 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/sched.h>
15 #include <linux/slab.h>
17 #include <linux/proc_fs.h>
18 #include <linux/seq_file.h>
19 #include <asm/errno.h>
22 #ifdef CONFIG_KEYS_DEBUG_PROC_KEYS
23 static int proc_keys_open(struct inode
*inode
, struct file
*file
);
24 static void *proc_keys_start(struct seq_file
*p
, loff_t
*_pos
);
25 static void *proc_keys_next(struct seq_file
*p
, void *v
, loff_t
*_pos
);
26 static void proc_keys_stop(struct seq_file
*p
, void *v
);
27 static int proc_keys_show(struct seq_file
*m
, void *v
);
29 static const struct seq_operations proc_keys_ops
= {
30 .start
= proc_keys_start
,
31 .next
= proc_keys_next
,
32 .stop
= proc_keys_stop
,
33 .show
= proc_keys_show
,
36 static const struct file_operations proc_keys_fops
= {
37 .open
= proc_keys_open
,
40 .release
= seq_release
,
44 static int proc_key_users_open(struct inode
*inode
, struct file
*file
);
45 static void *proc_key_users_start(struct seq_file
*p
, loff_t
*_pos
);
46 static void *proc_key_users_next(struct seq_file
*p
, void *v
, loff_t
*_pos
);
47 static void proc_key_users_stop(struct seq_file
*p
, void *v
);
48 static int proc_key_users_show(struct seq_file
*m
, void *v
);
50 static const struct seq_operations proc_key_users_ops
= {
51 .start
= proc_key_users_start
,
52 .next
= proc_key_users_next
,
53 .stop
= proc_key_users_stop
,
54 .show
= proc_key_users_show
,
57 static const struct file_operations proc_key_users_fops
= {
58 .open
= proc_key_users_open
,
61 .release
= seq_release
,
64 /*****************************************************************************/
66 * declare the /proc files
68 static int __init
key_proc_init(void)
70 struct proc_dir_entry
*p
;
72 #ifdef CONFIG_KEYS_DEBUG_PROC_KEYS
73 p
= proc_create("keys", 0, NULL
, &proc_keys_fops
);
75 panic("Cannot create /proc/keys\n");
78 p
= proc_create("key-users", 0, NULL
, &proc_key_users_fops
);
80 panic("Cannot create /proc/key-users\n");
84 } /* end key_proc_init() */
86 __initcall(key_proc_init
);
88 /*****************************************************************************/
90 * implement "/proc/keys" to provides a list of the keys on the system
92 #ifdef CONFIG_KEYS_DEBUG_PROC_KEYS
94 static struct rb_node
*key_serial_next(struct rb_node
*n
)
96 struct user_namespace
*user_ns
= current_user_ns();
100 struct key
*key
= rb_entry(n
, struct key
, serial_node
);
101 if (key
->user
->user_ns
== user_ns
)
108 static int proc_keys_open(struct inode
*inode
, struct file
*file
)
110 return seq_open(file
, &proc_keys_ops
);
113 static struct key
*find_ge_key(key_serial_t id
)
115 struct user_namespace
*user_ns
= current_user_ns();
116 struct rb_node
*n
= key_serial_tree
.rb_node
;
117 struct key
*minkey
= NULL
;
120 struct key
*key
= rb_entry(n
, struct key
, serial_node
);
121 if (id
< key
->serial
) {
122 if (!minkey
|| minkey
->serial
> key
->serial
)
125 } else if (id
> key
->serial
) {
138 if (minkey
->user
->user_ns
== user_ns
)
140 n
= rb_next(&minkey
->serial_node
);
143 minkey
= rb_entry(n
, struct key
, serial_node
);
147 static void *proc_keys_start(struct seq_file
*p
, loff_t
*_pos
)
148 __acquires(key_serial_lock
)
150 key_serial_t pos
= *_pos
;
153 spin_lock(&key_serial_lock
);
157 key
= find_ge_key(pos
);
161 return &key
->serial_node
;
164 static inline key_serial_t
key_node_serial(struct rb_node
*n
)
166 struct key
*key
= rb_entry(n
, struct key
, serial_node
);
170 static void *proc_keys_next(struct seq_file
*p
, void *v
, loff_t
*_pos
)
174 n
= key_serial_next(v
);
176 *_pos
= key_node_serial(n
);
180 static void proc_keys_stop(struct seq_file
*p
, void *v
)
181 __releases(key_serial_lock
)
183 spin_unlock(&key_serial_lock
);
186 static int proc_keys_show(struct seq_file
*m
, void *v
)
188 struct rb_node
*_p
= v
;
189 struct key
*key
= rb_entry(_p
, struct key
, serial_node
);
195 /* check whether the current task is allowed to view the key (assuming
197 * - the caller holds a spinlock, and thus the RCU read lock, making our
198 * access to __current_cred() safe
200 rc
= key_task_permission(make_key_ref(key
, 0), current_cred(),
205 now
= current_kernel_time();
209 /* come up with a suitable timeout value */
210 if (key
->expiry
== 0) {
211 memcpy(xbuf
, "perm", 5);
212 } else if (now
.tv_sec
>= key
->expiry
) {
213 memcpy(xbuf
, "expd", 5);
215 timo
= key
->expiry
- now
.tv_sec
;
218 sprintf(xbuf
, "%lus", timo
);
219 else if (timo
< 60*60)
220 sprintf(xbuf
, "%lum", timo
/ 60);
221 else if (timo
< 60*60*24)
222 sprintf(xbuf
, "%luh", timo
/ (60*60));
223 else if (timo
< 60*60*24*7)
224 sprintf(xbuf
, "%lud", timo
/ (60*60*24));
226 sprintf(xbuf
, "%luw", timo
/ (60*60*24*7));
229 #define showflag(KEY, LETTER, FLAG) \
230 (test_bit(FLAG, &(KEY)->flags) ? LETTER : '-')
232 seq_printf(m
, "%08x %c%c%c%c%c%c %5d %4s %08x %5d %5d %-9.9s ",
234 showflag(key
, 'I', KEY_FLAG_INSTANTIATED
),
235 showflag(key
, 'R', KEY_FLAG_REVOKED
),
236 showflag(key
, 'D', KEY_FLAG_DEAD
),
237 showflag(key
, 'Q', KEY_FLAG_IN_QUOTA
),
238 showflag(key
, 'U', KEY_FLAG_USER_CONSTRUCT
),
239 showflag(key
, 'N', KEY_FLAG_NEGATIVE
),
240 atomic_read(&key
->usage
),
249 if (key
->type
->describe
)
250 key
->type
->describe(key
, m
);
257 #endif /* CONFIG_KEYS_DEBUG_PROC_KEYS */
259 static struct rb_node
*__key_user_next(struct rb_node
*n
)
262 struct key_user
*user
= rb_entry(n
, struct key_user
, node
);
263 if (user
->user_ns
== current_user_ns())
270 static struct rb_node
*key_user_next(struct rb_node
*n
)
272 return __key_user_next(rb_next(n
));
275 static struct rb_node
*key_user_first(struct rb_root
*r
)
277 struct rb_node
*n
= rb_first(r
);
278 return __key_user_next(n
);
281 /*****************************************************************************/
283 * implement "/proc/key-users" to provides a list of the key users
285 static int proc_key_users_open(struct inode
*inode
, struct file
*file
)
287 return seq_open(file
, &proc_key_users_ops
);
290 static void *proc_key_users_start(struct seq_file
*p
, loff_t
*_pos
)
291 __acquires(key_user_lock
)
296 spin_lock(&key_user_lock
);
298 _p
= key_user_first(&key_user_tree
);
299 while (pos
> 0 && _p
) {
301 _p
= key_user_next(_p
);
307 static void *proc_key_users_next(struct seq_file
*p
, void *v
, loff_t
*_pos
)
310 return key_user_next((struct rb_node
*) v
);
313 static void proc_key_users_stop(struct seq_file
*p
, void *v
)
314 __releases(key_user_lock
)
316 spin_unlock(&key_user_lock
);
319 static int proc_key_users_show(struct seq_file
*m
, void *v
)
321 struct rb_node
*_p
= v
;
322 struct key_user
*user
= rb_entry(_p
, struct key_user
, node
);
323 unsigned maxkeys
= (user
->uid
== 0) ?
324 key_quota_root_maxkeys
: key_quota_maxkeys
;
325 unsigned maxbytes
= (user
->uid
== 0) ?
326 key_quota_root_maxbytes
: key_quota_maxbytes
;
328 seq_printf(m
, "%5u: %5d %d/%d %d/%d %d/%d\n",
330 atomic_read(&user
->usage
),
331 atomic_read(&user
->nkeys
),
332 atomic_read(&user
->nikeys
),