1 /* CacheFiles extended attribute management
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
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 <linux/sched.h>
14 #include <linux/file.h>
16 #include <linux/fsnotify.h>
17 #include <linux/quotaops.h>
18 #include <linux/xattr.h>
19 #include <linux/slab.h>
22 static const char cachefiles_xattr_cache[] =
23 XATTR_USER_PREFIX "CacheFiles.cache";
26 * check the type label on an object
29 int cachefiles_check_object_type(struct cachefiles_object *object)
31 struct dentry *dentry = object->dentry;
32 char type[3], xtype[3];
36 ASSERT(d_backing_inode(dentry));
38 if (!object->fscache.cookie)
41 snprintf(type, 3, "%02x", object->fscache.cookie->def->type);
43 _enter("%p{%s}", object, type);
45 /* attempt to install a type label directly */
46 ret = vfs_setxattr(dentry, cachefiles_xattr_cache, type, 2,
49 _debug("SET"); /* we succeeded */
54 pr_err("Can't set xattr on %pd [%lu] (err %d)\n",
55 dentry, d_backing_inode(dentry)->i_ino,
60 /* read the current type label */
61 ret = vfs_getxattr(dentry, cachefiles_xattr_cache, xtype, 3);
66 pr_err("Can't read xattr on %pd [%lu] (err %d)\n",
67 dentry, d_backing_inode(dentry)->i_ino,
72 /* check the type is what we're expecting */
76 if (xtype[0] != type[0] || xtype[1] != type[1])
86 pr_err("Cache object %lu type xattr length incorrect\n",
87 d_backing_inode(dentry)->i_ino);
93 pr_err("Cache object %pd [%lu] type %s not %s\n",
94 dentry, d_backing_inode(dentry)->i_ino,
101 * set the state xattr on a cache file
103 int cachefiles_set_object_xattr(struct cachefiles_object *object,
104 struct cachefiles_xattr *auxdata)
106 struct dentry *dentry = object->dentry;
111 _enter("%p,#%d", object, auxdata->len);
113 /* attempt to install the cache metadata directly */
114 _debug("SET #%u", auxdata->len);
116 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
117 &auxdata->type, auxdata->len,
119 if (ret < 0 && ret != -ENOMEM)
120 cachefiles_io_error_obj(
122 "Failed to set xattr with error %d", ret);
124 _leave(" = %d", ret);
129 * update the state xattr on a cache file
131 int cachefiles_update_object_xattr(struct cachefiles_object *object,
132 struct cachefiles_xattr *auxdata)
134 struct dentry *dentry = object->dentry;
139 _enter("%p,#%d", object, auxdata->len);
141 /* attempt to install the cache metadata directly */
142 _debug("SET #%u", auxdata->len);
144 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
145 &auxdata->type, auxdata->len,
147 if (ret < 0 && ret != -ENOMEM)
148 cachefiles_io_error_obj(
150 "Failed to update xattr with error %d", ret);
152 _leave(" = %d", ret);
157 * check the consistency between the backing cache and the FS-Cache cookie
159 int cachefiles_check_auxdata(struct cachefiles_object *object)
161 struct cachefiles_xattr *auxbuf;
162 enum fscache_checkaux validity;
163 struct dentry *dentry = object->dentry;
168 ASSERT(d_backing_inode(dentry));
169 ASSERT(object->fscache.cookie->def->check_aux);
171 auxbuf = kmalloc(sizeof(struct cachefiles_xattr) + 512, GFP_KERNEL);
175 xlen = vfs_getxattr(dentry, cachefiles_xattr_cache,
176 &auxbuf->type, 512 + 1);
179 auxbuf->type != object->fscache.cookie->def->type)
183 validity = fscache_check_aux(&object->fscache, &auxbuf->data, xlen);
184 if (validity != FSCACHE_CHECKAUX_OKAY)
194 * check the state xattr on a cache file
195 * - return -ESTALE if the object should be deleted
197 int cachefiles_check_object_xattr(struct cachefiles_object *object,
198 struct cachefiles_xattr *auxdata)
200 struct cachefiles_xattr *auxbuf;
201 struct dentry *dentry = object->dentry;
204 _enter("%p,#%d", object, auxdata->len);
207 ASSERT(d_backing_inode(dentry));
209 auxbuf = kmalloc(sizeof(struct cachefiles_xattr) + 512, cachefiles_gfp);
211 _leave(" = -ENOMEM");
215 /* read the current type label */
216 ret = vfs_getxattr(dentry, cachefiles_xattr_cache,
217 &auxbuf->type, 512 + 1);
220 goto stale; /* no attribute - power went off
224 goto bad_type_length;
226 cachefiles_io_error_obj(object,
227 "Can't read xattr on %lu (err %d)",
228 d_backing_inode(dentry)->i_ino, -ret);
232 /* check the on-disk object */
234 goto bad_type_length;
236 if (auxbuf->type != auxdata->type)
241 /* consult the netfs */
242 if (object->fscache.cookie->def->check_aux) {
243 enum fscache_checkaux result;
246 dlen = auxbuf->len - 1;
248 _debug("checkaux %s #%u",
249 object->fscache.cookie->def->name, dlen);
251 result = fscache_check_aux(&object->fscache,
252 &auxbuf->data, dlen);
255 /* entry okay as is */
256 case FSCACHE_CHECKAUX_OKAY:
259 /* entry requires update */
260 case FSCACHE_CHECKAUX_NEEDS_UPDATE:
263 /* entry requires deletion */
264 case FSCACHE_CHECKAUX_OBSOLETE:
271 /* update the current label */
272 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
273 &auxdata->type, auxdata->len,
276 cachefiles_io_error_obj(object,
277 "Can't update xattr on %lu"
279 d_backing_inode(dentry)->i_ino, -ret);
289 _leave(" = %d", ret);
293 pr_err("Cache object %lu xattr length incorrect\n",
294 d_backing_inode(dentry)->i_ino);
304 * remove the object's xattr to mark it stale
306 int cachefiles_remove_object_xattr(struct cachefiles_cache *cache,
307 struct dentry *dentry)
311 ret = vfs_removexattr(dentry, cachefiles_xattr_cache);
313 if (ret == -ENOENT || ret == -ENODATA)
315 else if (ret != -ENOMEM)
316 cachefiles_io_error(cache,
317 "Can't remove xattr from %lu"
319 d_backing_inode(dentry)->i_ino, -ret);
322 _leave(" = %d", ret);