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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
  3.  *
  4.  * Trivial changes by Alan Cox to add the LFS fixes
  5.  *
  6.  * Trivial Changes:
  7.  * Rights granted to Hans Reiser to redistribute under other terms providing
  8.  * he accepts all liability including but not limited to patent, fitness
  9.  * for purpose, and direct or indirect claims arising from failure to perform.
  10.  *
  11.  * NO WARRANTY
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/module.h>
  15. #include <linux/sched.h>
  16. #include <asm/uaccess.h>
  17. #include <linux/reiserfs_fs.h>
  18. #include <linux/smp_lock.h>
  19. #include <linux/locks.h>
  20. #include <linux/init.h>
  21. #define REISERFS_OLD_BLOCKSIZE 4096
  22. #define REISERFS_SUPER_MAGIC_STRING_OFFSET_NJ 20
  23. char reiserfs_super_magic_string[] = REISERFS_SUPER_MAGIC_STRING;
  24. char reiser2fs_super_magic_string[] = REISER2FS_SUPER_MAGIC_STRING;
  25. static int reiserfs_remount (struct super_block * s, int * flags, char * data);
  26. static int reiserfs_statfs (struct super_block * s, struct statfs * buf);
  27. //
  28. // a portion of this function, particularly the VFS interface portion,
  29. // was derived from minix or ext2's analog and evolved as the
  30. // prototype did. You should be able to tell which portion by looking
  31. // at the ext2 code and comparing. It's subfunctions contain no code
  32. // used as a template unless they are so labeled.
  33. //
  34. static void reiserfs_write_super (struct super_block * s)
  35. {
  36.   int dirty = 0 ;
  37.   lock_kernel() ;
  38.   if (!(s->s_flags & MS_RDONLY)) {
  39.     dirty = flush_old_commits(s, 1) ;
  40.   }
  41.   s->s_dirt = dirty;
  42.   unlock_kernel() ;
  43. }
  44. //
  45. // a portion of this function, particularly the VFS interface portion,
  46. // was derived from minix or ext2's analog and evolved as the
  47. // prototype did. You should be able to tell which portion by looking
  48. // at the ext2 code and comparing. It's subfunctions contain no code
  49. // used as a template unless they are so labeled.
  50. //
  51. static void reiserfs_write_super_lockfs (struct super_block * s)
  52. {
  53.   int dirty = 0 ;
  54.   struct reiserfs_transaction_handle th ;
  55.   lock_kernel() ;
  56.   if (!(s->s_flags & MS_RDONLY)) {
  57.     journal_begin(&th, s, 1) ;
  58.     reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
  59.     journal_mark_dirty(&th, s, SB_BUFFER_WITH_SB (s));
  60.     reiserfs_block_writes(&th) ;
  61.     journal_end(&th, s, 1) ;
  62.   }
  63.   s->s_dirt = dirty;
  64.   unlock_kernel() ;
  65. }
  66. void reiserfs_unlockfs(struct super_block *s) {
  67.   reiserfs_allow_writes(s) ;
  68. }
  69. extern const struct key  MAX_KEY;
  70. /* this is used to delete "save link" when there are no items of a
  71.    file it points to. It can either happen if unlink is completed but
  72.    "save unlink" removal, or if file has both unlink and truncate
  73.    pending and as unlink completes first (because key of "save link"
  74.    protecting unlink is bigger that a key lf "save link" which
  75.    protects truncate), so there left no items to make truncate
  76.    completion on */
  77. static void remove_save_link_only (struct super_block * s, struct key * key, int oid_free)
  78. {
  79.     struct reiserfs_transaction_handle th;
  80.      /* we are going to do one balancing */
  81.      journal_begin (&th, s, JOURNAL_PER_BALANCE_CNT);
  82.  
  83.      reiserfs_delete_solid_item (&th, key);
  84.      if (oid_free)
  85.         /* removals are protected by direct items */
  86.         reiserfs_release_objectid (&th, le32_to_cpu (key->k_objectid));
  87.      journal_end (&th, s, JOURNAL_PER_BALANCE_CNT);
  88. }
  89.  
  90.  
  91. /* look for uncompleted unlinks and truncates and complete them */
  92. static void finish_unfinished (struct super_block * s)
  93. {
  94.     INITIALIZE_PATH (path);
  95.     struct cpu_key max_cpu_key, obj_key;
  96.     struct key save_link_key;
  97.     int retval;
  98.     struct item_head * ih;
  99.     struct buffer_head * bh;
  100.     int item_pos;
  101.     char * item;
  102.     int done;
  103.     struct inode * inode;
  104.     int truncate;
  105.  
  106.  
  107.     /* compose key to look for "save" links */
  108.     max_cpu_key.version = KEY_FORMAT_3_5;
  109.     max_cpu_key.on_disk_key = MAX_KEY;
  110.     max_cpu_key.key_length = 3;
  111.  
  112.     done = 0;
  113.     s -> u.reiserfs_sb.s_is_unlinked_ok = 1;
  114.     while (1) {
  115.         retval = search_item (s, &max_cpu_key, &path);
  116.         if (retval != ITEM_NOT_FOUND) {
  117.             reiserfs_warning ("vs-2140: finish_unfinished: search_by_key returned %dn",
  118.                               retval);
  119.             break;
  120.         }
  121.         
  122.         bh = get_last_bh (&path);
  123.         item_pos = get_item_pos (&path);
  124.         if (item_pos != B_NR_ITEMS (bh)) {
  125.             reiserfs_warning ("vs-2060: finish_unfinished: wrong position foundn");
  126.             break;
  127.         }
  128.         item_pos --;
  129.         ih = B_N_PITEM_HEAD (bh, item_pos);
  130.  
  131.         if (le32_to_cpu (ih->ih_key.k_dir_id) != MAX_KEY_OBJECTID)
  132.             /* there are no "save" links anymore */
  133.             break;
  134.  
  135.         save_link_key = ih->ih_key;
  136.         if (is_indirect_le_ih (ih))
  137.             truncate = 1;
  138.         else
  139.             truncate = 0;
  140.  
  141.         /* reiserfs_iget needs k_dirid and k_objectid only */
  142.         item = B_I_PITEM (bh, ih);
  143.         obj_key.on_disk_key.k_dir_id = le32_to_cpu (*(__u32 *)item);
  144.         obj_key.on_disk_key.k_objectid = le32_to_cpu (ih->ih_key.k_objectid);
  145. obj_key.on_disk_key.u.k_offset_v1.k_offset = 0;
  146. obj_key.on_disk_key.u.k_offset_v1.k_uniqueness = 0;
  147.         pathrelse (&path);
  148.  
  149.         inode = reiserfs_iget (s, &obj_key);
  150.         if (!inode) {
  151.             /* the unlink almost completed, it just did not manage to remove
  152.        "save" link and release objectid */
  153.             reiserfs_warning ("vs-2180: finish_unfinished: iget failed for %Kn",
  154.                               &obj_key);
  155.             remove_save_link_only (s, &save_link_key, 1);
  156.             continue;
  157.         }
  158. if (!truncate && inode->i_nlink) {
  159.     /* file is not unlinked */
  160.             reiserfs_warning ("vs-2185: finish_unfinished: file %K is not unlinkedn",
  161.                               &obj_key);
  162.             remove_save_link_only (s, &save_link_key, 0);
  163.             continue;
  164. }
  165. if (truncate && S_ISDIR (inode->i_mode) ) {
  166.     /* We got a truncate request for a dir which is impossible.
  167.        The only imaginable way is to execute unfinished truncate request
  168.        then boot into old kernel, remove the file and create dir with
  169.        the same key. */
  170.     reiserfs_warning("green-2101: impossible truncate on a directory %k. Please reportn", INODE_PKEY (inode));
  171.     remove_save_link_only (s, &save_link_key, 0);
  172.     truncate = 0;
  173.     iput (inode); 
  174.     continue;
  175. }
  176.  
  177.         if (truncate) {
  178.             inode -> u.reiserfs_i.i_flags |= i_link_saved_truncate_mask;
  179.             /* not completed truncate found. New size was committed together
  180.        with "save" link */
  181.             reiserfs_warning ("Truncating %k to %Ld ..",
  182.                               INODE_PKEY (inode), inode->i_size);
  183.             reiserfs_truncate_file (inode, 0/*don't update modification time*/);
  184.             remove_save_link (inode, truncate);
  185.         } else {
  186.             inode -> u.reiserfs_i.i_flags |= i_link_saved_unlink_mask;
  187.             /* not completed unlink (rmdir) found */
  188.             reiserfs_warning ("Removing %k..", INODE_PKEY (inode));
  189.             /* removal gets completed in iput */
  190.         }
  191.  
  192.         iput (inode);
  193.         reiserfs_warning ("donen");
  194.         done ++;
  195.     }
  196.     s -> u.reiserfs_sb.s_is_unlinked_ok = 0;
  197.      
  198.     pathrelse (&path);
  199.     if (done)
  200.         reiserfs_warning ("There were %d uncompleted unlinks/truncates. "
  201.                           "Completedn", done);
  202. }
  203.  
  204. /* to protect file being unlinked from getting lost we "safe" link files
  205.    being unlinked. This link will be deleted in the same transaction with last
  206.    item of file. mounting the filesytem we scan all these links and remove
  207.    files which almost got lost */
  208. void add_save_link (struct reiserfs_transaction_handle * th,
  209.     struct inode * inode, int truncate)
  210. {
  211.     INITIALIZE_PATH (path);
  212.     int retval;
  213.     struct cpu_key key;
  214.     struct item_head ih;
  215.     __u32 link;
  216.     /* file can only get one "save link" of each kind */
  217.     RFALSE( truncate && 
  218.     ( inode -> u.reiserfs_i.i_flags & i_link_saved_truncate_mask ),
  219.     "saved link already exists for truncated inode %lx",
  220.     ( long ) inode -> i_ino );
  221.     RFALSE( !truncate && 
  222.     ( inode -> u.reiserfs_i.i_flags & i_link_saved_unlink_mask ),
  223.     "saved link already exists for unlinked inode %lx",
  224.     ( long ) inode -> i_ino );
  225.     /* setup key of "save" link */
  226.     key.version = KEY_FORMAT_3_5;
  227.     key.on_disk_key.k_dir_id = MAX_KEY_OBJECTID;
  228.     key.on_disk_key.k_objectid = inode->i_ino;
  229.     if (!truncate) {
  230. /* unlink, rmdir, rename */
  231. set_cpu_key_k_offset (&key, 1 + inode->i_sb->s_blocksize);
  232. set_cpu_key_k_type (&key, TYPE_DIRECT);
  233. /* item head of "safe" link */
  234. make_le_item_head (&ih, &key, key.version, 1 + inode->i_sb->s_blocksize, TYPE_DIRECT,
  235.    4/*length*/, 0xffff/*free space*/);
  236.     } else {
  237. /* truncate */
  238. if (S_ISDIR (inode->i_mode))
  239.     reiserfs_warning("green-2102: Adding a truncate savelink for a directory %k! Please reportn", INODE_PKEY(inode));
  240. set_cpu_key_k_offset (&key, 1);
  241. set_cpu_key_k_type (&key, TYPE_INDIRECT);
  242. /* item head of "safe" link */
  243. make_le_item_head (&ih, &key, key.version, 1, TYPE_INDIRECT,
  244.    4/*length*/, 0/*free space*/);
  245.     }
  246.     key.key_length = 3;
  247.     /* look for its place in the tree */
  248.     retval = search_item (inode->i_sb, &key, &path);
  249.     if (retval != ITEM_NOT_FOUND) {
  250. reiserfs_warning ("vs-2100: add_save_link:"
  251.   "search_by_key (%K) returned %dn", &key, retval);
  252. pathrelse (&path);
  253. return;
  254.     }
  255.     /* body of "save" link */
  256.     link = cpu_to_le32 (INODE_PKEY (inode)->k_dir_id);
  257.     /* put "save" link inot tree */
  258.     retval = reiserfs_insert_item (th, &path, &key, &ih, (char *)&link);
  259.     if (retval)
  260. reiserfs_warning ("vs-2120: add_save_link: insert_item returned %dn",
  261.   retval);
  262.     else {
  263. if( truncate )
  264.     inode -> u.reiserfs_i.i_flags |= i_link_saved_truncate_mask;
  265. else
  266.     inode -> u.reiserfs_i.i_flags |= i_link_saved_unlink_mask;
  267.     }
  268. }
  269. /* this opens transaction unlike add_save_link */
  270. void remove_save_link (struct inode * inode, int truncate)
  271. {
  272.     struct reiserfs_transaction_handle th;
  273.     struct key key;
  274.  
  275.  
  276.     /* we are going to do one balancing only */
  277.     journal_begin (&th, inode->i_sb, JOURNAL_PER_BALANCE_CNT);
  278.  
  279.     /* setup key of "save" link */
  280.     key.k_dir_id = cpu_to_le32 (MAX_KEY_OBJECTID);
  281.     key.k_objectid = INODE_PKEY (inode)->k_objectid;
  282.     if (!truncate) {
  283.         /* unlink, rmdir, rename */
  284.         set_le_key_k_offset (KEY_FORMAT_3_5, &key,
  285.      1 + inode->i_sb->s_blocksize);
  286.         set_le_key_k_type (KEY_FORMAT_3_5, &key, TYPE_DIRECT);
  287.     } else {
  288.         /* truncate */
  289.         set_le_key_k_offset (KEY_FORMAT_3_5, &key, 1);
  290.         set_le_key_k_type (KEY_FORMAT_3_5, &key, TYPE_INDIRECT);
  291.     }
  292.  
  293.     if( ( truncate && 
  294.           ( inode -> u.reiserfs_i.i_flags & i_link_saved_truncate_mask ) ) ||
  295.         ( !truncate && 
  296.           ( inode -> u.reiserfs_i.i_flags & i_link_saved_unlink_mask ) ) )
  297. reiserfs_delete_solid_item (&th, &key);
  298.     if (!truncate) {
  299. reiserfs_release_objectid (&th, inode->i_ino);
  300. inode -> u.reiserfs_i.i_flags &= ~i_link_saved_unlink_mask;
  301.     } else
  302. inode -> u.reiserfs_i.i_flags &= ~i_link_saved_truncate_mask;
  303.  
  304.     journal_end (&th, inode->i_sb, JOURNAL_PER_BALANCE_CNT);
  305. }
  306. //
  307. // a portion of this function, particularly the VFS interface portion,
  308. // was derived from minix or ext2's analog and evolved as the
  309. // prototype did. You should be able to tell which portion by looking
  310. // at the ext2 code and comparing. It's subfunctions contain no code
  311. // used as a template unless they are so labeled.
  312. //
  313. static void reiserfs_put_super (struct super_block * s)
  314. {
  315.   int i;
  316.   struct reiserfs_transaction_handle th ;
  317.   
  318.   /* change file system state to current state if it was mounted with read-write permissions */
  319.   if (!(s->s_flags & MS_RDONLY)) {
  320.     journal_begin(&th, s, 10) ;
  321.     reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1) ;
  322.     set_sb_state( SB_DISK_SUPER_BLOCK(s), s->u.reiserfs_sb.s_mount_state );
  323.     journal_mark_dirty(&th, s, SB_BUFFER_WITH_SB (s));
  324.   }
  325.   /* note, journal_release checks for readonly mount, and can decide not
  326.   ** to do a journal_end
  327.   */
  328.   journal_release(&th, s) ;
  329.   for (i = 0; i < SB_BMAP_NR (s); i ++)
  330.     brelse (SB_AP_BITMAP (s)[i]);
  331.   reiserfs_kfree (SB_AP_BITMAP (s), sizeof (struct buffer_head *) * SB_BMAP_NR (s), s);
  332.   brelse (SB_BUFFER_WITH_SB (s));
  333.   print_statistics (s);
  334.   if (s->u.reiserfs_sb.s_kmallocs != 0) {
  335.     reiserfs_warning ("vs-2004: reiserfs_put_super: allocated memory left %dn",
  336.       s->u.reiserfs_sb.s_kmallocs);
  337.   }
  338.   reiserfs_proc_unregister( s, "journal" );
  339.   reiserfs_proc_unregister( s, "oidmap" );
  340.   reiserfs_proc_unregister( s, "on-disk-super" );
  341.   reiserfs_proc_unregister( s, "bitmap" );
  342.   reiserfs_proc_unregister( s, "per-level" );
  343.   reiserfs_proc_unregister( s, "super" );
  344.   reiserfs_proc_unregister( s, "version" );
  345.   reiserfs_proc_info_done( s );
  346.   return;
  347. }
  348. /* we don't mark inodes dirty, we just log them */
  349. static void reiserfs_dirty_inode (struct inode * inode) {
  350.     struct reiserfs_transaction_handle th ;
  351.     if (inode->i_sb->s_flags & MS_RDONLY) {
  352.         reiserfs_warning("clm-6006: writing inode %lu on readonly FSn", 
  353.                   inode->i_ino) ;
  354.         return ;
  355.     }
  356.     lock_kernel() ;
  357.     /* this is really only used for atime updates, so they don't have
  358.     ** to be included in O_SYNC or fsync
  359.     */
  360.     journal_begin(&th, inode->i_sb, 1) ;
  361.     reiserfs_update_sd (&th, inode);
  362.     journal_end(&th, inode->i_sb, 1) ;
  363.     unlock_kernel() ;
  364. }
  365. struct super_operations reiserfs_sops = 
  366. {
  367.   read_inode: reiserfs_read_inode,
  368.   read_inode2: reiserfs_read_inode2,
  369.   write_inode: reiserfs_write_inode,
  370.   dirty_inode: reiserfs_dirty_inode,
  371.   delete_inode: reiserfs_delete_inode,
  372.   put_super: reiserfs_put_super,
  373.   write_super: reiserfs_write_super,
  374.   write_super_lockfs: reiserfs_write_super_lockfs,
  375.   unlockfs: reiserfs_unlockfs,
  376.   statfs: reiserfs_statfs,
  377.   remount_fs: reiserfs_remount,
  378.   fh_to_dentry: reiserfs_fh_to_dentry,
  379.   dentry_to_fh: reiserfs_dentry_to_fh,
  380. };
  381. /* this was (ext2)parse_options */
  382. static int parse_options (char * options, unsigned long * mount_options, unsigned long * blocks)
  383. {
  384.     char * this_char;
  385.     char * value;
  386.   
  387.     *blocks = 0;
  388.     if (!options)
  389. /* use default configuration: create tails, journaling on, no
  390.            conversion to newest format */
  391. return 1;
  392.     for (this_char = strtok (options, ","); this_char != NULL; this_char = strtok (NULL, ",")) {
  393. if ((value = strchr (this_char, '=')) != NULL)
  394.     *value++ = 0;
  395. if (!strcmp (this_char, "notail")) {
  396.     set_bit (NOTAIL, mount_options);
  397. } else if (!strcmp (this_char, "conv")) {
  398.     // if this is set, we update super block such that
  399.     // the partition will not be mounable by 3.5.x anymore
  400.     set_bit (REISERFS_CONVERT, mount_options);
  401. } else if (!strcmp (this_char, "noborder")) {
  402. /* this is used for benchmarking
  403.                                    experimental variations, it is not
  404.                                    intended for users to use, only for
  405.                                    developers who want to casually
  406.                                    hack in something to test */
  407.     set_bit (REISERFS_NO_BORDER, mount_options);
  408. } else if (!strcmp (this_char, "no_unhashed_relocation")) {
  409.     set_bit (REISERFS_NO_UNHASHED_RELOCATION, mount_options);
  410. } else if (!strcmp (this_char, "hashed_relocation")) {
  411.     set_bit (REISERFS_HASHED_RELOCATION, mount_options);
  412. } else if (!strcmp (this_char, "test4")) {
  413.     set_bit (REISERFS_TEST4, mount_options);
  414. } else if (!strcmp (this_char, "nolog")) {
  415.     reiserfs_warning("reiserfs: nolog mount option not supported yetn");
  416. } else if (!strcmp (this_char, "replayonly")) {
  417.     set_bit (REPLAYONLY, mount_options);
  418. } else if (!strcmp (this_char, "resize")) {
  419.     if (value && *value){
  420. *blocks = simple_strtoul (value, &value, 0);
  421.     } else {
  422.    printk("reiserfs: resize option requires a valuen");
  423. return 0;
  424.     }
  425. } else if (!strcmp (this_char, "hash")) {
  426.     if (value && *value) {
  427. /* if they specify any hash option, we force detection
  428. ** to make sure they aren't using the wrong hash
  429. */
  430.         if (!strcmp(value, "rupasov")) {
  431.     set_bit (FORCE_RUPASOV_HASH, mount_options);
  432.     set_bit (FORCE_HASH_DETECT, mount_options);
  433. } else if (!strcmp(value, "tea")) {
  434.     set_bit (FORCE_TEA_HASH, mount_options);
  435.     set_bit (FORCE_HASH_DETECT, mount_options);
  436. } else if (!strcmp(value, "r5")) {
  437.     set_bit (FORCE_R5_HASH, mount_options);
  438.     set_bit (FORCE_HASH_DETECT, mount_options);
  439. } else if (!strcmp(value, "detect")) {
  440.     set_bit (FORCE_HASH_DETECT, mount_options);
  441. } else {
  442.     printk("reiserfs: invalid hash function specifiedn") ;
  443.     return 0 ;
  444. }
  445.     } else {
  446.    printk("reiserfs: hash option requires a valuen");
  447. return 0 ;
  448.     }
  449. } else {
  450.     printk ("reiserfs: Unrecognized mount option %sn", this_char);
  451.     return 0;
  452. }
  453.     }
  454.     return 1;
  455. }
  456. int reiserfs_is_super(struct super_block *s) {
  457.    return (s->s_dev != 0 && s->s_op == &reiserfs_sops) ;
  458. }
  459. //
  460. // a portion of this function, particularly the VFS interface portion,
  461. // was derived from minix or ext2's analog and evolved as the
  462. // prototype did. You should be able to tell which portion by looking
  463. // at the ext2 code and comparing. It's subfunctions contain no code
  464. // used as a template unless they are so labeled.
  465. //
  466. static int reiserfs_remount (struct super_block * s, int * flags, char * data)
  467. {
  468.   struct reiserfs_super_block * rs;
  469.   struct reiserfs_transaction_handle th ;
  470.   unsigned long blocks;
  471.   unsigned long mount_options;
  472.   rs = SB_DISK_SUPER_BLOCK (s);
  473.   if (!parse_options(data, &mount_options, &blocks))
  474.    return 0;
  475.   if(blocks) {
  476.       int rc = reiserfs_resize(s, blocks);
  477.       if (rc != 0)
  478.   return rc;
  479.   }
  480.   if ((unsigned long)(*flags & MS_RDONLY) == (s->s_flags & MS_RDONLY)) {
  481.     /* there is nothing to do to remount read-only fs as read-only fs */
  482.     return 0;
  483.   }
  484.   
  485.   if (*flags & MS_RDONLY) {
  486.     /* try to remount file system with read-only permissions */
  487.     if (sb_state(rs) == REISERFS_VALID_FS || s->u.reiserfs_sb.s_mount_state != REISERFS_VALID_FS) {
  488.       return 0;
  489.     }
  490.     journal_begin(&th, s, 10) ;
  491.     /* Mounting a rw partition read-only. */
  492.     reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1) ;
  493.     set_sb_state( rs, s->u.reiserfs_sb.s_mount_state );
  494.     journal_mark_dirty(&th, s, SB_BUFFER_WITH_SB (s));
  495.     s->s_dirt = 0;
  496.   } else {
  497.     s->u.reiserfs_sb.s_mount_state = sb_state(rs) ;
  498.     s->s_flags &= ~MS_RDONLY ; /* now it is safe to call journal_begin */
  499.     journal_begin(&th, s, 10) ;
  500.     /* Mount a partition which is read-only, read-write */
  501.     reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1) ;
  502.     s->u.reiserfs_sb.s_mount_state = sb_state(rs);
  503.     s->s_flags &= ~MS_RDONLY;
  504.     set_sb_state( rs, REISERFS_ERROR_FS );
  505.     /* mark_buffer_dirty (SB_BUFFER_WITH_SB (s), 1); */
  506.     journal_mark_dirty(&th, s, SB_BUFFER_WITH_SB (s));
  507.     s->s_dirt = 0;
  508.     s->u.reiserfs_sb.s_mount_state = REISERFS_VALID_FS ;
  509.   }
  510.   /* this will force a full flush of all journal lists */
  511.   SB_JOURNAL(s)->j_must_wait = 1 ;
  512.   journal_end(&th, s, 10) ;
  513.   if (!( *flags & MS_RDONLY ) )
  514.     finish_unfinished( s );
  515.   return 0;
  516. }
  517. static int read_bitmaps (struct super_block * s)
  518. {
  519.     int i, bmp, dl ;
  520.     struct reiserfs_super_block * rs = SB_DISK_SUPER_BLOCK(s);
  521.     SB_AP_BITMAP (s) = reiserfs_kmalloc (sizeof (struct buffer_head *) * sb_bmap_nr(rs), GFP_NOFS, s);
  522.     if (SB_AP_BITMAP (s) == 0)
  523. return 1;
  524.     memset (SB_AP_BITMAP (s), 0, sizeof (struct buffer_head *) * sb_bmap_nr(rs));
  525.     /* reiserfs leaves the first 64k unused so that any partition
  526.        labeling scheme currently used will have enough space. Then we
  527.        need one block for the super.  -Hans */
  528.     bmp = (REISERFS_DISK_OFFSET_IN_BYTES / s->s_blocksize) + 1; /* first of bitmap blocks */
  529.     SB_AP_BITMAP (s)[0] = reiserfs_bread (s, bmp, s->s_blocksize);
  530.     if(!SB_AP_BITMAP(s)[0])
  531. return 1;
  532.     for (i = 1, bmp = dl = s->s_blocksize * 8; i < sb_bmap_nr(rs); i ++) {
  533. SB_AP_BITMAP (s)[i] = reiserfs_bread (s, bmp, s->s_blocksize);
  534. if (!SB_AP_BITMAP (s)[i])
  535.     return 1;
  536. bmp += dl;
  537.     }
  538.     return 0;
  539. }
  540. static int read_old_bitmaps (struct super_block * s)
  541. {
  542.   int i ;
  543.   struct reiserfs_super_block * rs = SB_DISK_SUPER_BLOCK(s);
  544.   int bmp1 = (REISERFS_OLD_DISK_OFFSET_IN_BYTES / s->s_blocksize) + 1;  /* first of bitmap blocks */
  545.   /* read true bitmap */
  546.   SB_AP_BITMAP (s) = reiserfs_kmalloc (sizeof (struct buffer_head *) * sb_bmap_nr(rs), GFP_NOFS, s);
  547.   if (SB_AP_BITMAP (s) == 0)
  548.     return 1;
  549.   memset (SB_AP_BITMAP (s), 0, sizeof (struct buffer_head *) * sb_bmap_nr(rs));
  550.   for (i = 0; i < sb_bmap_nr(rs); i ++) {
  551.     SB_AP_BITMAP (s)[i] = reiserfs_bread (s, bmp1 + i, s->s_blocksize);
  552.     if (!SB_AP_BITMAP (s)[i])
  553.       return 1;
  554.   }
  555.   return 0;
  556. }
  557. void check_bitmap (struct super_block * s)
  558. {
  559.   int i = 0;
  560.   int free = 0;
  561.   char * buf;
  562.   while (i < SB_BLOCK_COUNT (s)) {
  563.     buf = SB_AP_BITMAP (s)[i / (s->s_blocksize * 8)]->b_data;
  564.     if (!reiserfs_test_le_bit (i % (s->s_blocksize * 8), buf))
  565.       free ++;
  566.     i ++;
  567.   }
  568.   if (free != SB_FREE_BLOCKS (s))
  569.     reiserfs_warning ("vs-4000: check_bitmap: %d free blocks, must be %dn",
  570.       free, SB_FREE_BLOCKS (s));
  571. }
  572. static int read_super_block (struct super_block * s, int size, int offset)
  573. {
  574.     struct buffer_head * bh;
  575.     struct reiserfs_super_block * rs;
  576.  
  577.     bh = bread (s->s_dev, offset / size, size);
  578.     if (!bh) {
  579.       printk ("read_super_block: "
  580.               "bread failed (dev %s, block %d, size %d)n",
  581.               kdevname (s->s_dev), offset / size, size);
  582.       return 1;
  583.     }
  584.  
  585.     rs = (struct reiserfs_super_block *)bh->b_data;
  586.     if (!is_reiserfs_magic_string (rs)) {
  587.       printk ("read_super_block: "
  588.               "can't find a reiserfs filesystem on (dev %s, block %lu, size %d)n",
  589.               kdevname(s->s_dev), bh->b_blocknr, size);
  590.       brelse (bh);
  591.       return 1;
  592.     }
  593.  
  594.     //
  595.     // ok, reiserfs signature (old or new) found in at the given offset
  596.     //    
  597.     s->s_blocksize = sb_blocksize(rs);
  598.     s->s_blocksize_bits = 0;
  599.     while ((1 << s->s_blocksize_bits) != s->s_blocksize)
  600. s->s_blocksize_bits ++;
  601.     brelse (bh);
  602.     
  603.     if (s->s_blocksize != size)
  604. set_blocksize (s->s_dev, s->s_blocksize);
  605.     bh = reiserfs_bread (s, offset / s->s_blocksize, s->s_blocksize);
  606.     if (!bh) {
  607. printk("read_super_block: "
  608.                 "bread failed (dev %s, block %d, size %d)n",
  609.                 kdevname (s->s_dev), offset / size, size);
  610. return 1;
  611.     }
  612.     
  613.     rs = (struct reiserfs_super_block *)bh->b_data;
  614.     if (!is_reiserfs_magic_string (rs) ||
  615. sb_blocksize(rs) != s->s_blocksize) {
  616. printk ("read_super_block: "
  617. "can't find a reiserfs filesystem on (dev %s, block %lu, size %d)n",
  618. kdevname(s->s_dev), bh->b_blocknr, size);
  619. brelse (bh);
  620. printk ("read_super_block: can't find a reiserfs filesystem on dev %s.n", kdevname(s->s_dev));
  621. return 1;
  622.     }
  623.     /* must check to be sure we haven't pulled an old format super out
  624.     ** of the old format's log.  This is a kludge of a check, but it
  625.     ** will work.  If block we've just read in is inside the
  626.     ** journal for that super, it can't be valid.  
  627.     */
  628.     if (bh->b_blocknr >= sb_journal_block(rs) && 
  629. bh->b_blocknr < (sb_journal_block(rs) + JOURNAL_BLOCK_COUNT)) {
  630. brelse(bh) ;
  631. printk("super-459: read_super_block: "
  632.        "super found at block %lu is within its own log. "
  633.        "It must not be of this format type.n", bh->b_blocknr) ;
  634. return 1 ;
  635.     }
  636.     SB_BUFFER_WITH_SB (s) = bh;
  637.     SB_DISK_SUPER_BLOCK (s) = rs;
  638.     s->s_op = &reiserfs_sops;
  639.     /* new format is limited by the 32 bit wide i_blocks field, want to
  640.     ** be one full block below that.
  641.     */
  642.     s->s_maxbytes = (512LL << 32) - s->s_blocksize ;
  643.     return 0;
  644. }
  645. /* after journal replay, reread all bitmap and super blocks */
  646. static int reread_meta_blocks(struct super_block *s) {
  647.   int i ;
  648.   ll_rw_block(READ, 1, &(SB_BUFFER_WITH_SB(s))) ;
  649.   wait_on_buffer(SB_BUFFER_WITH_SB(s)) ;
  650.   if (!buffer_uptodate(SB_BUFFER_WITH_SB(s))) {
  651.     printk("reread_meta_blocks, error reading the supern") ;
  652.     return 1 ;
  653.   }
  654.   for (i = 0; i < SB_BMAP_NR(s) ; i++) {
  655.     ll_rw_block(READ, 1, &(SB_AP_BITMAP(s)[i])) ;
  656.     wait_on_buffer(SB_AP_BITMAP(s)[i]) ;
  657.     if (!buffer_uptodate(SB_AP_BITMAP(s)[i])) {
  658.       printk("reread_meta_blocks, error reading bitmap block number %d at %ldn", i, SB_AP_BITMAP(s)[i]->b_blocknr) ;
  659.       return 1 ;
  660.     }
  661.   }
  662.   return 0 ;
  663. }
  664. /////////////////////////////////////////////////////
  665. // hash detection stuff
  666. // if root directory is empty - we set default - Yura's - hash and
  667. // warn about it
  668. // FIXME: we look for only one name in a directory. If tea and yura
  669. // bith have the same value - we ask user to send report to the
  670. // mailing list
  671. __u32 find_hash_out (struct super_block * s)
  672. {
  673.     int retval;
  674.     struct inode * inode;
  675.     struct cpu_key key;
  676.     INITIALIZE_PATH (path);
  677.     struct reiserfs_dir_entry de;
  678.     __u32 hash = DEFAULT_HASH;
  679.     inode = s->s_root->d_inode;
  680.     while (1) {
  681. make_cpu_key (&key, inode, ~0, TYPE_DIRENTRY, 3);
  682. retval = search_by_entry_key (s, &key, &path, &de);
  683. if (retval == IO_ERROR) {
  684.     pathrelse (&path);
  685.     return UNSET_HASH ;
  686. }
  687. if (retval == NAME_NOT_FOUND)
  688.     de.de_entry_num --;
  689. set_de_name_and_namelen (&de);
  690. if (deh_offset( &(de.de_deh[de.de_entry_num]) ) == DOT_DOT_OFFSET) {
  691.     /* allow override in this case */
  692.     if (reiserfs_rupasov_hash(s)) {
  693. hash = YURA_HASH ;
  694.     }
  695.     reiserfs_warning("reiserfs: FS seems to be empty, autodetect "
  696.                      "is using the default hashn");
  697.     break;
  698. }
  699. if (GET_HASH_VALUE(yura_hash (de.de_name, de.de_namelen)) == 
  700.     GET_HASH_VALUE(keyed_hash (de.de_name, de.de_namelen))) {
  701.     reiserfs_warning ("reiserfs: Could not detect hash function "
  702.       "please mount with -o hash={tea,rupasov,r5}n") ;
  703.     hash = UNSET_HASH ;
  704.     break;
  705. }
  706. if (GET_HASH_VALUE( deh_offset(&(de.de_deh[de.de_entry_num])) ) ==
  707.     GET_HASH_VALUE (yura_hash (de.de_name, de.de_namelen)))
  708.     hash = YURA_HASH;
  709. else
  710.     hash = TEA_HASH;
  711. break;
  712.     }
  713.     pathrelse (&path);
  714.     return hash;
  715. }
  716. // finds out which hash names are sorted with
  717. static int what_hash (struct super_block * s)
  718. {
  719.     __u32 code;
  720.     code = sb_hash_function_code(SB_DISK_SUPER_BLOCK(s));
  721.     /* reiserfs_hash_detect() == true if any of the hash mount options
  722.     ** were used.  We must check them to make sure the user isn't
  723.     ** using a bad hash value
  724.     */
  725.     if (code == UNSET_HASH || reiserfs_hash_detect(s))
  726. code = find_hash_out (s);
  727.     if (code != UNSET_HASH && reiserfs_hash_detect(s)) {
  728. /* detection has found the hash, and we must check against the 
  729. ** mount options 
  730. */
  731. if (reiserfs_rupasov_hash(s) && code != YURA_HASH) {
  732.     printk("REISERFS: Error, tea hash detected, "
  733.    "unable to force rupasov hashn") ;
  734.     code = UNSET_HASH ;
  735. } else if (reiserfs_tea_hash(s) && code != TEA_HASH) {
  736.     printk("REISERFS: Error, rupasov hash detected, "
  737.    "unable to force tea hashn") ;
  738.     code = UNSET_HASH ;
  739. } else if (reiserfs_r5_hash(s) && code != R5_HASH) {
  740.     printk("REISERFS: Error, r5 hash detected, "
  741.    "unable to force r5 hashn") ;
  742.     code = UNSET_HASH ;
  743.     } else { 
  744.         /* find_hash_out was not called or could not determine the hash */
  745. if (reiserfs_rupasov_hash(s)) {
  746.     code = YURA_HASH ;
  747. } else if (reiserfs_tea_hash(s)) {
  748.     code = TEA_HASH ;
  749. } else if (reiserfs_r5_hash(s)) {
  750.     code = R5_HASH ;
  751.     }
  752.     /* if we are mounted RW, and we have a new valid hash code, update 
  753.     ** the super
  754.     */
  755.     if (code != UNSET_HASH && 
  756. !(s->s_flags & MS_RDONLY) && 
  757.         code != sb_hash_function_code(SB_DISK_SUPER_BLOCK(s))) {
  758.         set_sb_hash_function_code(SB_DISK_SUPER_BLOCK(s), code);
  759.     }
  760.     return code;
  761. }
  762. // return pointer to appropriate function
  763. static hashf_t hash_function (struct super_block * s)
  764. {
  765.     switch (what_hash (s)) {
  766.     case TEA_HASH:
  767. reiserfs_warning ("Using tea hash to sort namesn");
  768. return keyed_hash;
  769.     case YURA_HASH:
  770. reiserfs_warning ("Using rupasov hash to sort namesn");
  771. return yura_hash;
  772.     case R5_HASH:
  773. reiserfs_warning ("Using r5 hash to sort namesn");
  774. return r5_hash;
  775.     }
  776.     return NULL;
  777. }
  778. // this is used to set up correct value for old partitions
  779. int function2code (hashf_t func)
  780. {
  781.     if (func == keyed_hash)
  782. return TEA_HASH;
  783.     if (func == yura_hash)
  784. return YURA_HASH;
  785.     if (func == r5_hash)
  786. return R5_HASH;
  787.     BUG() ; // should never happen 
  788.     return 0;
  789. }
  790. //
  791. // a portion of this function, particularly the VFS interface portion,
  792. // was derived from minix or ext2's analog and evolved as the
  793. // prototype did. You should be able to tell which portion by looking
  794. // at the ext2 code and comparing. It's subfunctions contain no code
  795. // used as a template unless they are so labeled.
  796. //
  797. static struct super_block * reiserfs_read_super (struct super_block * s, void * data, int silent)
  798. {
  799.     int size;
  800.     struct inode *root_inode;
  801.     kdev_t dev = s->s_dev;
  802.     int j;
  803.     extern int *blksize_size[];
  804.     struct reiserfs_transaction_handle th ;
  805.     int old_format = 0;
  806.     unsigned long blocks;
  807.     int jinit_done = 0 ;
  808.     struct reiserfs_iget4_args args ;
  809.     int old_magic;
  810.     struct reiserfs_super_block * rs;
  811.     memset (&s->u.reiserfs_sb, 0, sizeof (struct reiserfs_sb_info));
  812.     if (parse_options ((char *) data, &(s->u.reiserfs_sb.s_mount_opt), &blocks) == 0) {
  813. return NULL;
  814.     }
  815.     if (blocks) {
  816.    printk("reserfs: resize option for remount onlyn");
  817. return NULL;
  818.     }
  819.     if (blksize_size[MAJOR(dev)] && blksize_size[MAJOR(dev)][MINOR(dev)] != 0) {
  820. /* as blocksize is set for partition we use it */
  821. size = blksize_size[MAJOR(dev)][MINOR(dev)];
  822.     } else {
  823. size = BLOCK_SIZE;
  824. set_blocksize (s->s_dev, BLOCK_SIZE);
  825.     }
  826.     /* read block (64-th 1k block), which can contain reiserfs super block */
  827.     if (read_super_block (s, size, REISERFS_DISK_OFFSET_IN_BYTES)) {
  828. // try old format (undistributed bitmap, super block in 8-th 1k block of a device)
  829. if (read_super_block (s, size, REISERFS_OLD_DISK_OFFSET_IN_BYTES)) 
  830.     goto error;
  831. else
  832.     old_format = 1;
  833.     }
  834.     s->u.reiserfs_sb.s_mount_state = SB_REISERFS_STATE(s);
  835.     s->u.reiserfs_sb.s_mount_state = REISERFS_VALID_FS ;
  836.     if (old_format ? read_old_bitmaps(s) : read_bitmaps(s)) { 
  837. printk ("reiserfs_read_super: unable to read bitmapn");
  838. goto error;
  839.     }
  840. #ifdef CONFIG_REISERFS_CHECK
  841.     printk("reiserfs:warning: CONFIG_REISERFS_CHECK is set ONn");
  842.     printk("reiserfs:warning: - it is slow mode for debugging.n");
  843. #endif
  844.     // set_device_ro(s->s_dev, 1) ;
  845.     if (journal_init(s)) {
  846. printk("reiserfs_read_super: unable to initialize journal spacen") ;
  847. goto error ;
  848.     } else {
  849. jinit_done = 1 ; /* once this is set, journal_release must be called
  850.  ** if we error out of the mount 
  851.  */
  852.     }
  853.     if (reread_meta_blocks(s)) {
  854. printk("reiserfs_read_super: unable to reread meta blocks after journal initn") ;
  855. goto error ;
  856.     }
  857.     if (replay_only (s))
  858. goto error;
  859.     if (is_read_only(s->s_dev) && !(s->s_flags & MS_RDONLY)) {
  860.         printk("clm-7000: Detected readonly device, marking FS readonlyn") ;
  861. s->s_flags |= MS_RDONLY ;
  862.     }
  863.     args.objectid = REISERFS_ROOT_PARENT_OBJECTID ;
  864.     root_inode = iget4 (s, REISERFS_ROOT_OBJECTID, 0, (void *)(&args));
  865.     if (!root_inode) {
  866. printk ("reiserfs_read_super: get root inode failedn");
  867. goto error;
  868.     }
  869.     s->s_root = d_alloc_root(root_inode);  
  870.     if (!s->s_root) {
  871. iput(root_inode);
  872. goto error;
  873.     }
  874.     // define and initialize hash function
  875.     s->u.reiserfs_sb.s_hash_function = hash_function (s);
  876.     if (s->u.reiserfs_sb.s_hash_function == NULL) {
  877.       dput(s->s_root) ;
  878.       s->s_root = NULL ;
  879.       goto error ;
  880.     }
  881.     rs = SB_DISK_SUPER_BLOCK (s);
  882.     old_magic = strncmp (rs->s_magic,  REISER2FS_SUPER_MAGIC_STRING,
  883.                            strlen ( REISER2FS_SUPER_MAGIC_STRING));
  884.     if (!old_magic)
  885. set_bit(REISERFS_3_6, &(s->u.reiserfs_sb.s_properties));
  886.     else
  887. set_bit(REISERFS_3_5, &(s->u.reiserfs_sb.s_properties));
  888.     if (!(s->s_flags & MS_RDONLY)) {
  889. journal_begin(&th, s, 1) ;
  890. reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1) ;
  891.         set_sb_state( rs, REISERFS_ERROR_FS );
  892.         if ( old_magic ) {
  893.     // filesystem created under 3.5.x found
  894.     if (convert_reiserfs (s)) {
  895. reiserfs_warning("reiserfs: converting 3.5.x filesystem to the new formatn") ;
  896. // after this 3.5.x will not be able to mount this partition
  897. memcpy (rs->s_magic, REISER2FS_SUPER_MAGIC_STRING, 
  898. sizeof (REISER2FS_SUPER_MAGIC_STRING));
  899. reiserfs_convert_objectid_map_v1(s) ;
  900. set_bit(REISERFS_3_6, &(s->u.reiserfs_sb.s_properties));
  901. clear_bit(REISERFS_3_5, &(s->u.reiserfs_sb.s_properties));
  902.     } else {
  903. reiserfs_warning("reiserfs: using 3.5.x disk formatn") ;
  904.     }
  905. }
  906. journal_mark_dirty(&th, s, SB_BUFFER_WITH_SB (s));
  907. journal_end(&th, s, 1) ;
  908. /* look for files which were to be removed in previous session */
  909. finish_unfinished (s);
  910. s->s_dirt = 0;
  911.     } else {
  912. if ( old_magic ) {
  913.     reiserfs_warning("reiserfs: using 3.5.x disk formatn") ;
  914. }
  915.     }
  916.     // mark hash in super block: it could be unset. overwrite should be ok
  917.     set_sb_hash_function_code( rs, function2code(s->u.reiserfs_sb.s_hash_function ) );
  918.     reiserfs_proc_info_init( s );
  919.     reiserfs_proc_register( s, "version", reiserfs_version_in_proc );
  920.     reiserfs_proc_register( s, "super", reiserfs_super_in_proc );
  921.     reiserfs_proc_register( s, "per-level", reiserfs_per_level_in_proc );
  922.     reiserfs_proc_register( s, "bitmap", reiserfs_bitmap_in_proc );
  923.     reiserfs_proc_register( s, "on-disk-super", reiserfs_on_disk_super_in_proc );
  924.     reiserfs_proc_register( s, "oidmap", reiserfs_oidmap_in_proc );
  925.     reiserfs_proc_register( s, "journal", reiserfs_journal_in_proc );
  926.     init_waitqueue_head (&(s->u.reiserfs_sb.s_wait));
  927.     printk("%sn", reiserfs_get_version_string()) ;
  928.     return s;
  929.  error:
  930.     if (jinit_done) { /* kill the commit thread, free journal ram */
  931. journal_release_error(NULL, s) ;
  932.     }
  933.     if (SB_DISK_SUPER_BLOCK (s)) {
  934. for (j = 0; j < SB_BMAP_NR (s); j ++) {
  935.     if (SB_AP_BITMAP (s))
  936. brelse (SB_AP_BITMAP (s)[j]);
  937. }
  938. if (SB_AP_BITMAP (s))
  939.     reiserfs_kfree (SB_AP_BITMAP (s), sizeof (struct buffer_head *) * SB_BMAP_NR (s), s);
  940.     }
  941.     if (SB_BUFFER_WITH_SB (s))
  942. brelse(SB_BUFFER_WITH_SB (s));
  943.     return NULL;
  944. }
  945. //
  946. // a portion of this function, particularly the VFS interface portion,
  947. // was derived from minix or ext2's analog and evolved as the
  948. // prototype did. You should be able to tell which portion by looking
  949. // at the ext2 code and comparing. It's subfunctions contain no code
  950. // used as a template unless they are so labeled.
  951. //
  952. static int reiserfs_statfs (struct super_block * s, struct statfs * buf)
  953. {
  954.   struct reiserfs_super_block * rs = SB_DISK_SUPER_BLOCK (s);
  955.   
  956. /* changed to accomodate gcc folks.*/
  957.   buf->f_type    =  REISERFS_SUPER_MAGIC;
  958.   buf->f_bsize   = s->s_blocksize;
  959.   buf->f_blocks  = sb_block_count(rs) - sb_bmap_nr(rs) - 1;
  960.   buf->f_bfree   = sb_free_blocks(rs);
  961.   buf->f_bavail  = buf->f_bfree;
  962.   buf->f_files   = -1;
  963.   buf->f_ffree   = -1;
  964.   buf->f_namelen = (REISERFS_MAX_NAME_LEN (s->s_blocksize));
  965.   return 0;
  966. }
  967. static DECLARE_FSTYPE_DEV(reiserfs_fs_type,"reiserfs",reiserfs_read_super);
  968. //
  969. // this is exactly what 2.3.99-pre9's init_ext2_fs is
  970. //
  971. static int __init init_reiserfs_fs (void)
  972. {
  973. reiserfs_proc_info_global_init();
  974. reiserfs_proc_register_global( "version", 
  975.        reiserfs_global_version_in_proc );
  976.         return register_filesystem(&reiserfs_fs_type);
  977. }
  978. MODULE_DESCRIPTION("ReiserFS journaled filesystem");
  979. MODULE_AUTHOR("Hans Reiser <reiser@namesys.com>");
  980. MODULE_LICENSE("GPL");
  981. EXPORT_NO_SYMBOLS;
  982. //
  983. // this is exactly what 2.3.99-pre9's init_ext2_fs is
  984. //
  985. static void __exit exit_reiserfs_fs(void)
  986. {
  987. reiserfs_proc_unregister_global( "version" );
  988. reiserfs_proc_info_global_done();
  989.         unregister_filesystem(&reiserfs_fs_type);
  990. }
  991. module_init(init_reiserfs_fs) ;
  992. module_exit(exit_reiserfs_fs) ;