4 * Copyright 2002 John Levon <levon@movementarian.org>
6 * Persistent cookie-path mappings. These are used by
7 * profilers to convert a per-task EIP value into something
8 * non-transitory that can be processed at a later date.
9 * This is done by locking the dentry/vfsmnt pair in the
10 * kernel until released by the tasks needing the persistent
11 * objects. The tag is simply an unsigned long that refers
12 * to the pair and can be looked up from userspace.
15 #include <linux/config.h>
16 #include <linux/syscalls.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/list.h>
20 #include <linux/mount.h>
21 #include <linux/dcache.h>
23 #include <linux/errno.h>
24 #include <linux/dcookies.h>
25 #include <asm/uaccess.h>
27 /* The dcookies are allocated from a kmem_cache and
28 * hashed onto a small number of lists. None of the
29 * code here is particularly performance critical
31 struct dcookie_struct {
32 struct dentry * dentry;
33 struct vfsmount * vfsmnt;
34 struct list_head hash_list;
37 static LIST_HEAD(dcookie_users);
38 static DECLARE_MUTEX(dcookie_sem);
39 static kmem_cache_t * dcookie_cache;
40 static struct list_head * dcookie_hashtable;
41 static size_t hash_size;
43 static inline int is_live(void)
45 return !(list_empty(&dcookie_users));
49 /* The dentry is locked, its address will do for the cookie */
50 static inline unsigned long dcookie_value(struct dcookie_struct * dcs)
52 return (unsigned long)dcs->dentry;
56 static size_t dcookie_hash(unsigned long dcookie)
58 return (dcookie >> L1_CACHE_SHIFT) & (hash_size - 1);
62 static struct dcookie_struct * find_dcookie(unsigned long dcookie)
64 struct dcookie_struct *found = NULL;
65 struct dcookie_struct * dcs;
66 struct list_head * pos;
67 struct list_head * list;
69 list = dcookie_hashtable + dcookie_hash(dcookie);
71 list_for_each(pos, list) {
72 dcs = list_entry(pos, struct dcookie_struct, hash_list);
73 if (dcookie_value(dcs) == dcookie) {
83 static void hash_dcookie(struct dcookie_struct * dcs)
85 struct list_head * list = dcookie_hashtable + dcookie_hash(dcookie_value(dcs));
86 list_add(&dcs->hash_list, list);
90 static struct dcookie_struct * alloc_dcookie(struct dentry * dentry,
91 struct vfsmount * vfsmnt)
93 struct dcookie_struct * dcs = kmem_cache_alloc(dcookie_cache, GFP_KERNEL);
97 atomic_inc(&dentry->d_count);
98 atomic_inc(&vfsmnt->mnt_count);
99 dentry->d_cookie = dcs;
101 dcs->dentry = dentry;
102 dcs->vfsmnt = vfsmnt;
109 /* This is the main kernel-side routine that retrieves the cookie
110 * value for a dentry/vfsmnt pair.
112 int get_dcookie(struct dentry * dentry, struct vfsmount * vfsmnt,
113 unsigned long * cookie)
116 struct dcookie_struct * dcs;
125 dcs = dentry->d_cookie;
128 dcs = alloc_dcookie(dentry, vfsmnt);
135 *cookie = dcookie_value(dcs);
143 /* And here is where the userspace process can look up the cookie value
144 * to retrieve the path.
146 asmlinkage long sys_lookup_dcookie(u64 cookie64, char __user * buf, size_t len)
148 unsigned long cookie = (unsigned long)cookie64;
153 struct dcookie_struct * dcs;
155 /* we could leak path information to users
156 * without dir read permission without this
158 if (!capable(CAP_SYS_ADMIN))
168 if (!(dcs = find_dcookie(cookie)))
172 kbuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
176 /* FIXME: (deleted) ? */
177 path = d_path(dcs->dentry, dcs->vfsmnt, kbuf, PAGE_SIZE);
186 pathlen = kbuf + PAGE_SIZE - path;
187 if (pathlen <= len) {
189 if (copy_to_user(buf, path, pathlen))
201 static int dcookie_init(void)
203 struct list_head * d;
204 unsigned int i, hash_bits;
207 dcookie_cache = kmem_cache_create("dcookie_cache",
208 sizeof(struct dcookie_struct),
214 dcookie_hashtable = kmalloc(PAGE_SIZE, GFP_KERNEL);
215 if (!dcookie_hashtable)
221 * Find the power-of-two list-heads that can fit into the allocation..
222 * We don't guarantee that "sizeof(struct list_head)" is necessarily
225 hash_size = PAGE_SIZE / sizeof(struct list_head);
229 } while ((hash_size >> hash_bits) != 0);
233 * Re-calculate the actual number of entries and the mask
234 * from the number of bits we can fit.
236 hash_size = 1UL << hash_bits;
238 /* And initialize the newly allocated array */
239 d = dcookie_hashtable;
250 kmem_cache_destroy(dcookie_cache);
255 static void free_dcookie(struct dcookie_struct * dcs)
257 dcs->dentry->d_cookie = NULL;
260 kmem_cache_free(dcookie_cache, dcs);
264 static void dcookie_exit(void)
266 struct list_head * list;
267 struct list_head * pos;
268 struct list_head * pos2;
269 struct dcookie_struct * dcs;
272 for (i = 0; i < hash_size; ++i) {
273 list = dcookie_hashtable + i;
274 list_for_each_safe(pos, pos2, list) {
275 dcs = list_entry(pos, struct dcookie_struct, hash_list);
276 list_del(&dcs->hash_list);
281 kfree(dcookie_hashtable);
282 kmem_cache_destroy(dcookie_cache);
286 struct dcookie_user {
287 struct list_head next;
290 struct dcookie_user * dcookie_register(void)
292 struct dcookie_user * user;
296 user = kmalloc(sizeof(struct dcookie_user), GFP_KERNEL);
300 if (!is_live() && dcookie_init())
303 list_add(&user->next, &dcookie_users);
315 void dcookie_unregister(struct dcookie_user * user)
319 list_del(&user->next);
328 EXPORT_SYMBOL_GPL(dcookie_register);
329 EXPORT_SYMBOL_GPL(dcookie_unregister);
330 EXPORT_SYMBOL_GPL(get_dcookie);