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/module.h>
17 #include <linux/slab.h>
18 #include <linux/list.h>
19 #include <linux/mount.h>
20 #include <linux/dcache.h>
22 #include <linux/errno.h>
23 #include <linux/dcookies.h>
24 #include <asm/uaccess.h>
26 /* The dcookies are allocated from a kmem_cache and
27 * hashed onto a small number of lists. None of the
28 * code here is particularly performance critical
30 struct dcookie_struct
{
31 struct dentry
* dentry
;
32 struct vfsmount
* vfsmnt
;
33 struct list_head hash_list
;
36 static LIST_HEAD(dcookie_users
);
37 static DECLARE_MUTEX(dcookie_sem
);
38 static kmem_cache_t
* dcookie_cache
;
39 static struct list_head
* dcookie_hashtable
;
40 static size_t hash_size
;
42 static inline int is_live(void)
44 return !(list_empty(&dcookie_users
));
48 /* The dentry is locked, its address will do for the cookie */
49 static inline unsigned long dcookie_value(struct dcookie_struct
* dcs
)
51 return (unsigned long)dcs
->dentry
;
55 static size_t dcookie_hash(unsigned long dcookie
)
57 return (dcookie
>> L1_CACHE_SHIFT
) & (hash_size
- 1);
61 static struct dcookie_struct
* find_dcookie(unsigned long dcookie
)
63 struct dcookie_struct
*found
= NULL
;
64 struct dcookie_struct
* dcs
;
65 struct list_head
* pos
;
66 struct list_head
* list
;
68 list
= dcookie_hashtable
+ dcookie_hash(dcookie
);
70 list_for_each(pos
, list
) {
71 dcs
= list_entry(pos
, struct dcookie_struct
, hash_list
);
72 if (dcookie_value(dcs
) == dcookie
) {
82 static void hash_dcookie(struct dcookie_struct
* dcs
)
84 struct list_head
* list
= dcookie_hashtable
+ dcookie_hash(dcookie_value(dcs
));
85 list_add(&dcs
->hash_list
, list
);
89 static struct dcookie_struct
* alloc_dcookie(struct dentry
* dentry
,
90 struct vfsmount
* vfsmnt
)
92 struct dcookie_struct
* dcs
= kmem_cache_alloc(dcookie_cache
, GFP_KERNEL
);
96 atomic_inc(&dentry
->d_count
);
97 atomic_inc(&vfsmnt
->mnt_count
);
98 dentry
->d_cookie
= dcs
;
100 dcs
->dentry
= dentry
;
101 dcs
->vfsmnt
= vfsmnt
;
108 /* This is the main kernel-side routine that retrieves the cookie
109 * value for a dentry/vfsmnt pair.
111 int get_dcookie(struct dentry
* dentry
, struct vfsmount
* vfsmnt
,
112 unsigned long * cookie
)
115 struct dcookie_struct
* dcs
;
124 dcs
= dentry
->d_cookie
;
127 dcs
= alloc_dcookie(dentry
, vfsmnt
);
134 *cookie
= dcookie_value(dcs
);
142 /* And here is where the userspace process can look up the cookie value
143 * to retrieve the path.
145 asmlinkage
long sys_lookup_dcookie(u64 cookie64
, char __user
* buf
, size_t len
)
147 unsigned long cookie
= (unsigned long)cookie64
;
152 struct dcookie_struct
* dcs
;
154 /* we could leak path information to users
155 * without dir read permission without this
157 if (!capable(CAP_SYS_ADMIN
))
167 if (!(dcs
= find_dcookie(cookie
)))
171 kbuf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
175 /* FIXME: (deleted) ? */
176 path
= d_path(dcs
->dentry
, dcs
->vfsmnt
, kbuf
, PAGE_SIZE
);
185 pathlen
= kbuf
+ PAGE_SIZE
- path
;
186 if (pathlen
<= len
) {
188 if (copy_to_user(buf
, path
, pathlen
))
200 static int dcookie_init(void)
202 struct list_head
* d
;
203 unsigned int i
, hash_bits
;
206 dcookie_cache
= kmem_cache_create("dcookie_cache",
207 sizeof(struct dcookie_struct
),
213 dcookie_hashtable
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
214 if (!dcookie_hashtable
)
220 * Find the power-of-two list-heads that can fit into the allocation..
221 * We don't guarantee that "sizeof(struct list_head)" is necessarily
224 hash_size
= PAGE_SIZE
/ sizeof(struct list_head
);
228 } while ((hash_size
>> hash_bits
) != 0);
232 * Re-calculate the actual number of entries and the mask
233 * from the number of bits we can fit.
235 hash_size
= 1UL << hash_bits
;
237 /* And initialize the newly allocated array */
238 d
= dcookie_hashtable
;
249 kmem_cache_destroy(dcookie_cache
);
254 static void free_dcookie(struct dcookie_struct
* dcs
)
256 dcs
->dentry
->d_cookie
= NULL
;
259 kmem_cache_free(dcookie_cache
, dcs
);
263 static void dcookie_exit(void)
265 struct list_head
* list
;
266 struct list_head
* pos
;
267 struct list_head
* pos2
;
268 struct dcookie_struct
* dcs
;
271 for (i
= 0; i
< hash_size
; ++i
) {
272 list
= dcookie_hashtable
+ i
;
273 list_for_each_safe(pos
, pos2
, list
) {
274 dcs
= list_entry(pos
, struct dcookie_struct
, hash_list
);
275 list_del(&dcs
->hash_list
);
280 kfree(dcookie_hashtable
);
281 kmem_cache_destroy(dcookie_cache
);
285 struct dcookie_user
{
286 struct list_head next
;
289 struct dcookie_user
* dcookie_register(void)
291 struct dcookie_user
* user
;
295 user
= kmalloc(sizeof(struct dcookie_user
), GFP_KERNEL
);
299 if (!is_live() && dcookie_init())
302 list_add(&user
->next
, &dcookie_users
);
314 void dcookie_unregister(struct dcookie_user
* user
)
318 list_del(&user
->next
);
327 EXPORT_SYMBOL_GPL(dcookie_register
);
328 EXPORT_SYMBOL_GPL(dcookie_unregister
);
329 EXPORT_SYMBOL_GPL(get_dcookie
);