blob: 4e3266a2529ee76c6bbd78802ddec0d36d1a1d2d [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);
142 return n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145static void proc_keys_stop(struct seq_file *p, void *v)
James Morris86abcf92009-06-18 22:00:05 +1000146 __releases(key_serial_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 spin_unlock(&key_serial_lock);
149}
150
151static int proc_keys_show(struct seq_file *m, void *v)
152{
153 struct rb_node *_p = v;
154 struct key *key = rb_entry(_p, struct key, serial_node);
Eric Biggersab5c69f2017-09-27 12:50:46 -0700155 unsigned long flags;
David Howells927942a2010-06-11 17:31:10 +0100156 key_ref_t key_ref, skey_ref;
Baolin Wang074d5892017-11-15 16:38:45 +0000157 time64_t now, expiry;
David Howells03dab862016-10-26 15:01:54 +0100158 char xbuf[16];
David Howells363b02d2017-10-04 16:43:25 +0100159 short state;
Baolin Wang074d5892017-11-15 16:38:45 +0000160 u64 timo;
Michael LeMay06ec7be2006-06-26 00:24:56 -0700161 int rc;
162
David Howells4bdf0bc2013-09-24 10:35:15 +0100163 struct keyring_search_context ctx = {
Eric Biggersede0fa982019-02-22 15:36:18 +0000164 .index_key = key->index_key,
Eric Biggers4aa68e02017-09-18 11:38:29 -0700165 .cred = m->file->f_cred,
David Howells46291952014-09-16 17:36:02 +0100166 .match_data.cmp = lookup_user_key_possessed,
167 .match_data.raw_data = key,
168 .match_data.lookup_type = KEYRING_SEARCH_LOOKUP_DIRECT,
169 .flags = KEYRING_SEARCH_NO_STATE_CHECK,
David Howells4bdf0bc2013-09-24 10:35:15 +0100170 };
171
David Howells927942a2010-06-11 17:31:10 +0100172 key_ref = make_key_ref(key, 0);
173
174 /* determine if the key is possessed by this process (a test we can
175 * skip if the key does not indicate the possessor can view it
176 */
177 if (key->perm & KEY_POS_VIEW) {
David Howells4bdf0bc2013-09-24 10:35:15 +0100178 skey_ref = search_my_process_keyrings(&ctx);
David Howells927942a2010-06-11 17:31:10 +0100179 if (!IS_ERR(skey_ref)) {
180 key_ref_put(skey_ref);
181 key_ref = make_key_ref(key, 1);
182 }
183 }
184
Eric Biggers4aa68e02017-09-18 11:38:29 -0700185 /* check whether the current task is allowed to view the key */
David Howellsf5895942014-03-14 17:44:49 +0000186 rc = key_task_permission(key_ref, ctx.cred, KEY_NEED_VIEW);
Michael LeMay06ec7be2006-06-26 00:24:56 -0700187 if (rc < 0)
188 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Baolin Wang074d5892017-11-15 16:38:45 +0000190 now = ktime_get_real_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
David Howells76d8aea2005-06-23 22:00:49 -0700192 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 /* come up with a suitable timeout value */
Eric Biggersab5c69f2017-09-27 12:50:46 -0700195 expiry = READ_ONCE(key->expiry);
196 if (expiry == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 memcpy(xbuf, "perm", 5);
Baolin Wang074d5892017-11-15 16:38:45 +0000198 } else if (now >= expiry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 memcpy(xbuf, "expd", 5);
David Howells7b1b9162009-09-02 09:14:11 +0100200 } else {
Baolin Wang074d5892017-11-15 16:38:45 +0000201 timo = expiry - now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 if (timo < 60)
Baolin Wang074d5892017-11-15 16:38:45 +0000204 sprintf(xbuf, "%llus", timo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 else if (timo < 60*60)
Baolin Wang074d5892017-11-15 16:38:45 +0000206 sprintf(xbuf, "%llum", div_u64(timo, 60));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 else if (timo < 60*60*24)
Baolin Wang074d5892017-11-15 16:38:45 +0000208 sprintf(xbuf, "%lluh", div_u64(timo, 60 * 60));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 else if (timo < 60*60*24*7)
Baolin Wang074d5892017-11-15 16:38:45 +0000210 sprintf(xbuf, "%llud", div_u64(timo, 60 * 60 * 24));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 else
Baolin Wang074d5892017-11-15 16:38:45 +0000212 sprintf(xbuf, "%lluw", div_u64(timo, 60 * 60 * 24 * 7));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214
David Howells363b02d2017-10-04 16:43:25 +0100215 state = key_read_state(key);
216
Eric Biggersab5c69f2017-09-27 12:50:46 -0700217#define showflag(FLAGS, LETTER, FLAG) \
218 ((FLAGS & (1 << FLAG)) ? LETTER : '-')
David Howells76d8aea2005-06-23 22:00:49 -0700219
Eric Biggersab5c69f2017-09-27 12:50:46 -0700220 flags = READ_ONCE(key->flags);
David Howellsfd758152012-05-11 10:56:56 +0100221 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 -0700222 key->serial,
David Howells363b02d2017-10-04 16:43:25 +0100223 state != KEY_IS_UNINSTANTIATED ? 'I' : '-',
Eric Biggersab5c69f2017-09-27 12:50:46 -0700224 showflag(flags, 'R', KEY_FLAG_REVOKED),
225 showflag(flags, 'D', KEY_FLAG_DEAD),
226 showflag(flags, 'Q', KEY_FLAG_IN_QUOTA),
227 showflag(flags, 'U', KEY_FLAG_USER_CONSTRUCT),
David Howells363b02d2017-10-04 16:43:25 +0100228 state < 0 ? 'N' : '-',
Eric Biggersab5c69f2017-09-27 12:50:46 -0700229 showflag(flags, 'i', KEY_FLAG_INVALIDATED),
Elena Reshetovafff29292017-03-31 15:20:48 +0300230 refcount_read(&key->usage),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 xbuf,
232 key->perm,
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800233 from_kuid_munged(seq_user_ns(m), key->uid),
234 from_kgid_munged(seq_user_ns(m), key->gid),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 key->type->name);
236
David Howells76d8aea2005-06-23 22:00:49 -0700237#undef showflag
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 if (key->type->describe)
240 key->type->describe(key, m);
241 seq_putc(m, '\n');
242
David Howells76d8aea2005-06-23 22:00:49 -0700243 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245}
246
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800247static struct rb_node *__key_user_next(struct user_namespace *user_ns, struct rb_node *n)
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600248{
249 while (n) {
250 struct key_user *user = rb_entry(n, struct key_user, node);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800251 if (kuid_has_mapping(user_ns, user->uid))
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600252 break;
253 n = rb_next(n);
254 }
255 return n;
256}
257
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800258static struct rb_node *key_user_next(struct user_namespace *user_ns, struct rb_node *n)
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600259{
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800260 return __key_user_next(user_ns, rb_next(n));
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600261}
262
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800263static struct rb_node *key_user_first(struct user_namespace *user_ns, struct rb_root *r)
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600264{
265 struct rb_node *n = rb_first(r);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800266 return __key_user_next(user_ns, n);
Serge E. Hallyn454804a2009-02-26 18:28:04 -0600267}
David Howells7b1b9162009-09-02 09:14:11 +0100268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269static void *proc_key_users_start(struct seq_file *p, loff_t *_pos)
James Morris86abcf92009-06-18 22:00:05 +1000270 __acquires(key_user_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 struct rb_node *_p;
273 loff_t pos = *_pos;
274
275 spin_lock(&key_user_lock);
276
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800277 _p = key_user_first(seq_user_ns(p), &key_user_tree);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 while (pos > 0 && _p) {
279 pos--;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800280 _p = key_user_next(seq_user_ns(p), _p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282
283 return _p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
286static void *proc_key_users_next(struct seq_file *p, void *v, loff_t *_pos)
287{
288 (*_pos)++;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800289 return key_user_next(seq_user_ns(p), (struct rb_node *)v);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292static void proc_key_users_stop(struct seq_file *p, void *v)
James Morris86abcf92009-06-18 22:00:05 +1000293 __releases(key_user_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
295 spin_unlock(&key_user_lock);
296}
297
298static int proc_key_users_show(struct seq_file *m, void *v)
299{
300 struct rb_node *_p = v;
301 struct key_user *user = rb_entry(_p, struct key_user, node);
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800302 unsigned maxkeys = uid_eq(user->uid, GLOBAL_ROOT_UID) ?
David Howells0b77f5b2008-04-29 01:01:32 -0700303 key_quota_root_maxkeys : key_quota_maxkeys;
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800304 unsigned maxbytes = uid_eq(user->uid, GLOBAL_ROOT_UID) ?
David Howells0b77f5b2008-04-29 01:01:32 -0700305 key_quota_root_maxbytes : key_quota_maxbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 seq_printf(m, "%5u: %5d %d/%d %d/%d %d/%d\n",
Eric W. Biederman9a56c2d2012-02-08 07:53:04 -0800308 from_kuid_munged(seq_user_ns(m), user->uid),
Elena Reshetovaddb99e12017-03-31 15:20:49 +0300309 refcount_read(&user->usage),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 atomic_read(&user->nkeys),
311 atomic_read(&user->nikeys),
312 user->qnkeys,
David Howells0b77f5b2008-04-29 01:01:32 -0700313 maxkeys,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 user->qnbytes,
David Howells0b77f5b2008-04-29 01:01:32 -0700315 maxbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}