]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * JFFS2 -- Journalling Flash File System, Version 2. | |
3 | * | |
c00c310e | 4 | * Copyright © 2001-2007 Red Hat, Inc. |
1da177e4 LT |
5 | * |
6 | * Created by David Woodhouse <[email protected]> | |
7 | * | |
8 | * For licensing information, see the file 'LICENCE' in this directory. | |
9 | * | |
1da177e4 LT |
10 | */ |
11 | ||
12 | #include <linux/kernel.h> | |
13 | #include <linux/sched.h> | |
14 | #include <linux/fs.h> | |
15 | #include <linux/mtd/mtd.h> | |
16 | #include <linux/rbtree.h> | |
17 | #include <linux/crc32.h> | |
1da177e4 LT |
18 | #include <linux/pagemap.h> |
19 | #include "nodelist.h" | |
20 | ||
90a18fab AB |
21 | static void jffs2_obsolete_node_frag(struct jffs2_sb_info *c, |
22 | struct jffs2_node_frag *this); | |
23 | ||
1da177e4 LT |
24 | void jffs2_add_fd_to_list(struct jffs2_sb_info *c, struct jffs2_full_dirent *new, struct jffs2_full_dirent **list) |
25 | { | |
26 | struct jffs2_full_dirent **prev = list; | |
182ec4ee | 27 | |
733802d9 | 28 | dbg_dentlist("add dirent \"%s\", ino #%u\n", new->name, new->ino); |
1da177e4 LT |
29 | |
30 | while ((*prev) && (*prev)->nhash <= new->nhash) { | |
31 | if ((*prev)->nhash == new->nhash && !strcmp((*prev)->name, new->name)) { | |
32 | /* Duplicate. Free one */ | |
33 | if (new->version < (*prev)->version) { | |
15953580 | 34 | dbg_dentlist("Eep! Marking new dirent node obsolete, old is \"%s\", ino #%u\n", |
e0d60137 | 35 | (*prev)->name, (*prev)->ino); |
1da177e4 LT |
36 | jffs2_mark_node_obsolete(c, new->raw); |
37 | jffs2_free_full_dirent(new); | |
38 | } else { | |
15953580 | 39 | dbg_dentlist("marking old dirent \"%s\", ino #%u obsolete\n", |
e0d60137 | 40 | (*prev)->name, (*prev)->ino); |
1da177e4 | 41 | new->next = (*prev)->next; |
15953580 DW |
42 | /* It may have been a 'placeholder' deletion dirent, |
43 | if jffs2_can_mark_obsolete() (see jffs2_do_unlink()) */ | |
44 | if ((*prev)->raw) | |
45 | jffs2_mark_node_obsolete(c, ((*prev)->raw)); | |
1da177e4 LT |
46 | jffs2_free_full_dirent(*prev); |
47 | *prev = new; | |
48 | } | |
e0d60137 | 49 | return; |
1da177e4 LT |
50 | } |
51 | prev = &((*prev)->next); | |
52 | } | |
53 | new->next = *prev; | |
54 | *prev = new; | |
1da177e4 LT |
55 | } |
56 | ||
61c4b237 | 57 | uint32_t jffs2_truncate_fragtree(struct jffs2_sb_info *c, struct rb_root *list, uint32_t size) |
1e900979 AB |
58 | { |
59 | struct jffs2_node_frag *frag = jffs2_lookup_node_frag(list, size); | |
60 | ||
733802d9 | 61 | dbg_fragtree("truncating fragtree to 0x%08x bytes\n", size); |
1e900979 AB |
62 | |
63 | /* We know frag->ofs <= size. That's what lookup does for us */ | |
64 | if (frag && frag->ofs != size) { | |
1e0da3cb | 65 | if (frag->ofs+frag->size > size) { |
1e900979 AB |
66 | frag->size = size - frag->ofs; |
67 | } | |
68 | frag = frag_next(frag); | |
69 | } | |
70 | while (frag && frag->ofs >= size) { | |
71 | struct jffs2_node_frag *next = frag_next(frag); | |
72 | ||
1e900979 AB |
73 | frag_erase(frag, list); |
74 | jffs2_obsolete_node_frag(c, frag); | |
75 | frag = next; | |
76 | } | |
1e0da3cb AB |
77 | |
78 | if (size == 0) | |
61c4b237 | 79 | return 0; |
1e0da3cb | 80 | |
1e0da3cb | 81 | frag = frag_last(list); |
61c4b237 DW |
82 | |
83 | /* Sanity check for truncation to longer than we started with... */ | |
84 | if (!frag) | |
85 | return 0; | |
86 | if (frag->ofs + frag->size < size) | |
87 | return frag->ofs + frag->size; | |
88 | ||
89 | /* If the last fragment starts at the RAM page boundary, it is | |
90 | * REF_PRISTINE irrespective of its size. */ | |
f0507530 | 91 | if (frag->node && (frag->ofs & (PAGE_CACHE_SIZE - 1)) == 0) { |
733802d9 | 92 | dbg_fragtree2("marking the last fragment 0x%08x-0x%08x REF_PRISTINE.\n", |
182ec4ee | 93 | frag->ofs, frag->ofs + frag->size); |
1e0da3cb AB |
94 | frag->node->raw->flash_offset = ref_offset(frag->node->raw) | REF_PRISTINE; |
95 | } | |
61c4b237 | 96 | return size; |
1e900979 AB |
97 | } |
98 | ||
90a18fab AB |
99 | static void jffs2_obsolete_node_frag(struct jffs2_sb_info *c, |
100 | struct jffs2_node_frag *this) | |
1da177e4 | 101 | { |
f97117d1 AB |
102 | if (this->node) { |
103 | this->node->frags--; | |
104 | if (!this->node->frags) { | |
105 | /* The node has no valid frags left. It's totally obsoleted */ | |
733802d9 | 106 | dbg_fragtree2("marking old node @0x%08x (0x%04x-0x%04x) obsolete\n", |
e0d60137 | 107 | ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size); |
f97117d1 AB |
108 | jffs2_mark_node_obsolete(c, this->node->raw); |
109 | jffs2_free_full_dnode(this->node); | |
110 | } else { | |
733802d9 | 111 | dbg_fragtree2("marking old node @0x%08x (0x%04x-0x%04x) REF_NORMAL. frags is %d\n", |
e0d60137 | 112 | ref_offset(this->node->raw), this->node->ofs, this->node->ofs+this->node->size, this->node->frags); |
f97117d1 AB |
113 | mark_ref_normal(this->node->raw); |
114 | } | |
182ec4ee | 115 | |
f97117d1 AB |
116 | } |
117 | jffs2_free_node_frag(this); | |
1da177e4 LT |
118 | } |
119 | ||
f97117d1 | 120 | static void jffs2_fragtree_insert(struct jffs2_node_frag *newfrag, struct jffs2_node_frag *base) |
1da177e4 | 121 | { |
f97117d1 AB |
122 | struct rb_node *parent = &base->rb; |
123 | struct rb_node **link = &parent; | |
9dee7503 | 124 | |
733802d9 | 125 | dbg_fragtree2("insert frag (0x%04x-0x%04x)\n", newfrag->ofs, newfrag->ofs + newfrag->size); |
9dee7503 | 126 | |
f97117d1 AB |
127 | while (*link) { |
128 | parent = *link; | |
129 | base = rb_entry(parent, struct jffs2_node_frag, rb); | |
182ec4ee | 130 | |
f97117d1 AB |
131 | if (newfrag->ofs > base->ofs) |
132 | link = &base->rb.rb_right; | |
133 | else if (newfrag->ofs < base->ofs) | |
134 | link = &base->rb.rb_left; | |
9dee7503 | 135 | else { |
e0d60137 | 136 | JFFS2_ERROR("duplicate frag at %08x (%p,%p)\n", newfrag->ofs, newfrag, base); |
f97117d1 | 137 | BUG(); |
9dee7503 | 138 | } |
1da177e4 | 139 | } |
f97117d1 AB |
140 | |
141 | rb_link_node(&newfrag->rb, &base->rb, link); | |
1da177e4 LT |
142 | } |
143 | ||
1e0da3cb AB |
144 | /* |
145 | * Allocate and initializes a new fragment. | |
146 | */ | |
858119e1 | 147 | static struct jffs2_node_frag * new_fragment(struct jffs2_full_dnode *fn, uint32_t ofs, uint32_t size) |
1e0da3cb AB |
148 | { |
149 | struct jffs2_node_frag *newfrag; | |
182ec4ee | 150 | |
1e0da3cb AB |
151 | newfrag = jffs2_alloc_node_frag(); |
152 | if (likely(newfrag)) { | |
153 | newfrag->ofs = ofs; | |
154 | newfrag->size = size; | |
155 | newfrag->node = fn; | |
156 | } else { | |
157 | JFFS2_ERROR("cannot allocate a jffs2_node_frag object\n"); | |
158 | } | |
159 | ||
160 | return newfrag; | |
161 | } | |
162 | ||
163 | /* | |
164 | * Called when there is no overlapping fragment exist. Inserts a hole before the new | |
165 | * fragment and inserts the new fragment to the fragtree. | |
166 | */ | |
167 | static int no_overlapping_node(struct jffs2_sb_info *c, struct rb_root *root, | |
168 | struct jffs2_node_frag *newfrag, | |
169 | struct jffs2_node_frag *this, uint32_t lastend) | |
170 | { | |
171 | if (lastend < newfrag->node->ofs) { | |
172 | /* put a hole in before the new fragment */ | |
173 | struct jffs2_node_frag *holefrag; | |
174 | ||
175 | holefrag= new_fragment(NULL, lastend, newfrag->node->ofs - lastend); | |
176 | if (unlikely(!holefrag)) { | |
177 | jffs2_free_node_frag(newfrag); | |
178 | return -ENOMEM; | |
179 | } | |
180 | ||
181 | if (this) { | |
182ec4ee | 182 | /* By definition, the 'this' node has no right-hand child, |
1e0da3cb AB |
183 | because there are no frags with offset greater than it. |
184 | So that's where we want to put the hole */ | |
733802d9 | 185 | dbg_fragtree2("add hole frag %#04x-%#04x on the right of the new frag.\n", |
1e0da3cb AB |
186 | holefrag->ofs, holefrag->ofs + holefrag->size); |
187 | rb_link_node(&holefrag->rb, &this->rb, &this->rb.rb_right); | |
188 | } else { | |
733802d9 | 189 | dbg_fragtree2("Add hole frag %#04x-%#04x to the root of the tree.\n", |
1e0da3cb AB |
190 | holefrag->ofs, holefrag->ofs + holefrag->size); |
191 | rb_link_node(&holefrag->rb, NULL, &root->rb_node); | |
192 | } | |
193 | rb_insert_color(&holefrag->rb, root); | |
194 | this = holefrag; | |
195 | } | |
182ec4ee | 196 | |
1e0da3cb | 197 | if (this) { |
182ec4ee | 198 | /* By definition, the 'this' node has no right-hand child, |
1e0da3cb AB |
199 | because there are no frags with offset greater than it. |
200 | So that's where we want to put new fragment */ | |
733802d9 | 201 | dbg_fragtree2("add the new node at the right\n"); |
182ec4ee | 202 | rb_link_node(&newfrag->rb, &this->rb, &this->rb.rb_right); |
1e0da3cb | 203 | } else { |
733802d9 | 204 | dbg_fragtree2("insert the new node at the root of the tree\n"); |
1e0da3cb AB |
205 | rb_link_node(&newfrag->rb, NULL, &root->rb_node); |
206 | } | |
207 | rb_insert_color(&newfrag->rb, root); | |
208 | ||
209 | return 0; | |
210 | } | |
211 | ||
f97117d1 | 212 | /* Doesn't set inode->i_size */ |
1e0da3cb | 213 | static int jffs2_add_frag_to_fragtree(struct jffs2_sb_info *c, struct rb_root *root, struct jffs2_node_frag *newfrag) |
1da177e4 | 214 | { |
f97117d1 AB |
215 | struct jffs2_node_frag *this; |
216 | uint32_t lastend; | |
1da177e4 | 217 | |
f97117d1 | 218 | /* Skip all the nodes which are completed before this one starts */ |
1e0da3cb | 219 | this = jffs2_lookup_node_frag(root, newfrag->node->ofs); |
1da177e4 | 220 | |
f97117d1 | 221 | if (this) { |
733802d9 | 222 | dbg_fragtree2("lookup gave frag 0x%04x-0x%04x; phys 0x%08x (*%p)\n", |
e0d60137 | 223 | this->ofs, this->ofs+this->size, this->node?(ref_offset(this->node->raw)):0xffffffff, this); |
f97117d1 AB |
224 | lastend = this->ofs + this->size; |
225 | } else { | |
733802d9 | 226 | dbg_fragtree2("lookup gave no frag\n"); |
f97117d1 | 227 | lastend = 0; |
1da177e4 | 228 | } |
182ec4ee | 229 | |
1e0da3cb | 230 | /* See if we ran off the end of the fragtree */ |
f97117d1 AB |
231 | if (lastend <= newfrag->ofs) { |
232 | /* We did */ | |
233 | ||
234 | /* Check if 'this' node was on the same page as the new node. | |
235 | If so, both 'this' and the new node get marked REF_NORMAL so | |
236 | the GC can take a look. | |
237 | */ | |
238 | if (lastend && (lastend-1) >> PAGE_CACHE_SHIFT == newfrag->ofs >> PAGE_CACHE_SHIFT) { | |
239 | if (this->node) | |
240 | mark_ref_normal(this->node->raw); | |
241 | mark_ref_normal(newfrag->node->raw); | |
242 | } | |
1da177e4 | 243 | |
1e0da3cb | 244 | return no_overlapping_node(c, root, newfrag, this, lastend); |
dae6227f | 245 | } |
dae6227f | 246 | |
1e0da3cb | 247 | if (this->node) |
733802d9 | 248 | dbg_fragtree2("dealing with frag %u-%u, phys %#08x(%d).\n", |
1e0da3cb AB |
249 | this->ofs, this->ofs + this->size, |
250 | ref_offset(this->node->raw), ref_flags(this->node->raw)); | |
251 | else | |
733802d9 | 252 | dbg_fragtree2("dealing with hole frag %u-%u.\n", |
1e0da3cb | 253 | this->ofs, this->ofs + this->size); |
dae6227f | 254 | |
f97117d1 | 255 | /* OK. 'this' is pointing at the first frag that newfrag->ofs at least partially obsoletes, |
182ec4ee | 256 | * - i.e. newfrag->ofs < this->ofs+this->size && newfrag->ofs >= this->ofs |
dae6227f | 257 | */ |
f97117d1 AB |
258 | if (newfrag->ofs > this->ofs) { |
259 | /* This node isn't completely obsoleted. The start of it remains valid */ | |
260 | ||
261 | /* Mark the new node and the partially covered node REF_NORMAL -- let | |
262 | the GC take a look at them */ | |
263 | mark_ref_normal(newfrag->node->raw); | |
264 | if (this->node) | |
265 | mark_ref_normal(this->node->raw); | |
266 | ||
267 | if (this->ofs + this->size > newfrag->ofs + newfrag->size) { | |
268 | /* The new node splits 'this' frag into two */ | |
1e0da3cb AB |
269 | struct jffs2_node_frag *newfrag2; |
270 | ||
f97117d1 | 271 | if (this->node) |
733802d9 | 272 | dbg_fragtree2("split old frag 0x%04x-0x%04x, phys 0x%08x\n", |
e0d60137 | 273 | this->ofs, this->ofs+this->size, ref_offset(this->node->raw)); |
182ec4ee | 274 | else |
733802d9 | 275 | dbg_fragtree2("split old hole frag 0x%04x-0x%04x\n", |
8d5df409 | 276 | this->ofs, this->ofs+this->size); |
182ec4ee | 277 | |
f97117d1 | 278 | /* New second frag pointing to this's node */ |
1e0da3cb AB |
279 | newfrag2 = new_fragment(this->node, newfrag->ofs + newfrag->size, |
280 | this->ofs + this->size - newfrag->ofs - newfrag->size); | |
281 | if (unlikely(!newfrag2)) | |
282 | return -ENOMEM; | |
f97117d1 AB |
283 | if (this->node) |
284 | this->node->frags++; | |
285 | ||
286 | /* Adjust size of original 'this' */ | |
287 | this->size = newfrag->ofs - this->ofs; | |
288 | ||
289 | /* Now, we know there's no node with offset | |
290 | greater than this->ofs but smaller than | |
291 | newfrag2->ofs or newfrag->ofs, for obvious | |
292 | reasons. So we can do a tree insert from | |
293 | 'this' to insert newfrag, and a tree insert | |
294 | from newfrag to insert newfrag2. */ | |
295 | jffs2_fragtree_insert(newfrag, this); | |
1e0da3cb | 296 | rb_insert_color(&newfrag->rb, root); |
182ec4ee | 297 | |
f97117d1 | 298 | jffs2_fragtree_insert(newfrag2, newfrag); |
1e0da3cb | 299 | rb_insert_color(&newfrag2->rb, root); |
182ec4ee | 300 | |
f97117d1 | 301 | return 0; |
dae6227f | 302 | } |
f97117d1 AB |
303 | /* New node just reduces 'this' frag in size, doesn't split it */ |
304 | this->size = newfrag->ofs - this->ofs; | |
dae6227f | 305 | |
f97117d1 AB |
306 | /* Again, we know it lives down here in the tree */ |
307 | jffs2_fragtree_insert(newfrag, this); | |
1e0da3cb | 308 | rb_insert_color(&newfrag->rb, root); |
f97117d1 | 309 | } else { |
182ec4ee | 310 | /* New frag starts at the same point as 'this' used to. Replace |
f97117d1 | 311 | it in the tree without doing a delete and insertion */ |
733802d9 | 312 | dbg_fragtree2("inserting newfrag (*%p),%d-%d in before 'this' (*%p),%d-%d\n", |
e0d60137 | 313 | newfrag, newfrag->ofs, newfrag->ofs+newfrag->size, this, this->ofs, this->ofs+this->size); |
182ec4ee | 314 | |
1e0da3cb | 315 | rb_replace_node(&this->rb, &newfrag->rb, root); |
182ec4ee | 316 | |
f97117d1 | 317 | if (newfrag->ofs + newfrag->size >= this->ofs+this->size) { |
733802d9 | 318 | dbg_fragtree2("obsoleting node frag %p (%x-%x)\n", this, this->ofs, this->ofs+this->size); |
f97117d1 | 319 | jffs2_obsolete_node_frag(c, this); |
dae6227f | 320 | } else { |
f97117d1 AB |
321 | this->ofs += newfrag->size; |
322 | this->size -= newfrag->size; | |
323 | ||
324 | jffs2_fragtree_insert(this, newfrag); | |
1e0da3cb | 325 | rb_insert_color(&this->rb, root); |
f97117d1 | 326 | return 0; |
dae6227f | 327 | } |
dae6227f | 328 | } |
f97117d1 | 329 | /* OK, now we have newfrag added in the correct place in the tree, but |
182ec4ee | 330 | frag_next(newfrag) may be a fragment which is overlapped by it |
f97117d1 AB |
331 | */ |
332 | while ((this = frag_next(newfrag)) && newfrag->ofs + newfrag->size >= this->ofs + this->size) { | |
333 | /* 'this' frag is obsoleted completely. */ | |
733802d9 | 334 | dbg_fragtree2("obsoleting node frag %p (%x-%x) and removing from tree\n", |
e0d60137 | 335 | this, this->ofs, this->ofs+this->size); |
1e0da3cb | 336 | rb_erase(&this->rb, root); |
f97117d1 | 337 | jffs2_obsolete_node_frag(c, this); |
dae6227f | 338 | } |
182ec4ee | 339 | /* Now we're pointing at the first frag which isn't totally obsoleted by |
f97117d1 | 340 | the new frag */ |
dae6227f | 341 | |
1e0da3cb | 342 | if (!this || newfrag->ofs + newfrag->size == this->ofs) |
f97117d1 | 343 | return 0; |
1e0da3cb | 344 | |
f97117d1 AB |
345 | /* Still some overlap but we don't need to move it in the tree */ |
346 | this->size = (this->ofs + this->size) - (newfrag->ofs + newfrag->size); | |
347 | this->ofs = newfrag->ofs + newfrag->size; | |
348 | ||
349 | /* And mark them REF_NORMAL so the GC takes a look at them */ | |
350 | if (this->node) | |
351 | mark_ref_normal(this->node->raw); | |
352 | mark_ref_normal(newfrag->node->raw); | |
dae6227f AB |
353 | |
354 | return 0; | |
355 | } | |
356 | ||
182ec4ee | 357 | /* |
1e0da3cb AB |
358 | * Given an inode, probably with existing tree of fragments, add the new node |
359 | * to the fragment tree. | |
dae6227f | 360 | */ |
f97117d1 | 361 | int jffs2_add_full_dnode_to_inode(struct jffs2_sb_info *c, struct jffs2_inode_info *f, struct jffs2_full_dnode *fn) |
dae6227f | 362 | { |
f97117d1 AB |
363 | int ret; |
364 | struct jffs2_node_frag *newfrag; | |
dae6227f | 365 | |
f97117d1 AB |
366 | if (unlikely(!fn->size)) |
367 | return 0; | |
dae6227f | 368 | |
1e0da3cb | 369 | newfrag = new_fragment(fn, fn->ofs, fn->size); |
f97117d1 AB |
370 | if (unlikely(!newfrag)) |
371 | return -ENOMEM; | |
1e0da3cb | 372 | newfrag->node->frags = 1; |
1da177e4 | 373 | |
733802d9 | 374 | dbg_fragtree("adding node %#04x-%#04x @0x%08x on flash, newfrag *%p\n", |
e0d60137 | 375 | fn->ofs, fn->ofs+fn->size, ref_offset(fn->raw), newfrag); |
182ec4ee | 376 | |
f97117d1 AB |
377 | ret = jffs2_add_frag_to_fragtree(c, &f->fragtree, newfrag); |
378 | if (unlikely(ret)) | |
379 | return ret; | |
380 | ||
381 | /* If we now share a page with other nodes, mark either previous | |
382 | or next node REF_NORMAL, as appropriate. */ | |
383 | if (newfrag->ofs & (PAGE_CACHE_SIZE-1)) { | |
384 | struct jffs2_node_frag *prev = frag_prev(newfrag); | |
385 | ||
386 | mark_ref_normal(fn->raw); | |
182ec4ee | 387 | /* If we don't start at zero there's _always_ a previous */ |
f97117d1 AB |
388 | if (prev->node) |
389 | mark_ref_normal(prev->node->raw); | |
390 | } | |
1da177e4 | 391 | |
f97117d1 AB |
392 | if ((newfrag->ofs+newfrag->size) & (PAGE_CACHE_SIZE-1)) { |
393 | struct jffs2_node_frag *next = frag_next(newfrag); | |
182ec4ee | 394 | |
f97117d1 AB |
395 | if (next) { |
396 | mark_ref_normal(fn->raw); | |
397 | if (next->node) | |
398 | mark_ref_normal(next->node->raw); | |
1da177e4 | 399 | } |
1da177e4 | 400 | } |
f97117d1 | 401 | jffs2_dbg_fragtree_paranoia_check_nolock(f); |
1e0da3cb AB |
402 | |
403 | return 0; | |
404 | } | |
405 | ||
1da177e4 LT |
406 | void jffs2_set_inocache_state(struct jffs2_sb_info *c, struct jffs2_inode_cache *ic, int state) |
407 | { | |
408 | spin_lock(&c->inocache_lock); | |
409 | ic->state = state; | |
410 | wake_up(&c->inocache_wq); | |
411 | spin_unlock(&c->inocache_lock); | |
412 | } | |
413 | ||
414 | /* During mount, this needs no locking. During normal operation, its | |
415 | callers want to do other stuff while still holding the inocache_lock. | |
182ec4ee | 416 | Rather than introducing special case get_ino_cache functions or |
1da177e4 | 417 | callbacks, we just let the caller do the locking itself. */ |
182ec4ee | 418 | |
1da177e4 LT |
419 | struct jffs2_inode_cache *jffs2_get_ino_cache(struct jffs2_sb_info *c, uint32_t ino) |
420 | { | |
421 | struct jffs2_inode_cache *ret; | |
422 | ||
65e5a0e1 | 423 | ret = c->inocache_list[ino % c->inocache_hashsize]; |
1da177e4 LT |
424 | while (ret && ret->ino < ino) { |
425 | ret = ret->next; | |
426 | } | |
182ec4ee | 427 | |
1da177e4 LT |
428 | if (ret && ret->ino != ino) |
429 | ret = NULL; | |
430 | ||
1da177e4 LT |
431 | return ret; |
432 | } | |
433 | ||
434 | void jffs2_add_ino_cache (struct jffs2_sb_info *c, struct jffs2_inode_cache *new) | |
435 | { | |
436 | struct jffs2_inode_cache **prev; | |
7d27c814 | 437 | |
1da177e4 | 438 | spin_lock(&c->inocache_lock); |
7d27c814 TG |
439 | if (!new->ino) |
440 | new->ino = ++c->highest_ino; | |
441 | ||
733802d9 | 442 | dbg_inocache("add %p (ino #%u)\n", new, new->ino); |
7d27c814 | 443 | |
65e5a0e1 | 444 | prev = &c->inocache_list[new->ino % c->inocache_hashsize]; |
1da177e4 LT |
445 | |
446 | while ((*prev) && (*prev)->ino < new->ino) { | |
447 | prev = &(*prev)->next; | |
448 | } | |
449 | new->next = *prev; | |
450 | *prev = new; | |
451 | ||
452 | spin_unlock(&c->inocache_lock); | |
453 | } | |
454 | ||
455 | void jffs2_del_ino_cache(struct jffs2_sb_info *c, struct jffs2_inode_cache *old) | |
456 | { | |
457 | struct jffs2_inode_cache **prev; | |
e0d60137 | 458 | |
355ed4e1 KK |
459 | #ifdef CONFIG_JFFS2_FS_XATTR |
460 | BUG_ON(old->xref); | |
461 | #endif | |
733802d9 | 462 | dbg_inocache("del %p (ino #%u)\n", old, old->ino); |
1da177e4 | 463 | spin_lock(&c->inocache_lock); |
182ec4ee | 464 | |
65e5a0e1 | 465 | prev = &c->inocache_list[old->ino % c->inocache_hashsize]; |
182ec4ee | 466 | |
1da177e4 LT |
467 | while ((*prev) && (*prev)->ino < old->ino) { |
468 | prev = &(*prev)->next; | |
469 | } | |
470 | if ((*prev) == old) { | |
471 | *prev = old->next; | |
472 | } | |
473 | ||
67e345d1 DW |
474 | /* Free it now unless it's in READING or CLEARING state, which |
475 | are the transitions upon read_inode() and clear_inode(). The | |
182ec4ee | 476 | rest of the time we know nobody else is looking at it, and |
67e345d1 DW |
477 | if it's held by read_inode() or clear_inode() they'll free it |
478 | for themselves. */ | |
479 | if (old->state != INO_STATE_READING && old->state != INO_STATE_CLEARING) | |
480 | jffs2_free_inode_cache(old); | |
481 | ||
1da177e4 LT |
482 | spin_unlock(&c->inocache_lock); |
483 | } | |
484 | ||
485 | void jffs2_free_ino_caches(struct jffs2_sb_info *c) | |
486 | { | |
487 | int i; | |
488 | struct jffs2_inode_cache *this, *next; | |
182ec4ee | 489 | |
65e5a0e1 | 490 | for (i=0; i < c->inocache_hashsize; i++) { |
1da177e4 LT |
491 | this = c->inocache_list[i]; |
492 | while (this) { | |
493 | next = this->next; | |
aa98d7cf | 494 | jffs2_xattr_free_inode(c, this); |
1da177e4 LT |
495 | jffs2_free_inode_cache(this); |
496 | this = next; | |
497 | } | |
498 | c->inocache_list[i] = NULL; | |
499 | } | |
500 | } | |
501 | ||
502 | void jffs2_free_raw_node_refs(struct jffs2_sb_info *c) | |
503 | { | |
504 | int i; | |
505 | struct jffs2_raw_node_ref *this, *next; | |
506 | ||
507 | for (i=0; i<c->nr_blocks; i++) { | |
508 | this = c->blocks[i].first_node; | |
2f785402 | 509 | while (this) { |
9bfeb691 DW |
510 | if (this[REFS_PER_BLOCK].flash_offset == REF_LINK_NODE) |
511 | next = this[REFS_PER_BLOCK].next_in_ino; | |
512 | else | |
513 | next = NULL; | |
514 | ||
515 | jffs2_free_refblock(this); | |
1da177e4 LT |
516 | this = next; |
517 | } | |
518 | c->blocks[i].first_node = c->blocks[i].last_node = NULL; | |
519 | } | |
520 | } | |
182ec4ee | 521 | |
1da177e4 LT |
522 | struct jffs2_node_frag *jffs2_lookup_node_frag(struct rb_root *fragtree, uint32_t offset) |
523 | { | |
182ec4ee | 524 | /* The common case in lookup is that there will be a node |
1da177e4 LT |
525 | which precisely matches. So we go looking for that first */ |
526 | struct rb_node *next; | |
527 | struct jffs2_node_frag *prev = NULL; | |
528 | struct jffs2_node_frag *frag = NULL; | |
529 | ||
733802d9 | 530 | dbg_fragtree2("root %p, offset %d\n", fragtree, offset); |
1da177e4 LT |
531 | |
532 | next = fragtree->rb_node; | |
533 | ||
534 | while(next) { | |
535 | frag = rb_entry(next, struct jffs2_node_frag, rb); | |
536 | ||
1da177e4 | 537 | if (frag->ofs + frag->size <= offset) { |
1da177e4 LT |
538 | /* Remember the closest smaller match on the way down */ |
539 | if (!prev || frag->ofs > prev->ofs) | |
540 | prev = frag; | |
541 | next = frag->rb.rb_right; | |
542 | } else if (frag->ofs > offset) { | |
1da177e4 LT |
543 | next = frag->rb.rb_left; |
544 | } else { | |
1da177e4 LT |
545 | return frag; |
546 | } | |
547 | } | |
548 | ||
549 | /* Exact match not found. Go back up looking at each parent, | |
550 | and return the closest smaller one */ | |
551 | ||
552 | if (prev) | |
733802d9 | 553 | dbg_fragtree2("no match. Returning frag %#04x-%#04x, closest previous\n", |
e0d60137 | 554 | prev->ofs, prev->ofs+prev->size); |
182ec4ee | 555 | else |
733802d9 | 556 | dbg_fragtree2("returning NULL, empty fragtree\n"); |
182ec4ee | 557 | |
1da177e4 LT |
558 | return prev; |
559 | } | |
560 | ||
561 | /* Pass 'c' argument to indicate that nodes should be marked obsolete as | |
562 | they're killed. */ | |
563 | void jffs2_kill_fragtree(struct rb_root *root, struct jffs2_sb_info *c) | |
564 | { | |
565 | struct jffs2_node_frag *frag; | |
566 | struct jffs2_node_frag *parent; | |
567 | ||
568 | if (!root->rb_node) | |
569 | return; | |
570 | ||
733802d9 | 571 | dbg_fragtree("killing\n"); |
182ec4ee | 572 | |
1da177e4 | 573 | frag = (rb_entry(root->rb_node, struct jffs2_node_frag, rb)); |
1da177e4 LT |
574 | while(frag) { |
575 | if (frag->rb.rb_left) { | |
1da177e4 LT |
576 | frag = frag_left(frag); |
577 | continue; | |
578 | } | |
579 | if (frag->rb.rb_right) { | |
1da177e4 LT |
580 | frag = frag_right(frag); |
581 | continue; | |
582 | } | |
583 | ||
1da177e4 | 584 | if (frag->node && !(--frag->node->frags)) { |
182ec4ee | 585 | /* Not a hole, and it's the final remaining frag |
1da177e4 LT |
586 | of this node. Free the node */ |
587 | if (c) | |
588 | jffs2_mark_node_obsolete(c, frag->node->raw); | |
182ec4ee | 589 | |
1da177e4 LT |
590 | jffs2_free_full_dnode(frag->node); |
591 | } | |
592 | parent = frag_parent(frag); | |
593 | if (parent) { | |
594 | if (frag_left(parent) == frag) | |
595 | parent->rb.rb_left = NULL; | |
182ec4ee | 596 | else |
1da177e4 LT |
597 | parent->rb.rb_right = NULL; |
598 | } | |
599 | ||
600 | jffs2_free_node_frag(frag); | |
601 | frag = parent; | |
602 | ||
603 | cond_resched(); | |
604 | } | |
605 | } | |
f1f9671b | 606 | |
2f785402 DW |
607 | struct jffs2_raw_node_ref *jffs2_link_node_ref(struct jffs2_sb_info *c, |
608 | struct jffs2_eraseblock *jeb, | |
609 | uint32_t ofs, uint32_t len, | |
610 | struct jffs2_inode_cache *ic) | |
f1f9671b | 611 | { |
2f785402 DW |
612 | struct jffs2_raw_node_ref *ref; |
613 | ||
9bfeb691 DW |
614 | BUG_ON(!jeb->allocated_refs); |
615 | jeb->allocated_refs--; | |
616 | ||
617 | ref = jeb->last_node; | |
618 | ||
619 | dbg_noderef("Last node at %p is (%08x,%p)\n", ref, ref->flash_offset, | |
620 | ref->next_in_ino); | |
621 | ||
622 | while (ref->flash_offset != REF_EMPTY_NODE) { | |
623 | if (ref->flash_offset == REF_LINK_NODE) | |
624 | ref = ref->next_in_ino; | |
625 | else | |
626 | ref++; | |
2f785402 DW |
627 | } |
628 | ||
9bfeb691 DW |
629 | dbg_noderef("New ref is %p (%08x becomes %08x,%p) len 0x%x\n", ref, |
630 | ref->flash_offset, ofs, ref->next_in_ino, len); | |
631 | ||
2f785402 DW |
632 | ref->flash_offset = ofs; |
633 | ||
9bfeb691 | 634 | if (!jeb->first_node) { |
f1f9671b | 635 | jeb->first_node = ref; |
9bfeb691 DW |
636 | BUG_ON(ref_offset(ref) != jeb->offset); |
637 | } else if (unlikely(ref_offset(ref) != jeb->offset + c->sector_size - jeb->free_size)) { | |
638 | uint32_t last_len = ref_totlen(c, jeb, jeb->last_node); | |
639 | ||
640 | JFFS2_ERROR("Adding new ref %p at (0x%08x-0x%08x) not immediately after previous (0x%08x-0x%08x)\n", | |
641 | ref, ref_offset(ref), ref_offset(ref)+len, | |
642 | ref_offset(jeb->last_node), | |
643 | ref_offset(jeb->last_node)+last_len); | |
644 | BUG(); | |
ca89a517 | 645 | } |
f1f9671b DW |
646 | jeb->last_node = ref; |
647 | ||
fcb75787 DW |
648 | if (ic) { |
649 | ref->next_in_ino = ic->nodes; | |
650 | ic->nodes = ref; | |
651 | } else { | |
652 | ref->next_in_ino = NULL; | |
653 | } | |
654 | ||
f1f9671b DW |
655 | switch(ref_flags(ref)) { |
656 | case REF_UNCHECKED: | |
657 | c->unchecked_size += len; | |
658 | jeb->unchecked_size += len; | |
659 | break; | |
660 | ||
661 | case REF_NORMAL: | |
662 | case REF_PRISTINE: | |
663 | c->used_size += len; | |
664 | jeb->used_size += len; | |
665 | break; | |
666 | ||
667 | case REF_OBSOLETE: | |
668 | c->dirty_size += len; | |
3b79673c | 669 | jeb->dirty_size += len; |
f1f9671b DW |
670 | break; |
671 | } | |
672 | c->free_size -= len; | |
673 | jeb->free_size -= len; | |
674 | ||
ca89a517 DW |
675 | #ifdef TEST_TOTLEN |
676 | /* Set (and test) __totlen field... for now */ | |
677 | ref->__totlen = len; | |
678 | ref_totlen(c, jeb, ref); | |
679 | #endif | |
2f785402 | 680 | return ref; |
f1f9671b | 681 | } |
68270995 | 682 | |
2f785402 | 683 | /* No locking, no reservation of 'ref'. Do not use on a live file system */ |
68270995 DW |
684 | int jffs2_scan_dirty_space(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, |
685 | uint32_t size) | |
686 | { | |
ca89a517 DW |
687 | if (!size) |
688 | return 0; | |
9bfeb691 DW |
689 | if (unlikely(size > jeb->free_size)) { |
690 | printk(KERN_CRIT "Dirty space 0x%x larger then free_size 0x%x (wasted 0x%x)\n", | |
691 | size, jeb->free_size, jeb->wasted_size); | |
ca89a517 DW |
692 | BUG(); |
693 | } | |
9bfeb691 | 694 | /* REF_EMPTY_NODE is !obsolete, so that works OK */ |
2ebf09c2 | 695 | if (jeb->last_node && ref_obsolete(jeb->last_node)) { |
ca89a517 DW |
696 | #ifdef TEST_TOTLEN |
697 | jeb->last_node->__totlen += size; | |
698 | #endif | |
699 | c->dirty_size += size; | |
700 | c->free_size -= size; | |
701 | jeb->dirty_size += size; | |
702 | jeb->free_size -= size; | |
703 | } else { | |
2f785402 DW |
704 | uint32_t ofs = jeb->offset + c->sector_size - jeb->free_size; |
705 | ofs |= REF_OBSOLETE; | |
ca89a517 | 706 | |
2f785402 | 707 | jffs2_link_node_ref(c, jeb, ofs, size, NULL); |
ca89a517 | 708 | } |
68270995 DW |
709 | |
710 | return 0; | |
711 | } | |
ca89a517 DW |
712 | |
713 | /* Calculate totlen from surrounding nodes or eraseblock */ | |
714 | static inline uint32_t __ref_totlen(struct jffs2_sb_info *c, | |
715 | struct jffs2_eraseblock *jeb, | |
716 | struct jffs2_raw_node_ref *ref) | |
717 | { | |
718 | uint32_t ref_end; | |
99988f7b | 719 | struct jffs2_raw_node_ref *next_ref = ref_next(ref); |
ca89a517 | 720 | |
99988f7b DW |
721 | if (next_ref) |
722 | ref_end = ref_offset(next_ref); | |
ca89a517 DW |
723 | else { |
724 | if (!jeb) | |
725 | jeb = &c->blocks[ref->flash_offset / c->sector_size]; | |
726 | ||
727 | /* Last node in block. Use free_space */ | |
9bfeb691 | 728 | if (unlikely(ref != jeb->last_node)) { |
ca89a517 DW |
729 | printk(KERN_CRIT "ref %p @0x%08x is not jeb->last_node (%p @0x%08x)\n", |
730 | ref, ref_offset(ref), jeb->last_node, jeb->last_node?ref_offset(jeb->last_node):0); | |
731 | BUG(); | |
732 | } | |
733 | ref_end = jeb->offset + c->sector_size - jeb->free_size; | |
734 | } | |
735 | return ref_end - ref_offset(ref); | |
736 | } | |
737 | ||
738 | uint32_t __jffs2_ref_totlen(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb, | |
739 | struct jffs2_raw_node_ref *ref) | |
740 | { | |
741 | uint32_t ret; | |
742 | ||
ca89a517 | 743 | ret = __ref_totlen(c, jeb, ref); |
9bfeb691 | 744 | |
ca89a517 | 745 | #ifdef TEST_TOTLEN |
9bfeb691 DW |
746 | if (unlikely(ret != ref->__totlen)) { |
747 | if (!jeb) | |
748 | jeb = &c->blocks[ref->flash_offset / c->sector_size]; | |
749 | ||
ca89a517 DW |
750 | printk(KERN_CRIT "Totlen for ref at %p (0x%08x-0x%08x) miscalculated as 0x%x instead of %x\n", |
751 | ref, ref_offset(ref), ref_offset(ref)+ref->__totlen, | |
752 | ret, ref->__totlen); | |
99988f7b DW |
753 | if (ref_next(ref)) { |
754 | printk(KERN_CRIT "next %p (0x%08x-0x%08x)\n", ref_next(ref), ref_offset(ref_next(ref)), | |
755 | ref_offset(ref_next(ref))+ref->__totlen); | |
ca89a517 | 756 | } else |
99988f7b | 757 | printk(KERN_CRIT "No next ref. jeb->last_node is %p\n", jeb->last_node); |
ca89a517 DW |
758 | |
759 | printk(KERN_CRIT "jeb->wasted_size %x, dirty_size %x, used_size %x, free_size %x\n", jeb->wasted_size, jeb->dirty_size, jeb->used_size, jeb->free_size); | |
9bfeb691 | 760 | |
ca89a517 DW |
761 | #if defined(JFFS2_DBG_DUMPS) || defined(JFFS2_DBG_PARANOIA_CHECKS) |
762 | __jffs2_dbg_dump_node_refs_nolock(c, jeb); | |
763 | #endif | |
9bfeb691 | 764 | |
ca89a517 | 765 | WARN_ON(1); |
9bfeb691 DW |
766 | |
767 | ret = ref->__totlen; | |
ca89a517 DW |
768 | } |
769 | #endif /* TEST_TOTLEN */ | |
770 | return ret; | |
771 | } |