blob: d72817ac51f646e50ea2e6e867a5252b540eb428 [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 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 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 */
David Woodhousec00c3102007-04-25 14:16:47 +010011
Joe Perches9bbf29e2012-02-15 15:56:46 -080012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +020014#define JFFS2_XATTR_IS_CORRUPTED 1
15
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090016#include <linux/kernel.h>
17#include <linux/slab.h>
18#include <linux/fs.h>
19#include <linux/time.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/crc32.h>
23#include <linux/jffs2.h>
24#include <linux/xattr.h>
Christoph Hellwigf2963d42013-12-20 05:16:47 -080025#include <linux/posix_acl_xattr.h>
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090026#include <linux/mtd/mtd.h>
27#include "nodelist.h"
28/* -------- xdatum related functions ----------------
29 * xattr_datum_hashkey(xprefix, xname, xvalue, xsize)
30 * is used to calcurate xdatum hashkey. The reminder of hashkey into XATTRINDEX_HASHSIZE is
31 * the index of the xattr name/value pair cache (c->xattrindex).
KaiGai Koheic9f700f2006-06-11 10:35:15 +090032 * is_xattr_datum_unchecked(c, xd)
33 * returns 1, if xdatum contains any unchecked raw nodes. if all raw nodes are not
34 * unchecked, it returns 0.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090035 * unload_xattr_datum(c, xd)
36 * is used to release xattr name/value pair and detach from c->xattrindex.
37 * reclaim_xattr_datum(c)
38 * is used to reclaim xattr name/value pairs on the xattr name/value pair cache when
Tracey Dentbea93122011-02-26 11:15:13 -050039 * memory usage by cache is over c->xdatum_mem_threshold. Currently, this threshold
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090040 * is hard coded as 32KiB.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090041 * do_verify_xattr_datum(c, xd)
42 * is used to load the xdatum informations without name/value pair from the medium.
43 * It's necessary once, because those informations are not collected during mounting
44 * process when EBS is enabled.
45 * 0 will be returned, if success. An negative return value means recoverable error, and
46 * positive return value means unrecoverable error. Thus, caller must remove this xdatum
47 * and xref when it returned positive value.
48 * do_load_xattr_datum(c, xd)
49 * is used to load name/value pair from the medium.
50 * The meanings of return value is same as do_verify_xattr_datum().
51 * load_xattr_datum(c, xd)
52 * is used to be as a wrapper of do_verify_xattr_datum() and do_load_xattr_datum().
53 * If xd need to call do_verify_xattr_datum() at first, it's called before calling
54 * do_load_xattr_datum(). The meanings of return value is same as do_verify_xattr_datum().
David Woodhouse9fe48542006-05-23 00:38:06 +010055 * save_xattr_datum(c, xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090056 * is used to write xdatum to medium. xd->version will be incremented.
David Woodhouse9fe48542006-05-23 00:38:06 +010057 * create_xattr_datum(c, xprefix, xname, xvalue, xsize)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090058 * is used to create new xdatum and write to medium.
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +010059 * unrefer_xattr_datum(c, xd)
60 * is used to delete a xdatum. When nobody refers this xdatum, JFFS2_XFLAGS_DEAD
61 * is set on xd->flags and chained xattr_dead_list or release it immediately.
62 * In the first case, the garbage collector release it later.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090063 * -------------------------------------------------- */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090064static uint32_t xattr_datum_hashkey(int xprefix, const char *xname, const char *xvalue, int xsize)
65{
66 int name_len = strlen(xname);
67
68 return crc32(xprefix, xname, name_len) ^ crc32(xprefix, xvalue, xsize);
69}
70
KaiGai Koheic9f700f2006-06-11 10:35:15 +090071static int is_xattr_datum_unchecked(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
72{
73 struct jffs2_raw_node_ref *raw;
74 int rc = 0;
75
76 spin_lock(&c->erase_completion_lock);
77 for (raw=xd->node; raw != (void *)xd; raw=raw->next_in_ino) {
78 if (ref_flags(raw) == REF_UNCHECKED) {
79 rc = 1;
80 break;
81 }
82 }
83 spin_unlock(&c->erase_completion_lock);
84 return rc;
85}
86
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090087static void unload_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
88{
89 /* must be called under down_write(xattr_sem) */
Harvey Harrison8e24eea2008-04-30 00:55:09 -070090 D1(dbg_xattr("%s: xid=%u, version=%u\n", __func__, xd->xid, xd->version));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090091 if (xd->xname) {
92 c->xdatum_mem_usage -= (xd->name_len + 1 + xd->value_len);
93 kfree(xd->xname);
94 }
95
96 list_del_init(&xd->xindex);
97 xd->hashkey = 0;
98 xd->xname = NULL;
99 xd->xvalue = NULL;
100}
101
102static void reclaim_xattr_datum(struct jffs2_sb_info *c)
103{
104 /* must be called under down_write(xattr_sem) */
105 struct jffs2_xattr_datum *xd, *_xd;
106 uint32_t target, before;
107 static int index = 0;
108 int count;
109
110 if (c->xdatum_mem_threshold > c->xdatum_mem_usage)
111 return;
112
113 before = c->xdatum_mem_usage;
114 target = c->xdatum_mem_usage * 4 / 5; /* 20% reduction */
115 for (count = 0; count < XATTRINDEX_HASHSIZE; count++) {
116 list_for_each_entry_safe(xd, _xd, &c->xattrindex[index], xindex) {
117 if (xd->flags & JFFS2_XFLAGS_HOT) {
118 xd->flags &= ~JFFS2_XFLAGS_HOT;
119 } else if (!(xd->flags & JFFS2_XFLAGS_BIND)) {
120 unload_xattr_datum(c, xd);
121 }
122 if (c->xdatum_mem_usage <= target)
123 goto out;
124 }
125 index = (index+1) % XATTRINDEX_HASHSIZE;
126 }
127 out:
128 JFFS2_NOTICE("xdatum_mem_usage from %u byte to %u byte (%u byte reclaimed)\n",
129 before, c->xdatum_mem_usage, before - c->xdatum_mem_usage);
130}
131
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900132static int do_verify_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
133{
134 /* must be called under down_write(xattr_sem) */
135 struct jffs2_eraseblock *jeb;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900136 struct jffs2_raw_node_ref *raw;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900137 struct jffs2_raw_xattr rx;
138 size_t readlen;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900139 uint32_t crc, offset, totlen;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900140 int rc;
141
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900142 spin_lock(&c->erase_completion_lock);
143 offset = ref_offset(xd->node);
144 if (ref_flags(xd->node) == REF_PRISTINE)
145 goto complete;
146 spin_unlock(&c->erase_completion_lock);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900147
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900148 rc = jffs2_flash_read(c, offset, sizeof(rx), &readlen, (char *)&rx);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900149 if (rc || readlen != sizeof(rx)) {
David Woodhouse89291a92006-05-25 13:30:24 +0100150 JFFS2_WARNING("jffs2_flash_read()=%d, req=%zu, read=%zu at %#08x\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900151 rc, sizeof(rx), readlen, offset);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900152 return rc ? rc : -EIO;
153 }
154 crc = crc32(0, &rx, sizeof(rx) - 4);
155 if (crc != je32_to_cpu(rx.node_crc)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900156 JFFS2_ERROR("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
157 offset, je32_to_cpu(rx.hdr_crc), crc);
158 xd->flags |= JFFS2_XFLAGS_INVALID;
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200159 return JFFS2_XATTR_IS_CORRUPTED;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900160 }
KaiGai Kohei8a136952006-06-24 09:14:13 +0900161 totlen = PAD(sizeof(rx) + rx.name_len + 1 + je16_to_cpu(rx.value_len));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900162 if (je16_to_cpu(rx.magic) != JFFS2_MAGIC_BITMASK
163 || 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) {
167 JFFS2_ERROR("inconsistent xdatum at %#08x, magic=%#04x/%#04x, "
168 "nodetype=%#04x/%#04x, totlen=%u/%u, xid=%u/%u, version=%u/%u\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900169 offset, je16_to_cpu(rx.magic), JFFS2_MAGIC_BITMASK,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900170 je16_to_cpu(rx.nodetype), JFFS2_NODETYPE_XATTR,
171 je32_to_cpu(rx.totlen), totlen,
172 je32_to_cpu(rx.xid), xd->xid,
173 je32_to_cpu(rx.version), xd->version);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900174 xd->flags |= JFFS2_XFLAGS_INVALID;
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200175 return JFFS2_XATTR_IS_CORRUPTED;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900176 }
177 xd->xprefix = rx.xprefix;
178 xd->name_len = rx.name_len;
179 xd->value_len = je16_to_cpu(rx.value_len);
180 xd->data_crc = je32_to_cpu(rx.data_crc);
181
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900182 spin_lock(&c->erase_completion_lock);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900183 complete:
184 for (raw=xd->node; raw != (void *)xd; raw=raw->next_in_ino) {
185 jeb = &c->blocks[ref_offset(raw) / c->sector_size];
186 totlen = PAD(ref_totlen(c, jeb, raw));
187 if (ref_flags(raw) == REF_UNCHECKED) {
188 c->unchecked_size -= totlen; c->used_size += totlen;
189 jeb->unchecked_size -= totlen; jeb->used_size += totlen;
190 }
191 raw->flash_offset = ref_offset(raw) | ((xd->node==raw) ? REF_PRISTINE : REF_NORMAL);
192 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900193 spin_unlock(&c->erase_completion_lock);
194
195 /* unchecked xdatum is chained with c->xattr_unchecked */
196 list_del_init(&xd->xindex);
197
198 dbg_xattr("success on verfying xdatum (xid=%u, version=%u)\n",
199 xd->xid, xd->version);
200
201 return 0;
202}
203
204static int do_load_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
205{
206 /* must be called under down_write(xattr_sem) */
207 char *data;
208 size_t readlen;
209 uint32_t crc, length;
210 int i, ret, retry = 0;
211
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900212 BUG_ON(ref_flags(xd->node) != REF_PRISTINE);
213 BUG_ON(!list_empty(&xd->xindex));
214 retry:
215 length = xd->name_len + 1 + xd->value_len;
216 data = kmalloc(length, GFP_KERNEL);
217 if (!data)
218 return -ENOMEM;
219
220 ret = jffs2_flash_read(c, ref_offset(xd->node)+sizeof(struct jffs2_raw_xattr),
221 length, &readlen, data);
222
223 if (ret || length!=readlen) {
David Woodhouse89291a92006-05-25 13:30:24 +0100224 JFFS2_WARNING("jffs2_flash_read() returned %d, request=%d, readlen=%zu, at %#08x\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900225 ret, length, readlen, ref_offset(xd->node));
226 kfree(data);
227 return ret ? ret : -EIO;
228 }
229
230 data[xd->name_len] = '\0';
231 crc = crc32(0, data, length);
232 if (crc != xd->data_crc) {
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200233 JFFS2_WARNING("node CRC failed (JFFS2_NODETYPE_XATTR)"
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900234 " at %#08x, read: 0x%08x calculated: 0x%08x\n",
235 ref_offset(xd->node), xd->data_crc, crc);
236 kfree(data);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900237 xd->flags |= JFFS2_XFLAGS_INVALID;
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200238 return JFFS2_XATTR_IS_CORRUPTED;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900239 }
240
241 xd->flags |= JFFS2_XFLAGS_HOT;
242 xd->xname = data;
243 xd->xvalue = data + xd->name_len+1;
244
245 c->xdatum_mem_usage += length;
246
247 xd->hashkey = xattr_datum_hashkey(xd->xprefix, xd->xname, xd->xvalue, xd->value_len);
248 i = xd->hashkey % XATTRINDEX_HASHSIZE;
249 list_add(&xd->xindex, &c->xattrindex[i]);
250 if (!retry) {
251 retry = 1;
252 reclaim_xattr_datum(c);
253 if (!xd->xname)
254 goto retry;
255 }
256
257 dbg_xattr("success on loading xdatum (xid=%u, xprefix=%u, xname='%s')\n",
258 xd->xid, xd->xprefix, xd->xname);
259
260 return 0;
261}
262
263static int load_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
264{
265 /* must be called under down_write(xattr_sem);
266 * rc < 0 : recoverable error, try again
267 * rc = 0 : success
268 * rc > 0 : Unrecoverable error, this node should be deleted.
269 */
270 int rc = 0;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900271
KaiGai Kohei8a136952006-06-24 09:14:13 +0900272 BUG_ON(xd->flags & JFFS2_XFLAGS_DEAD);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900273 if (xd->xname)
274 return 0;
275 if (xd->flags & JFFS2_XFLAGS_INVALID)
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200276 return JFFS2_XATTR_IS_CORRUPTED;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900277 if (unlikely(is_xattr_datum_unchecked(c, xd)))
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900278 rc = do_verify_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900279 if (!rc)
280 rc = do_load_xattr_datum(c, xd);
281 return rc;
282}
283
David Woodhouse9fe48542006-05-23 00:38:06 +0100284static int save_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900285{
286 /* must be called under down_write(xattr_sem) */
David Woodhouse2f785402006-05-24 02:04:45 +0100287 struct jffs2_raw_xattr rx;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900288 struct kvec vecs[2];
David Woodhouse89291a92006-05-25 13:30:24 +0100289 size_t length;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900290 int rc, totlen;
David Woodhouse9fe48542006-05-23 00:38:06 +0100291 uint32_t phys_ofs = write_ofs(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900292
KaiGai Kohei8a136952006-06-24 09:14:13 +0900293 BUG_ON(!xd->xname);
294 BUG_ON(xd->flags & (JFFS2_XFLAGS_DEAD|JFFS2_XFLAGS_INVALID));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900295
296 vecs[0].iov_base = &rx;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900297 vecs[0].iov_len = sizeof(rx);
298 vecs[1].iov_base = xd->xname;
299 vecs[1].iov_len = xd->name_len + 1 + xd->value_len;
300 totlen = vecs[0].iov_len + vecs[1].iov_len;
301
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900302 /* Setup raw-xattr */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900303 memset(&rx, 0, sizeof(rx));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900304 rx.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
305 rx.nodetype = cpu_to_je16(JFFS2_NODETYPE_XATTR);
306 rx.totlen = cpu_to_je32(PAD(totlen));
307 rx.hdr_crc = cpu_to_je32(crc32(0, &rx, sizeof(struct jffs2_unknown_node) - 4));
308
309 rx.xid = cpu_to_je32(xd->xid);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900310 rx.version = cpu_to_je32(++xd->version);
311 rx.xprefix = xd->xprefix;
312 rx.name_len = xd->name_len;
313 rx.value_len = cpu_to_je16(xd->value_len);
314 rx.data_crc = cpu_to_je32(crc32(0, vecs[1].iov_base, vecs[1].iov_len));
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900315 rx.node_crc = cpu_to_je32(crc32(0, &rx, sizeof(struct jffs2_raw_xattr) - 4));
316
KaiGai Kohei8a136952006-06-24 09:14:13 +0900317 rc = jffs2_flash_writev(c, vecs, 2, phys_ofs, &length, 0);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900318 if (rc || totlen != length) {
David Woodhouse89291a92006-05-25 13:30:24 +0100319 JFFS2_WARNING("jffs2_flash_writev()=%d, req=%u, wrote=%zu, at %#08x\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900320 rc, totlen, length, phys_ofs);
321 rc = rc ? rc : -EIO;
David Woodhouse2f785402006-05-24 02:04:45 +0100322 if (length)
323 jffs2_add_physical_node_ref(c, phys_ofs | REF_OBSOLETE, PAD(totlen), NULL);
324
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900325 return rc;
326 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900327 /* success */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900328 jffs2_add_physical_node_ref(c, phys_ofs | REF_PRISTINE, PAD(totlen), (void *)xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900329
330 dbg_xattr("success on saving xdatum (xid=%u, version=%u, xprefix=%u, xname='%s')\n",
331 xd->xid, xd->version, xd->xprefix, xd->xname);
332
333 return 0;
334}
335
336static struct jffs2_xattr_datum *create_xattr_datum(struct jffs2_sb_info *c,
337 int xprefix, const char *xname,
David Woodhouse9fe48542006-05-23 00:38:06 +0100338 const char *xvalue, int xsize)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900339{
340 /* must be called under down_write(xattr_sem) */
341 struct jffs2_xattr_datum *xd;
342 uint32_t hashkey, name_len;
343 char *data;
344 int i, rc;
345
346 /* Search xattr_datum has same xname/xvalue by index */
347 hashkey = xattr_datum_hashkey(xprefix, xname, xvalue, xsize);
348 i = hashkey % XATTRINDEX_HASHSIZE;
349 list_for_each_entry(xd, &c->xattrindex[i], xindex) {
350 if (xd->hashkey==hashkey
351 && xd->xprefix==xprefix
352 && xd->value_len==xsize
353 && !strcmp(xd->xname, xname)
354 && !memcmp(xd->xvalue, xvalue, xsize)) {
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900355 atomic_inc(&xd->refcnt);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900356 return xd;
357 }
358 }
359
360 /* Not found, Create NEW XATTR-Cache */
361 name_len = strlen(xname);
362
363 xd = jffs2_alloc_xattr_datum();
364 if (!xd)
365 return ERR_PTR(-ENOMEM);
366
367 data = kmalloc(name_len + 1 + xsize, GFP_KERNEL);
368 if (!data) {
369 jffs2_free_xattr_datum(xd);
370 return ERR_PTR(-ENOMEM);
371 }
372 strcpy(data, xname);
373 memcpy(data + name_len + 1, xvalue, xsize);
374
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900375 atomic_set(&xd->refcnt, 1);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900376 xd->xid = ++c->highest_xid;
377 xd->flags |= JFFS2_XFLAGS_HOT;
378 xd->xprefix = xprefix;
379
380 xd->hashkey = hashkey;
381 xd->xname = data;
382 xd->xvalue = data + name_len + 1;
383 xd->name_len = name_len;
384 xd->value_len = xsize;
385 xd->data_crc = crc32(0, data, xd->name_len + 1 + xd->value_len);
386
David Woodhouse9fe48542006-05-23 00:38:06 +0100387 rc = save_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900388 if (rc) {
389 kfree(xd->xname);
390 jffs2_free_xattr_datum(xd);
391 return ERR_PTR(rc);
392 }
393
394 /* Insert Hash Index */
395 i = hashkey % XATTRINDEX_HASHSIZE;
396 list_add(&xd->xindex, &c->xattrindex[i]);
397
398 c->xdatum_mem_usage += (xd->name_len + 1 + xd->value_len);
399 reclaim_xattr_datum(c);
400
401 return xd;
402}
403
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +0100404static void unrefer_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900405{
406 /* must be called under down_write(xattr_sem) */
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +0100407 if (atomic_dec_and_lock(&xd->refcnt, &c->erase_completion_lock)) {
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +0100408 unload_xattr_datum(c, xd);
409 xd->flags |= JFFS2_XFLAGS_DEAD;
410 if (xd->node == (void *)xd) {
411 BUG_ON(!(xd->flags & JFFS2_XFLAGS_INVALID));
412 jffs2_free_xattr_datum(xd);
413 } else {
414 list_add(&xd->xindex, &c->xattr_dead_list);
415 }
416 spin_unlock(&c->erase_completion_lock);
417
Jeff Garzika6b1d822006-10-04 07:57:18 -0400418 dbg_xattr("xdatum(xid=%u, version=%u) was removed.\n",
419 xd->xid, xd->version);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900420 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900421}
422
KaiGai Kohei21b98792006-05-13 15:22:29 +0900423/* -------- xref related functions ------------------
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900424 * verify_xattr_ref(c, ref)
425 * is used to load xref information from medium. Because summary data does not
426 * contain xid/ino, it's necessary to verify once while mounting process.
David Woodhouse9fe48542006-05-23 00:38:06 +0100427 * save_xattr_ref(c, ref)
KaiGai Kohei8a136952006-06-24 09:14:13 +0900428 * is used to write xref to medium. If delete marker is marked, it write
429 * a delete marker of xref into medium.
David Woodhouse9fe48542006-05-23 00:38:06 +0100430 * create_xattr_ref(c, ic, xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900431 * is used to create a new xref and write to medium.
KaiGai Kohei8a136952006-06-24 09:14:13 +0900432 * delete_xattr_ref(c, ref)
433 * is used to delete jffs2_xattr_ref. It marks xref XREF_DELETE_MARKER,
434 * and allows GC to reclaim those physical nodes.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900435 * jffs2_xattr_delete_inode(c, ic)
436 * is called to remove xrefs related to obsolete inode when inode is unlinked.
437 * jffs2_xattr_free_inode(c, ic)
438 * is called to release xattr related objects when unmounting.
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900439 * check_xattr_ref_inode(c, ic)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900440 * is used to confirm inode does not have duplicate xattr name/value pair.
Jean-Christophe DUBOIS8c5a0362012-05-10 17:14:03 +0200441 * jffs2_xattr_do_crccheck_inode(c, ic)
442 * is used to force xattr data integrity check during the initial gc scan.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900443 * -------------------------------------------------- */
444static int verify_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
445{
446 struct jffs2_eraseblock *jeb;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900447 struct jffs2_raw_node_ref *raw;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900448 struct jffs2_raw_xref rr;
449 size_t readlen;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900450 uint32_t crc, offset, totlen;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900451 int rc;
452
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900453 spin_lock(&c->erase_completion_lock);
454 if (ref_flags(ref->node) != REF_UNCHECKED)
455 goto complete;
456 offset = ref_offset(ref->node);
457 spin_unlock(&c->erase_completion_lock);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900458
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900459 rc = jffs2_flash_read(c, offset, sizeof(rr), &readlen, (char *)&rr);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900460 if (rc || sizeof(rr) != readlen) {
David Woodhouse89291a92006-05-25 13:30:24 +0100461 JFFS2_WARNING("jffs2_flash_read()=%d, req=%zu, read=%zu, at %#08x\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900462 rc, sizeof(rr), readlen, offset);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900463 return rc ? rc : -EIO;
464 }
465 /* obsolete node */
466 crc = crc32(0, &rr, sizeof(rr) - 4);
467 if (crc != je32_to_cpu(rr.node_crc)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900468 JFFS2_ERROR("node CRC failed at %#08x, read=%#08x, calc=%#08x\n",
469 offset, je32_to_cpu(rr.node_crc), crc);
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200470 return JFFS2_XATTR_IS_CORRUPTED;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900471 }
472 if (je16_to_cpu(rr.magic) != JFFS2_MAGIC_BITMASK
473 || je16_to_cpu(rr.nodetype) != JFFS2_NODETYPE_XREF
474 || je32_to_cpu(rr.totlen) != PAD(sizeof(rr))) {
475 JFFS2_ERROR("inconsistent xref at %#08x, magic=%#04x/%#04x, "
David Woodhouse89291a92006-05-25 13:30:24 +0100476 "nodetype=%#04x/%#04x, totlen=%u/%zu\n",
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900477 offset, je16_to_cpu(rr.magic), JFFS2_MAGIC_BITMASK,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900478 je16_to_cpu(rr.nodetype), JFFS2_NODETYPE_XREF,
479 je32_to_cpu(rr.totlen), PAD(sizeof(rr)));
Jean-Christophe DUBOIS9824f752012-05-10 17:13:44 +0200480 return JFFS2_XATTR_IS_CORRUPTED;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900481 }
482 ref->ino = je32_to_cpu(rr.ino);
483 ref->xid = je32_to_cpu(rr.xid);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900484 ref->xseqno = je32_to_cpu(rr.xseqno);
485 if (ref->xseqno > c->highest_xseqno)
486 c->highest_xseqno = (ref->xseqno & ~XREF_DELETE_MARKER);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900487
488 spin_lock(&c->erase_completion_lock);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900489 complete:
490 for (raw=ref->node; raw != (void *)ref; raw=raw->next_in_ino) {
491 jeb = &c->blocks[ref_offset(raw) / c->sector_size];
492 totlen = PAD(ref_totlen(c, jeb, raw));
493 if (ref_flags(raw) == REF_UNCHECKED) {
494 c->unchecked_size -= totlen; c->used_size += totlen;
495 jeb->unchecked_size -= totlen; jeb->used_size += totlen;
496 }
497 raw->flash_offset = ref_offset(raw) | ((ref->node==raw) ? REF_PRISTINE : REF_NORMAL);
498 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900499 spin_unlock(&c->erase_completion_lock);
500
501 dbg_xattr("success on verifying xref (ino=%u, xid=%u) at %#08x\n",
502 ref->ino, ref->xid, ref_offset(ref->node));
503 return 0;
504}
505
David Woodhouse9fe48542006-05-23 00:38:06 +0100506static int save_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900507{
508 /* must be called under down_write(xattr_sem) */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900509 struct jffs2_raw_xref rr;
David Woodhouse89291a92006-05-25 13:30:24 +0100510 size_t length;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900511 uint32_t xseqno, phys_ofs = write_ofs(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900512 int ret;
513
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900514 rr.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
515 rr.nodetype = cpu_to_je16(JFFS2_NODETYPE_XREF);
516 rr.totlen = cpu_to_je32(PAD(sizeof(rr)));
517 rr.hdr_crc = cpu_to_je32(crc32(0, &rr, sizeof(struct jffs2_unknown_node) - 4));
518
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900519 xseqno = (c->highest_xseqno += 2);
520 if (is_xattr_ref_dead(ref)) {
521 xseqno |= XREF_DELETE_MARKER;
522 rr.ino = cpu_to_je32(ref->ino);
523 rr.xid = cpu_to_je32(ref->xid);
524 } else {
525 rr.ino = cpu_to_je32(ref->ic->ino);
526 rr.xid = cpu_to_je32(ref->xd->xid);
527 }
528 rr.xseqno = cpu_to_je32(xseqno);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900529 rr.node_crc = cpu_to_je32(crc32(0, &rr, sizeof(rr) - 4));
530
531 ret = jffs2_flash_write(c, phys_ofs, sizeof(rr), &length, (char *)&rr);
532 if (ret || sizeof(rr) != length) {
David Woodhouse89291a92006-05-25 13:30:24 +0100533 JFFS2_WARNING("jffs2_flash_write() returned %d, request=%zu, retlen=%zu, at %#08x\n",
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900534 ret, sizeof(rr), length, phys_ofs);
535 ret = ret ? ret : -EIO;
David Woodhouse2f785402006-05-24 02:04:45 +0100536 if (length)
537 jffs2_add_physical_node_ref(c, phys_ofs | REF_OBSOLETE, PAD(sizeof(rr)), NULL);
538
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900539 return ret;
540 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900541 /* success */
542 ref->xseqno = xseqno;
543 jffs2_add_physical_node_ref(c, phys_ofs | REF_PRISTINE, PAD(sizeof(rr)), (void *)ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900544
545 dbg_xattr("success on saving xref (ino=%u, xid=%u)\n", ref->ic->ino, ref->xd->xid);
546
547 return 0;
548}
549
550static struct jffs2_xattr_ref *create_xattr_ref(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic,
David Woodhouse9fe48542006-05-23 00:38:06 +0100551 struct jffs2_xattr_datum *xd)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900552{
553 /* must be called under down_write(xattr_sem) */
554 struct jffs2_xattr_ref *ref;
555 int ret;
556
557 ref = jffs2_alloc_xattr_ref();
558 if (!ref)
559 return ERR_PTR(-ENOMEM);
560 ref->ic = ic;
561 ref->xd = xd;
562
David Woodhouse9fe48542006-05-23 00:38:06 +0100563 ret = save_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900564 if (ret) {
565 jffs2_free_xattr_ref(ref);
566 return ERR_PTR(ret);
567 }
568
569 /* Chain to inode */
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900570 ref->next = ic->xref;
571 ic->xref = ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900572
573 return ref; /* success */
574}
575
KaiGai Kohei8a136952006-06-24 09:14:13 +0900576static void delete_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900577{
578 /* must be called under down_write(xattr_sem) */
579 struct jffs2_xattr_datum *xd;
580
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900581 xd = ref->xd;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900582 ref->xseqno |= XREF_DELETE_MARKER;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900583 ref->ino = ref->ic->ino;
584 ref->xid = ref->xd->xid;
585 spin_lock(&c->erase_completion_lock);
586 ref->next = c->xref_dead_list;
587 c->xref_dead_list = ref;
588 spin_unlock(&c->erase_completion_lock);
589
KaiGai Kohei8a136952006-06-24 09:14:13 +0900590 dbg_xattr("xref(ino=%u, xid=%u, xseqno=%u) was removed.\n",
591 ref->ino, ref->xid, ref->xseqno);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900592
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +0100593 unrefer_xattr_datum(c, xd);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900594}
595
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900596void jffs2_xattr_delete_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
597{
Al Virob57922d2010-06-07 14:34:48 -0400598 /* It's called from jffs2_evict_inode() on inode removing.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900599 When an inode with XATTR is removed, those XATTRs must be removed. */
KaiGai Kohei8a136952006-06-24 09:14:13 +0900600 struct jffs2_xattr_ref *ref, *_ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900601
David Woodhouse27c72b02008-05-01 18:47:17 +0100602 if (!ic || ic->pino_nlink > 0)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900603 return;
604
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900605 down_write(&c->xattr_sem);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900606 for (ref = ic->xref; ref; ref = _ref) {
607 _ref = ref->next;
608 delete_xattr_ref(c, ref);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900609 }
KaiGai Kohei8a136952006-06-24 09:14:13 +0900610 ic->xref = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900611 up_write(&c->xattr_sem);
612}
613
614void jffs2_xattr_free_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
615{
616 /* It's called from jffs2_free_ino_caches() until unmounting FS. */
617 struct jffs2_xattr_datum *xd;
618 struct jffs2_xattr_ref *ref, *_ref;
619
620 down_write(&c->xattr_sem);
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900621 for (ref = ic->xref; ref; ref = _ref) {
622 _ref = ref->next;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900623 xd = ref->xd;
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900624 if (atomic_dec_and_test(&xd->refcnt)) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900625 unload_xattr_datum(c, xd);
626 jffs2_free_xattr_datum(xd);
627 }
628 jffs2_free_xattr_ref(ref);
629 }
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900630 ic->xref = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900631 up_write(&c->xattr_sem);
632}
633
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900634static int check_xattr_ref_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900635{
Linus Torvaldsa4ce96a2010-07-21 09:25:42 -0700636 /* success of check_xattr_ref_inode() means that inode (ic) dose not have
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900637 * duplicate name/value pairs. If duplicate name/value pair would be found,
638 * one will be removed.
639 */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900640 struct jffs2_xattr_ref *ref, *cmp, **pref, **pcmp;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900641 int rc = 0;
642
643 if (likely(ic->flags & INO_FLAGS_XATTR_CHECKED))
644 return 0;
645 down_write(&c->xattr_sem);
646 retry:
647 rc = 0;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900648 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900649 if (!ref->xd->xname) {
650 rc = load_xattr_datum(c, ref->xd);
651 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900652 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900653 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900654 goto retry;
655 } else if (unlikely(rc < 0))
656 goto out;
657 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900658 for (cmp=ref->next, pcmp=&ref->next; cmp; pcmp=&cmp->next, cmp=cmp->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900659 if (!cmp->xd->xname) {
660 ref->xd->flags |= JFFS2_XFLAGS_BIND;
661 rc = load_xattr_datum(c, cmp->xd);
662 ref->xd->flags &= ~JFFS2_XFLAGS_BIND;
663 if (unlikely(rc > 0)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900664 *pcmp = cmp->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900665 delete_xattr_ref(c, cmp);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900666 goto retry;
667 } else if (unlikely(rc < 0))
668 goto out;
669 }
670 if (ref->xd->xprefix == cmp->xd->xprefix
671 && !strcmp(ref->xd->xname, cmp->xd->xname)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900672 if (ref->xseqno > cmp->xseqno) {
673 *pcmp = cmp->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900674 delete_xattr_ref(c, cmp);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900675 } else {
676 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900677 delete_xattr_ref(c, ref);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900678 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900679 goto retry;
680 }
681 }
682 }
683 ic->flags |= INO_FLAGS_XATTR_CHECKED;
684 out:
685 up_write(&c->xattr_sem);
686
687 return rc;
688}
689
Jean-Christophe DUBOIS8c5a0362012-05-10 17:14:03 +0200690void jffs2_xattr_do_crccheck_inode(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic)
691{
692 check_xattr_ref_inode(c, ic);
693}
694
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900695/* -------- xattr subsystem functions ---------------
696 * jffs2_init_xattr_subsystem(c)
697 * is used to initialize semaphore and list_head, and some variables.
698 * jffs2_find_xattr_datum(c, xid)
699 * is used to lookup xdatum while scanning process.
700 * jffs2_clear_xattr_subsystem(c)
701 * is used to release any xattr related objects.
702 * jffs2_build_xattr_subsystem(c)
703 * is used to associate xdatum and xref while super block building process.
704 * jffs2_setup_xattr_datum(c, xid, version)
705 * is used to insert xdatum while scanning process.
706 * -------------------------------------------------- */
707void jffs2_init_xattr_subsystem(struct jffs2_sb_info *c)
708{
709 int i;
710
711 for (i=0; i < XATTRINDEX_HASHSIZE; i++)
712 INIT_LIST_HEAD(&c->xattrindex[i]);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900713 INIT_LIST_HEAD(&c->xattr_unchecked);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900714 INIT_LIST_HEAD(&c->xattr_dead_list);
715 c->xref_dead_list = NULL;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900716 c->xref_temp = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900717
718 init_rwsem(&c->xattr_sem);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900719 c->highest_xid = 0;
720 c->highest_xseqno = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900721 c->xdatum_mem_usage = 0;
722 c->xdatum_mem_threshold = 32 * 1024; /* Default 32KB */
723}
724
725static struct jffs2_xattr_datum *jffs2_find_xattr_datum(struct jffs2_sb_info *c, uint32_t xid)
726{
727 struct jffs2_xattr_datum *xd;
728 int i = xid % XATTRINDEX_HASHSIZE;
729
730 /* It's only used in scanning/building process. */
731 BUG_ON(!(c->flags & (JFFS2_SB_FLAG_SCANNING|JFFS2_SB_FLAG_BUILDING)));
732
733 list_for_each_entry(xd, &c->xattrindex[i], xindex) {
734 if (xd->xid==xid)
735 return xd;
736 }
737 return NULL;
738}
739
740void jffs2_clear_xattr_subsystem(struct jffs2_sb_info *c)
741{
742 struct jffs2_xattr_datum *xd, *_xd;
743 struct jffs2_xattr_ref *ref, *_ref;
744 int i;
745
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900746 for (ref=c->xref_temp; ref; ref = _ref) {
747 _ref = ref->next;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900748 jffs2_free_xattr_ref(ref);
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900749 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900750
751 for (ref=c->xref_dead_list; ref; ref = _ref) {
752 _ref = ref->next;
753 jffs2_free_xattr_ref(ref);
754 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900755
756 for (i=0; i < XATTRINDEX_HASHSIZE; i++) {
757 list_for_each_entry_safe(xd, _xd, &c->xattrindex[i], xindex) {
758 list_del(&xd->xindex);
Fabian Frederick086f2f72014-06-16 20:02:49 +0200759 kfree(xd->xname);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900760 jffs2_free_xattr_datum(xd);
761 }
762 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900763
764 list_for_each_entry_safe(xd, _xd, &c->xattr_dead_list, xindex) {
765 list_del(&xd->xindex);
766 jffs2_free_xattr_datum(xd);
767 }
David Woodhouse2ad8ee72007-05-08 00:12:58 +0100768 list_for_each_entry_safe(xd, _xd, &c->xattr_unchecked, xindex) {
769 list_del(&xd->xindex);
770 jffs2_free_xattr_datum(xd);
771 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900772}
773
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900774#define XREF_TMPHASH_SIZE (128)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900775void jffs2_build_xattr_subsystem(struct jffs2_sb_info *c)
776{
777 struct jffs2_xattr_ref *ref, *_ref;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900778 struct jffs2_xattr_ref *xref_tmphash[XREF_TMPHASH_SIZE];
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900779 struct jffs2_xattr_datum *xd, *_xd;
780 struct jffs2_inode_cache *ic;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900781 struct jffs2_raw_node_ref *raw;
782 int i, xdatum_count = 0, xdatum_unchecked_count = 0, xref_count = 0;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900783 int xdatum_orphan_count = 0, xref_orphan_count = 0, xref_dead_count = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900784
785 BUG_ON(!(c->flags & JFFS2_SB_FLAG_BUILDING));
786
KaiGai Kohei8a136952006-06-24 09:14:13 +0900787 /* Phase.1 : Merge same xref */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900788 for (i=0; i < XREF_TMPHASH_SIZE; i++)
789 xref_tmphash[i] = NULL;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900790 for (ref=c->xref_temp; ref; ref=_ref) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900791 struct jffs2_xattr_ref *tmp;
792
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900793 _ref = ref->next;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900794 if (ref_flags(ref->node) != REF_PRISTINE) {
795 if (verify_xattr_ref(c, ref)) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900796 BUG_ON(ref->node->next_in_ino != (void *)ref);
797 ref->node->next_in_ino = NULL;
798 jffs2_mark_node_obsolete(c, ref->node);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900799 jffs2_free_xattr_ref(ref);
800 continue;
801 }
802 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900803
804 i = (ref->ino ^ ref->xid) % XREF_TMPHASH_SIZE;
805 for (tmp=xref_tmphash[i]; tmp; tmp=tmp->next) {
806 if (tmp->ino == ref->ino && tmp->xid == ref->xid)
807 break;
808 }
809 if (tmp) {
810 raw = ref->node;
811 if (ref->xseqno > tmp->xseqno) {
812 tmp->xseqno = ref->xseqno;
813 raw->next_in_ino = tmp->node;
814 tmp->node = raw;
815 } else {
816 raw->next_in_ino = tmp->node->next_in_ino;
817 tmp->node->next_in_ino = raw;
818 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900819 jffs2_free_xattr_ref(ref);
820 continue;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900821 } else {
822 ref->next = xref_tmphash[i];
823 xref_tmphash[i] = ref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900824 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900825 }
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900826 c->xref_temp = NULL;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900827
KaiGai Kohei8a136952006-06-24 09:14:13 +0900828 /* Phase.2 : Bind xref with inode_cache and xattr_datum */
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900829 for (i=0; i < XREF_TMPHASH_SIZE; i++) {
830 for (ref=xref_tmphash[i]; ref; ref=_ref) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900831 xref_count++;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900832 _ref = ref->next;
833 if (is_xattr_ref_dead(ref)) {
834 ref->next = c->xref_dead_list;
835 c->xref_dead_list = ref;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900836 xref_dead_count++;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900837 continue;
838 }
839 /* At this point, ref->xid and ref->ino contain XID and inode number.
840 ref->xd and ref->ic are not valid yet. */
841 xd = jffs2_find_xattr_datum(c, ref->xid);
842 ic = jffs2_get_ino_cache(c, ref->ino);
David Woodhouse27c72b02008-05-01 18:47:17 +0100843 if (!xd || !ic || !ic->pino_nlink) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900844 dbg_xattr("xref(ino=%u, xid=%u, xseqno=%u) is orphan.\n",
845 ref->ino, ref->xid, ref->xseqno);
846 ref->xseqno |= XREF_DELETE_MARKER;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900847 ref->next = c->xref_dead_list;
848 c->xref_dead_list = ref;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900849 xref_orphan_count++;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900850 continue;
851 }
852 ref->xd = xd;
853 ref->ic = ic;
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900854 atomic_inc(&xd->refcnt);
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900855 ref->next = ic->xref;
856 ic->xref = ref;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900857 }
858 }
859
KaiGai Kohei8a136952006-06-24 09:14:13 +0900860 /* Phase.3 : Link unchecked xdatum to xattr_unchecked list */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900861 for (i=0; i < XATTRINDEX_HASHSIZE; i++) {
862 list_for_each_entry_safe(xd, _xd, &c->xattrindex[i], xindex) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900863 xdatum_count++;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900864 list_del_init(&xd->xindex);
KaiGai Kohei2c887e22006-06-24 09:16:50 +0900865 if (!atomic_read(&xd->refcnt)) {
KaiGai Kohei8a136952006-06-24 09:14:13 +0900866 dbg_xattr("xdatum(xid=%u, version=%u) is orphan.\n",
867 xd->xid, xd->version);
868 xd->flags |= JFFS2_XFLAGS_DEAD;
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900869 list_add(&xd->xindex, &c->xattr_unchecked);
KaiGai Kohei8a136952006-06-24 09:14:13 +0900870 xdatum_orphan_count++;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900871 continue;
872 }
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900873 if (is_xattr_datum_unchecked(c, xd)) {
874 dbg_xattr("unchecked xdatum(xid=%u, version=%u)\n",
875 xd->xid, xd->version);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900876 list_add(&xd->xindex, &c->xattr_unchecked);
877 xdatum_unchecked_count++;
878 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900879 }
880 }
881 /* build complete */
KaiGai Kohei8a136952006-06-24 09:14:13 +0900882 JFFS2_NOTICE("complete building xattr subsystem, %u of xdatum"
883 " (%u unchecked, %u orphan) and "
884 "%u of xref (%u dead, %u orphan) found.\n",
885 xdatum_count, xdatum_unchecked_count, xdatum_orphan_count,
886 xref_count, xref_dead_count, xref_orphan_count);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900887}
888
889struct jffs2_xattr_datum *jffs2_setup_xattr_datum(struct jffs2_sb_info *c,
890 uint32_t xid, uint32_t version)
891{
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900892 struct jffs2_xattr_datum *xd;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900893
KaiGai Koheic9f700f2006-06-11 10:35:15 +0900894 xd = jffs2_find_xattr_datum(c, xid);
895 if (!xd) {
896 xd = jffs2_alloc_xattr_datum();
897 if (!xd)
898 return ERR_PTR(-ENOMEM);
899 xd->xid = xid;
900 xd->version = version;
901 if (xd->xid > c->highest_xid)
902 c->highest_xid = xd->xid;
903 list_add_tail(&xd->xindex, &c->xattrindex[xid % XATTRINDEX_HASHSIZE]);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900904 }
905 return xd;
906}
907
908/* -------- xattr subsystem functions ---------------
909 * xprefix_to_handler(xprefix)
910 * is used to translate xprefix into xattr_handler.
911 * jffs2_listxattr(dentry, buffer, size)
912 * is an implementation of listxattr handler on jffs2.
913 * do_jffs2_getxattr(inode, xprefix, xname, buffer, size)
914 * is an implementation of getxattr handler on jffs2.
915 * do_jffs2_setxattr(inode, xprefix, xname, buffer, size, flags)
916 * is an implementation of setxattr handler on jffs2.
917 * -------------------------------------------------- */
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700918const struct xattr_handler *jffs2_xattr_handlers[] = {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900919 &jffs2_user_xattr_handler,
920#ifdef CONFIG_JFFS2_FS_SECURITY
921 &jffs2_security_xattr_handler,
922#endif
923#ifdef CONFIG_JFFS2_FS_POSIX_ACL
Christoph Hellwigf2963d42013-12-20 05:16:47 -0800924 &posix_acl_access_xattr_handler,
925 &posix_acl_default_xattr_handler,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900926#endif
927 &jffs2_trusted_xattr_handler,
928 NULL
929};
930
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700931static const struct xattr_handler *xprefix_to_handler(int xprefix) {
932 const struct xattr_handler *ret;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900933
934 switch (xprefix) {
935 case JFFS2_XPREFIX_USER:
936 ret = &jffs2_user_xattr_handler;
937 break;
938#ifdef CONFIG_JFFS2_FS_SECURITY
939 case JFFS2_XPREFIX_SECURITY:
940 ret = &jffs2_security_xattr_handler;
941 break;
942#endif
943#ifdef CONFIG_JFFS2_FS_POSIX_ACL
944 case JFFS2_XPREFIX_ACL_ACCESS:
Christoph Hellwigf2963d42013-12-20 05:16:47 -0800945 ret = &posix_acl_access_xattr_handler;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900946 break;
947 case JFFS2_XPREFIX_ACL_DEFAULT:
Christoph Hellwigf2963d42013-12-20 05:16:47 -0800948 ret = &posix_acl_default_xattr_handler;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900949 break;
950#endif
951 case JFFS2_XPREFIX_TRUSTED:
952 ret = &jffs2_trusted_xattr_handler;
953 break;
954 default:
955 ret = NULL;
956 break;
957 }
958 return ret;
959}
960
961ssize_t jffs2_listxattr(struct dentry *dentry, char *buffer, size_t size)
962{
963 struct inode *inode = dentry->d_inode;
964 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
965 struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
966 struct jffs2_inode_cache *ic = f->inocache;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900967 struct jffs2_xattr_ref *ref, **pref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900968 struct jffs2_xattr_datum *xd;
Stephen Hemminger365f0cb2010-05-13 17:53:21 -0700969 const struct xattr_handler *xhandle;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900970 ssize_t len, rc;
971 int retry = 0;
972
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900973 rc = check_xattr_ref_inode(c, ic);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900974 if (unlikely(rc))
975 return rc;
976
977 down_read(&c->xattr_sem);
978 retry:
979 len = 0;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900980 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900981 BUG_ON(ref->ic != ic);
982 xd = ref->xd;
983 if (!xd->xname) {
984 /* xdatum is unchached */
985 if (!retry) {
986 retry = 1;
987 up_read(&c->xattr_sem);
988 down_write(&c->xattr_sem);
989 goto retry;
990 } else {
991 rc = load_xattr_datum(c, xd);
992 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +0900993 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +0900994 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900995 goto retry;
996 } else if (unlikely(rc < 0))
997 goto out;
998 }
999 }
1000 xhandle = xprefix_to_handler(xd->xprefix);
1001 if (!xhandle)
1002 continue;
1003 if (buffer) {
Christoph Hellwig431547b2009-11-13 09:52:56 +00001004 rc = xhandle->list(dentry, buffer+len, size-len,
1005 xd->xname, xd->name_len, xd->flags);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001006 } else {
Christoph Hellwig431547b2009-11-13 09:52:56 +00001007 rc = xhandle->list(dentry, NULL, 0, xd->xname,
1008 xd->name_len, xd->flags);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001009 }
1010 if (rc < 0)
1011 goto out;
1012 len += rc;
1013 }
1014 rc = len;
1015 out:
1016 if (!retry) {
1017 up_read(&c->xattr_sem);
1018 } else {
1019 up_write(&c->xattr_sem);
1020 }
1021 return rc;
1022}
1023
1024int do_jffs2_getxattr(struct inode *inode, int xprefix, const char *xname,
1025 char *buffer, size_t size)
1026{
1027 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
1028 struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
1029 struct jffs2_inode_cache *ic = f->inocache;
1030 struct jffs2_xattr_datum *xd;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001031 struct jffs2_xattr_ref *ref, **pref;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001032 int rc, retry = 0;
1033
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001034 rc = check_xattr_ref_inode(c, ic);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001035 if (unlikely(rc))
1036 return rc;
1037
1038 down_read(&c->xattr_sem);
1039 retry:
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001040 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001041 BUG_ON(ref->ic!=ic);
1042
1043 xd = ref->xd;
1044 if (xd->xprefix != xprefix)
1045 continue;
1046 if (!xd->xname) {
1047 /* xdatum is unchached */
1048 if (!retry) {
1049 retry = 1;
1050 up_read(&c->xattr_sem);
1051 down_write(&c->xattr_sem);
1052 goto retry;
1053 } else {
1054 rc = load_xattr_datum(c, xd);
1055 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001056 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +09001057 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001058 goto retry;
1059 } else if (unlikely(rc < 0)) {
1060 goto out;
1061 }
1062 }
1063 }
1064 if (!strcmp(xname, xd->xname)) {
1065 rc = xd->value_len;
1066 if (buffer) {
1067 if (size < rc) {
1068 rc = -ERANGE;
1069 } else {
1070 memcpy(buffer, xd->xvalue, rc);
1071 }
1072 }
1073 goto out;
1074 }
1075 }
1076 rc = -ENODATA;
1077 out:
1078 if (!retry) {
1079 up_read(&c->xattr_sem);
1080 } else {
1081 up_write(&c->xattr_sem);
1082 }
1083 return rc;
1084}
1085
1086int do_jffs2_setxattr(struct inode *inode, int xprefix, const char *xname,
1087 const char *buffer, size_t size, int flags)
1088{
1089 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
1090 struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb);
1091 struct jffs2_inode_cache *ic = f->inocache;
1092 struct jffs2_xattr_datum *xd;
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001093 struct jffs2_xattr_ref *ref, *newref, **pref;
David Woodhouse9fe48542006-05-23 00:38:06 +01001094 uint32_t length, request;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001095 int rc;
1096
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001097 rc = check_xattr_ref_inode(c, ic);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001098 if (unlikely(rc))
1099 return rc;
1100
1101 request = PAD(sizeof(struct jffs2_raw_xattr) + strlen(xname) + 1 + size);
David Woodhouse9fe48542006-05-23 00:38:06 +01001102 rc = jffs2_reserve_space(c, request, &length,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001103 ALLOC_NORMAL, JFFS2_SUMMARY_XATTR_SIZE);
1104 if (rc) {
1105 JFFS2_WARNING("jffs2_reserve_space()=%d, request=%u\n", rc, request);
1106 return rc;
1107 }
1108
1109 /* Find existing xattr */
1110 down_write(&c->xattr_sem);
1111 retry:
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001112 for (ref=ic->xref, pref=&ic->xref; ref; pref=&ref->next, ref=ref->next) {
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001113 xd = ref->xd;
1114 if (xd->xprefix != xprefix)
1115 continue;
1116 if (!xd->xname) {
1117 rc = load_xattr_datum(c, xd);
1118 if (unlikely(rc > 0)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001119 *pref = ref->next;
KaiGai Kohei8a136952006-06-24 09:14:13 +09001120 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001121 goto retry;
1122 } else if (unlikely(rc < 0))
1123 goto out;
1124 }
1125 if (!strcmp(xd->xname, xname)) {
1126 if (flags & XATTR_CREATE) {
1127 rc = -EEXIST;
1128 goto out;
1129 }
1130 if (!buffer) {
KaiGai Kohei8a136952006-06-24 09:14:13 +09001131 ref->ino = ic->ino;
1132 ref->xid = xd->xid;
1133 ref->xseqno |= XREF_DELETE_MARKER;
1134 rc = save_xattr_ref(c, ref);
1135 if (!rc) {
1136 *pref = ref->next;
1137 spin_lock(&c->erase_completion_lock);
1138 ref->next = c->xref_dead_list;
1139 c->xref_dead_list = ref;
1140 spin_unlock(&c->erase_completion_lock);
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +01001141 unrefer_xattr_datum(c, xd);
KaiGai Kohei8a136952006-06-24 09:14:13 +09001142 } else {
1143 ref->ic = ic;
1144 ref->xd = xd;
1145 ref->xseqno &= ~XREF_DELETE_MARKER;
1146 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001147 goto out;
1148 }
1149 goto found;
1150 }
1151 }
1152 /* not found */
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001153 if (flags & XATTR_REPLACE) {
1154 rc = -ENODATA;
1155 goto out;
1156 }
1157 if (!buffer) {
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001158 rc = -ENODATA;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001159 goto out;
1160 }
1161 found:
David Woodhouse9fe48542006-05-23 00:38:06 +01001162 xd = create_xattr_datum(c, xprefix, xname, buffer, size);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001163 if (IS_ERR(xd)) {
1164 rc = PTR_ERR(xd);
1165 goto out;
1166 }
1167 up_write(&c->xattr_sem);
1168 jffs2_complete_reservation(c);
1169
1170 /* create xattr_ref */
1171 request = PAD(sizeof(struct jffs2_raw_xref));
David Woodhouse9fe48542006-05-23 00:38:06 +01001172 rc = jffs2_reserve_space(c, request, &length,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001173 ALLOC_NORMAL, JFFS2_SUMMARY_XREF_SIZE);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001174 down_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001175 if (rc) {
1176 JFFS2_WARNING("jffs2_reserve_space()=%d, request=%u\n", rc, request);
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +01001177 unrefer_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001178 up_write(&c->xattr_sem);
1179 return rc;
1180 }
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001181 if (ref)
1182 *pref = ref->next;
David Woodhouse9fe48542006-05-23 00:38:06 +01001183 newref = create_xattr_ref(c, ic, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001184 if (IS_ERR(newref)) {
KaiGai Kohei8f2b6f42006-05-13 15:15:07 +09001185 if (ref) {
1186 ref->next = ic->xref;
1187 ic->xref = ref;
1188 }
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001189 rc = PTR_ERR(newref);
KaiGai Koheic6e8c6c2006-06-29 15:33:02 +01001190 unrefer_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001191 } else if (ref) {
KaiGai Kohei8a136952006-06-24 09:14:13 +09001192 delete_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001193 }
1194 out:
1195 up_write(&c->xattr_sem);
1196 jffs2_complete_reservation(c);
1197 return rc;
1198}
1199
1200/* -------- garbage collector functions -------------
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001201 * jffs2_garbage_collect_xattr_datum(c, xd, raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001202 * is used to move xdatum into new node.
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001203 * jffs2_garbage_collect_xattr_ref(c, ref, raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001204 * is used to move xref into new node.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001205 * jffs2_verify_xattr(c)
1206 * is used to call do_verify_xattr_datum() before garbage collecting.
KaiGai Kohei8a136952006-06-24 09:14:13 +09001207 * jffs2_release_xattr_datum(c, xd)
1208 * is used to release an in-memory object of xdatum.
1209 * jffs2_release_xattr_ref(c, ref)
1210 * is used to release an in-memory object of xref.
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001211 * -------------------------------------------------- */
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001212int jffs2_garbage_collect_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd,
1213 struct jffs2_raw_node_ref *raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001214{
David Woodhouse9fe48542006-05-23 00:38:06 +01001215 uint32_t totlen, length, old_ofs;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001216 int rc = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001217
KaiGai Kohei084702e2006-05-13 15:16:13 +09001218 down_write(&c->xattr_sem);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001219 if (xd->node != raw)
1220 goto out;
KaiGai Kohei8a136952006-06-24 09:14:13 +09001221 if (xd->flags & (JFFS2_XFLAGS_DEAD|JFFS2_XFLAGS_INVALID))
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001222 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001223
KaiGai Kohei8a136952006-06-24 09:14:13 +09001224 rc = load_xattr_datum(c, xd);
1225 if (unlikely(rc)) {
1226 rc = (rc > 0) ? 0 : rc;
1227 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001228 }
KaiGai Kohei8a136952006-06-24 09:14:13 +09001229 old_ofs = ref_offset(xd->node);
1230 totlen = PAD(sizeof(struct jffs2_raw_xattr)
1231 + xd->name_len + 1 + xd->value_len);
David Woodhouse9fe48542006-05-23 00:38:06 +01001232 rc = jffs2_reserve_space_gc(c, totlen, &length, JFFS2_SUMMARY_XATTR_SIZE);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001233 if (rc) {
1234 JFFS2_WARNING("jffs2_reserve_space_gc()=%d, request=%u\n", rc, totlen);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001235 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001236 }
David Woodhouse9fe48542006-05-23 00:38:06 +01001237 rc = save_xattr_datum(c, xd);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001238 if (!rc)
1239 dbg_xattr("xdatum (xid=%u, version=%u) GC'ed from %#08x to %08x\n",
1240 xd->xid, xd->version, old_ofs, ref_offset(xd->node));
KaiGai Kohei084702e2006-05-13 15:16:13 +09001241 out:
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001242 if (!rc)
1243 jffs2_mark_node_obsolete(c, raw);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001244 up_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001245 return rc;
1246}
1247
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001248int jffs2_garbage_collect_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref,
1249 struct jffs2_raw_node_ref *raw)
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001250{
David Woodhouse9fe48542006-05-23 00:38:06 +01001251 uint32_t totlen, length, old_ofs;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001252 int rc = 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001253
KaiGai Kohei084702e2006-05-13 15:16:13 +09001254 down_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001255 BUG_ON(!ref->node);
1256
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001257 if (ref->node != raw)
1258 goto out;
1259 if (is_xattr_ref_dead(ref) && (raw->next_in_ino == (void *)ref))
KaiGai Kohei084702e2006-05-13 15:16:13 +09001260 goto out;
1261
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001262 old_ofs = ref_offset(ref->node);
1263 totlen = ref_totlen(c, c->gcblock, ref->node);
1264
David Woodhouse9fe48542006-05-23 00:38:06 +01001265 rc = jffs2_reserve_space_gc(c, totlen, &length, JFFS2_SUMMARY_XREF_SIZE);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001266 if (rc) {
1267 JFFS2_WARNING("%s: jffs2_reserve_space_gc() = %d, request = %u\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -07001268 __func__, rc, totlen);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001269 rc = rc ? rc : -EBADFD;
1270 goto out;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001271 }
David Woodhouse9fe48542006-05-23 00:38:06 +01001272 rc = save_xattr_ref(c, ref);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001273 if (!rc)
1274 dbg_xattr("xref (ino=%u, xid=%u) GC'ed from %#08x to %08x\n",
1275 ref->ic->ino, ref->xd->xid, old_ofs, ref_offset(ref->node));
KaiGai Kohei084702e2006-05-13 15:16:13 +09001276 out:
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001277 if (!rc)
1278 jffs2_mark_node_obsolete(c, raw);
KaiGai Kohei084702e2006-05-13 15:16:13 +09001279 up_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001280 return rc;
1281}
1282
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001283int jffs2_verify_xattr(struct jffs2_sb_info *c)
1284{
1285 struct jffs2_xattr_datum *xd, *_xd;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001286 struct jffs2_eraseblock *jeb;
1287 struct jffs2_raw_node_ref *raw;
1288 uint32_t totlen;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001289 int rc;
1290
1291 down_write(&c->xattr_sem);
1292 list_for_each_entry_safe(xd, _xd, &c->xattr_unchecked, xindex) {
1293 rc = do_verify_xattr_datum(c, xd);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001294 if (rc < 0)
1295 continue;
1296 list_del_init(&xd->xindex);
1297 spin_lock(&c->erase_completion_lock);
1298 for (raw=xd->node; raw != (void *)xd; raw=raw->next_in_ino) {
1299 if (ref_flags(raw) != REF_UNCHECKED)
1300 continue;
1301 jeb = &c->blocks[ref_offset(raw) / c->sector_size];
1302 totlen = PAD(ref_totlen(c, jeb, raw));
1303 c->unchecked_size -= totlen; c->used_size += totlen;
1304 jeb->unchecked_size -= totlen; jeb->used_size += totlen;
1305 raw->flash_offset = ref_offset(raw)
1306 | ((xd->node == (void *)raw) ? REF_PRISTINE : REF_NORMAL);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001307 }
KaiGai Kohei8a136952006-06-24 09:14:13 +09001308 if (xd->flags & JFFS2_XFLAGS_DEAD)
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001309 list_add(&xd->xindex, &c->xattr_dead_list);
1310 spin_unlock(&c->erase_completion_lock);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001311 }
1312 up_write(&c->xattr_sem);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +09001313 return list_empty(&c->xattr_unchecked) ? 1 : 0;
1314}
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001315
1316void jffs2_release_xattr_datum(struct jffs2_sb_info *c, struct jffs2_xattr_datum *xd)
1317{
1318 /* must be called under spin_lock(&c->erase_completion_lock) */
KaiGai Kohei2c887e22006-06-24 09:16:50 +09001319 if (atomic_read(&xd->refcnt) || xd->node != (void *)xd)
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001320 return;
1321
1322 list_del(&xd->xindex);
1323 jffs2_free_xattr_datum(xd);
1324}
1325
1326void jffs2_release_xattr_ref(struct jffs2_sb_info *c, struct jffs2_xattr_ref *ref)
1327{
1328 /* must be called under spin_lock(&c->erase_completion_lock) */
1329 struct jffs2_xattr_ref *tmp, **ptmp;
1330
1331 if (ref->node != (void *)ref)
1332 return;
1333
1334 for (tmp=c->xref_dead_list, ptmp=&c->xref_dead_list; tmp; ptmp=&tmp->next, tmp=tmp->next) {
1335 if (ref == tmp) {
1336 *ptmp = tmp->next;
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001337 break;
1338 }
1339 }
KaiGai Kohei8a136952006-06-24 09:14:13 +09001340 jffs2_free_xattr_ref(ref);
KaiGai Koheic9f700f2006-06-11 10:35:15 +09001341}