Loading...
1// SPDX-License-Identifier: GPL-2.0-or-later
2/* CacheFiles extended attribute management
3 *
4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
6 */
7
8#include <linux/module.h>
9#include <linux/sched.h>
10#include <linux/file.h>
11#include <linux/fs.h>
12#include <linux/fsnotify.h>
13#include <linux/quotaops.h>
14#include <linux/xattr.h>
15#include <linux/slab.h>
16#include "internal.h"
17
18static const char cachefiles_xattr_cache[] =
19 XATTR_USER_PREFIX "CacheFiles.cache";
20
21/*
22 * check the type label on an object
23 * - done using xattrs
24 */
25int cachefiles_check_object_type(struct cachefiles_object *object)
26{
27 struct dentry *dentry = object->dentry;
28 char type[3], xtype[3];
29 int ret;
30
31 ASSERT(dentry);
32 ASSERT(d_backing_inode(dentry));
33
34 if (!object->fscache.cookie)
35 strcpy(type, "C3");
36 else
37 snprintf(type, 3, "%02x", object->fscache.cookie->def->type);
38
39 _enter("%p{%s}", object, type);
40
41 /* attempt to install a type label directly */
42 ret = vfs_setxattr(dentry, cachefiles_xattr_cache, type, 2,
43 XATTR_CREATE);
44 if (ret == 0) {
45 _debug("SET"); /* we succeeded */
46 goto error;
47 }
48
49 if (ret != -EEXIST) {
50 pr_err("Can't set xattr on %pd [%lu] (err %d)\n",
51 dentry, d_backing_inode(dentry)->i_ino,
52 -ret);
53 goto error;
54 }
55
56 /* read the current type label */
57 ret = vfs_getxattr(dentry, cachefiles_xattr_cache, xtype, 3);
58 if (ret < 0) {
59 if (ret == -ERANGE)
60 goto bad_type_length;
61
62 pr_err("Can't read xattr on %pd [%lu] (err %d)\n",
63 dentry, d_backing_inode(dentry)->i_ino,
64 -ret);
65 goto error;
66 }
67
68 /* check the type is what we're expecting */
69 if (ret != 2)
70 goto bad_type_length;
71
72 if (xtype[0] != type[0] || xtype[1] != type[1])
73 goto bad_type;
74
75 ret = 0;
76
77error:
78 _leave(" = %d", ret);
79 return ret;
80
81bad_type_length:
82 pr_err("Cache object %lu type xattr length incorrect\n",
83 d_backing_inode(dentry)->i_ino);
84 ret = -EIO;
85 goto error;
86
87bad_type:
88 xtype[2] = 0;
89 pr_err("Cache object %pd [%lu] type %s not %s\n",
90 dentry, d_backing_inode(dentry)->i_ino,
91 xtype, type);
92 ret = -EIO;
93 goto error;
94}
95
96/*
97 * set the state xattr on a cache file
98 */
99int cachefiles_set_object_xattr(struct cachefiles_object *object,
100 struct cachefiles_xattr *auxdata)
101{
102 struct dentry *dentry = object->dentry;
103 int ret;
104
105 ASSERT(dentry);
106
107 _enter("%p,#%d", object, auxdata->len);
108
109 /* attempt to install the cache metadata directly */
110 _debug("SET #%u", auxdata->len);
111
112 clear_bit(FSCACHE_COOKIE_AUX_UPDATED, &object->fscache.cookie->flags);
113 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
114 &auxdata->type, auxdata->len,
115 XATTR_CREATE);
116 if (ret < 0 && ret != -ENOMEM)
117 cachefiles_io_error_obj(
118 object,
119 "Failed to set xattr with error %d", ret);
120
121 _leave(" = %d", ret);
122 return ret;
123}
124
125/*
126 * update the state xattr on a cache file
127 */
128int cachefiles_update_object_xattr(struct cachefiles_object *object,
129 struct cachefiles_xattr *auxdata)
130{
131 struct dentry *dentry = object->dentry;
132 int ret;
133
134 if (!dentry)
135 return -ESTALE;
136
137 _enter("%p,#%d", object, auxdata->len);
138
139 /* attempt to install the cache metadata directly */
140 _debug("SET #%u", auxdata->len);
141
142 clear_bit(FSCACHE_COOKIE_AUX_UPDATED, &object->fscache.cookie->flags);
143 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
144 &auxdata->type, auxdata->len,
145 XATTR_REPLACE);
146 if (ret < 0 && ret != -ENOMEM)
147 cachefiles_io_error_obj(
148 object,
149 "Failed to update xattr with error %d", ret);
150
151 _leave(" = %d", ret);
152 return ret;
153}
154
155/*
156 * check the consistency between the backing cache and the FS-Cache cookie
157 */
158int cachefiles_check_auxdata(struct cachefiles_object *object)
159{
160 struct cachefiles_xattr *auxbuf;
161 enum fscache_checkaux validity;
162 struct dentry *dentry = object->dentry;
163 ssize_t xlen;
164 int ret;
165
166 ASSERT(dentry);
167 ASSERT(d_backing_inode(dentry));
168 ASSERT(object->fscache.cookie->def->check_aux);
169
170 auxbuf = kmalloc(sizeof(struct cachefiles_xattr) + 512, GFP_KERNEL);
171 if (!auxbuf)
172 return -ENOMEM;
173
174 xlen = vfs_getxattr(dentry, cachefiles_xattr_cache,
175 &auxbuf->type, 512 + 1);
176 ret = -ESTALE;
177 if (xlen < 1 ||
178 auxbuf->type != object->fscache.cookie->def->type)
179 goto error;
180
181 xlen--;
182 validity = fscache_check_aux(&object->fscache, &auxbuf->data, xlen,
183 i_size_read(d_backing_inode(dentry)));
184 if (validity != FSCACHE_CHECKAUX_OKAY)
185 goto error;
186
187 ret = 0;
188error:
189 kfree(auxbuf);
190 return ret;
191}
192
193/*
194 * check the state xattr on a cache file
195 * - return -ESTALE if the object should be deleted
196 */
197int cachefiles_check_object_xattr(struct cachefiles_object *object,
198 struct cachefiles_xattr *auxdata)
199{
200 struct cachefiles_xattr *auxbuf;
201 struct dentry *dentry = object->dentry;
202 int ret;
203
204 _enter("%p,#%d", object, auxdata->len);
205
206 ASSERT(dentry);
207 ASSERT(d_backing_inode(dentry));
208
209 auxbuf = kmalloc(sizeof(struct cachefiles_xattr) + 512, cachefiles_gfp);
210 if (!auxbuf) {
211 _leave(" = -ENOMEM");
212 return -ENOMEM;
213 }
214
215 /* read the current type label */
216 ret = vfs_getxattr(dentry, cachefiles_xattr_cache,
217 &auxbuf->type, 512 + 1);
218 if (ret < 0) {
219 if (ret == -ENODATA)
220 goto stale; /* no attribute - power went off
221 * mid-cull? */
222
223 if (ret == -ERANGE)
224 goto bad_type_length;
225
226 cachefiles_io_error_obj(object,
227 "Can't read xattr on %lu (err %d)",
228 d_backing_inode(dentry)->i_ino, -ret);
229 goto error;
230 }
231
232 /* check the on-disk object */
233 if (ret < 1)
234 goto bad_type_length;
235
236 if (auxbuf->type != auxdata->type)
237 goto stale;
238
239 auxbuf->len = ret;
240
241 /* consult the netfs */
242 if (object->fscache.cookie->def->check_aux) {
243 enum fscache_checkaux result;
244 unsigned int dlen;
245
246 dlen = auxbuf->len - 1;
247
248 _debug("checkaux %s #%u",
249 object->fscache.cookie->def->name, dlen);
250
251 result = fscache_check_aux(&object->fscache,
252 &auxbuf->data, dlen,
253 i_size_read(d_backing_inode(dentry)));
254
255 switch (result) {
256 /* entry okay as is */
257 case FSCACHE_CHECKAUX_OKAY:
258 goto okay;
259
260 /* entry requires update */
261 case FSCACHE_CHECKAUX_NEEDS_UPDATE:
262 break;
263
264 /* entry requires deletion */
265 case FSCACHE_CHECKAUX_OBSOLETE:
266 goto stale;
267
268 default:
269 BUG();
270 }
271
272 /* update the current label */
273 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
274 &auxdata->type, auxdata->len,
275 XATTR_REPLACE);
276 if (ret < 0) {
277 cachefiles_io_error_obj(object,
278 "Can't update xattr on %lu"
279 " (error %d)",
280 d_backing_inode(dentry)->i_ino, -ret);
281 goto error;
282 }
283 }
284
285okay:
286 ret = 0;
287
288error:
289 kfree(auxbuf);
290 _leave(" = %d", ret);
291 return ret;
292
293bad_type_length:
294 pr_err("Cache object %lu xattr length incorrect\n",
295 d_backing_inode(dentry)->i_ino);
296 ret = -EIO;
297 goto error;
298
299stale:
300 ret = -ESTALE;
301 goto error;
302}
303
304/*
305 * remove the object's xattr to mark it stale
306 */
307int cachefiles_remove_object_xattr(struct cachefiles_cache *cache,
308 struct dentry *dentry)
309{
310 int ret;
311
312 ret = vfs_removexattr(dentry, cachefiles_xattr_cache);
313 if (ret < 0) {
314 if (ret == -ENOENT || ret == -ENODATA)
315 ret = 0;
316 else if (ret != -ENOMEM)
317 cachefiles_io_error(cache,
318 "Can't remove xattr from %lu"
319 " (error %d)",
320 d_backing_inode(dentry)->i_ino, -ret);
321 }
322
323 _leave(" = %d", ret);
324 return ret;
325}
1/* CacheFiles extended attribute management
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
12#include <linux/module.h>
13#include <linux/sched.h>
14#include <linux/file.h>
15#include <linux/fs.h>
16#include <linux/fsnotify.h>
17#include <linux/quotaops.h>
18#include <linux/xattr.h>
19#include <linux/slab.h>
20#include "internal.h"
21
22static const char cachefiles_xattr_cache[] =
23 XATTR_USER_PREFIX "CacheFiles.cache";
24
25/*
26 * check the type label on an object
27 * - done using xattrs
28 */
29int cachefiles_check_object_type(struct cachefiles_object *object)
30{
31 struct dentry *dentry = object->dentry;
32 char type[3], xtype[3];
33 int ret;
34
35 ASSERT(dentry);
36 ASSERT(dentry->d_inode);
37
38 if (!object->fscache.cookie)
39 strcpy(type, "C3");
40 else
41 snprintf(type, 3, "%02x", object->fscache.cookie->def->type);
42
43 _enter("%p{%s}", object, type);
44
45 /* attempt to install a type label directly */
46 ret = vfs_setxattr(dentry, cachefiles_xattr_cache, type, 2,
47 XATTR_CREATE);
48 if (ret == 0) {
49 _debug("SET"); /* we succeeded */
50 goto error;
51 }
52
53 if (ret != -EEXIST) {
54 kerror("Can't set xattr on %*.*s [%lu] (err %d)",
55 dentry->d_name.len, dentry->d_name.len,
56 dentry->d_name.name, dentry->d_inode->i_ino,
57 -ret);
58 goto error;
59 }
60
61 /* read the current type label */
62 ret = vfs_getxattr(dentry, cachefiles_xattr_cache, xtype, 3);
63 if (ret < 0) {
64 if (ret == -ERANGE)
65 goto bad_type_length;
66
67 kerror("Can't read xattr on %*.*s [%lu] (err %d)",
68 dentry->d_name.len, dentry->d_name.len,
69 dentry->d_name.name, dentry->d_inode->i_ino,
70 -ret);
71 goto error;
72 }
73
74 /* check the type is what we're expecting */
75 if (ret != 2)
76 goto bad_type_length;
77
78 if (xtype[0] != type[0] || xtype[1] != type[1])
79 goto bad_type;
80
81 ret = 0;
82
83error:
84 _leave(" = %d", ret);
85 return ret;
86
87bad_type_length:
88 kerror("Cache object %lu type xattr length incorrect",
89 dentry->d_inode->i_ino);
90 ret = -EIO;
91 goto error;
92
93bad_type:
94 xtype[2] = 0;
95 kerror("Cache object %*.*s [%lu] type %s not %s",
96 dentry->d_name.len, dentry->d_name.len,
97 dentry->d_name.name, dentry->d_inode->i_ino,
98 xtype, type);
99 ret = -EIO;
100 goto error;
101}
102
103/*
104 * set the state xattr on a cache file
105 */
106int cachefiles_set_object_xattr(struct cachefiles_object *object,
107 struct cachefiles_xattr *auxdata)
108{
109 struct dentry *dentry = object->dentry;
110 int ret;
111
112 ASSERT(object->fscache.cookie);
113 ASSERT(dentry);
114
115 _enter("%p,#%d", object, auxdata->len);
116
117 /* attempt to install the cache metadata directly */
118 _debug("SET %s #%u", object->fscache.cookie->def->name, auxdata->len);
119
120 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
121 &auxdata->type, auxdata->len,
122 XATTR_CREATE);
123 if (ret < 0 && ret != -ENOMEM)
124 cachefiles_io_error_obj(
125 object,
126 "Failed to set xattr with error %d", ret);
127
128 _leave(" = %d", ret);
129 return ret;
130}
131
132/*
133 * update the state xattr on a cache file
134 */
135int cachefiles_update_object_xattr(struct cachefiles_object *object,
136 struct cachefiles_xattr *auxdata)
137{
138 struct dentry *dentry = object->dentry;
139 int ret;
140
141 ASSERT(object->fscache.cookie);
142 ASSERT(dentry);
143
144 _enter("%p,#%d", object, auxdata->len);
145
146 /* attempt to install the cache metadata directly */
147 _debug("SET %s #%u", object->fscache.cookie->def->name, auxdata->len);
148
149 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
150 &auxdata->type, auxdata->len,
151 XATTR_REPLACE);
152 if (ret < 0 && ret != -ENOMEM)
153 cachefiles_io_error_obj(
154 object,
155 "Failed to update xattr with error %d", ret);
156
157 _leave(" = %d", ret);
158 return ret;
159}
160
161/*
162 * check the state xattr on a cache file
163 * - return -ESTALE if the object should be deleted
164 */
165int cachefiles_check_object_xattr(struct cachefiles_object *object,
166 struct cachefiles_xattr *auxdata)
167{
168 struct cachefiles_xattr *auxbuf;
169 struct dentry *dentry = object->dentry;
170 int ret;
171
172 _enter("%p,#%d", object, auxdata->len);
173
174 ASSERT(dentry);
175 ASSERT(dentry->d_inode);
176
177 auxbuf = kmalloc(sizeof(struct cachefiles_xattr) + 512, GFP_KERNEL);
178 if (!auxbuf) {
179 _leave(" = -ENOMEM");
180 return -ENOMEM;
181 }
182
183 /* read the current type label */
184 ret = vfs_getxattr(dentry, cachefiles_xattr_cache,
185 &auxbuf->type, 512 + 1);
186 if (ret < 0) {
187 if (ret == -ENODATA)
188 goto stale; /* no attribute - power went off
189 * mid-cull? */
190
191 if (ret == -ERANGE)
192 goto bad_type_length;
193
194 cachefiles_io_error_obj(object,
195 "Can't read xattr on %lu (err %d)",
196 dentry->d_inode->i_ino, -ret);
197 goto error;
198 }
199
200 /* check the on-disk object */
201 if (ret < 1)
202 goto bad_type_length;
203
204 if (auxbuf->type != auxdata->type)
205 goto stale;
206
207 auxbuf->len = ret;
208
209 /* consult the netfs */
210 if (object->fscache.cookie->def->check_aux) {
211 enum fscache_checkaux result;
212 unsigned int dlen;
213
214 dlen = auxbuf->len - 1;
215
216 _debug("checkaux %s #%u",
217 object->fscache.cookie->def->name, dlen);
218
219 result = fscache_check_aux(&object->fscache,
220 &auxbuf->data, dlen);
221
222 switch (result) {
223 /* entry okay as is */
224 case FSCACHE_CHECKAUX_OKAY:
225 goto okay;
226
227 /* entry requires update */
228 case FSCACHE_CHECKAUX_NEEDS_UPDATE:
229 break;
230
231 /* entry requires deletion */
232 case FSCACHE_CHECKAUX_OBSOLETE:
233 goto stale;
234
235 default:
236 BUG();
237 }
238
239 /* update the current label */
240 ret = vfs_setxattr(dentry, cachefiles_xattr_cache,
241 &auxdata->type, auxdata->len,
242 XATTR_REPLACE);
243 if (ret < 0) {
244 cachefiles_io_error_obj(object,
245 "Can't update xattr on %lu"
246 " (error %d)",
247 dentry->d_inode->i_ino, -ret);
248 goto error;
249 }
250 }
251
252okay:
253 ret = 0;
254
255error:
256 kfree(auxbuf);
257 _leave(" = %d", ret);
258 return ret;
259
260bad_type_length:
261 kerror("Cache object %lu xattr length incorrect",
262 dentry->d_inode->i_ino);
263 ret = -EIO;
264 goto error;
265
266stale:
267 ret = -ESTALE;
268 goto error;
269}
270
271/*
272 * remove the object's xattr to mark it stale
273 */
274int cachefiles_remove_object_xattr(struct cachefiles_cache *cache,
275 struct dentry *dentry)
276{
277 int ret;
278
279 ret = vfs_removexattr(dentry, cachefiles_xattr_cache);
280 if (ret < 0) {
281 if (ret == -ENOENT || ret == -ENODATA)
282 ret = 0;
283 else if (ret != -ENOMEM)
284 cachefiles_io_error(cache,
285 "Can't remove xattr from %lu"
286 " (error %d)",
287 dentry->d_inode->i_ino, -ret);
288 }
289
290 _leave(" = %d", ret);
291 return ret;
292}