1 /* Key garbage collector
3 * Copyright (C) 2009 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 Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
12 #include <linux/module.h>
13 #include <keys/keyring-type.h>
17 * Delay between key revocation/expiry in seconds
19 unsigned key_gc_delay
= 5 * 60;
24 static void key_gc_timer_func(unsigned long);
25 static void key_garbage_collector(struct work_struct
*);
26 static DEFINE_TIMER(key_gc_timer
, key_gc_timer_func
, 0, 0);
27 static DECLARE_WORK(key_gc_work
, key_garbage_collector
);
28 static key_serial_t key_gc_cursor
; /* the last key the gc considered */
29 static bool key_gc_again
;
30 static unsigned long key_gc_executing
;
31 static time_t key_gc_next_run
= LONG_MAX
;
32 static time_t key_gc_new_timer
;
35 * Schedule a garbage collection run
36 * - precision isn't particularly important
38 void key_schedule_gc(time_t gc_at
)
40 unsigned long expires
;
41 time_t now
= current_kernel_time().tv_sec
;
43 kenter("%ld", gc_at
- now
);
46 schedule_work(&key_gc_work
);
47 } else if (gc_at
< key_gc_next_run
) {
48 expires
= jiffies
+ (gc_at
- now
) * HZ
;
49 mod_timer(&key_gc_timer
, expires
);
54 * The garbage collector timer kicked off
56 static void key_gc_timer_func(unsigned long data
)
59 key_gc_next_run
= LONG_MAX
;
60 schedule_work(&key_gc_work
);
64 * Garbage collect pointers from a keyring
65 * - return true if we altered the keyring
67 static bool key_gc_keyring(struct key
*keyring
, time_t limit
)
68 __releases(key_serial_lock
)
70 struct keyring_list
*klist
;
74 kenter("%x", key_serial(keyring
));
76 if (test_bit(KEY_FLAG_REVOKED
, &keyring
->flags
))
79 /* scan the keyring looking for dead keys */
80 klist
= rcu_dereference(keyring
->payload
.subscriptions
);
84 for (loop
= klist
->nkeys
- 1; loop
>= 0; loop
--) {
85 key
= klist
->keys
[loop
];
86 if (test_bit(KEY_FLAG_DEAD
, &key
->flags
) ||
87 (key
->expiry
> 0 && key
->expiry
<= limit
))
96 key_gc_cursor
= keyring
->serial
;
98 spin_unlock(&key_serial_lock
);
99 keyring_gc(keyring
, limit
);
106 * Garbage collector for keys
107 * - this involves scanning the keyrings for dead, expired and revoked keys
108 * that have overstayed their welcome
110 static void key_garbage_collector(struct work_struct
*work
)
114 struct key
*key
, *xkey
;
115 time_t new_timer
= LONG_MAX
, limit
, now
;
117 now
= current_kernel_time().tv_sec
;
118 kenter("[%x,%ld]", key_gc_cursor
, key_gc_new_timer
- now
);
120 if (test_and_set_bit(0, &key_gc_executing
)) {
121 key_schedule_gc(current_kernel_time().tv_sec
+ 1);
122 kleave(" [busy; deferring]");
127 if (limit
> key_gc_delay
)
128 limit
-= key_gc_delay
;
130 limit
= key_gc_delay
;
132 spin_lock(&key_serial_lock
);
134 if (unlikely(RB_EMPTY_ROOT(&key_serial_tree
))) {
135 spin_unlock(&key_serial_lock
);
136 clear_bit(0, &key_gc_executing
);
140 cursor
= key_gc_cursor
;
144 new_timer
= key_gc_new_timer
;
146 key_gc_again
= false;
148 /* find the first key above the cursor */
150 rb
= key_serial_tree
.rb_node
;
152 xkey
= rb_entry(rb
, struct key
, serial_node
);
153 if (cursor
< xkey
->serial
) {
156 } else if (cursor
> xkey
->serial
) {
161 goto reached_the_end
;
162 key
= rb_entry(rb
, struct key
, serial_node
);
168 goto reached_the_end
;
170 /* trawl through the keys looking for keyrings */
172 if (key
->expiry
> now
&& key
->expiry
< new_timer
) {
173 kdebug("will expire %x in %ld",
174 key_serial(key
), key
->expiry
- now
);
175 new_timer
= key
->expiry
;
178 if (key
->type
== &key_type_keyring
&&
179 key_gc_keyring(key
, limit
))
180 /* the gc had to release our lock so that the keyring
181 * could be modified, so we have to get it again */
182 goto gc_released_our_lock
;
184 rb
= rb_next(&key
->serial_node
);
186 goto reached_the_end
;
187 key
= rb_entry(rb
, struct key
, serial_node
);
190 gc_released_our_lock
:
191 kdebug("gc_released_our_lock");
192 key_gc_new_timer
= new_timer
;
194 clear_bit(0, &key_gc_executing
);
195 schedule_work(&key_gc_work
);
196 kleave(" [continue]");
199 /* when we reach the end of the run, we set the timer for the next one */
201 kdebug("reached_the_end");
202 spin_unlock(&key_serial_lock
);
203 key_gc_new_timer
= new_timer
;
205 clear_bit(0, &key_gc_executing
);
208 /* there may have been a key that expired whilst we were
209 * scanning, so if we discarded any links we should do another
212 key_schedule_gc(new_timer
);
213 } else if (new_timer
< LONG_MAX
) {
214 new_timer
+= key_gc_delay
;
215 key_schedule_gc(new_timer
);