2 * JFFS2 -- Journalling Flash File System, Version 2.
4 * Copyright © 2004 Ferenc Havasi <havasi@inf.u-szeged.hu>,
5 * Zoltan Sogor <weth@inf.u-szeged.hu>,
6 * Patrik Kluba <pajko@halom.u-szeged.hu>,
7 * University of Szeged, Hungary
8 * 2006 KaiGai Kohei <kaigai@ak.jp.nec.com>
10 * For licensing information, see the file 'LICENCE' in this directory.
14 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16 #include <linux/kernel.h>
17 #include <linux/slab.h>
18 #include <linux/mtd/mtd.h>
19 #include <linux/pagemap.h>
20 #include <linux/crc32.h>
21 #include <linux/compiler.h>
22 #include <linux/vmalloc.h>
26 int jffs2_sum_init(struct jffs2_sb_info *c)
28 uint32_t sum_size = min_t(uint32_t, c->sector_size, MAX_SUMMARY_SIZE);
30 c->summary = kzalloc(sizeof(struct jffs2_summary), GFP_KERNEL);
33 JFFS2_WARNING("Can't allocate memory for summary information!\n");
37 c->summary->sum_buf = kmalloc(sum_size, GFP_KERNEL);
39 if (!c->summary->sum_buf) {
40 JFFS2_WARNING("Can't allocate buffer for writing out summary information!\n");
45 dbg_summary("returned successfully\n");
50 void jffs2_sum_exit(struct jffs2_sb_info *c)
52 dbg_summary("called\n");
54 jffs2_sum_disable_collecting(c->summary);
56 kfree(c->summary->sum_buf);
57 c->summary->sum_buf = NULL;
63 static int jffs2_sum_add_mem(struct jffs2_summary *s, union jffs2_sum_mem *item)
65 if (!s->sum_list_head)
66 s->sum_list_head = (union jffs2_sum_mem *) item;
68 s->sum_list_tail->u.next = (union jffs2_sum_mem *) item;
69 s->sum_list_tail = (union jffs2_sum_mem *) item;
71 switch (je16_to_cpu(item->u.nodetype)) {
72 case JFFS2_NODETYPE_INODE:
73 s->sum_size += JFFS2_SUMMARY_INODE_SIZE;
75 dbg_summary("inode (%u) added to summary\n",
76 je32_to_cpu(item->i.inode));
78 case JFFS2_NODETYPE_DIRENT:
79 s->sum_size += JFFS2_SUMMARY_DIRENT_SIZE(item->d.nsize);
81 dbg_summary("dirent (%u) added to summary\n",
82 je32_to_cpu(item->d.ino));
84 #ifdef CONFIG_JFFS2_FS_XATTR
85 case JFFS2_NODETYPE_XATTR:
86 s->sum_size += JFFS2_SUMMARY_XATTR_SIZE;
88 dbg_summary("xattr (xid=%u, version=%u) added to summary\n",
89 je32_to_cpu(item->x.xid), je32_to_cpu(item->x.version));
91 case JFFS2_NODETYPE_XREF:
92 s->sum_size += JFFS2_SUMMARY_XREF_SIZE;
94 dbg_summary("xref added to summary\n");
98 JFFS2_WARNING("UNKNOWN node type %u\n",
99 je16_to_cpu(item->u.nodetype));
106 /* The following 3 functions are called from scan.c to collect summary info for not closed jeb */
108 int jffs2_sum_add_padding_mem(struct jffs2_summary *s, uint32_t size)
110 dbg_summary("called with %u\n", size);
111 s->sum_padded += size;
115 int jffs2_sum_add_inode_mem(struct jffs2_summary *s, struct jffs2_raw_inode *ri,
118 struct jffs2_sum_inode_mem *temp = kmalloc(sizeof(struct jffs2_sum_inode_mem), GFP_KERNEL);
123 temp->nodetype = ri->nodetype;
124 temp->inode = ri->ino;
125 temp->version = ri->version;
126 temp->offset = cpu_to_je32(ofs); /* relative offset from the beginning of the jeb */
127 temp->totlen = ri->totlen;
130 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
133 int jffs2_sum_add_dirent_mem(struct jffs2_summary *s, struct jffs2_raw_dirent *rd,
136 struct jffs2_sum_dirent_mem *temp =
137 kmalloc(sizeof(struct jffs2_sum_dirent_mem) + rd->nsize, GFP_KERNEL);
142 temp->nodetype = rd->nodetype;
143 temp->totlen = rd->totlen;
144 temp->offset = cpu_to_je32(ofs); /* relative from the beginning of the jeb */
145 temp->pino = rd->pino;
146 temp->version = rd->version;
148 temp->nsize = rd->nsize;
149 temp->type = rd->type;
152 memcpy(temp->name, rd->name, rd->nsize);
154 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
157 #ifdef CONFIG_JFFS2_FS_XATTR
158 int jffs2_sum_add_xattr_mem(struct jffs2_summary *s, struct jffs2_raw_xattr *rx, uint32_t ofs)
160 struct jffs2_sum_xattr_mem *temp;
162 temp = kmalloc(sizeof(struct jffs2_sum_xattr_mem), GFP_KERNEL);
166 temp->nodetype = rx->nodetype;
168 temp->version = rx->version;
169 temp->offset = cpu_to_je32(ofs);
170 temp->totlen = rx->totlen;
173 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
176 int jffs2_sum_add_xref_mem(struct jffs2_summary *s, struct jffs2_raw_xref *rr, uint32_t ofs)
178 struct jffs2_sum_xref_mem *temp;
180 temp = kmalloc(sizeof(struct jffs2_sum_xref_mem), GFP_KERNEL);
184 temp->nodetype = rr->nodetype;
185 temp->offset = cpu_to_je32(ofs);
188 return jffs2_sum_add_mem(s, (union jffs2_sum_mem *)temp);
191 /* Cleanup every collected summary information */
193 static void jffs2_sum_clean_collected(struct jffs2_summary *s)
195 union jffs2_sum_mem *temp;
197 if (!s->sum_list_head) {
198 dbg_summary("already empty\n");
200 while (s->sum_list_head) {
201 temp = s->sum_list_head;
202 s->sum_list_head = s->sum_list_head->u.next;
205 s->sum_list_tail = NULL;
210 void jffs2_sum_reset_collected(struct jffs2_summary *s)
212 dbg_summary("called\n");
213 jffs2_sum_clean_collected(s);
217 void jffs2_sum_disable_collecting(struct jffs2_summary *s)
219 dbg_summary("called\n");
220 jffs2_sum_clean_collected(s);
221 s->sum_size = JFFS2_SUMMARY_NOSUM_SIZE;
224 int jffs2_sum_is_disabled(struct jffs2_summary *s)
226 return (s->sum_size == JFFS2_SUMMARY_NOSUM_SIZE);
229 /* Move the collected summary information into sb (called from scan.c) */
231 void jffs2_sum_move_collected(struct jffs2_sb_info *c, struct jffs2_summary *s)
233 dbg_summary("oldsize=0x%x oldnum=%u => newsize=0x%x newnum=%u\n",
234 c->summary->sum_size, c->summary->sum_num,
235 s->sum_size, s->sum_num);
237 c->summary->sum_size = s->sum_size;
238 c->summary->sum_num = s->sum_num;
239 c->summary->sum_padded = s->sum_padded;
240 c->summary->sum_list_head = s->sum_list_head;
241 c->summary->sum_list_tail = s->sum_list_tail;
243 s->sum_list_head = s->sum_list_tail = NULL;
246 /* Called from wbuf.c to collect writed node info */
248 int jffs2_sum_add_kvec(struct jffs2_sb_info *c, const struct kvec *invecs,
249 unsigned long count, uint32_t ofs)
251 union jffs2_node_union *node;
252 struct jffs2_eraseblock *jeb;
254 if (c->summary->sum_size == JFFS2_SUMMARY_NOSUM_SIZE) {
255 dbg_summary("Summary is disabled for this jeb! Skipping summary info!\n");
259 node = invecs[0].iov_base;
260 jeb = &c->blocks[ofs / c->sector_size];
263 switch (je16_to_cpu(node->u.nodetype)) {
264 case JFFS2_NODETYPE_INODE: {
265 struct jffs2_sum_inode_mem *temp =
266 kmalloc(sizeof(struct jffs2_sum_inode_mem), GFP_KERNEL);
271 temp->nodetype = node->i.nodetype;
272 temp->inode = node->i.ino;
273 temp->version = node->i.version;
274 temp->offset = cpu_to_je32(ofs);
275 temp->totlen = node->i.totlen;
278 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
281 case JFFS2_NODETYPE_DIRENT: {
282 struct jffs2_sum_dirent_mem *temp =
283 kmalloc(sizeof(struct jffs2_sum_dirent_mem) + node->d.nsize, GFP_KERNEL);
288 temp->nodetype = node->d.nodetype;
289 temp->totlen = node->d.totlen;
290 temp->offset = cpu_to_je32(ofs);
291 temp->pino = node->d.pino;
292 temp->version = node->d.version;
293 temp->ino = node->d.ino;
294 temp->nsize = node->d.nsize;
295 temp->type = node->d.type;
300 memcpy(temp->name,node->d.name,node->d.nsize);
304 memcpy(temp->name,invecs[1].iov_base,node->d.nsize);
308 BUG(); /* impossible count value */
312 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
314 #ifdef CONFIG_JFFS2_FS_XATTR
315 case JFFS2_NODETYPE_XATTR: {
316 struct jffs2_sum_xattr_mem *temp;
317 temp = kmalloc(sizeof(struct jffs2_sum_xattr_mem), GFP_KERNEL);
321 temp->nodetype = node->x.nodetype;
322 temp->xid = node->x.xid;
323 temp->version = node->x.version;
324 temp->totlen = node->x.totlen;
325 temp->offset = cpu_to_je32(ofs);
328 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
330 case JFFS2_NODETYPE_XREF: {
331 struct jffs2_sum_xref_mem *temp;
332 temp = kmalloc(sizeof(struct jffs2_sum_xref_mem), GFP_KERNEL);
335 temp->nodetype = node->r.nodetype;
336 temp->offset = cpu_to_je32(ofs);
339 return jffs2_sum_add_mem(c->summary, (union jffs2_sum_mem *)temp);
342 case JFFS2_NODETYPE_PADDING:
343 dbg_summary("node PADDING\n");
344 c->summary->sum_padded += je32_to_cpu(node->u.totlen);
347 case JFFS2_NODETYPE_CLEANMARKER:
348 dbg_summary("node CLEANMARKER\n");
351 case JFFS2_NODETYPE_SUMMARY:
352 dbg_summary("node SUMMARY\n");
356 /* If you implement a new node type you should also implement
357 summary support for it or disable summary.
366 JFFS2_WARNING("MEMORY ALLOCATION ERROR!");
370 static struct jffs2_raw_node_ref *sum_link_node_ref(struct jffs2_sb_info *c,
371 struct jffs2_eraseblock *jeb,
372 uint32_t ofs, uint32_t len,
373 struct jffs2_inode_cache *ic)
375 /* If there was a gap, mark it dirty */
376 if ((ofs & ~3) > c->sector_size - jeb->free_size) {
377 /* Ew. Summary doesn't actually tell us explicitly about dirty space */
378 jffs2_scan_dirty_space(c, jeb, (ofs & ~3) - (c->sector_size - jeb->free_size));
381 return jffs2_link_node_ref(c, jeb, jeb->offset + ofs, len, ic);
384 /* Process the stored summary information - helper function for jffs2_sum_scan_sumnode() */
386 static int jffs2_sum_process_sum_data(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
387 struct jffs2_raw_summary *summary, uint32_t *pseudo_random)
389 struct jffs2_inode_cache *ic;
390 struct jffs2_full_dirent *fd;
397 for (i=0; i<je32_to_cpu(summary->sum_num); i++) {
398 dbg_summary("processing summary index %d\n", i);
402 /* Make sure there's a spare ref for dirty space */
403 err = jffs2_prealloc_raw_node_refs(c, jeb, 2);
407 switch (je16_to_cpu(((struct jffs2_sum_unknown_flash *)sp)->nodetype)) {
408 case JFFS2_NODETYPE_INODE: {
409 struct jffs2_sum_inode_flash *spi;
412 ino = je32_to_cpu(spi->inode);
414 dbg_summary("Inode at 0x%08x-0x%08x\n",
415 jeb->offset + je32_to_cpu(spi->offset),
416 jeb->offset + je32_to_cpu(spi->offset) + je32_to_cpu(spi->totlen));
418 ic = jffs2_scan_make_ino_cache(c, ino);
420 JFFS2_NOTICE("scan_make_ino_cache failed\n");
424 sum_link_node_ref(c, jeb, je32_to_cpu(spi->offset) | REF_UNCHECKED,
425 PAD(je32_to_cpu(spi->totlen)), ic);
427 *pseudo_random += je32_to_cpu(spi->version);
429 sp += JFFS2_SUMMARY_INODE_SIZE;
434 case JFFS2_NODETYPE_DIRENT: {
435 struct jffs2_sum_dirent_flash *spd;
439 dbg_summary("Dirent at 0x%08x-0x%08x\n",
440 jeb->offset + je32_to_cpu(spd->offset),
441 jeb->offset + je32_to_cpu(spd->offset) + je32_to_cpu(spd->totlen));
444 /* This should never happen, but https://dev.laptop.org/ticket/4184 */
445 checkedlen = strnlen(spd->name, spd->nsize);
447 pr_err("Dirent at %08x has zero at start of name. Aborting mount.\n",
449 je32_to_cpu(spd->offset));
452 if (checkedlen < spd->nsize) {
453 pr_err("Dirent at %08x has zeroes in name. Truncating to %d chars\n",
455 je32_to_cpu(spd->offset),
460 fd = jffs2_alloc_full_dirent(checkedlen+1);
464 memcpy(&fd->name, spd->name, checkedlen);
465 fd->name[checkedlen] = 0;
467 ic = jffs2_scan_make_ino_cache(c, je32_to_cpu(spd->pino));
469 jffs2_free_full_dirent(fd);
473 fd->raw = sum_link_node_ref(c, jeb, je32_to_cpu(spd->offset) | REF_UNCHECKED,
474 PAD(je32_to_cpu(spd->totlen)), ic);
477 fd->version = je32_to_cpu(spd->version);
478 fd->ino = je32_to_cpu(spd->ino);
479 fd->nhash = full_name_hash(NULL, fd->name, checkedlen);
480 fd->type = spd->type;
482 jffs2_add_fd_to_list(c, fd, &ic->scan_dents);
484 *pseudo_random += je32_to_cpu(spd->version);
486 sp += JFFS2_SUMMARY_DIRENT_SIZE(spd->nsize);
490 #ifdef CONFIG_JFFS2_FS_XATTR
491 case JFFS2_NODETYPE_XATTR: {
492 struct jffs2_xattr_datum *xd;
493 struct jffs2_sum_xattr_flash *spx;
495 spx = (struct jffs2_sum_xattr_flash *)sp;
496 dbg_summary("xattr at %#08x-%#08x (xid=%u, version=%u)\n",
497 jeb->offset + je32_to_cpu(spx->offset),
498 jeb->offset + je32_to_cpu(spx->offset) + je32_to_cpu(spx->totlen),
499 je32_to_cpu(spx->xid), je32_to_cpu(spx->version));
501 xd = jffs2_setup_xattr_datum(c, je32_to_cpu(spx->xid),
502 je32_to_cpu(spx->version));
505 if (xd->version > je32_to_cpu(spx->version)) {
506 /* node is not the newest one */
507 struct jffs2_raw_node_ref *raw
508 = sum_link_node_ref(c, jeb, je32_to_cpu(spx->offset) | REF_UNCHECKED,
509 PAD(je32_to_cpu(spx->totlen)), NULL);
510 raw->next_in_ino = xd->node->next_in_ino;
511 xd->node->next_in_ino = raw;
513 xd->version = je32_to_cpu(spx->version);
514 sum_link_node_ref(c, jeb, je32_to_cpu(spx->offset) | REF_UNCHECKED,
515 PAD(je32_to_cpu(spx->totlen)), (void *)xd);
517 *pseudo_random += je32_to_cpu(spx->xid);
518 sp += JFFS2_SUMMARY_XATTR_SIZE;
522 case JFFS2_NODETYPE_XREF: {
523 struct jffs2_xattr_ref *ref;
524 struct jffs2_sum_xref_flash *spr;
526 spr = (struct jffs2_sum_xref_flash *)sp;
527 dbg_summary("xref at %#08x-%#08x\n",
528 jeb->offset + je32_to_cpu(spr->offset),
529 jeb->offset + je32_to_cpu(spr->offset) +
530 (uint32_t)PAD(sizeof(struct jffs2_raw_xref)));
532 ref = jffs2_alloc_xattr_ref();
534 JFFS2_NOTICE("allocation of xattr_datum failed\n");
537 ref->next = c->xref_temp;
540 sum_link_node_ref(c, jeb, je32_to_cpu(spr->offset) | REF_UNCHECKED,
541 PAD(sizeof(struct jffs2_raw_xref)), (void *)ref);
543 *pseudo_random += ref->node->flash_offset;
544 sp += JFFS2_SUMMARY_XREF_SIZE;
550 uint16_t nodetype = je16_to_cpu(((struct jffs2_sum_unknown_flash *)sp)->nodetype);
551 JFFS2_WARNING("Unsupported node type %x found in summary! Exiting...\n", nodetype);
552 if ((nodetype & JFFS2_COMPAT_MASK) == JFFS2_FEATURE_INCOMPAT)
555 /* For compatible node types, just fall back to the full scan */
556 c->wasted_size -= jeb->wasted_size;
557 c->free_size += c->sector_size - jeb->free_size;
558 c->used_size -= jeb->used_size;
559 c->dirty_size -= jeb->dirty_size;
560 jeb->wasted_size = jeb->used_size = jeb->dirty_size = 0;
561 jeb->free_size = c->sector_size;
563 jffs2_free_jeb_node_refs(c, jeb);
564 return -ENOTRECOVERABLE;
571 /* Process the summary node - called from jffs2_scan_eraseblock() */
572 int jffs2_sum_scan_sumnode(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
573 struct jffs2_raw_summary *summary, uint32_t sumsize,
574 uint32_t *pseudo_random)
576 struct jffs2_unknown_node crcnode;
580 ofs = c->sector_size - sumsize;
582 dbg_summary("summary found for 0x%08x at 0x%08x (0x%x bytes)\n",
583 jeb->offset, jeb->offset + ofs, sumsize);
585 /* OK, now check for node validity and CRC */
586 crcnode.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
587 crcnode.nodetype = cpu_to_je16(JFFS2_NODETYPE_SUMMARY);
588 crcnode.totlen = summary->totlen;
589 crc = crc32(0, &crcnode, sizeof(crcnode)-4);
591 if (je32_to_cpu(summary->hdr_crc) != crc) {
592 dbg_summary("Summary node header is corrupt (bad CRC or "
593 "no summary at all)\n");
597 if (je32_to_cpu(summary->totlen) != sumsize) {
598 dbg_summary("Summary node is corrupt (wrong erasesize?)\n");
602 crc = crc32(0, summary, sizeof(struct jffs2_raw_summary)-8);
604 if (je32_to_cpu(summary->node_crc) != crc) {
605 dbg_summary("Summary node is corrupt (bad CRC)\n");
609 crc = crc32(0, summary->sum, sumsize - sizeof(struct jffs2_raw_summary));
611 if (je32_to_cpu(summary->sum_crc) != crc) {
612 dbg_summary("Summary node data is corrupt (bad CRC)\n");
616 if ( je32_to_cpu(summary->cln_mkr) ) {
618 dbg_summary("Summary : CLEANMARKER node \n");
620 ret = jffs2_prealloc_raw_node_refs(c, jeb, 1);
624 if (je32_to_cpu(summary->cln_mkr) != c->cleanmarker_size) {
625 dbg_summary("CLEANMARKER node has totlen 0x%x != normal 0x%x\n",
626 je32_to_cpu(summary->cln_mkr), c->cleanmarker_size);
627 if ((ret = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(summary->cln_mkr)))))
629 } else if (jeb->first_node) {
630 dbg_summary("CLEANMARKER node not first node in block "
631 "(0x%08x)\n", jeb->offset);
632 if ((ret = jffs2_scan_dirty_space(c, jeb, PAD(je32_to_cpu(summary->cln_mkr)))))
635 jffs2_link_node_ref(c, jeb, jeb->offset | REF_NORMAL,
636 je32_to_cpu(summary->cln_mkr), NULL);
640 ret = jffs2_sum_process_sum_data(c, jeb, summary, pseudo_random);
641 /* -ENOTRECOVERABLE isn't a fatal error -- it means we should do a full
642 scan of this eraseblock. So return zero */
643 if (ret == -ENOTRECOVERABLE)
646 return ret; /* real error */
648 /* for PARANOIA_CHECK */
649 ret = jffs2_prealloc_raw_node_refs(c, jeb, 2);
653 sum_link_node_ref(c, jeb, ofs | REF_NORMAL, sumsize, NULL);
655 if (unlikely(jeb->free_size)) {
656 JFFS2_WARNING("Free size 0x%x bytes in eraseblock @0x%08x with summary?\n",
657 jeb->free_size, jeb->offset);
658 jeb->wasted_size += jeb->free_size;
659 c->wasted_size += jeb->free_size;
660 c->free_size -= jeb->free_size;
664 return jffs2_scan_classify_jeb(c, jeb);
667 JFFS2_WARNING("Summary node crc error, skipping summary information.\n");
672 /* Write summary data to flash - helper function for jffs2_sum_write_sumnode() */
674 static int jffs2_sum_write_data(struct jffs2_sb_info *c, struct jffs2_eraseblock *jeb,
675 uint32_t infosize, uint32_t datasize, int padsize)
677 struct jffs2_raw_summary isum;
678 union jffs2_sum_mem *temp;
679 struct jffs2_sum_marker *sm;
686 if (padsize + datasize > MAX_SUMMARY_SIZE) {
687 /* It won't fit in the buffer. Abort summary for this jeb */
688 jffs2_sum_disable_collecting(c->summary);
690 JFFS2_WARNING("Summary too big (%d data, %d pad) in eraseblock at %08x\n",
691 datasize, padsize, jeb->offset);
695 /* Is there enough space for summary? */
697 /* don't try to write out summary for this jeb */
698 jffs2_sum_disable_collecting(c->summary);
700 JFFS2_WARNING("Not enough space for summary, padsize = %d\n",
706 memset(c->summary->sum_buf, 0xff, datasize);
707 memset(&isum, 0, sizeof(isum));
709 isum.magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
710 isum.nodetype = cpu_to_je16(JFFS2_NODETYPE_SUMMARY);
711 isum.totlen = cpu_to_je32(infosize);
712 isum.hdr_crc = cpu_to_je32(crc32(0, &isum, sizeof(struct jffs2_unknown_node) - 4));
713 isum.padded = cpu_to_je32(c->summary->sum_padded);
714 isum.cln_mkr = cpu_to_je32(c->cleanmarker_size);
715 isum.sum_num = cpu_to_je32(c->summary->sum_num);
716 wpage = c->summary->sum_buf;
718 while (c->summary->sum_num) {
719 temp = c->summary->sum_list_head;
721 switch (je16_to_cpu(temp->u.nodetype)) {
722 case JFFS2_NODETYPE_INODE: {
723 struct jffs2_sum_inode_flash *sino_ptr = wpage;
725 sino_ptr->nodetype = temp->i.nodetype;
726 sino_ptr->inode = temp->i.inode;
727 sino_ptr->version = temp->i.version;
728 sino_ptr->offset = temp->i.offset;
729 sino_ptr->totlen = temp->i.totlen;
731 wpage += JFFS2_SUMMARY_INODE_SIZE;
736 case JFFS2_NODETYPE_DIRENT: {
737 struct jffs2_sum_dirent_flash *sdrnt_ptr = wpage;
739 sdrnt_ptr->nodetype = temp->d.nodetype;
740 sdrnt_ptr->totlen = temp->d.totlen;
741 sdrnt_ptr->offset = temp->d.offset;
742 sdrnt_ptr->pino = temp->d.pino;
743 sdrnt_ptr->version = temp->d.version;
744 sdrnt_ptr->ino = temp->d.ino;
745 sdrnt_ptr->nsize = temp->d.nsize;
746 sdrnt_ptr->type = temp->d.type;
748 memcpy(sdrnt_ptr->name, temp->d.name,
751 wpage += JFFS2_SUMMARY_DIRENT_SIZE(temp->d.nsize);
755 #ifdef CONFIG_JFFS2_FS_XATTR
756 case JFFS2_NODETYPE_XATTR: {
757 struct jffs2_sum_xattr_flash *sxattr_ptr = wpage;
759 temp = c->summary->sum_list_head;
760 sxattr_ptr->nodetype = temp->x.nodetype;
761 sxattr_ptr->xid = temp->x.xid;
762 sxattr_ptr->version = temp->x.version;
763 sxattr_ptr->offset = temp->x.offset;
764 sxattr_ptr->totlen = temp->x.totlen;
766 wpage += JFFS2_SUMMARY_XATTR_SIZE;
769 case JFFS2_NODETYPE_XREF: {
770 struct jffs2_sum_xref_flash *sxref_ptr = wpage;
772 temp = c->summary->sum_list_head;
773 sxref_ptr->nodetype = temp->r.nodetype;
774 sxref_ptr->offset = temp->r.offset;
776 wpage += JFFS2_SUMMARY_XREF_SIZE;
781 if ((je16_to_cpu(temp->u.nodetype) & JFFS2_COMPAT_MASK)
782 == JFFS2_FEATURE_RWCOMPAT_COPY) {
783 dbg_summary("Writing unknown RWCOMPAT_COPY node type %x\n",
784 je16_to_cpu(temp->u.nodetype));
785 jffs2_sum_disable_collecting(c->summary);
786 /* The above call removes the list, nothing more to do */
789 BUG(); /* unknown node in summary information */
794 c->summary->sum_list_head = temp->u.next;
797 c->summary->sum_num--;
801 jffs2_sum_reset_collected(c->summary);
806 sm->offset = cpu_to_je32(c->sector_size - jeb->free_size);
807 sm->magic = cpu_to_je32(JFFS2_SUM_MAGIC);
809 isum.sum_crc = cpu_to_je32(crc32(0, c->summary->sum_buf, datasize));
810 isum.node_crc = cpu_to_je32(crc32(0, &isum, sizeof(isum) - 8));
812 vecs[0].iov_base = &isum;
813 vecs[0].iov_len = sizeof(isum);
814 vecs[1].iov_base = c->summary->sum_buf;
815 vecs[1].iov_len = datasize;
817 sum_ofs = jeb->offset + c->sector_size - jeb->free_size;
819 dbg_summary("writing out data to flash to pos : 0x%08x\n", sum_ofs);
821 ret = jffs2_flash_writev(c, vecs, 2, sum_ofs, &retlen, 0);
823 if (ret || (retlen != infosize)) {
825 JFFS2_WARNING("Write of %u bytes at 0x%08x failed. returned %d, retlen %zd\n",
826 infosize, sum_ofs, ret, retlen);
829 /* Waste remaining space */
830 spin_lock(&c->erase_completion_lock);
831 jffs2_link_node_ref(c, jeb, sum_ofs | REF_OBSOLETE, infosize, NULL);
832 spin_unlock(&c->erase_completion_lock);
835 c->summary->sum_size = JFFS2_SUMMARY_NOSUM_SIZE;
840 spin_lock(&c->erase_completion_lock);
841 jffs2_link_node_ref(c, jeb, sum_ofs | REF_NORMAL, infosize, NULL);
842 spin_unlock(&c->erase_completion_lock);
847 /* Write out summary information - called from jffs2_do_reserve_space */
849 int jffs2_sum_write_sumnode(struct jffs2_sb_info *c)
850 __must_hold(&c->erase_completion_block)
852 int datasize, infosize, padsize;
853 struct jffs2_eraseblock *jeb;
856 dbg_summary("called\n");
858 spin_unlock(&c->erase_completion_lock);
861 jffs2_prealloc_raw_node_refs(c, jeb, 1);
863 if (!c->summary->sum_num || !c->summary->sum_list_head) {
864 JFFS2_WARNING("Empty summary info!!!\n");
868 datasize = c->summary->sum_size + sizeof(struct jffs2_sum_marker);
869 infosize = sizeof(struct jffs2_raw_summary) + datasize;
870 padsize = jeb->free_size - infosize;
874 ret = jffs2_sum_write_data(c, jeb, infosize, datasize, padsize);
875 spin_lock(&c->erase_completion_lock);