nodemgmt.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:14k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * JFFS2 -- Journalling Flash File System, Version 2.
  3.  *
  4.  * Copyright (C) 2001 Red Hat, Inc.
  5.  *
  6.  * Created by David Woodhouse <dwmw2@cambridge.redhat.com>
  7.  *
  8.  * The original JFFS, from which the design for JFFS2 was derived,
  9.  * was designed and implemented by Axis Communications AB.
  10.  *
  11.  * The contents of this file are subject to the Red Hat eCos Public
  12.  * License Version 1.1 (the "Licence"); you may not use this file
  13.  * except in compliance with the Licence.  You may obtain a copy of
  14.  * the Licence at http://www.redhat.com/
  15.  *
  16.  * Software distributed under the Licence is distributed on an "AS IS"
  17.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.
  18.  * See the Licence for the specific language governing rights and
  19.  * limitations under the Licence.
  20.  *
  21.  * The Original Code is JFFS2 - Journalling Flash File System, version 2
  22.  *
  23.  * Alternatively, the contents of this file may be used under the
  24.  * terms of the GNU General Public License version 2 (the "GPL"), in
  25.  * which case the provisions of the GPL are applicable instead of the
  26.  * above.  If you wish to allow the use of your version of this file
  27.  * only under the terms of the GPL and not to allow others to use your
  28.  * version of this file under the RHEPL, indicate your decision by
  29.  * deleting the provisions above and replace them with the notice and
  30.  * other provisions required by the GPL.  If you do not delete the
  31.  * provisions above, a recipient may use your version of this file
  32.  * under either the RHEPL or the GPL.
  33.  *
  34.  * $Id: nodemgmt.c,v 1.45.2.1 2002/02/23 14:13:34 dwmw2 Exp $
  35.  *
  36.  */
  37. #include <linux/kernel.h>
  38. #include <linux/slab.h>
  39. #include <linux/jffs2.h>
  40. #include <linux/mtd/mtd.h>
  41. #include <linux/interrupt.h>
  42. #include "nodelist.h"
  43. /**
  44.  * jffs2_reserve_space - request physical space to write nodes to flash
  45.  * @c: superblock info
  46.  * @minsize: Minimum acceptable size of allocation
  47.  * @ofs: Returned value of node offset
  48.  * @len: Returned value of allocation length
  49.  * @prio: Allocation type - ALLOC_{NORMAL,DELETION}
  50.  *
  51.  * Requests a block of physical space on the flash. Returns zero for success
  52.  * and puts 'ofs' and 'len' into the appriopriate place, or returns -ENOSPC
  53.  * or other error if appropriate.
  54.  *
  55.  * If it returns zero, jffs2_reserve_space() also downs the per-filesystem
  56.  * allocation semaphore, to prevent more than one allocation from being
  57.  * active at any time. The semaphore is later released by jffs2_commit_allocation()
  58.  *
  59.  * jffs2_reserve_space() may trigger garbage collection in order to make room
  60.  * for the requested allocation.
  61.  */
  62. static int jffs2_do_reserve_space(struct jffs2_sb_info *c,  __u32 minsize, __u32 *ofs, __u32 *len);
  63. int jffs2_reserve_space(struct jffs2_sb_info *c, __u32 minsize, __u32 *ofs, __u32 *len, int prio)
  64. {
  65. int ret = -EAGAIN;
  66. int blocksneeded = JFFS2_RESERVED_BLOCKS_WRITE;
  67. /* align it */
  68. minsize = PAD(minsize);
  69. if (prio == ALLOC_DELETION)
  70. blocksneeded = JFFS2_RESERVED_BLOCKS_DELETION;
  71. D1(printk(KERN_DEBUG "jffs2_reserve_space(): Requested 0x%x bytesn", minsize));
  72. down(&c->alloc_sem);
  73. D1(printk(KERN_DEBUG "jffs2_reserve_space(): alloc sem gotn"));
  74. spin_lock_bh(&c->erase_completion_lock);
  75. /* this needs a little more thought */
  76. while(ret == -EAGAIN) {
  77. while(c->nr_free_blocks + c->nr_erasing_blocks < blocksneeded) {
  78. int ret;
  79. up(&c->alloc_sem);
  80. if (c->dirty_size < c->sector_size) {
  81. D1(printk(KERN_DEBUG "Short on space, but total dirty size 0x%08x < sector size 0x%08x, so -ENOSPCn", c->dirty_size, c->sector_size));
  82. spin_unlock_bh(&c->erase_completion_lock);
  83. return -ENOSPC;
  84. }
  85. D1(printk(KERN_DEBUG "Triggering GC pass. nr_free_blocks %d, nr_erasing_blocks %d, free_size 0x%08x, dirty_size 0x%08x, used_size 0x%08x, erasing_size 0x%08x, bad_size 0x%08x (total 0x%08x of 0x%08x)n",
  86.   c->nr_free_blocks, c->nr_erasing_blocks, c->free_size, c->dirty_size, c->used_size, c->erasing_size, c->bad_size,
  87.   c->free_size + c->dirty_size + c->used_size + c->erasing_size + c->bad_size, c->flash_size));
  88. spin_unlock_bh(&c->erase_completion_lock);
  89. ret = jffs2_garbage_collect_pass(c);
  90. if (ret)
  91. return ret;
  92. if (current->need_resched)
  93. schedule();
  94. if (signal_pending(current))
  95. return -EINTR;
  96. down(&c->alloc_sem);
  97. spin_lock_bh(&c->erase_completion_lock);
  98. }
  99. ret = jffs2_do_reserve_space(c, minsize, ofs, len);
  100. if (ret) {
  101. D1(printk(KERN_DEBUG "jffs2_reserve_space: ret is %dn", ret));
  102. }
  103. }
  104. spin_unlock_bh(&c->erase_completion_lock);
  105. if (ret)
  106. up(&c->alloc_sem);
  107. return ret;
  108. }
  109. int jffs2_reserve_space_gc(struct jffs2_sb_info *c, __u32 minsize, __u32 *ofs, __u32 *len)
  110. {
  111. int ret = -EAGAIN;
  112. minsize = PAD(minsize);
  113. D1(printk(KERN_DEBUG "jffs2_reserve_space_gc(): Requested 0x%x bytesn", minsize));
  114. spin_lock_bh(&c->erase_completion_lock);
  115. while(ret == -EAGAIN) {
  116. ret = jffs2_do_reserve_space(c, minsize, ofs, len);
  117. if (ret) {
  118.         D1(printk(KERN_DEBUG "jffs2_reserve_space_gc: looping, ret is %dn", ret));
  119. }
  120. }
  121. spin_unlock_bh(&c->erase_completion_lock);
  122. return ret;
  123. }
  124. /* Called with alloc sem _and_ erase_completion_lock */
  125. static int jffs2_do_reserve_space(struct jffs2_sb_info *c,  __u32 minsize, __u32 *ofs, __u32 *len)
  126. {
  127. struct jffs2_eraseblock *jeb = c->nextblock;
  128.  restart:
  129. if (jeb && minsize > jeb->free_size) {
  130. /* Skip the end of this block and file it as having some dirty space */
  131. c->dirty_size += jeb->free_size;
  132. c->free_size -= jeb->free_size;
  133. jeb->dirty_size += jeb->free_size;
  134. jeb->free_size = 0;
  135. D1(printk(KERN_DEBUG "Adding full erase block at 0x%08x to dirty_list (free 0x%08x, dirty 0x%08x, used 0x%08xn",
  136.   jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
  137. list_add_tail(&jeb->list, &c->dirty_list);
  138. c->nextblock = jeb = NULL;
  139. }
  140. if (!jeb) {
  141. struct list_head *next;
  142. /* Take the next block off the 'free' list */
  143. if (list_empty(&c->free_list)) {
  144. DECLARE_WAITQUEUE(wait, current);
  145. if (!c->nr_erasing_blocks) {
  146. // if (list_empty(&c->erasing_list) && list_empty(&c->erase_pending_list) && list_empty(c->erase_complete_list)) {
  147. /* Ouch. We're in GC, or we wouldn't have got here.
  148.    And there's no space left. At all. */
  149. printk(KERN_CRIT "Argh. No free space left for GC. nr_erasing_blocks is %d. nr_free_blocks is %d. (erasingempty: %s, erasependingempty: %s)n", 
  150.        c->nr_erasing_blocks, c->nr_free_blocks, list_empty(&c->erasing_list)?"yes":"no", list_empty(&c->erase_pending_list)?"yes":"no");
  151. return -ENOSPC;
  152. }
  153. /* Make sure this can't deadlock. Someone has to start the erases
  154.    of erase_pending blocks */
  155. set_current_state(TASK_INTERRUPTIBLE);
  156. add_wait_queue(&c->erase_wait, &wait);
  157. D1(printk(KERN_DEBUG "Waiting for erases to complete. erasing_blocks is %d. (erasingempty: %s, erasependingempty: %s)n", 
  158.   c->nr_erasing_blocks, list_empty(&c->erasing_list)?"yes":"no", list_empty(&c->erase_pending_list)?"yes":"no"));
  159. if (!list_empty(&c->erase_pending_list)) {
  160. D1(printk(KERN_DEBUG "Triggering pending erasesn"));
  161. jffs2_erase_pending_trigger(c);
  162. }
  163. spin_unlock_bh(&c->erase_completion_lock);
  164. schedule();
  165. remove_wait_queue(&c->erase_wait, &wait);
  166. spin_lock_bh(&c->erase_completion_lock);
  167. if (signal_pending(current)) {
  168. return -EINTR;
  169. }
  170. /* An erase may have failed, decreasing the
  171.    amount of free space available. So we must
  172.    restart from the beginning */
  173. return -EAGAIN;
  174. }
  175. next = c->free_list.next;
  176. list_del(next);
  177. c->nextblock = jeb = list_entry(next, struct jffs2_eraseblock, list);
  178. c->nr_free_blocks--;
  179. if (jeb->free_size != c->sector_size - sizeof(struct jffs2_unknown_node)) {
  180. printk(KERN_WARNING "Eep. Block 0x%08x taken from free_list had free_size of 0x%08x!!n", jeb->offset, jeb->free_size);
  181. goto restart;
  182. }
  183. }
  184. /* OK, jeb (==c->nextblock) is now pointing at a block which definitely has
  185.    enough space */
  186. *ofs = jeb->offset + (c->sector_size - jeb->free_size);
  187. *len = jeb->free_size;
  188. D1(printk(KERN_DEBUG "jffs2_do_reserve_space(): Giving 0x%x bytes at 0x%xn", *len, *ofs));
  189. return 0;
  190. }
  191. /**
  192.  * jffs2_add_physical_node_ref - add a physical node reference to the list
  193.  * @c: superblock info
  194.  * @ofs: physical location of this physical node
  195.  * @len: length of this physical node
  196.  * @ino: inode number with which this physical node is associated
  197.  *
  198.  * Should only be used to report nodes for which space has been allocated 
  199.  * by jffs2_reserve_space.
  200.  *
  201.  * Must be called with the alloc_sem held.
  202.  */
  203.  
  204. int jffs2_add_physical_node_ref(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *new, __u32 len, int dirty)
  205. {
  206. struct jffs2_eraseblock *jeb;
  207. len = PAD(len);
  208. jeb = &c->blocks[(new->flash_offset & ~3) / c->sector_size];
  209. D1(printk(KERN_DEBUG "jffs2_add_physical_node_ref(): Node at 0x%x, size 0x%xn", new->flash_offset & ~3, len));
  210. #if 1
  211. if (jeb != c->nextblock || (new->flash_offset & ~3) != jeb->offset + (c->sector_size - jeb->free_size)) {
  212. printk(KERN_WARNING "argh. node added in wrong placen");
  213. jffs2_free_raw_node_ref(new);
  214. return -EINVAL;
  215. }
  216. #endif
  217. if (!jeb->first_node)
  218. jeb->first_node = new;
  219. if (jeb->last_node)
  220. jeb->last_node->next_phys = new;
  221. jeb->last_node = new;
  222. spin_lock_bh(&c->erase_completion_lock);
  223. jeb->free_size -= len;
  224. c->free_size -= len;
  225. if (dirty) {
  226. new->flash_offset |= 1;
  227. jeb->dirty_size += len;
  228. c->dirty_size += len;
  229. } else {
  230. jeb->used_size += len;
  231. c->used_size += len;
  232. }
  233. spin_unlock_bh(&c->erase_completion_lock);
  234. if (!jeb->free_size && !jeb->dirty_size) {
  235. /* If it lives on the dirty_list, jffs2_reserve_space will put it there */
  236. D1(printk(KERN_DEBUG "Adding full erase block at 0x%08x to clean_list (free 0x%08x, dirty 0x%08x, used 0x%08xn",
  237.   jeb->offset, jeb->free_size, jeb->dirty_size, jeb->used_size));
  238. list_add_tail(&jeb->list, &c->clean_list);
  239. c->nextblock = NULL;
  240. }
  241. ACCT_SANITY_CHECK(c,jeb);
  242. ACCT_PARANOIA_CHECK(jeb);
  243. return 0;
  244. }
  245. void jffs2_complete_reservation(struct jffs2_sb_info *c)
  246. {
  247. D1(printk(KERN_DEBUG "jffs2_complete_reservation()n"));
  248. jffs2_garbage_collect_trigger(c);
  249. up(&c->alloc_sem);
  250. }
  251. void jffs2_mark_node_obsolete(struct jffs2_sb_info *c, struct jffs2_raw_node_ref *ref)
  252. {
  253. struct jffs2_eraseblock *jeb;
  254. int blocknr;
  255. struct jffs2_unknown_node n;
  256. int ret;
  257. ssize_t retlen;
  258. if(!ref) {
  259. printk(KERN_NOTICE "EEEEEK. jffs2_mark_node_obsolete called with NULL noden");
  260. return;
  261. }
  262. if (ref->flash_offset & 1) {
  263. D1(printk(KERN_DEBUG "jffs2_mark_node_obsolete called with already obsolete node at 0x%08xn", ref->flash_offset &~3));
  264. return;
  265. }
  266. blocknr = ref->flash_offset / c->sector_size;
  267. if (blocknr >= c->nr_blocks) {
  268. printk(KERN_NOTICE "raw node at 0x%08x is off the end of device!n", ref->flash_offset);
  269. BUG();
  270. }
  271. jeb = &c->blocks[blocknr];
  272. if (jeb->used_size < ref->totlen) {
  273. printk(KERN_NOTICE "raw node of size 0x%08x freed from erase block %d at 0x%08x, but used_size was already 0x%08xn",
  274.        ref->totlen, blocknr, ref->flash_offset, jeb->used_size);
  275. BUG();
  276. }
  277. spin_lock_bh(&c->erase_completion_lock);
  278. jeb->used_size -= ref->totlen;
  279. jeb->dirty_size += ref->totlen;
  280. c->used_size -= ref->totlen;
  281. c->dirty_size += ref->totlen;
  282. ref->flash_offset |= 1;
  283. ACCT_SANITY_CHECK(c, jeb);
  284. ACCT_PARANOIA_CHECK(jeb);
  285. if (c->flags & JFFS2_SB_FLAG_MOUNTING) {
  286. /* Mount in progress. Don't muck about with the block
  287.    lists because they're not ready yet, and don't actually
  288.    obliterate nodes that look obsolete. If they weren't 
  289.    marked obsolete on the flash at the time they _became_
  290.    obsolete, there was probably a reason for that. */
  291. spin_unlock_bh(&c->erase_completion_lock);
  292. return;
  293. }
  294. if (jeb == c->nextblock) {
  295. D2(printk(KERN_DEBUG "Not moving nextblock 0x%08x to dirty/erase_pending listn", jeb->offset));
  296. } else if (jeb == c->gcblock) {
  297. D2(printk(KERN_DEBUG "Not moving gcblock 0x%08x to dirty/erase_pending listn", jeb->offset));
  298. #if 0 /* We no longer do this here. It can screw the wear levelling. If you have a lot of static
  299.  data and a few blocks free, and you just create new files and keep deleting/overwriting
  300.  them, then you'd keep erasing and reusing those blocks without ever moving stuff around.
  301.  So we leave completely obsoleted blocks on the dirty_list and let the GC delete them 
  302.  when it finds them there. That way, we still get the 'once in a while, take a clean block'
  303.  to spread out the flash usage */
  304. } else if (!jeb->used_size) {
  305. D1(printk(KERN_DEBUG "Eraseblock at 0x%08x completely dirtied. Removing from (dirty?) list...n", jeb->offset));
  306. list_del(&jeb->list);
  307. D1(printk(KERN_DEBUG "...and adding to erase_pending_listn"));
  308. list_add_tail(&jeb->list, &c->erase_pending_list);
  309. c->nr_erasing_blocks++;
  310. jffs2_erase_pending_trigger(c);
  311. // OFNI_BS_2SFFJ(c)->s_dirt = 1;
  312. D1(printk(KERN_DEBUG "Done OKn"));
  313. #endif
  314. } else if (jeb->dirty_size == ref->totlen) {
  315. D1(printk(KERN_DEBUG "Eraseblock at 0x%08x is freshly dirtied. Removing from clean list...n", jeb->offset));
  316. list_del(&jeb->list);
  317. D1(printk(KERN_DEBUG "...and adding to dirty_listn"));
  318. list_add_tail(&jeb->list, &c->dirty_list);
  319. }
  320. spin_unlock_bh(&c->erase_completion_lock);
  321. if (c->mtd->type != MTD_NORFLASH && c->mtd->type != MTD_RAM)
  322. return;
  323. if (OFNI_BS_2SFFJ(c)->s_flags & MS_RDONLY)
  324. return;
  325. D1(printk(KERN_DEBUG "obliterating obsoleted node at 0x%08xn", ref->flash_offset &~3));
  326. ret = c->mtd->read(c->mtd, ref->flash_offset &~3, sizeof(n), &retlen, (char *)&n);
  327. if (ret) {
  328. printk(KERN_WARNING "Read error reading from obsoleted node at 0x%08x: %dn", ref->flash_offset &~3, ret);
  329. return;
  330. }
  331. if (retlen != sizeof(n)) {
  332. printk(KERN_WARNING "Short read from obsoleted node at 0x%08x: %dn", ref->flash_offset &~3, retlen);
  333. return;
  334. }
  335. if (PAD(n.totlen) != PAD(ref->totlen)) {
  336. printk(KERN_WARNING "Node totlen on flash (0x%08x) != totlen in node ref (0x%08x)n", n.totlen, ref->totlen);
  337. return;
  338. }
  339. if (!(n.nodetype & JFFS2_NODE_ACCURATE)) {
  340. D1(printk(KERN_DEBUG "Node at 0x%08x was already marked obsolete (nodetype 0x%04xn", ref->flash_offset &~3, n.nodetype));
  341. return;
  342. }
  343. n.nodetype &= ~JFFS2_NODE_ACCURATE;
  344. ret = c->mtd->write(c->mtd, ref->flash_offset&~3, sizeof(n), &retlen, (char *)&n);
  345. if (ret) {
  346. printk(KERN_WARNING "Write error in obliterating obsoleted node at 0x%08x: %dn", ref->flash_offset &~3, ret);
  347. return;
  348. }
  349. if (retlen != sizeof(n)) {
  350. printk(KERN_WARNING "Short write in obliterating obsoleted node at 0x%08x: %dn", ref->flash_offset &~3, retlen);
  351. return;
  352. }
  353. }