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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/fs/hfs/bnode.c
  3.  *
  4.  * Copyright (C) 1995-1997  Paul H. Hargrove
  5.  * This file may be distributed under the terms of the GNU General Public License.
  6.  *
  7.  * This file contains the code to access nodes in the B-tree structure.
  8.  *
  9.  * "XXX" in a comment is a note to myself to consider changing something.
  10.  *
  11.  * In function preconditions the term "valid" applied to a pointer to
  12.  * a structure means that the pointer is non-NULL and the structure it
  13.  * points to has all fields initialized to consistent values.
  14.  *
  15.  * The code in this file initializes some structures which contain
  16.  * pointers by calling memset(&foo, 0, sizeof(foo)).
  17.  * This produces the desired behavior only due to the non-ANSI
  18.  * assumption that the machine representation of NULL is all zeros.
  19.  */
  20. #include "hfs_btree.h"
  21. /*================ File-local variables ================*/
  22.  
  23. /* debugging statistics */
  24. #if defined(DEBUG_BNODES) || defined(DEBUG_ALL)
  25. int bnode_count = 0;
  26. #endif
  27. /*================ Global functions ================*/
  28. /*
  29.  * hfs_bnode_delete()
  30.  *
  31.  * Description:
  32.  *   This function is called to remove a bnode from the cache and
  33.  *   release its resources.
  34.  * Input Variable(s):
  35.  *   struct hfs_bnode *bn: Pointer to the (struct hfs_bnode) to be
  36.  *   removed from the cache.
  37.  * Output Variable(s):
  38.  *   NONE
  39.  * Returns:
  40.  *   void
  41.  * Preconditions:
  42.  *   'bn' points to a "valid" (struct hfs_bnode).
  43.  * Postconditions:
  44.  *   The node 'bn' is removed from the cache, its memory freed and its
  45.  *   buffer (if any) released.
  46.  */
  47. void hfs_bnode_delete(struct hfs_bnode *bn)
  48. {
  49. #if defined(DEBUG_BNODES) || defined(DEBUG_ALL)
  50. --bnode_count;
  51. #endif
  52. /* join neighbors */
  53. if (bn->next) {
  54. bn->next->prev = bn->prev;
  55. }
  56. if (bn->prev) {
  57. bn->prev->next = bn->next;
  58. }
  59. /* fix cache slot if necessary */
  60. if (bhash(bn->tree, bn->node) == bn) {
  61. bhash(bn->tree, bn->node) = bn->next;
  62. }
  63. /* release resources */
  64. hfs_buffer_put(bn->buf); /* safe: checks for NULL argument */
  65. HFS_DELETE(bn);
  66. }
  67. /*
  68.  * hfs_bnode_read()
  69.  *
  70.  * Description: 
  71.  *   This function creates a (struct hfs_bnode) and, if appropriate,
  72.  *   inserts it in the cache.
  73.  * Input Variable(s):
  74.  *   struct hfs_bnode *bnode: pointer to the new bnode.
  75.  *   struct hfs_btree *tree: pointer to the (struct hfs_btree)
  76.  *    containing the desired node
  77.  *   hfs_u32 node: the number of the desired node.
  78.  *   int sticky: the value to assign to the 'sticky' field.
  79.  * Output Variable(s):
  80.  *   NONE
  81.  * Returns:
  82.  *   (struct hfs_bnode *) pointing to the newly created bnode or NULL.
  83.  * Preconditions:
  84.  *   'bnode' points to a "valid" (struct hfs_bnode).
  85.  *   'tree' points to a "valid" (struct hfs_btree).
  86.  *   'node' is an existing node number in the B-tree.
  87.  * Postconditions:
  88.  *   The following are true of 'bnode' upon return:
  89.  *    The 'magic' field is set to indicate a valid (struct hfs_bnode). 
  90.  *    The 'sticky', 'tree' and 'node' fields are initialized to the
  91.  *    values of the of the corresponding arguments.
  92.  *    If the 'sticky' argument is zero then the fields 'prev' and
  93.  *    'next' are initialized by inserting the (struct hfs_bnode) in the
  94.  *    linked list of the appropriate cache slot; otherwise they are
  95.  *    initialized to NULL.
  96.  *    The data is read from disk (or buffer cache) and the 'buf' field
  97.  *    points to the buffer for that data.
  98.  *    If no other processes tried to access this node while this
  99.  *    process was waiting on disk I/O (if necessary) then the
  100.  *    remaining fields are zero ('count', 'resrv', 'lock') or NULL
  101.  *    ('wqueue', 'rqueue') corresponding to no accesses.
  102.  *    If there were access attempts during I/O then they were blocked
  103.  *    until the I/O was complete, and the fields 'count', 'resrv',
  104.  *    'lock', 'wqueue' and 'rqueue' reflect the results of unblocking
  105.  *    those processes when the I/O was completed.
  106.  */
  107. void hfs_bnode_read(struct hfs_bnode *bnode, struct hfs_btree *tree,
  108.     hfs_u32 node, int sticky)
  109. {
  110. struct NodeDescriptor *nd;
  111. int block, lcv;
  112. hfs_u16 curr, prev, limit;
  113. /* Initialize the structure */
  114. memset(bnode, 0, sizeof(*bnode));
  115. bnode->magic = HFS_BNODE_MAGIC;
  116. bnode->tree = tree;
  117. bnode->node = node;
  118. bnode->sticky = sticky;
  119. hfs_init_waitqueue(&bnode->rqueue);
  120. hfs_init_waitqueue(&bnode->wqueue);
  121. if (sticky == HFS_NOT_STICKY) {
  122. /* Insert it in the cache if appropriate */
  123. if ((bnode->next = bhash(tree, node))) {
  124. bnode->next->prev = bnode;
  125. }
  126. bhash(tree, node) = bnode;
  127. }
  128. /* Make the bnode look like it is being
  129.    modified so other processes will wait for
  130.    the I/O to complete */
  131. bnode->count = bnode->resrv = bnode->lock = 1;
  132. /* Read in the node, possibly causing a schedule()
  133.    call.  If the I/O fails then emit a warning.  Each
  134.    process that was waiting on the bnode (including
  135.    the current one) will notice the failure and
  136.    hfs_bnode_relse() the node. The last hfs_bnode_relse()
  137.    will call hfs_bnode_delete() and discard the bnode. */
  138. block = hfs_extent_map(&tree->entry.u.file.data_fork, node, 0);
  139. if (!block) {
  140. hfs_warn("hfs_bnode_read: bad node number 0x%08xn", node);
  141. } else if (hfs_buffer_ok(bnode->buf =
  142.  hfs_buffer_get(tree->sys_mdb, block, 1))) {
  143. /* read in the NodeDescriptor */
  144. nd = (struct NodeDescriptor *)hfs_buffer_data(bnode->buf);
  145. bnode->ndFLink    = hfs_get_hl(nd->ndFLink);
  146. bnode->ndBLink    = hfs_get_hl(nd->ndBLink);
  147. bnode->ndType     = nd->ndType;
  148. bnode->ndNHeight  = nd->ndNHeight;
  149. bnode->ndNRecs    = hfs_get_hs(nd->ndNRecs);
  150. /* verify the integrity of the node */
  151. prev = sizeof(struct NodeDescriptor);
  152. limit = HFS_SECTOR_SIZE - sizeof(hfs_u16)*(bnode->ndNRecs + 1);
  153. for (lcv=1; lcv <= (bnode->ndNRecs + 1); ++lcv) {
  154. curr = hfs_get_hs(RECTBL(bnode, lcv));
  155. if ((curr < prev) || (curr > limit)) {
  156. hfs_warn("hfs_bnode_read: corrupt node "
  157.  "number 0x%08xn", node);
  158. hfs_buffer_put(bnode->buf);
  159. bnode->buf = NULL;
  160. break;
  161. }
  162. prev = curr;
  163. }
  164. }
  165. /* Undo our fakery with the lock state and
  166.    hfs_wake_up() anyone who we managed to trick */
  167. --bnode->count;
  168. bnode->resrv = bnode->lock = 0;
  169. hfs_wake_up(&bnode->rqueue);
  170. }
  171. /*
  172.  * hfs_bnode_lock()
  173.  *
  174.  * Description:
  175.  *   This function does the locking of a bnode.
  176.  * Input Variable(s):
  177.  *   struct hfs_bnode *bn: pointer to the (struct hfs_bnode) to lock
  178.  *   int lock_type: the type of lock desired
  179.  * Output Variable(s):
  180.  *   NONE
  181.  * Returns:
  182.  *   void
  183.  * Preconditions:
  184.  *   'bn' points to a "valid" (struct hfs_bnode).
  185.  *   'lock_type' is a valid hfs_lock_t
  186.  * Postconditions:
  187.  *   The 'count' field of 'bn' is incremented by one.  If 'lock_type'
  188.  *   is HFS_LOCK_RESRV the 'resrv' field is also incremented.
  189.  */
  190. void hfs_bnode_lock(struct hfs_bnode_ref *bnr, int lock_type)
  191. {
  192. struct hfs_bnode *bn = bnr->bn;
  193. if ((lock_type == bnr->lock_type) || !bn) {
  194. return;
  195. }
  196. if (bnr->lock_type == HFS_LOCK_WRITE) {
  197. hfs_bnode_commit(bnr->bn);
  198. }
  199. switch (lock_type) {
  200. default:
  201. goto bail;
  202. break;
  203. case HFS_LOCK_READ:
  204. /* We may not obtain read access if any process is
  205.    currently modifying or waiting to modify this node.
  206.    If we can't obtain access we wait on the rqueue
  207.    wait queue to be woken up by the modifying process
  208.    when it relinquishes its lock. */
  209. switch (bnr->lock_type) {
  210. default:
  211. goto bail;
  212. break;
  213. case HFS_LOCK_NONE:
  214. while (bn->lock || waitqueue_active(&bn->wqueue)) {
  215. hfs_sleep_on(&bn->rqueue);
  216. }
  217. ++bn->count;
  218. break;
  219. }
  220. break;
  221. case HFS_LOCK_RESRV:
  222. /* We may not obtain a reservation (read access with
  223.    an option to write later), if any process currently
  224.    holds a reservation on this node.  That includes
  225.    any process which is currently modifying this node.
  226.    If we can't obtain access, then we wait on the
  227.    rqueue wait queue to e woken up by the
  228.    reservation-holder when it calls hfs_bnode_relse. */
  229. switch (bnr->lock_type) {
  230. default:
  231. goto bail;
  232. break;
  233. case HFS_LOCK_NONE:
  234. while (bn->resrv) {
  235. hfs_sleep_on(&bn->rqueue);
  236. }
  237. bn->resrv = 1;
  238. ++bn->count;
  239. break;
  240. case HFS_LOCK_WRITE:
  241. bn->lock = 0;
  242. hfs_wake_up(&bn->rqueue);
  243. break;
  244. }
  245. break;
  246. case HFS_LOCK_WRITE:
  247. switch (bnr->lock_type) {
  248. default:
  249. goto bail;
  250. break;
  251. case HFS_LOCK_NONE:
  252. while (bn->resrv) {
  253. hfs_sleep_on(&bn->rqueue);
  254. }
  255. bn->resrv = 1;
  256. ++bn->count;
  257. case HFS_LOCK_RESRV:
  258. while (bn->count > 1) {
  259. hfs_sleep_on(&bn->wqueue);
  260. }
  261. bn->lock = 1;
  262. break;
  263. }
  264. break;
  265. case HFS_LOCK_NONE:
  266. switch (bnr->lock_type) {
  267. default:
  268. goto bail;
  269. break;
  270. case HFS_LOCK_READ:
  271. /* This process was reading this node. If
  272.    there is now exactly one other process using
  273.    the node then hfs_wake_up() a (potentially
  274.    nonexistent) waiting process.  Note that I
  275.    refer to "a" process since the reservation
  276.    system ensures that only one process can
  277.    get itself on the wait queue.  */
  278. if (bn->count == 2) {
  279. hfs_wake_up(&bn->wqueue);
  280. }
  281. break;
  282. case HFS_LOCK_WRITE:
  283. /* This process was modifying this node.
  284.    Unlock the node and fall-through to the
  285.    HFS_LOCK_RESRV case, since a 'reservation'
  286.    is a prerequisite for HFS_LOCK_WRITE.  */
  287. bn->lock = 0;
  288. case HFS_LOCK_RESRV:
  289. /* This process had placed a 'reservation' on
  290.    this node, indicating an intention to
  291.    possibly modify the node.  We can get to
  292.    this spot directly (if the 'reservation'
  293.    not converted to a HFS_LOCK_WRITE), or by
  294.    falling through from the above case if the
  295.    reservation was converted.
  296.    Since HFS_LOCK_RESRV and HFS_LOCK_WRITE
  297.    both block processes that want access
  298.    (HFS_LOCK_RESRV blocks other processes that
  299.    want reservations but allow HFS_LOCK_READ
  300.    accesses, while HFS_LOCK_WRITE must have
  301.    exclusive access and thus blocks both
  302.    types) we hfs_wake_up() any processes that
  303.    might be waiting for access.  If multiple
  304.    processes are waiting for a reservation
  305.    then the magic of process scheduling will
  306.    settle the dispute. */
  307. bn->resrv = 0;
  308. hfs_wake_up(&bn->rqueue);
  309. break;
  310. }
  311. --bn->count;
  312. break;
  313. }
  314. bnr->lock_type = lock_type;
  315. return;
  316. bail:
  317. hfs_warn("hfs_bnode_lock: invalid lock change: %d->%d.n",
  318. bnr->lock_type, lock_type);
  319. return;
  320. }
  321. /*
  322.  * hfs_bnode_relse()
  323.  *
  324.  * Description:
  325.  *   This function is called when a process is done using a bnode.  If
  326.  *   the proper conditions are met then we call hfs_bnode_delete() to remove
  327.  *   it from the cache.  If it is not deleted then we update its state
  328.  *   to reflect one less process using it.
  329.  * Input Variable(s):
  330.  *   struct hfs_bnode *bn: pointer to the (struct hfs_bnode) to release.
  331.  *   int lock_type: The type of lock held by the process releasing this node.
  332.  * Output Variable(s):
  333.  *   NONE
  334.  * Returns:
  335.  *   void
  336.  * Preconditions:
  337.  *   'bn' is NULL or points to a "valid" (struct hfs_bnode).
  338.  * Postconditions:
  339.  *   If 'bn' meets the appropriate conditions (see below) then it is
  340.  *   kept in the cache and all fields are set to consistent values
  341.  *   which reflect one less process using the node than upon entry.
  342.  *   If 'bn' does not meet the conditions then it is deleted (see
  343.  *   hfs_bnode_delete() for postconditions).
  344.  *   In either case, if 'lock_type' is HFS_LOCK_WRITE
  345.  *   then the corresponding buffer is dirtied.
  346.  */
  347. void hfs_bnode_relse(struct hfs_bnode_ref *bnr)
  348. {
  349. struct hfs_bnode *bn;
  350. if (!bnr || !(bn = bnr->bn)) {
  351. return;
  352. }
  353. /* We update the lock state of the node if it is still in use
  354.    or if it is "sticky" (such as the B-tree head and root).
  355.    Otherwise we just delete it.  */
  356. if ((bn->count > 1) || (waitqueue_active(&bn->rqueue)) || (bn->sticky != HFS_NOT_STICKY)) {
  357. hfs_bnode_lock(bnr, HFS_LOCK_NONE);
  358. } else {
  359. /* dirty buffer if we (might) have modified it */
  360. if (bnr->lock_type == HFS_LOCK_WRITE) {
  361. hfs_bnode_commit(bn);
  362. }
  363. hfs_bnode_delete(bn);
  364. bnr->lock_type = HFS_LOCK_NONE;
  365. }
  366. bnr->bn = NULL;
  367. }
  368. /*
  369.  * hfs_bnode_find()
  370.  *
  371.  * Description:
  372.  *   This function is called to obtain a bnode.  The cache is
  373.  *   searched for the node.  If it not found there it is added to
  374.  *   the cache by hfs_bnode_read().  There are two special cases node=0
  375.  *   (the header node) and node='tree'->bthRoot (the root node), in
  376.  *   which the nodes are obtained from fields of 'tree' without
  377.  *   consulting or modifying the cache.
  378.  * Input Variable(s):
  379.  *   struct hfs_tree *tree: pointer to the (struct hfs_btree) from
  380.  *    which to get a node.
  381.  *   int node: the node number to get from 'tree'.
  382.  *   int lock_type: The kind of access (HFS_LOCK_READ, or
  383.  *    HFS_LOCK_RESRV) to obtain to the node
  384.  * Output Variable(s):
  385.  *   NONE
  386.  * Returns:
  387.  *   (struct hfs_bnode_ref) Reference to the requested node.
  388.  * Preconditions:
  389.  *   'tree' points to a "valid" (struct hfs_btree).
  390.  * Postconditions:
  391.  *   If 'node' refers to a valid node in 'tree' and 'lock_type' has
  392.  *   one of the values listed above and no I/O errors occur then the
  393.  *   value returned refers to a valid (struct hfs_bnode) corresponding
  394.  *   to the requested node with the requested access type.  The node
  395.  *   is also added to the cache if not previously present and not the
  396.  *   root or header.
  397.  *   If the conditions given above are not met, the bnode in the
  398.  *   returned reference is NULL.
  399.  */
  400. struct hfs_bnode_ref hfs_bnode_find(struct hfs_btree *tree,
  401.     hfs_u32 node, int lock_type)
  402. {
  403. struct hfs_bnode *bn;
  404. struct hfs_bnode *empty = NULL;
  405. struct hfs_bnode_ref bnr;
  406. bnr.lock_type = HFS_LOCK_NONE;
  407. bnr.bn = NULL;
  408. #if defined(DEBUG_BNODES) || defined(DEBUG_ALL)
  409. hfs_warn("hfs_bnode_find: %c %d:%dn",
  410.  lock_type==HFS_LOCK_READ?'R':
  411. (lock_type==HFS_LOCK_RESRV?'V':'W'),
  412.  (int)ntohl(tree->entry.cnid), node);
  413. #endif
  414. /* check special cases */
  415. if (!node) {
  416. bn = &tree->head;
  417. goto return_it;
  418. } else if (node == tree->bthRoot) {
  419. bn = tree->root;
  420. goto return_it;
  421. restart:
  422. /* look for the node in the cache. */
  423. bn = bhash(tree, node);
  424. while (bn && (bn->magic == HFS_BNODE_MAGIC)) {
  425. if (bn->node == node) {
  426. goto found_it;
  427. }
  428. bn = bn->next;
  429. }
  430. if (!empty) {
  431. #if defined(DEBUG_BNODES) || defined(DEBUG_ALL)
  432. ++bnode_count;
  433. #endif
  434. if (HFS_NEW(empty)) {
  435. goto restart;
  436. }
  437. return bnr;
  438. }
  439. bn = empty;
  440. hfs_bnode_read(bn, tree, node, HFS_NOT_STICKY);
  441. goto return_it;
  442. found_it:
  443. /* check validity */
  444. if (bn->magic != HFS_BNODE_MAGIC) {
  445. /* If we find a corrupt bnode then we return
  446.    NULL.  However, we don't try to remove it
  447.    from the cache or release its resources
  448.    since we have no idea what kind of trouble
  449.    we could get into that way. */
  450. hfs_warn("hfs_bnode_find: bnode cache is corrupt.n");
  451. return bnr;
  452. if (empty) {
  453. #if defined(DEBUG_BNODES) || defined(DEBUG_ALL)
  454. --bnode_count;
  455. #endif
  456. HFS_DELETE(empty);
  457. }
  458. return_it:
  459. /* Wait our turn */
  460. bnr.bn = bn;
  461. hfs_bnode_lock(&bnr, lock_type);
  462. /* Check for failure to read the node from disk */
  463. if (!hfs_buffer_ok(bn->buf)) {
  464. hfs_bnode_relse(&bnr);
  465. }
  466. #if defined(DEBUG_BNODES) || defined(DEBUG_ALL)
  467. if (!bnr.bn) {
  468. hfs_warn("hfs_bnode_find: failedn");
  469. } else {
  470. hfs_warn("hfs_bnode_find: use %d(%d) lvl %d [%d]n", bn->count,
  471.  bn->buf->b_count, bn->ndNHeight, bnode_count);
  472. hfs_warn("hfs_bnode_find: blnk %u flnk %u recs %un", 
  473.  bn->ndBLink, bn->ndFLink, bn->ndNRecs);
  474. }
  475. #endif
  476. return bnr;
  477. }
  478. /*
  479.  * hfs_bnode_commit()
  480.  *
  481.  * Called to write a possibly dirty bnode back to disk.
  482.  */
  483. void hfs_bnode_commit(struct hfs_bnode *bn)
  484. {
  485. if (hfs_buffer_ok(bn->buf)) {
  486. struct NodeDescriptor *nd;
  487. nd = (struct NodeDescriptor *)hfs_buffer_data(bn->buf);
  488. hfs_put_hl(bn->ndFLink, nd->ndFLink);
  489. hfs_put_hl(bn->ndBLink, nd->ndBLink);
  490. nd->ndType    = bn->ndType;
  491. nd->ndNHeight = bn->ndNHeight;
  492. hfs_put_hs(bn->ndNRecs, nd->ndNRecs);
  493. hfs_buffer_dirty(bn->buf);
  494. /* increment write count */
  495. hfs_mdb_dirty(bn->tree->sys_mdb);
  496. }
  497. }