blob: 18e66dbf23b497d456a191c75c9d7cb1b52edd65 [file] [log] [blame]
KaiGai Kohei652ecc22006-05-13 15:18:27 +09001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09003 *
KaiGai Kohei652ecc22006-05-13 15:18:27 +09004 * Copyright (C) 2006 NEC Corporation
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09005 *
KaiGai Kohei652ecc22006-05-13 15:18:27 +09006 * Created by KaiGai Kohei <kaigai@ak.jp.nec.com>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
10 */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090011#include <linux/kernel.h>
12#include <linux/slab.h>
13#include <linux/fs.h>
14#include <linux/time.h>
15#include <linux/pagemap.h>
16#include <linux/highmem.h>
17#include <linux/crc32.h>
18#include <linux/jffs2.h>
19#include <linux/xattr.h>
20#include <linux/mtd/mtd.h>
21#include "nodelist.h"
22/* -------- xdatum related functions ----------------
23 * xattr_datum_hashkey(xprefix, xname, xvalue, xsize)
24 * is used to calcurate xdatum hashkey. The reminder of hashkey into XATTRINDEX_HASHSIZE is
25 * the index of the xattr name/value pair cache (c->xattrindex).
KaiGai Koheic9f700f2006-06-11 10:35:15 +090026 * is_xattr_datum_unchecked(c, xd)
27 * returns 1, if xdatum contains any unchecked raw nodes. if all raw nodes are not
28 * unchecked, it returns 0.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090029 * unload_xattr_datum(c, xd)
30 * is used to release xattr name/value pair and detach from c->xattrindex.
31 * reclaim_xattr_datum(c)
32 * is used to reclaim xattr name/value pairs on the xattr name/value pair cache when
33 * memory usage by cache is over c->xdatum_mem_threshold. Currentry, this threshold
34 * is hard coded as 32KiB.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090035 * do_verify_xattr_datum(c, xd)
36 * is used to load the xdatum informations without name/value pair from the medium.
37 * It's necessary once, because those informations are not collected during mounting
38 * process when EBS is enabled.
39 * 0 will be returned, if success. An negative return value means recoverable error, and
40 * positive return value means unrecoverable error. Thus, caller must remove this xdatum
41 * and xref when it returned positive value.
42 * do_load_xattr_datum(c, xd)
43 * is used to load name/value pair from the medium.
44 * The meanings of return value is same as do_verify_xattr_datum().
45 * load_xattr_datum(c, xd)
46 * is used to be as a wrapper of do_verify_xattr_datum() and do_load_xattr_datum().
47 * If xd need to call do_verify_xattr_datum() at first, it's called before calling
48 * do_load_xattr_datum(). The meanings of return value is same as do_verify_xattr_datum().
David Woodhouse9fe48542006-05-23 00:38:06 +010049 * save_xattr_datum(c, xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090050 * is used to write xdatum to medium. xd->version will be incremented.
David Woodhouse9fe48542006-05-23 00:38:06 +010051 * create_xattr_datum(c, xprefix, xname, xvalue, xsize)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090052 * is used to create new xdatum and write to medium.
KaiGai Koheic9f700f2006-06-11 10:35:15 +090053 * delete_xattr_datum(c, xd)
KaiGai Kohei8a136952006-06-24 09:14:13 +090054 * is used to delete a xdatum. It marks xd JFFS2_XFLAGS_DEAD, and allows
55 * GC to reclaim those physical nodes.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090056 * -------------------------------------------------- */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090057static uint32_t xattr_datum_hashkey(int xprefix, const char *xname, const char *xvalue, int xsize)
58{
59 int name_len = strlen(xname);
60
61 return crc32(xprefix, xname, name_len) ^ crc32(xprefix, xvalue, xsize);
62}
63
KaiGai Koheic9f700f2006-06-11 10:35:15 +090064static int is_xattr_datum_unchecked(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
65{
66 struct jffs2_raw_node_ref *raw;
67 int rc = 0;
68
69 spin_lock(&c->erase_completion_lock);
70 for (raw=xd->node; raw != (void *)xd; raw=raw->next_in_ino) {
71 if (ref_flags(raw) == REF_UNCHECKED) {
72 rc = 1;
73 break;
74 }
75 }
76 spin_unlock(&c->erase_completion_lock);
77 return rc;
78}
79
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090080static void unload_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
81{
82 /* must be called under down_write(xattr_sem) */
83 D1(dbg_xattr("%s: xid=%u, version=%u\n", __FUNCTION__, xd->xid, xd->version));
84 if (xd->xname) {
85 c->xdatum_mem_usage -= (xd->name_len + 1 + xd->value_len);
86 kfree(xd->xname);
87 }
88
89 list_del_init(&xd->xindex);
90 xd->hashkey = 0;
91 xd->xname = NULL;
92 xd->xvalue = NULL;
93}
94
95static void reclaim_xattr_datum(struct jffs2_sb_info *c)
96{
97 /* must be called under down_write(xattr_sem) */
98 struct jffs2_xattr_datum *xd, *_xd;
99 uint32_t target, before;
100 static int index = 0;
101 int count;
102
103 if (c->xdatum_mem_threshold > c->xdatum_mem_usage)
104 return;
105
106 before = c->xdatum_mem_usage;
107 target = c->xdatum_mem_usage * 4 / 5; /* 20% reduction */
108 for (count = 0; count < XATTRINDEX_HASHSIZE; count++) {
109 list_for_each_entry_safe(xd, _xd, &c->xattrindex[index], xindex) {
110 if (xd->flags & JFFS2_XFLAGS_HOT) {
111 xd->flags &= ~JFFS2_XFLAGS_HOT;
112 } else if (!(xd->flags & JFFS2_XFLAGS_BIND)) {
113 unload_xattr_datum(c, xd);
114 }
115 if (c->xdatum_mem_usage <= target)
116 goto out;
117 }
118 index = (index+1) % XATTRINDEX_HASHSIZE;
119 }
120 out:
121 JFFS2_NOTICE("xdatum_mem_usage from %u byte to %u byte (%u byte reclaimed)\n",
122 before, c->xdatum_mem_usage, before - c->xdatum_mem_usage);
123}
124
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900125static int do_verify_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
126{
127 /* must be called under down_write(xattr_sem) */
128 struct jffs2_eraseblock *jeb;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900129 struct jffs2_raw_node_ref *raw;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900130 struct jffs2_raw_xattr rx;
131 size_t readlen;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900132 uint32_t crc, offset, totlen;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900133 int rc;
134
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900135 spin_lock(&c->erase_completion_lock);
136 offset = ref_offset(xd->node);
137 if (ref_flags(xd->node) == REF_PRISTINE)
138 goto complete;
139 spin_unlock(&c->erase_completion_lock);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900140
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900141 rc = jffs2_flash_read(c, offset, sizeof(rx), &readlen, (char *)&rx);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900142 if (rc || readlen != sizeof(rx)) {
David Woodhouse89291a92006-05-25 13:30:24 +0100143 JFFS2_WARNING("jffs2_flash_read()=%d, req=%zu, read=%zu at %#08x\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900144 rc, sizeof(rx), readlen, offset);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900145 return rc ? rc : -EIO;
146 }
147 crc = crc32(0, &rx, sizeof(rx) - 4);
148 if (crc != je32_to_cpu(rx.node_crc)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900149 JFFS2_ERROR("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
150 offset, je32_to_cpu(rx.hdr_crc), crc);
151 xd->flags |= JFFS2_XFLAGS_INVALID;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900152 return EIO;
153 }
KaiGai Kohei8a136952006-06-24 09:14:13 +0900154 totlen = PAD(sizeof(rx) + rx.name_len + 1 + je16_to_cpu(rx.value_len));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900155 if (je16_to_cpu(rx.magic) != JFFS2_MAGIC_BITMASK
156 || je16_to_cpu(rx.nodetype) != JFFS2_NODETYPE_XATTR
157 || je32_to_cpu(rx.totlen) != totlen
158 || je32_to_cpu(rx.xid) != xd->xid
159 || je32_to_cpu(rx.version) != xd->version) {
160 JFFS2_ERROR("inconsistent xdatum at %#08x, magic=%#04x/%#04x, "
161 "nodetype=%#04x/%#04x, totlen=%u/%u, xid=%u/%u, version=%u/%u\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900162 offset, je16_to_cpu(rx.magic), JFFS2_MAGIC_BITMASK,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900163 je16_to_cpu(rx.nodetype), JFFS2_NODETYPE_XATTR,
164 je32_to_cpu(rx.totlen), totlen,
165 je32_to_cpu(rx.xid), xd->xid,
166 je32_to_cpu(rx.version), xd->version);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900167 xd->flags |= JFFS2_XFLAGS_INVALID;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900168 return EIO;
169 }
170 xd->xprefix = rx.xprefix;
171 xd->name_len = rx.name_len;
172 xd->value_len = je16_to_cpu(rx.value_len);
173 xd->data_crc = je32_to_cpu(rx.data_crc);
174
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900175 spin_lock(&c->erase_completion_lock);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900176 complete:
177 for (raw=xd->node; raw != (void *)xd; raw=raw->next_in_ino) {
178 jeb = &c->blocks[ref_offset(raw) / c->sector_size];
179 totlen = PAD(ref_totlen(c, jeb, raw));
180 if (ref_flags(raw) == REF_UNCHECKED) {
181 c->unchecked_size -= totlen; c->used_size += totlen;
182 jeb->unchecked_size -= totlen; jeb->used_size += totlen;
183 }
184 raw->flash_offset = ref_offset(raw) | ((xd->node==raw) ? REF_PRISTINE : REF_NORMAL);
185 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900186 spin_unlock(&c->erase_completion_lock);
187
188 /* unchecked xdatum is chained with c->xattr_unchecked */
189 list_del_init(&xd->xindex);
190
191 dbg_xattr("success on verfying xdatum (xid=%u, version=%u)\n",
192 xd->xid, xd->version);
193
194 return 0;
195}
196
197static int do_load_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
198{
199 /* must be called under down_write(xattr_sem) */
200 char *data;
201 size_t readlen;
202 uint32_t crc, length;
203 int i, ret, retry = 0;
204
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900205 BUG_ON(ref_flags(xd->node) != REF_PRISTINE);
206 BUG_ON(!list_empty(&xd->xindex));
207 retry:
208 length = xd->name_len + 1 + xd->value_len;
209 data = kmalloc(length, GFP_KERNEL);
210 if (!data)
211 return -ENOMEM;
212
213 ret = jffs2_flash_read(c, ref_offset(xd->node)+sizeof(struct jffs2_raw_xattr),
214 length, &readlen, data);
215
216 if (ret || length!=readlen) {
David Woodhouse89291a92006-05-25 13:30:24 +0100217 JFFS2_WARNING("jffs2_flash_read() returned %d, request=%d, readlen=%zu, at %#08x\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900218 ret, length, readlen, ref_offset(xd->node));
219 kfree(data);
220 return ret ? ret : -EIO;
221 }
222
223 data[xd->name_len] = '\0';
224 crc = crc32(0, data, length);
225 if (crc != xd->data_crc) {
226 JFFS2_WARNING("node CRC failed (JFFS2_NODETYPE_XREF)"
227 " at %#08x, read: 0x%08x calculated: 0x%08x\n",
228 ref_offset(xd->node), xd->data_crc, crc);
229 kfree(data);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900230 xd->flags |= JFFS2_XFLAGS_INVALID;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900231 return EIO;
232 }
233
234 xd->flags |= JFFS2_XFLAGS_HOT;
235 xd->xname = data;
236 xd->xvalue = data + xd->name_len+1;
237
238 c->xdatum_mem_usage += length;
239
240 xd->hashkey = xattr_datum_hashkey(xd->xprefix, xd->xname, xd->xvalue, xd->value_len);
241 i = xd->hashkey % XATTRINDEX_HASHSIZE;
242 list_add(&xd->xindex, &c->xattrindex[i]);
243 if (!retry) {
244 retry = 1;
245 reclaim_xattr_datum(c);
246 if (!xd->xname)
247 goto retry;
248 }
249
250 dbg_xattr("success on loading xdatum (xid=%u, xprefix=%u, xname='%s')\n",
251 xd->xid, xd->xprefix, xd->xname);
252
253 return 0;
254}
255
256static int load_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
257{
258 /* must be called under down_write(xattr_sem);
259 * rc < 0 : recoverable error, try again
260 * rc = 0 : success
261 * rc > 0 : Unrecoverable error, this node should be deleted.
262 */
263 int rc = 0;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900264
KaiGai Kohei8a136952006-06-24 09:14:13 +0900265 BUG_ON(xd->flags & JFFS2_XFLAGS_DEAD);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900266 if (xd->xname)
267 return 0;
268 if (xd->flags & JFFS2_XFLAGS_INVALID)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900269 return EIO;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900270 if (unlikely(is_xattr_datum_unchecked(c, xd)))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900271 rc = do_verify_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900272 if (!rc)
273 rc = do_load_xattr_datum(c, xd);
274 return rc;
275}
276
David Woodhouse9fe48542006-05-23 00:38:06 +0100277static int save_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900278{
279 /* must be called under down_write(xattr_sem) */
David Woodhouse2f785402006-05-24 02:04:45 +0100280 struct jffs2_raw_xattr rx;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900281 struct kvec vecs[2];
David Woodhouse89291a92006-05-25 13:30:24 +0100282 size_t length;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900283 int rc, totlen;
David Woodhouse9fe48542006-05-23 00:38:06 +0100284 uint32_t phys_ofs = write_ofs(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900285
KaiGai Kohei8a136952006-06-24 09:14:13 +0900286 BUG_ON(!xd->xname);
287 BUG_ON(xd->flags & (JFFS2_XFLAGS_DEAD|JFFS2_XFLAGS_INVALID));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900288
289 vecs[0].iov_base = &rx;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900290 vecs[0].iov_len = sizeof(rx);
291 vecs[1].iov_base = xd->xname;
292 vecs[1].iov_len = xd->name_len + 1 + xd->value_len;
293 totlen = vecs[0].iov_len + vecs[1].iov_len;
294
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900295 /* Setup raw-xattr */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900296 memset(&rx, 0, sizeof(rx));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900297 rx.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
298 rx.nodetype = cpu_to_je16(JFFS2_NODETYPE_XATTR);
299 rx.totlen = cpu_to_je32(PAD(totlen));
300 rx.hdr_crc = cpu_to_je32(crc32(0, &rx, sizeof(struct jffs2_unknown_node) - 4));
301
302 rx.xid = cpu_to_je32(xd->xid);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900303 rx.version = cpu_to_je32(++xd->version);
304 rx.xprefix = xd->xprefix;
305 rx.name_len = xd->name_len;
306 rx.value_len = cpu_to_je16(xd->value_len);
307 rx.data_crc = cpu_to_je32(crc32(0, vecs[1].iov_base, vecs[1].iov_len));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900308 rx.node_crc = cpu_to_je32(crc32(0, &rx, sizeof(struct jffs2_raw_xattr) - 4));
309
KaiGai Kohei8a136952006-06-24 09:14:13 +0900310 rc = jffs2_flash_writev(c, vecs, 2, phys_ofs, &length, 0);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900311 if (rc || totlen != length) {
David Woodhouse89291a92006-05-25 13:30:24 +0100312 JFFS2_WARNING("jffs2_flash_writev()=%d, req=%u, wrote=%zu, at %#08x\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900313 rc, totlen, length, phys_ofs);
314 rc = rc ? rc : -EIO;
David Woodhouse2f785402006-05-24 02:04:45 +0100315 if (length)
316 jffs2_add_physical_node_ref(c, phys_ofs | REF_OBSOLETE, PAD(totlen), NULL);
317
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900318 return rc;
319 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900320 /* success */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900321 jffs2_add_physical_node_ref(c, phys_ofs | REF_PRISTINE, PAD(totlen), (void *)xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900322
323 dbg_xattr("success on saving xdatum (xid=%u, version=%u, xprefix=%u, xname='%s')\n",
324 xd->xid, xd->version, xd->xprefix, xd->xname);
325
326 return 0;
327}
328
329static struct jffs2_xattr_datum *create_xattr_datum(struct jffs2_sb_info *c,
330 int xprefix, const char *xname,
David Woodhouse9fe48542006-05-23 00:38:06 +0100331 const char *xvalue, int xsize)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900332{
333 /* must be called under down_write(xattr_sem) */
334 struct jffs2_xattr_datum *xd;
335 uint32_t hashkey, name_len;
336 char *data;
337 int i, rc;
338
339 /* Search xattr_datum has same xname/xvalue by index */
340 hashkey = xattr_datum_hashkey(xprefix, xname, xvalue, xsize);
341 i = hashkey % XATTRINDEX_HASHSIZE;
342 list_for_each_entry(xd, &c->xattrindex[i], xindex) {
343 if (xd->hashkey==hashkey
344 && xd->xprefix==xprefix
345 && xd->value_len==xsize
346 && !strcmp(xd->xname, xname)
347 && !memcmp(xd->xvalue, xvalue, xsize)) {
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900348 atomic_inc(&xd->refcnt);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900349 return xd;
350 }
351 }
352
353 /* Not found, Create NEW XATTR-Cache */
354 name_len = strlen(xname);
355
356 xd = jffs2_alloc_xattr_datum();
357 if (!xd)
358 return ERR_PTR(-ENOMEM);
359
360 data = kmalloc(name_len + 1 + xsize, GFP_KERNEL);
361 if (!data) {
362 jffs2_free_xattr_datum(xd);
363 return ERR_PTR(-ENOMEM);
364 }
365 strcpy(data, xname);
366 memcpy(data + name_len + 1, xvalue, xsize);
367
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900368 atomic_set(&xd->refcnt, 1);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900369 xd->xid = ++c->highest_xid;
370 xd->flags |= JFFS2_XFLAGS_HOT;
371 xd->xprefix = xprefix;
372
373 xd->hashkey = hashkey;
374 xd->xname = data;
375 xd->xvalue = data + name_len + 1;
376 xd->name_len = name_len;
377 xd->value_len = xsize;
378 xd->data_crc = crc32(0, data, xd->name_len + 1 + xd->value_len);
379
David Woodhouse9fe48542006-05-23 00:38:06 +0100380 rc = save_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900381 if (rc) {
382 kfree(xd->xname);
383 jffs2_free_xattr_datum(xd);
384 return ERR_PTR(rc);
385 }
386
387 /* Insert Hash Index */
388 i = hashkey % XATTRINDEX_HASHSIZE;
389 list_add(&xd->xindex, &c->xattrindex[i]);
390
391 c->xdatum_mem_usage += (xd->name_len + 1 + xd->value_len);
392 reclaim_xattr_datum(c);
393
394 return xd;
395}
396
KaiGai Kohei8a136952006-06-24 09:14:13 +0900397static void delete_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900398{
399 /* must be called under down_write(xattr_sem) */
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900400 BUG_ON(atomic_read(&xd->refcnt));
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900401
402 unload_xattr_datum(c, xd);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900403 xd->flags |= JFFS2_XFLAGS_DEAD;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900404 spin_lock(&c->erase_completion_lock);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900405 if (xd->node == (void *)xd) {
406 BUG_ON(!(xd->flags & JFFS2_XFLAGS_INVALID));
407 jffs2_free_xattr_datum(xd);
408 } else {
409 list_add(&xd->xindex, &c->xattr_dead_list);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900410 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900411 spin_unlock(&c->erase_completion_lock);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900412 dbg_xattr("xdatum(xid=%u, version=%u) was removed.\n", xd->xid, xd->version);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900413}
414
KaiGai Kohei21b98792006-05-13 15:22:29 +0900415/* -------- xref related functions ------------------
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900416 * verify_xattr_ref(c, ref)
417 * is used to load xref information from medium. Because summary data does not
418 * contain xid/ino, it's necessary to verify once while mounting process.
David Woodhouse9fe48542006-05-23 00:38:06 +0100419 * save_xattr_ref(c, ref)
KaiGai Kohei8a136952006-06-24 09:14:13 +0900420 * is used to write xref to medium. If delete marker is marked, it write
421 * a delete marker of xref into medium.
David Woodhouse9fe48542006-05-23 00:38:06 +0100422 * create_xattr_ref(c, ic, xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900423 * is used to create a new xref and write to medium.
KaiGai Kohei8a136952006-06-24 09:14:13 +0900424 * delete_xattr_ref(c, ref)
425 * is used to delete jffs2_xattr_ref. It marks xref XREF_DELETE_MARKER,
426 * and allows GC to reclaim those physical nodes.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900427 * jffs2_xattr_delete_inode(c, ic)
428 * is called to remove xrefs related to obsolete inode when inode is unlinked.
429 * jffs2_xattr_free_inode(c, ic)
430 * is called to release xattr related objects when unmounting.
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900431 * check_xattr_ref_inode(c, ic)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900432 * is used to confirm inode does not have duplicate xattr name/value pair.
433 * -------------------------------------------------- */
434static int verify_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
435{
436 struct jffs2_eraseblock *jeb;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900437 struct jffs2_raw_node_ref *raw;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900438 struct jffs2_raw_xref rr;
439 size_t readlen;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900440 uint32_t crc, offset, totlen;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900441 int rc;
442
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900443 spin_lock(&c->erase_completion_lock);
444 if (ref_flags(ref->node) != REF_UNCHECKED)
445 goto complete;
446 offset = ref_offset(ref->node);
447 spin_unlock(&c->erase_completion_lock);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900448
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900449 rc = jffs2_flash_read(c, offset, sizeof(rr), &readlen, (char *)&rr);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900450 if (rc || sizeof(rr) != readlen) {
David Woodhouse89291a92006-05-25 13:30:24 +0100451 JFFS2_WARNING("jffs2_flash_read()=%d, req=%zu, read=%zu, at %#08x\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900452 rc, sizeof(rr), readlen, offset);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900453 return rc ? rc : -EIO;
454 }
455 /* obsolete node */
456 crc = crc32(0, &rr, sizeof(rr) - 4);
457 if (crc != je32_to_cpu(rr.node_crc)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900458 JFFS2_ERROR("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
459 offset, je32_to_cpu(rr.node_crc), crc);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900460 return EIO;
461 }
462 if (je16_to_cpu(rr.magic) != JFFS2_MAGIC_BITMASK
463 || je16_to_cpu(rr.nodetype) != JFFS2_NODETYPE_XREF
464 || je32_to_cpu(rr.totlen) != PAD(sizeof(rr))) {
465 JFFS2_ERROR("inconsistent xref at %#08x, magic=%#04x/%#04x, "
David Woodhouse89291a92006-05-25 13:30:24 +0100466 "nodetype=%#04x/%#04x, totlen=%u/%zu\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900467 offset, je16_to_cpu(rr.magic), JFFS2_MAGIC_BITMASK,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900468 je16_to_cpu(rr.nodetype), JFFS2_NODETYPE_XREF,
469 je32_to_cpu(rr.totlen), PAD(sizeof(rr)));
470 return EIO;
471 }
472 ref->ino = je32_to_cpu(rr.ino);
473 ref->xid = je32_to_cpu(rr.xid);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900474 ref->xseqno = je32_to_cpu(rr.xseqno);
475 if (ref->xseqno > c->highest_xseqno)
476 c->highest_xseqno = (ref->xseqno & ~XREF_DELETE_MARKER);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900477
478 spin_lock(&c->erase_completion_lock);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900479 complete:
480 for (raw=ref->node; raw != (void *)ref; raw=raw->next_in_ino) {
481 jeb = &c->blocks[ref_offset(raw) / c->sector_size];
482 totlen = PAD(ref_totlen(c, jeb, raw));
483 if (ref_flags(raw) == REF_UNCHECKED) {
484 c->unchecked_size -= totlen; c->used_size += totlen;
485 jeb->unchecked_size -= totlen; jeb->used_size += totlen;
486 }
487 raw->flash_offset = ref_offset(raw) | ((ref->node==raw) ? REF_PRISTINE : REF_NORMAL);
488 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900489 spin_unlock(&c->erase_completion_lock);
490
491 dbg_xattr("success on verifying xref (ino=%u, xid=%u) at %#08x\n",
492 ref->ino, ref->xid, ref_offset(ref->node));
493 return 0;
494}
495
David Woodhouse9fe48542006-05-23 00:38:06 +0100496static int save_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900497{
498 /* must be called under down_write(xattr_sem) */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900499 struct jffs2_raw_xref rr;
David Woodhouse89291a92006-05-25 13:30:24 +0100500 size_t length;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900501 uint32_t xseqno, phys_ofs = write_ofs(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900502 int ret;
503
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900504 rr.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
505 rr.nodetype = cpu_to_je16(JFFS2_NODETYPE_XREF);
506 rr.totlen = cpu_to_je32(PAD(sizeof(rr)));
507 rr.hdr_crc = cpu_to_je32(crc32(0, &rr, sizeof(struct jffs2_unknown_node) - 4));
508
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900509 xseqno = (c->highest_xseqno += 2);
510 if (is_xattr_ref_dead(ref)) {
511 xseqno |= XREF_DELETE_MARKER;
512 rr.ino = cpu_to_je32(ref->ino);
513 rr.xid = cpu_to_je32(ref->xid);
514 } else {
515 rr.ino = cpu_to_je32(ref->ic->ino);
516 rr.xid = cpu_to_je32(ref->xd->xid);
517 }
518 rr.xseqno = cpu_to_je32(xseqno);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900519 rr.node_crc = cpu_to_je32(crc32(0, &rr, sizeof(rr) - 4));
520
521 ret = jffs2_flash_write(c, phys_ofs, sizeof(rr), &length, (char *)&rr);
522 if (ret || sizeof(rr) != length) {
David Woodhouse89291a92006-05-25 13:30:24 +0100523 JFFS2_WARNING("jffs2_flash_write() returned %d, request=%zu, retlen=%zu, at %#08x\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900524 ret, sizeof(rr), length, phys_ofs);
525 ret = ret ? ret : -EIO;
David Woodhouse2f785402006-05-24 02:04:45 +0100526 if (length)
527 jffs2_add_physical_node_ref(c, phys_ofs | REF_OBSOLETE, PAD(sizeof(rr)), NULL);
528
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900529 return ret;
530 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900531 /* success */
532 ref->xseqno = xseqno;
533 jffs2_add_physical_node_ref(c, phys_ofs | REF_PRISTINE, PAD(sizeof(rr)), (void *)ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900534
535 dbg_xattr("success on saving xref (ino=%u, xid=%u)\n", ref->ic->ino, ref->xd->xid);
536
537 return 0;
538}
539
540static struct jffs2_xattr_ref *create_xattr_ref(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic,
David Woodhouse9fe48542006-05-23 00:38:06 +0100541 struct jffs2_xattr_datum *xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900542{
543 /* must be called under down_write(xattr_sem) */
544 struct jffs2_xattr_ref *ref;
545 int ret;
546
547 ref = jffs2_alloc_xattr_ref();
548 if (!ref)
549 return ERR_PTR(-ENOMEM);
550 ref->ic = ic;
551 ref->xd = xd;
552
David Woodhouse9fe48542006-05-23 00:38:06 +0100553 ret = save_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900554 if (ret) {
555 jffs2_free_xattr_ref(ref);
556 return ERR_PTR(ret);
557 }
558
559 /* Chain to inode */
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900560 ref->next = ic->xref;
561 ic->xref = ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900562
563 return ref; /* success */
564}
565
KaiGai Kohei8a136952006-06-24 09:14:13 +0900566static void delete_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900567{
568 /* must be called under down_write(xattr_sem) */
569 struct jffs2_xattr_datum *xd;
570
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900571 xd = ref->xd;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900572 ref->xseqno |= XREF_DELETE_MARKER;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900573 ref->ino = ref->ic->ino;
574 ref->xid = ref->xd->xid;
575 spin_lock(&c->erase_completion_lock);
576 ref->next = c->xref_dead_list;
577 c->xref_dead_list = ref;
578 spin_unlock(&c->erase_completion_lock);
579
KaiGai Kohei8a136952006-06-24 09:14:13 +0900580 dbg_xattr("xref(ino=%u, xid=%u, xseqno=%u) was removed.\n",
581 ref->ino, ref->xid, ref->xseqno);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900582
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900583 if (atomic_dec_and_test(&xd->refcnt))
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900584 delete_xattr_datum(c, xd);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900585}
586
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900587void jffs2_xattr_delete_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
588{
589 /* It's called from jffs2_clear_inode() on inode removing.
590 When an inode with XATTR is removed, those XATTRs must be removed. */
KaiGai Kohei8a136952006-06-24 09:14:13 +0900591 struct jffs2_xattr_ref *ref, *_ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900592
593 if (!ic || ic->nlink > 0)
594 return;
595
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900596 down_write(&c->xattr_sem);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900597 for (ref = ic->xref; ref; ref = _ref) {
598 _ref = ref->next;
599 delete_xattr_ref(c, ref);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900600 }
KaiGai Kohei8a136952006-06-24 09:14:13 +0900601 ic->xref = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900602 up_write(&c->xattr_sem);
603}
604
605void jffs2_xattr_free_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
606{
607 /* It's called from jffs2_free_ino_caches() until unmounting FS. */
608 struct jffs2_xattr_datum *xd;
609 struct jffs2_xattr_ref *ref, *_ref;
610
611 down_write(&c->xattr_sem);
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900612 for (ref = ic->xref; ref; ref = _ref) {
613 _ref = ref->next;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900614 xd = ref->xd;
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900615 if (atomic_dec_and_test(&xd->refcnt)) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900616 unload_xattr_datum(c, xd);
617 jffs2_free_xattr_datum(xd);
618 }
619 jffs2_free_xattr_ref(ref);
620 }
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900621 ic->xref = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900622 up_write(&c->xattr_sem);
623}
624
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900625static int check_xattr_ref_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900626{
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900627 /* success of check_xattr_ref_inode() means taht inode (ic) dose not have
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900628 * duplicate name/value pairs. If duplicate name/value pair would be found,
629 * one will be removed.
630 */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900631 struct jffs2_xattr_ref *ref, *cmp, **pref, **pcmp;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900632 int rc = 0;
633
634 if (likely(ic->flags & INO_FLAGS_XATTR_CHECKED))
635 return 0;
636 down_write(&c->xattr_sem);
637 retry:
638 rc = 0;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900639 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900640 if (!ref->xd->xname) {
641 rc = load_xattr_datum(c, ref->xd);
642 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900643 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900644 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900645 goto retry;
646 } else if (unlikely(rc < 0))
647 goto out;
648 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900649 for (cmp=ref->next, pcmp=&ref->next; cmp; pcmp=&cmp->next, cmp=cmp->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900650 if (!cmp->xd->xname) {
651 ref->xd->flags |= JFFS2_XFLAGS_BIND;
652 rc = load_xattr_datum(c, cmp->xd);
653 ref->xd->flags &= ~JFFS2_XFLAGS_BIND;
654 if (unlikely(rc > 0)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900655 *pcmp = cmp->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900656 delete_xattr_ref(c, cmp);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900657 goto retry;
658 } else if (unlikely(rc < 0))
659 goto out;
660 }
661 if (ref->xd->xprefix == cmp->xd->xprefix
662 && !strcmp(ref->xd->xname, cmp->xd->xname)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900663 if (ref->xseqno > cmp->xseqno) {
664 *pcmp = cmp->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900665 delete_xattr_ref(c, cmp);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900666 } else {
667 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900668 delete_xattr_ref(c, ref);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900669 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900670 goto retry;
671 }
672 }
673 }
674 ic->flags |= INO_FLAGS_XATTR_CHECKED;
675 out:
676 up_write(&c->xattr_sem);
677
678 return rc;
679}
680
681/* -------- xattr subsystem functions ---------------
682 * jffs2_init_xattr_subsystem(c)
683 * is used to initialize semaphore and list_head, and some variables.
684 * jffs2_find_xattr_datum(c, xid)
685 * is used to lookup xdatum while scanning process.
686 * jffs2_clear_xattr_subsystem(c)
687 * is used to release any xattr related objects.
688 * jffs2_build_xattr_subsystem(c)
689 * is used to associate xdatum and xref while super block building process.
690 * jffs2_setup_xattr_datum(c, xid, version)
691 * is used to insert xdatum while scanning process.
692 * -------------------------------------------------- */
693void jffs2_init_xattr_subsystem(struct jffs2_sb_info *c)
694{
695 int i;
696
697 for (i=0; i < XATTRINDEX_HASHSIZE; i++)
698 INIT_LIST_HEAD(&c->xattrindex[i]);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900699 INIT_LIST_HEAD(&c->xattr_unchecked);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900700 INIT_LIST_HEAD(&c->xattr_dead_list);
701 c->xref_dead_list = NULL;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900702 c->xref_temp = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900703
704 init_rwsem(&c->xattr_sem);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900705 c->highest_xid = 0;
706 c->highest_xseqno = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900707 c->xdatum_mem_usage = 0;
708 c->xdatum_mem_threshold = 32 * 1024; /* Default 32KB */
709}
710
711static struct jffs2_xattr_datum *jffs2_find_xattr_datum(struct jffs2_sb_info *c, uint32_t xid)
712{
713 struct jffs2_xattr_datum *xd;
714 int i = xid % XATTRINDEX_HASHSIZE;
715
716 /* It's only used in scanning/building process. */
717 BUG_ON(!(c->flags & (JFFS2_SB_FLAG_SCANNING|JFFS2_SB_FLAG_BUILDING)));
718
719 list_for_each_entry(xd, &c->xattrindex[i], xindex) {
720 if (xd->xid==xid)
721 return xd;
722 }
723 return NULL;
724}
725
726void jffs2_clear_xattr_subsystem(struct jffs2_sb_info *c)
727{
728 struct jffs2_xattr_datum *xd, *_xd;
729 struct jffs2_xattr_ref *ref, *_ref;
730 int i;
731
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900732 for (ref=c->xref_temp; ref; ref = _ref) {
733 _ref = ref->next;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900734 jffs2_free_xattr_ref(ref);
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900735 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900736
737 for (ref=c->xref_dead_list; ref; ref = _ref) {
738 _ref = ref->next;
739 jffs2_free_xattr_ref(ref);
740 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900741
742 for (i=0; i < XATTRINDEX_HASHSIZE; i++) {
743 list_for_each_entry_safe(xd, _xd, &c->xattrindex[i], xindex) {
744 list_del(&xd->xindex);
745 if (xd->xname)
746 kfree(xd->xname);
747 jffs2_free_xattr_datum(xd);
748 }
749 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900750
751 list_for_each_entry_safe(xd, _xd, &c->xattr_dead_list, xindex) {
752 list_del(&xd->xindex);
753 jffs2_free_xattr_datum(xd);
754 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900755}
756
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900757#define XREF_TMPHASH_SIZE (128)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900758void jffs2_build_xattr_subsystem(struct jffs2_sb_info *c)
759{
760 struct jffs2_xattr_ref *ref, *_ref;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900761 struct jffs2_xattr_ref *xref_tmphash[XREF_TMPHASH_SIZE];
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900762 struct jffs2_xattr_datum *xd, *_xd;
763 struct jffs2_inode_cache *ic;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900764 struct jffs2_raw_node_ref *raw;
765 int i, xdatum_count = 0, xdatum_unchecked_count = 0, xref_count = 0;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900766 int xdatum_orphan_count = 0, xref_orphan_count = 0, xref_dead_count = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900767
768 BUG_ON(!(c->flags & JFFS2_SB_FLAG_BUILDING));
769
KaiGai Kohei8a136952006-06-24 09:14:13 +0900770 /* Phase.1 : Merge same xref */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900771 for (i=0; i < XREF_TMPHASH_SIZE; i++)
772 xref_tmphash[i] = NULL;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900773 for (ref=c->xref_temp; ref; ref=_ref) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900774 struct jffs2_xattr_ref *tmp;
775
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900776 _ref = ref->next;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900777 if (ref_flags(ref->node) != REF_PRISTINE) {
778 if (verify_xattr_ref(c, ref)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900779 BUG_ON(ref->node->next_in_ino != (void *)ref);
780 ref->node->next_in_ino = NULL;
781 jffs2_mark_node_obsolete(c, ref->node);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900782 jffs2_free_xattr_ref(ref);
783 continue;
784 }
785 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900786
787 i = (ref->ino ^ ref->xid) % XREF_TMPHASH_SIZE;
788 for (tmp=xref_tmphash[i]; tmp; tmp=tmp->next) {
789 if (tmp->ino == ref->ino && tmp->xid == ref->xid)
790 break;
791 }
792 if (tmp) {
793 raw = ref->node;
794 if (ref->xseqno > tmp->xseqno) {
795 tmp->xseqno = ref->xseqno;
796 raw->next_in_ino = tmp->node;
797 tmp->node = raw;
798 } else {
799 raw->next_in_ino = tmp->node->next_in_ino;
800 tmp->node->next_in_ino = raw;
801 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900802 jffs2_free_xattr_ref(ref);
803 continue;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900804 } else {
805 ref->next = xref_tmphash[i];
806 xref_tmphash[i] = ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900807 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900808 }
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900809 c->xref_temp = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900810
KaiGai Kohei8a136952006-06-24 09:14:13 +0900811 /* Phase.2 : Bind xref with inode_cache and xattr_datum */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900812 for (i=0; i < XREF_TMPHASH_SIZE; i++) {
813 for (ref=xref_tmphash[i]; ref; ref=_ref) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900814 xref_count++;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900815 _ref = ref->next;
816 if (is_xattr_ref_dead(ref)) {
817 ref->next = c->xref_dead_list;
818 c->xref_dead_list = ref;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900819 xref_dead_count++;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900820 continue;
821 }
822 /* At this point, ref->xid and ref->ino contain XID and inode number.
823 ref->xd and ref->ic are not valid yet. */
824 xd = jffs2_find_xattr_datum(c, ref->xid);
825 ic = jffs2_get_ino_cache(c, ref->ino);
826 if (!xd || !ic) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900827 dbg_xattr("xref(ino=%u, xid=%u, xseqno=%u) is orphan.\n",
828 ref->ino, ref->xid, ref->xseqno);
829 ref->xseqno |= XREF_DELETE_MARKER;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900830 ref->next = c->xref_dead_list;
831 c->xref_dead_list = ref;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900832 xref_orphan_count++;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900833 continue;
834 }
835 ref->xd = xd;
836 ref->ic = ic;
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900837 atomic_inc(&xd->refcnt);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900838 ref->next = ic->xref;
839 ic->xref = ref;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900840 }
841 }
842
KaiGai Kohei8a136952006-06-24 09:14:13 +0900843 /* Phase.3 : Link unchecked xdatum to xattr_unchecked list */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900844 for (i=0; i < XATTRINDEX_HASHSIZE; i++) {
845 list_for_each_entry_safe(xd, _xd, &c->xattrindex[i], xindex) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900846 xdatum_count++;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900847 list_del_init(&xd->xindex);
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900848 if (!atomic_read(&xd->refcnt)) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900849 dbg_xattr("xdatum(xid=%u, version=%u) is orphan.\n",
850 xd->xid, xd->version);
851 xd->flags |= JFFS2_XFLAGS_DEAD;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900852 list_add(&xd->xindex, &c->xattr_unchecked);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900853 xdatum_orphan_count++;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900854 continue;
855 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900856 if (is_xattr_datum_unchecked(c, xd)) {
857 dbg_xattr("unchecked xdatum(xid=%u, version=%u)\n",
858 xd->xid, xd->version);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900859 list_add(&xd->xindex, &c->xattr_unchecked);
860 xdatum_unchecked_count++;
861 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900862 }
863 }
864 /* build complete */
KaiGai Kohei8a136952006-06-24 09:14:13 +0900865 JFFS2_NOTICE("complete building xattr subsystem, %u of xdatum"
866 " (%u unchecked, %u orphan) and "
867 "%u of xref (%u dead, %u orphan) found.\n",
868 xdatum_count, xdatum_unchecked_count, xdatum_orphan_count,
869 xref_count, xref_dead_count, xref_orphan_count);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900870}
871
872struct jffs2_xattr_datum *jffs2_setup_xattr_datum(struct jffs2_sb_info *c,
873 uint32_t xid, uint32_t version)
874{
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900875 struct jffs2_xattr_datum *xd;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900876
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900877 xd = jffs2_find_xattr_datum(c, xid);
878 if (!xd) {
879 xd = jffs2_alloc_xattr_datum();
880 if (!xd)
881 return ERR_PTR(-ENOMEM);
882 xd->xid = xid;
883 xd->version = version;
884 if (xd->xid > c->highest_xid)
885 c->highest_xid = xd->xid;
886 list_add_tail(&xd->xindex, &c->xattrindex[xid % XATTRINDEX_HASHSIZE]);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900887 }
888 return xd;
889}
890
891/* -------- xattr subsystem functions ---------------
892 * xprefix_to_handler(xprefix)
893 * is used to translate xprefix into xattr_handler.
894 * jffs2_listxattr(dentry, buffer, size)
895 * is an implementation of listxattr handler on jffs2.
896 * do_jffs2_getxattr(inode, xprefix, xname, buffer, size)
897 * is an implementation of getxattr handler on jffs2.
898 * do_jffs2_setxattr(inode, xprefix, xname, buffer, size, flags)
899 * is an implementation of setxattr handler on jffs2.
900 * -------------------------------------------------- */
901struct xattr_handler *jffs2_xattr_handlers[] = {
902 &jffs2_user_xattr_handler,
903#ifdef CONFIG_JFFS2_FS_SECURITY
904 &jffs2_security_xattr_handler,
905#endif
906#ifdef CONFIG_JFFS2_FS_POSIX_ACL
907 &jffs2_acl_access_xattr_handler,
908 &jffs2_acl_default_xattr_handler,
909#endif
910 &jffs2_trusted_xattr_handler,
911 NULL
912};
913
914static struct xattr_handler *xprefix_to_handler(int xprefix) {
915 struct xattr_handler *ret;
916
917 switch (xprefix) {
918 case JFFS2_XPREFIX_USER:
919 ret = &jffs2_user_xattr_handler;
920 break;
921#ifdef CONFIG_JFFS2_FS_SECURITY
922 case JFFS2_XPREFIX_SECURITY:
923 ret = &jffs2_security_xattr_handler;
924 break;
925#endif
926#ifdef CONFIG_JFFS2_FS_POSIX_ACL
927 case JFFS2_XPREFIX_ACL_ACCESS:
928 ret = &jffs2_acl_access_xattr_handler;
929 break;
930 case JFFS2_XPREFIX_ACL_DEFAULT:
931 ret = &jffs2_acl_default_xattr_handler;
932 break;
933#endif
934 case JFFS2_XPREFIX_TRUSTED:
935 ret = &jffs2_trusted_xattr_handler;
936 break;
937 default:
938 ret = NULL;
939 break;
940 }
941 return ret;
942}
943
944ssize_t jffs2_listxattr(struct dentry *dentry, char *buffer, size_t size)
945{
946 struct inode *inode = dentry->d_inode;
947 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
948 struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
949 struct jffs2_inode_cache *ic = f->inocache;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900950 struct jffs2_xattr_ref *ref, **pref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900951 struct jffs2_xattr_datum *xd;
952 struct xattr_handler *xhandle;
953 ssize_t len, rc;
954 int retry = 0;
955
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900956 rc = check_xattr_ref_inode(c, ic);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900957 if (unlikely(rc))
958 return rc;
959
960 down_read(&c->xattr_sem);
961 retry:
962 len = 0;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900963 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900964 BUG_ON(ref->ic != ic);
965 xd = ref->xd;
966 if (!xd->xname) {
967 /* xdatum is unchached */
968 if (!retry) {
969 retry = 1;
970 up_read(&c->xattr_sem);
971 down_write(&c->xattr_sem);
972 goto retry;
973 } else {
974 rc = load_xattr_datum(c, xd);
975 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900976 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900977 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900978 goto retry;
979 } else if (unlikely(rc < 0))
980 goto out;
981 }
982 }
983 xhandle = xprefix_to_handler(xd->xprefix);
984 if (!xhandle)
985 continue;
986 if (buffer) {
987 rc = xhandle->list(inode, buffer+len, size-len, xd->xname, xd->name_len);
988 } else {
989 rc = xhandle->list(inode, NULL, 0, xd->xname, xd->name_len);
990 }
991 if (rc < 0)
992 goto out;
993 len += rc;
994 }
995 rc = len;
996 out:
997 if (!retry) {
998 up_read(&c->xattr_sem);
999 } else {
1000 up_write(&c->xattr_sem);
1001 }
1002 return rc;
1003}
1004
1005int do_jffs2_getxattr(struct inode *inode, int xprefix, const char *xname,
1006 char *buffer, size_t size)
1007{
1008 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
1009 struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
1010 struct jffs2_inode_cache *ic = f->inocache;
1011 struct jffs2_xattr_datum *xd;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001012 struct jffs2_xattr_ref *ref, **pref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001013 int rc, retry = 0;
1014
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001015 rc = check_xattr_ref_inode(c, ic);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001016 if (unlikely(rc))
1017 return rc;
1018
1019 down_read(&c->xattr_sem);
1020 retry:
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001021 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001022 BUG_ON(ref->ic!=ic);
1023
1024 xd = ref->xd;
1025 if (xd->xprefix != xprefix)
1026 continue;
1027 if (!xd->xname) {
1028 /* xdatum is unchached */
1029 if (!retry) {
1030 retry = 1;
1031 up_read(&c->xattr_sem);
1032 down_write(&c->xattr_sem);
1033 goto retry;
1034 } else {
1035 rc = load_xattr_datum(c, xd);
1036 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001037 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +09001038 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001039 goto retry;
1040 } else if (unlikely(rc < 0)) {
1041 goto out;
1042 }
1043 }
1044 }
1045 if (!strcmp(xname, xd->xname)) {
1046 rc = xd->value_len;
1047 if (buffer) {
1048 if (size < rc) {
1049 rc = -ERANGE;
1050 } else {
1051 memcpy(buffer, xd->xvalue, rc);
1052 }
1053 }
1054 goto out;
1055 }
1056 }
1057 rc = -ENODATA;
1058 out:
1059 if (!retry) {
1060 up_read(&c->xattr_sem);
1061 } else {
1062 up_write(&c->xattr_sem);
1063 }
1064 return rc;
1065}
1066
1067int do_jffs2_setxattr(struct inode *inode, int xprefix, const char *xname,
1068 const char *buffer, size_t size, int flags)
1069{
1070 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
1071 struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
1072 struct jffs2_inode_cache *ic = f->inocache;
1073 struct jffs2_xattr_datum *xd;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001074 struct jffs2_xattr_ref *ref, *newref, **pref;
David Woodhouse9fe48542006-05-23 00:38:06 +01001075 uint32_t length, request;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001076 int rc;
1077
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001078 rc = check_xattr_ref_inode(c, ic);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001079 if (unlikely(rc))
1080 return rc;
1081
1082 request = PAD(sizeof(struct jffs2_raw_xattr) + strlen(xname) + 1 + size);
David Woodhouse9fe48542006-05-23 00:38:06 +01001083 rc = jffs2_reserve_space(c, request, &length,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001084 ALLOC_NORMAL, JFFS2_SUMMARY_XATTR_SIZE);
1085 if (rc) {
1086 JFFS2_WARNING("jffs2_reserve_space()=%d, request=%u\n", rc, request);
1087 return rc;
1088 }
1089
1090 /* Find existing xattr */
1091 down_write(&c->xattr_sem);
1092 retry:
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001093 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001094 xd = ref->xd;
1095 if (xd->xprefix != xprefix)
1096 continue;
1097 if (!xd->xname) {
1098 rc = load_xattr_datum(c, xd);
1099 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001100 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +09001101 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001102 goto retry;
1103 } else if (unlikely(rc < 0))
1104 goto out;
1105 }
1106 if (!strcmp(xd->xname, xname)) {
1107 if (flags & XATTR_CREATE) {
1108 rc = -EEXIST;
1109 goto out;
1110 }
1111 if (!buffer) {
KaiGai Kohei8a136952006-06-24 09:14:13 +09001112 ref->ino = ic->ino;
1113 ref->xid = xd->xid;
1114 ref->xseqno |= XREF_DELETE_MARKER;
1115 rc = save_xattr_ref(c, ref);
1116 if (!rc) {
1117 *pref = ref->next;
1118 spin_lock(&c->erase_completion_lock);
1119 ref->next = c->xref_dead_list;
1120 c->xref_dead_list = ref;
1121 spin_unlock(&c->erase_completion_lock);
KaiGai Kohei2c887e22006-06-24 09:16:50 +09001122 if (atomic_dec_and_test(&xd->refcnt))
KaiGai Kohei8a136952006-06-24 09:14:13 +09001123 delete_xattr_datum(c, xd);
1124 } else {
1125 ref->ic = ic;
1126 ref->xd = xd;
1127 ref->xseqno &= ~XREF_DELETE_MARKER;
1128 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001129 goto out;
1130 }
1131 goto found;
1132 }
1133 }
1134 /* not found */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001135 if (flags & XATTR_REPLACE) {
1136 rc = -ENODATA;
1137 goto out;
1138 }
1139 if (!buffer) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001140 rc = -ENODATA;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001141 goto out;
1142 }
1143 found:
David Woodhouse9fe48542006-05-23 00:38:06 +01001144 xd = create_xattr_datum(c, xprefix, xname, buffer, size);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001145 if (IS_ERR(xd)) {
1146 rc = PTR_ERR(xd);
1147 goto out;
1148 }
1149 up_write(&c->xattr_sem);
1150 jffs2_complete_reservation(c);
1151
1152 /* create xattr_ref */
1153 request = PAD(sizeof(struct jffs2_raw_xref));
David Woodhouse9fe48542006-05-23 00:38:06 +01001154 rc = jffs2_reserve_space(c, request, &length,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001155 ALLOC_NORMAL, JFFS2_SUMMARY_XREF_SIZE);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001156 down_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001157 if (rc) {
1158 JFFS2_WARNING("jffs2_reserve_space()=%d, request=%u\n", rc, request);
KaiGai Kohei2c887e22006-06-24 09:16:50 +09001159 if (atomic_dec_and_test(&xd->refcnt))
KaiGai Kohei8a136952006-06-24 09:14:13 +09001160 delete_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001161 up_write(&c->xattr_sem);
1162 return rc;
1163 }
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001164 if (ref)
1165 *pref = ref->next;
David Woodhouse9fe48542006-05-23 00:38:06 +01001166 newref = create_xattr_ref(c, ic, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001167 if (IS_ERR(newref)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001168 if (ref) {
1169 ref->next = ic->xref;
1170 ic->xref = ref;
1171 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001172 rc = PTR_ERR(newref);
KaiGai Kohei2c887e22006-06-24 09:16:50 +09001173 if (atomic_dec_and_test(&xd->refcnt))
KaiGai Kohei8a136952006-06-24 09:14:13 +09001174 delete_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001175 } else if (ref) {
KaiGai Kohei8a136952006-06-24 09:14:13 +09001176 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001177 }
1178 out:
1179 up_write(&c->xattr_sem);
1180 jffs2_complete_reservation(c);
1181 return rc;
1182}
1183
1184/* -------- garbage collector functions -------------
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001185 * jffs2_garbage_collect_xattr_datum(c, xd, raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001186 * is used to move xdatum into new node.
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001187 * jffs2_garbage_collect_xattr_ref(c, ref, raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001188 * is used to move xref into new node.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001189 * jffs2_verify_xattr(c)
1190 * is used to call do_verify_xattr_datum() before garbage collecting.
KaiGai Kohei8a136952006-06-24 09:14:13 +09001191 * jffs2_release_xattr_datum(c, xd)
1192 * is used to release an in-memory object of xdatum.
1193 * jffs2_release_xattr_ref(c, ref)
1194 * is used to release an in-memory object of xref.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001195 * -------------------------------------------------- */
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001196int jffs2_garbage_collect_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd,
1197 struct jffs2_raw_node_ref *raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001198{
David Woodhouse9fe48542006-05-23 00:38:06 +01001199 uint32_t totlen, length, old_ofs;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001200 int rc = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001201
KaiGai Kohei084702e2006-05-13 15:16:13 +09001202 down_write(&c->xattr_sem);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001203 if (xd->node != raw)
1204 goto out;
KaiGai Kohei8a136952006-06-24 09:14:13 +09001205 if (xd->flags & (JFFS2_XFLAGS_DEAD|JFFS2_XFLAGS_INVALID))
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001206 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001207
KaiGai Kohei8a136952006-06-24 09:14:13 +09001208 rc = load_xattr_datum(c, xd);
1209 if (unlikely(rc)) {
1210 rc = (rc > 0) ? 0 : rc;
1211 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001212 }
KaiGai Kohei8a136952006-06-24 09:14:13 +09001213 old_ofs = ref_offset(xd->node);
1214 totlen = PAD(sizeof(struct jffs2_raw_xattr)
1215 + xd->name_len + 1 + xd->value_len);
David Woodhouse9fe48542006-05-23 00:38:06 +01001216 rc = jffs2_reserve_space_gc(c, totlen, &length, JFFS2_SUMMARY_XATTR_SIZE);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001217 if (rc) {
1218 JFFS2_WARNING("jffs2_reserve_space_gc()=%d, request=%u\n", rc, totlen);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001219 rc = rc ? rc : -EBADFD;
1220 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001221 }
David Woodhouse9fe48542006-05-23 00:38:06 +01001222 rc = save_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001223 if (!rc)
1224 dbg_xattr("xdatum (xid=%u, version=%u) GC'ed from %#08x to %08x\n",
1225 xd->xid, xd->version, old_ofs, ref_offset(xd->node));
KaiGai Kohei084702e2006-05-13 15:16:13 +09001226 out:
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001227 if (!rc)
1228 jffs2_mark_node_obsolete(c, raw);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001229 up_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001230 return rc;
1231}
1232
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001233int jffs2_garbage_collect_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref,
1234 struct jffs2_raw_node_ref *raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001235{
David Woodhouse9fe48542006-05-23 00:38:06 +01001236 uint32_t totlen, length, old_ofs;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001237 int rc = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001238
KaiGai Kohei084702e2006-05-13 15:16:13 +09001239 down_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001240 BUG_ON(!ref->node);
1241
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001242 if (ref->node != raw)
1243 goto out;
1244 if (is_xattr_ref_dead(ref) && (raw->next_in_ino == (void *)ref))
KaiGai Kohei084702e2006-05-13 15:16:13 +09001245 goto out;
1246
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001247 old_ofs = ref_offset(ref->node);
1248 totlen = ref_totlen(c, c->gcblock, ref->node);
1249
David Woodhouse9fe48542006-05-23 00:38:06 +01001250 rc = jffs2_reserve_space_gc(c, totlen, &length, JFFS2_SUMMARY_XREF_SIZE);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001251 if (rc) {
1252 JFFS2_WARNING("%s: jffs2_reserve_space_gc() = %d, request = %u\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001253 __FUNCTION__, rc, totlen);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001254 rc = rc ? rc : -EBADFD;
1255 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001256 }
David Woodhouse9fe48542006-05-23 00:38:06 +01001257 rc = save_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001258 if (!rc)
1259 dbg_xattr("xref (ino=%u, xid=%u) GC'ed from %#08x to %08x\n",
1260 ref->ic->ino, ref->xd->xid, old_ofs, ref_offset(ref->node));
KaiGai Kohei084702e2006-05-13 15:16:13 +09001261 out:
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001262 if (!rc)
1263 jffs2_mark_node_obsolete(c, raw);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001264 up_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001265 return rc;
1266}
1267
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001268int jffs2_verify_xattr(struct jffs2_sb_info *c)
1269{
1270 struct jffs2_xattr_datum *xd, *_xd;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001271 struct jffs2_eraseblock *jeb;
1272 struct jffs2_raw_node_ref *raw;
1273 uint32_t totlen;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001274 int rc;
1275
1276 down_write(&c->xattr_sem);
1277 list_for_each_entry_safe(xd, _xd, &c->xattr_unchecked, xindex) {
1278 rc = do_verify_xattr_datum(c, xd);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001279 if (rc < 0)
1280 continue;
1281 list_del_init(&xd->xindex);
1282 spin_lock(&c->erase_completion_lock);
1283 for (raw=xd->node; raw != (void *)xd; raw=raw->next_in_ino) {
1284 if (ref_flags(raw) != REF_UNCHECKED)
1285 continue;
1286 jeb = &c->blocks[ref_offset(raw) / c->sector_size];
1287 totlen = PAD(ref_totlen(c, jeb, raw));
1288 c->unchecked_size -= totlen; c->used_size += totlen;
1289 jeb->unchecked_size -= totlen; jeb->used_size += totlen;
1290 raw->flash_offset = ref_offset(raw)
1291 | ((xd->node == (void *)raw) ? REF_PRISTINE : REF_NORMAL);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001292 }
KaiGai Kohei8a136952006-06-24 09:14:13 +09001293 if (xd->flags & JFFS2_XFLAGS_DEAD)
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001294 list_add(&xd->xindex, &c->xattr_dead_list);
1295 spin_unlock(&c->erase_completion_lock);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001296 }
1297 up_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001298 return list_empty(&c->xattr_unchecked) ? 1 : 0;
1299}
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001300
1301void jffs2_release_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
1302{
1303 /* must be called under spin_lock(&c->erase_completion_lock) */
KaiGai Kohei2c887e22006-06-24 09:16:50 +09001304 if (atomic_read(&xd->refcnt) || xd->node != (void *)xd)
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001305 return;
1306
1307 list_del(&xd->xindex);
1308 jffs2_free_xattr_datum(xd);
1309}
1310
1311void jffs2_release_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
1312{
1313 /* must be called under spin_lock(&c->erase_completion_lock) */
1314 struct jffs2_xattr_ref *tmp, **ptmp;
1315
1316 if (ref->node != (void *)ref)
1317 return;
1318
1319 for (tmp=c->xref_dead_list, ptmp=&c->xref_dead_list; tmp; ptmp=&tmp->next, tmp=tmp->next) {
1320 if (ref == tmp) {
1321 *ptmp = tmp->next;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001322 break;
1323 }
1324 }
KaiGai Kohei8a136952006-06-24 09:14:13 +09001325 jffs2_free_xattr_ref(ref);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001326}