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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/ufs/ialloc.c
  3.  *
  4.  * Copyright (c) 1998
  5.  * Daniel Pirkl <daniel.pirkl@email.cz>
  6.  * Charles University, Faculty of Mathematics and Physics
  7.  *
  8.  *  from
  9.  *
  10.  *  linux/fs/ext2/ialloc.c
  11.  *
  12.  * Copyright (C) 1992, 1993, 1994, 1995
  13.  * Remy Card (card@masi.ibp.fr)
  14.  * Laboratoire MASI - Institut Blaise Pascal
  15.  * Universite Pierre et Marie Curie (Paris VI)
  16.  *
  17.  *  BSD ufs-inspired inode and directory allocation by 
  18.  *  Stephen Tweedie (sct@dcs.ed.ac.uk), 1993
  19.  *  Big-endian to little-endian byte-swapping/bitmaps by
  20.  *        David S. Miller (davem@caip.rutgers.edu), 1995
  21.  */
  22. #include <linux/fs.h>
  23. #include <linux/ufs_fs.h>
  24. #include <linux/sched.h>
  25. #include <linux/stat.h>
  26. #include <linux/string.h>
  27. #include <linux/locks.h>
  28. #include <linux/quotaops.h>
  29. #include <asm/bitops.h>
  30. #include <asm/byteorder.h>
  31. #include "swab.h"
  32. #include "util.h"
  33. #undef UFS_IALLOC_DEBUG
  34. #ifdef UFS_IALLOC_DEBUG
  35. #define UFSD(x) printk("(%s, %d), %s: ", __FILE__, __LINE__, __FUNCTION__); printk x;
  36. #else
  37. #define UFSD(x)
  38. #endif
  39. /*
  40.  * NOTE! When we get the inode, we're the only people
  41.  * that have access to it, and as such there are no
  42.  * race conditions we have to worry about. The inode
  43.  * is not on the hash-lists, and it cannot be reached
  44.  * through the filesystem because the directory entry
  45.  * has been deleted earlier.
  46.  *
  47.  * HOWEVER: we must make sure that we get no aliases,
  48.  * which means that we have to call "clear_inode()"
  49.  * _before_ we mark the inode not in use in the inode
  50.  * bitmaps. Otherwise a newly created file might use
  51.  * the same inode number (not actually the same pointer
  52.  * though), and then we'd have two inodes sharing the
  53.  * same inode number and space on the harddisk.
  54.  */
  55. void ufs_free_inode (struct inode * inode)
  56. {
  57. struct super_block * sb;
  58. struct ufs_sb_private_info * uspi;
  59. struct ufs_super_block_first * usb1;
  60. struct ufs_cg_private_info * ucpi;
  61. struct ufs_cylinder_group * ucg;
  62. int is_directory;
  63. unsigned ino, cg, bit;
  64. UFSD(("ENTER, ino %lun", inode->i_ino))
  65. sb = inode->i_sb;
  66. uspi = sb->u.ufs_sb.s_uspi;
  67. usb1 = ubh_get_usb_first(USPI_UBH);
  68. ino = inode->i_ino;
  69. lock_super (sb);
  70. if (!((ino > 1) && (ino < (uspi->s_ncg * uspi->s_ipg )))) {
  71. ufs_warning(sb, "ufs_free_inode", "reserved inode or nonexistent inode %un", ino);
  72. unlock_super (sb);
  73. return;
  74. }
  75. cg = ufs_inotocg (ino);
  76. bit = ufs_inotocgoff (ino);
  77. ucpi = ufs_load_cylinder (sb, cg);
  78. if (!ucpi) {
  79. unlock_super (sb);
  80. return;
  81. }
  82. ucg = ubh_get_ucg(UCPI_UBH);
  83. if (!ufs_cg_chkmagic(sb, ucg))
  84. ufs_panic (sb, "ufs_free_fragments", "internal error, bad cg magic number");
  85. ucg->cg_time = cpu_to_fs32(sb, CURRENT_TIME);
  86. is_directory = S_ISDIR(inode->i_mode);
  87. DQUOT_FREE_INODE(inode);
  88. DQUOT_DROP(inode);
  89. clear_inode (inode);
  90. if (ubh_isclr (UCPI_UBH, ucpi->c_iusedoff, bit))
  91. ufs_error(sb, "ufs_free_inode", "bit already cleared for inode %u", ino);
  92. else {
  93. ubh_clrbit (UCPI_UBH, ucpi->c_iusedoff, bit);
  94. if (ino < ucpi->c_irotor)
  95. ucpi->c_irotor = ino;
  96. fs32_add(sb, &ucg->cg_cs.cs_nifree, 1);
  97. fs32_add(sb, &usb1->fs_cstotal.cs_nifree, 1);
  98. fs32_add(sb, &sb->fs_cs(cg).cs_nifree, 1);
  99. if (is_directory) {
  100. fs32_sub(sb, &ucg->cg_cs.cs_ndir, 1);
  101. fs32_sub(sb, &usb1->fs_cstotal.cs_ndir, 1);
  102. fs32_sub(sb, &sb->fs_cs(cg).cs_ndir, 1);
  103. }
  104. }
  105. ubh_mark_buffer_dirty (USPI_UBH);
  106. ubh_mark_buffer_dirty (UCPI_UBH);
  107. if (sb->s_flags & MS_SYNCHRONOUS) {
  108. ubh_ll_rw_block (WRITE, 1, (struct ufs_buffer_head **) &ucpi);
  109. ubh_wait_on_buffer (UCPI_UBH);
  110. }
  111. sb->s_dirt = 1;
  112. unlock_super (sb);
  113. UFSD(("EXITn"))
  114. }
  115. /*
  116.  * There are two policies for allocating an inode.  If the new inode is
  117.  * a directory, then a forward search is made for a block group with both
  118.  * free space and a low directory-to-inode ratio; if that fails, then of
  119.  * the groups with above-average free space, that group with the fewest
  120.  * directories already is chosen.
  121.  *
  122.  * For other inodes, search forward from the parent directory's block
  123.  * group to find a free inode.
  124.  */
  125. struct inode * ufs_new_inode (const struct inode * dir, int mode)
  126. {
  127. struct super_block * sb;
  128. struct ufs_sb_private_info * uspi;
  129. struct ufs_super_block_first * usb1;
  130. struct ufs_cg_private_info * ucpi;
  131. struct ufs_cylinder_group * ucg;
  132. struct inode * inode;
  133. unsigned cg, bit, i, j, start;
  134. UFSD(("ENTERn"))
  135. /* Cannot create files in a deleted directory */
  136. if (!dir || !dir->i_nlink)
  137. return ERR_PTR(-EPERM);
  138. sb = dir->i_sb;
  139. inode = new_inode(sb);
  140. if (!inode)
  141. return ERR_PTR(-ENOMEM);
  142. uspi = sb->u.ufs_sb.s_uspi;
  143. usb1 = ubh_get_usb_first(USPI_UBH);
  144. lock_super (sb);
  145. /*
  146.  * Try to place the inode in its parent directory
  147.  */
  148. i = ufs_inotocg(dir->i_ino);
  149. if (sb->fs_cs(i).cs_nifree) {
  150. cg = i;
  151. goto cg_found;
  152. }
  153. /*
  154.  * Use a quadratic hash to find a group with a free inode
  155.  */
  156. for ( j = 1; j < uspi->s_ncg; j <<= 1 ) {
  157. i += j;
  158. if (i >= uspi->s_ncg)
  159. i -= uspi->s_ncg;
  160. if (sb->fs_cs(i).cs_nifree) {
  161. cg = i;
  162. goto cg_found;
  163. }
  164. }
  165. /*
  166.  * That failed: try linear search for a free inode
  167.  */
  168. i = ufs_inotocg(dir->i_ino) + 1;
  169. for (j = 2; j < uspi->s_ncg; j++) {
  170. i++;
  171. if (i >= uspi->s_ncg)
  172. i = 0;
  173. if (sb->fs_cs(i).cs_nifree) {
  174. cg = i;
  175. goto cg_found;
  176. }
  177. }
  178. goto failed;
  179. cg_found:
  180. ucpi = ufs_load_cylinder (sb, cg);
  181. if (!ucpi)
  182. goto failed;
  183. ucg = ubh_get_ucg(UCPI_UBH);
  184. if (!ufs_cg_chkmagic(sb, ucg)) 
  185. ufs_panic (sb, "ufs_new_inode", "internal error, bad cg magic number");
  186. start = ucpi->c_irotor;
  187. bit = ubh_find_next_zero_bit (UCPI_UBH, ucpi->c_iusedoff, uspi->s_ipg, start);
  188. if (!(bit < uspi->s_ipg)) {
  189. bit = ubh_find_first_zero_bit (UCPI_UBH, ucpi->c_iusedoff, start);
  190. if (!(bit < start)) {
  191. ufs_error (sb, "ufs_new_inode",
  192.     "cylinder group %u corrupted - error in inode bitmapn", cg);
  193. goto failed;
  194. }
  195. }
  196. UFSD(("start = %u, bit = %u, ipg = %un", start, bit, uspi->s_ipg))
  197. if (ubh_isclr (UCPI_UBH, ucpi->c_iusedoff, bit))
  198. ubh_setbit (UCPI_UBH, ucpi->c_iusedoff, bit);
  199. else {
  200. ufs_panic (sb, "ufs_new_inode", "internal error");
  201. goto failed;
  202. }
  203. fs32_sub(sb, &ucg->cg_cs.cs_nifree, 1);
  204. fs32_sub(sb, &usb1->fs_cstotal.cs_nifree, 1);
  205. fs32_sub(sb, &sb->fs_cs(cg).cs_nifree, 1);
  206. if (S_ISDIR(mode)) {
  207. fs32_add(sb, &ucg->cg_cs.cs_ndir, 1);
  208. fs32_add(sb, &usb1->fs_cstotal.cs_ndir, 1);
  209. fs32_add(sb, &sb->fs_cs(cg).cs_ndir, 1);
  210. }
  211. ubh_mark_buffer_dirty (USPI_UBH);
  212. ubh_mark_buffer_dirty (UCPI_UBH);
  213. if (sb->s_flags & MS_SYNCHRONOUS) {
  214. ubh_ll_rw_block (WRITE, 1, (struct ufs_buffer_head **) &ucpi);
  215. ubh_wait_on_buffer (UCPI_UBH);
  216. }
  217. sb->s_dirt = 1;
  218. inode->i_mode = mode;
  219. inode->i_uid = current->fsuid;
  220. if (dir->i_mode & S_ISGID) {
  221. inode->i_gid = dir->i_gid;
  222. if (S_ISDIR(mode))
  223. inode->i_mode |= S_ISGID;
  224. } else
  225. inode->i_gid = current->fsgid;
  226. inode->i_ino = cg * uspi->s_ipg + bit;
  227. inode->i_blksize = PAGE_SIZE; /* This is the optimal IO size (for stat), not the fs block size */
  228. inode->i_blocks = 0;
  229. inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  230. inode->u.ufs_i.i_flags = dir->u.ufs_i.i_flags;
  231. inode->u.ufs_i.i_lastfrag = 0;
  232. insert_inode_hash(inode);
  233. mark_inode_dirty(inode);
  234. unlock_super (sb);
  235. if (DQUOT_ALLOC_INODE(inode)) {
  236. DQUOT_DROP(inode);
  237. inode->i_flags |= S_NOQUOTA;
  238. inode->i_nlink = 0;
  239. iput(inode);
  240. return ERR_PTR(-EDQUOT);
  241. }
  242. UFSD(("allocating inode %lun", inode->i_ino))
  243. UFSD(("EXITn"))
  244. return inode;
  245. failed:
  246. unlock_super (sb);
  247. make_bad_inode(inode);
  248. iput (inode);
  249. UFSD(("EXIT (FAILED)n"))
  250. return ERR_PTR(-ENOSPC);
  251. }