blob: d0cde6685627f2ab6d3cc0d6919b7e8a50c10dd0 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
David Howells973c9f42011-01-20 16:38:33 +00002/* procfs files for key database enumeration
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/init.h>
9#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/fs.h>
11#include <linux/proc_fs.h>
12#include <linux/seq_file.h>
13#include <asm/errno.h>
14#include "internal.h"
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016static void *proc_keys_start(struct seq_file *p, loff_t *_pos);
17static void *proc_keys_next(struct seq_file *p, void *v, loff_t *_pos);
18static void proc_keys_stop(struct seq_file *p, void *v);
19static int proc_keys_show(struct seq_file *m, void *v);
20
Jan Engelhardt1996a102008-01-23 00:02:58 +010021static const struct seq_operations proc_keys_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 .start = proc_keys_start,
23 .next = proc_keys_next,
24 .stop = proc_keys_stop,
25 .show = proc_keys_show,
26};
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028static void *proc_key_users_start(struct seq_file *p, loff_t *_pos);
29static void *proc_key_users_next(struct seq_file *p, void *v, loff_t *_pos);
30static void proc_key_users_stop(struct seq_file *p, void *v);
31static int proc_key_users_show(struct seq_file *m, void *v);
32
Jan Engelhardt1996a102008-01-23 00:02:58 +010033static const struct seq_operations proc_key_users_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .start = proc_key_users_start,
35 .next = proc_key_users_next,
36 .stop = proc_key_users_stop,
37 .show = proc_key_users_show,
38};
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/*
David Howells973c9f42011-01-20 16:38:33 +000041 * Declare the /proc files.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 */
43static int __init key_proc_init(void)
44{
45 struct proc_dir_entry *p;
46
Christoph Hellwigfddda2b2018-04-13 19:44:18 +020047 p = proc_create_seq("keys", 0, NULL, &proc_keys_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 if (!p)
49 panic("Cannot create /proc/keys\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Christoph Hellwigfddda2b2018-04-13 19:44:18 +020051 p = proc_create_seq("key-users", 0, NULL, &proc_key_users_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (!p)
53 panic("Cannot create /proc/key-users\n");
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 return 0;
David Howellsa8b17ed2011-01-20 16:38:27 +000056}
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58__initcall(key_proc_init);
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060/*
David Howells973c9f42011-01-20 16:38:33 +000061 * Implement "/proc/keys" to provide a list of the keys on the system that
62 * grant View permission to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 */
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080064static struct rb_node *key_serial_next(struct seq_file *p, struct rb_node *n)
Serge E. Hallyn454804a2009-02-26 18:28:04 -060065{
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080066 struct user_namespace *user_ns = seq_user_ns(p);
Serge E. Hallynad73a712009-09-02 09:14:05 +010067
68 n = rb_next(n);
Serge E. Hallyn454804a2009-02-26 18:28:04 -060069 while (n) {
70 struct key *key = rb_entry(n, struct key, serial_node);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080071 if (kuid_has_mapping(user_ns, key->user->uid))
Serge E. Hallyn454804a2009-02-26 18:28:04 -060072 break;
73 n = rb_next(n);
74 }
75 return n;
76}
77
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080078static struct key *find_ge_key(struct seq_file *p, key_serial_t id)
Serge E. Hallynad73a712009-09-02 09:14:05 +010079{
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -080080 struct user_namespace *user_ns = seq_user_ns(p);
Serge E. Hallynad73a712009-09-02 09:14:05 +010081 struct rb_node *n = key_serial_tree.rb_node;
82 struct key *minkey = NULL;
83
84 while (n) {
85 struct key *key = rb_entry(n, struct key, serial_node);
86 if (id < key->serial) {
87 if (!minkey || minkey->serial > key->serial)
88 minkey = key;
89 n = n->rb_left;
90 } else if (id > key->serial) {
91 n = n->rb_right;
92 } else {
93 minkey = key;
94 break;
95 }
96 key = NULL;
97 }
98
99 if (!minkey)
100 return NULL;
101
102 for (;;) {
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800103 if (kuid_has_mapping(user_ns, minkey->user->uid))
Serge E. Hallynad73a712009-09-02 09:14:05 +0100104 return minkey;
105 n = rb_next(&minkey->serial_node);
106 if (!n)
107 return NULL;
108 minkey = rb_entry(n, struct key, serial_node);
109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112static void *proc_keys_start(struct seq_file *p, loff_t *_pos)
James Morris86abcf92009-06-18 22:00:05 +1000113 __acquires(key_serial_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Serge E. Hallynad73a712009-09-02 09:14:05 +0100115 key_serial_t pos = *_pos;
116 struct key *key;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 spin_lock(&key_serial_lock);
119
Serge E. Hallynad73a712009-09-02 09:14:05 +0100120 if (*_pos > INT_MAX)
121 return NULL;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800122 key = find_ge_key(p, pos);
Serge E. Hallynad73a712009-09-02 09:14:05 +0100123 if (!key)
124 return NULL;
125 *_pos = key->serial;
126 return &key->serial_node;
127}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Serge E. Hallynad73a712009-09-02 09:14:05 +0100129static inline key_serial_t key_node_serial(struct rb_node *n)
130{
131 struct key *key = rb_entry(n, struct key, serial_node);
132 return key->serial;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static void *proc_keys_next(struct seq_file *p, void *v, loff_t *_pos)
136{
Serge E. Hallynad73a712009-09-02 09:14:05 +0100137 struct rb_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800139 n = key_serial_next(p, v);
Serge E. Hallynad73a712009-09-02 09:14:05 +0100140 if (n)
141 *_pos = key_node_serial(n);
Vasily Averin86d32f92020-04-14 21:33:16 +0100142 else
143 (*_pos)++;
Serge E. Hallynad73a712009-09-02 09:14:05 +0100144 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145}
146
147static void proc_keys_stop(struct seq_file *p, void *v)
James Morris86abcf92009-06-18 22:00:05 +1000148 __releases(key_serial_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 spin_unlock(&key_serial_lock);
151}
152
153static int proc_keys_show(struct seq_file *m, void *v)
154{
155 struct rb_node *_p = v;
156 struct key *key = rb_entry(_p, struct key, serial_node);
Eric Biggersab5c69f2017-09-27 12:50:46 -0700157 unsigned long flags;
David Howells927942a2010-06-11 17:31:10 +0100158 key_ref_t key_ref, skey_ref;
Baolin Wang074d5892017-11-15 16:38:45 +0000159 time64_t now, expiry;
David Howells03dab862016-10-26 15:01:54 +0100160 char xbuf[16];
David Howells363b02d2017-10-04 16:43:25 +0100161 short state;
Baolin Wang074d5892017-11-15 16:38:45 +0000162 u64 timo;
Michael LeMay06ec7be2006-06-26 00:24:56 -0700163 int rc;
164
David Howells4bdf0bc2013-09-24 10:35:15 +0100165 struct keyring_search_context ctx = {
Eric Biggersede0fa982019-02-22 15:36:18 +0000166 .index_key = key->index_key,
Eric Biggers4aa68e02017-09-18 11:38:29 -0700167 .cred = m->file->f_cred,
David Howells46291952014-09-16 17:36:02 +0100168 .match_data.cmp = lookup_user_key_possessed,
169 .match_data.raw_data = key,
170 .match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
David Howellsdcf49db2019-06-26 21:02:32 +0100171 .flags = (KEYRING_SEARCH_NO_STATE_CHECK |
172 KEYRING_SEARCH_RECURSE),
David Howells4bdf0bc2013-09-24 10:35:15 +0100173 };
174
Linus Torvalds028db3e2019-07-10 18:43:43 -0700175 key_ref = make_key_ref(key, 0);
David Howells927942a2010-06-11 17:31:10 +0100176
177 /* determine if the key is possessed by this process (a test we can
178 * skip if the key does not indicate the possessor can view it
179 */
Linus Torvalds028db3e2019-07-10 18:43:43 -0700180 if (key->perm & KEY_POS_VIEW) {
181 rcu_read_lock();
David Howellse59428f2019-06-19 16:10:15 +0100182 skey_ref = search_cred_keyrings_rcu(&ctx);
Linus Torvalds028db3e2019-07-10 18:43:43 -0700183 rcu_read_unlock();
David Howells927942a2010-06-11 17:31:10 +0100184 if (!IS_ERR(skey_ref)) {
185 key_ref_put(skey_ref);
186 key_ref = make_key_ref(key, 1);
187 }
188 }
189
Eric Biggers4aa68e02017-09-18 11:38:29 -0700190 /* check whether the current task is allowed to view the key */
David Howellsf5895942014-03-14 17:44:49 +0000191 rc = key_task_permission(key_ref, ctx.cred, KEY_NEED_VIEW);
Michael LeMay06ec7be2006-06-26 00:24:56 -0700192 if (rc < 0)
Linus Torvalds028db3e2019-07-10 18:43:43 -0700193 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Baolin Wang074d5892017-11-15 16:38:45 +0000195 now = ktime_get_real_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Linus Torvalds028db3e2019-07-10 18:43:43 -0700197 rcu_read_lock();
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* come up with a suitable timeout value */
Eric Biggersab5c69f2017-09-27 12:50:46 -0700200 expiry = READ_ONCE(key->expiry);
201 if (expiry == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 memcpy(xbuf, "perm", 5);
Baolin Wang074d5892017-11-15 16:38:45 +0000203 } else if (now >= expiry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 memcpy(xbuf, "expd", 5);
David Howells7b1b9162009-09-02 09:14:11 +0100205 } else {
Baolin Wang074d5892017-11-15 16:38:45 +0000206 timo = expiry - now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 if (timo < 60)
Baolin Wang074d5892017-11-15 16:38:45 +0000209 sprintf(xbuf, "%llus", timo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 else if (timo < 60*60)
Baolin Wang074d5892017-11-15 16:38:45 +0000211 sprintf(xbuf, "%llum", div_u64(timo, 60));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 else if (timo < 60*60*24)
Baolin Wang074d5892017-11-15 16:38:45 +0000213 sprintf(xbuf, "%lluh", div_u64(timo, 60 * 60));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 else if (timo < 60*60*24*7)
Baolin Wang074d5892017-11-15 16:38:45 +0000215 sprintf(xbuf, "%llud", div_u64(timo, 60 * 60 * 24));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 else
Baolin Wang074d5892017-11-15 16:38:45 +0000217 sprintf(xbuf, "%lluw", div_u64(timo, 60 * 60 * 24 * 7));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 }
219
David Howells363b02d2017-10-04 16:43:25 +0100220 state = key_read_state(key);
221
Eric Biggersab5c69f2017-09-27 12:50:46 -0700222#define showflag(FLAGS, LETTER, FLAG) \
223 ((FLAGS & (1 << FLAG)) ? LETTER : '-')
David Howells76d8aea2005-06-23 22:00:49 -0700224
Eric Biggersab5c69f2017-09-27 12:50:46 -0700225 flags = READ_ONCE(key->flags);
David Howellsfd758152012-05-11 10:56:56 +0100226 seq_printf(m, "%08x %c%c%c%c%c%c%c %5d %4s %08x %5d %5d %-9.9s ",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 key->serial,
David Howells363b02d2017-10-04 16:43:25 +0100228 state != KEY_IS_UNINSTANTIATED ? 'I' : '-',
Eric Biggersab5c69f2017-09-27 12:50:46 -0700229 showflag(flags, 'R', KEY_FLAG_REVOKED),
230 showflag(flags, 'D', KEY_FLAG_DEAD),
231 showflag(flags, 'Q', KEY_FLAG_IN_QUOTA),
232 showflag(flags, 'U', KEY_FLAG_USER_CONSTRUCT),
David Howells363b02d2017-10-04 16:43:25 +0100233 state < 0 ? 'N' : '-',
Eric Biggersab5c69f2017-09-27 12:50:46 -0700234 showflag(flags, 'i', KEY_FLAG_INVALIDATED),
Elena Reshetovafff29292017-03-31 15:20:48 +0300235 refcount_read(&key->usage),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 xbuf,
Linus Torvalds028db3e2019-07-10 18:43:43 -0700237 key->perm,
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800238 from_kuid_munged(seq_user_ns(m), key->uid),
239 from_kgid_munged(seq_user_ns(m), key->gid),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 key->type->name);
241
David Howells76d8aea2005-06-23 22:00:49 -0700242#undef showflag
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (key->type->describe)
245 key->type->describe(key, m);
246 seq_putc(m, '\n');
247
Linus Torvalds028db3e2019-07-10 18:43:43 -0700248 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800252static struct rb_node *__key_user_next(struct user_namespace *user_ns, struct rb_node *n)
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600253{
254 while (n) {
255 struct key_user *user = rb_entry(n, struct key_user, node);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800256 if (kuid_has_mapping(user_ns, user->uid))
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600257 break;
258 n = rb_next(n);
259 }
260 return n;
261}
262
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800263static struct rb_node *key_user_next(struct user_namespace *user_ns, struct rb_node *n)
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600264{
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800265 return __key_user_next(user_ns, rb_next(n));
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600266}
267
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800268static struct rb_node *key_user_first(struct user_namespace *user_ns, struct rb_root *r)
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600269{
270 struct rb_node *n = rb_first(r);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800271 return __key_user_next(user_ns, n);
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600272}
David Howells7b1b9162009-09-02 09:14:11 +0100273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274static void *proc_key_users_start(struct seq_file *p, loff_t *_pos)
James Morris86abcf92009-06-18 22:00:05 +1000275 __acquires(key_user_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct rb_node *_p;
278 loff_t pos = *_pos;
279
280 spin_lock(&key_user_lock);
281
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800282 _p = key_user_first(seq_user_ns(p), &key_user_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 while (pos > 0 && _p) {
284 pos--;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800285 _p = key_user_next(seq_user_ns(p), _p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287
288 return _p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
291static void *proc_key_users_next(struct seq_file *p, void *v, loff_t *_pos)
292{
293 (*_pos)++;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800294 return key_user_next(seq_user_ns(p), (struct rb_node *)v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297static void proc_key_users_stop(struct seq_file *p, void *v)
James Morris86abcf92009-06-18 22:00:05 +1000298 __releases(key_user_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
300 spin_unlock(&key_user_lock);
301}
302
303static int proc_key_users_show(struct seq_file *m, void *v)
304{
305 struct rb_node *_p = v;
306 struct key_user *user = rb_entry(_p, struct key_user, node);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800307 unsigned maxkeys = uid_eq(user->uid, GLOBAL_ROOT_UID) ?
David Howells0b77f5b2008-04-29 01:01:32 -0700308 key_quota_root_maxkeys : key_quota_maxkeys;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800309 unsigned maxbytes = uid_eq(user->uid, GLOBAL_ROOT_UID) ?
David Howells0b77f5b2008-04-29 01:01:32 -0700310 key_quota_root_maxbytes : key_quota_maxbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 seq_printf(m, "%5u: %5d %d/%d %d/%d %d/%d\n",
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800313 from_kuid_munged(seq_user_ns(m), user->uid),
Elena Reshetovaddb99e12017-03-31 15:20:49 +0300314 refcount_read(&user->usage),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 atomic_read(&user->nkeys),
316 atomic_read(&user->nikeys),
317 user->qnkeys,
David Howells0b77f5b2008-04-29 01:01:32 -0700318 maxkeys,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 user->qnbytes,
David Howells0b77f5b2008-04-29 01:01:32 -0700320 maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}