jfs_inode.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /*
  2. * Copyright (C) International Business Machines Corp., 2000-2004
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  12. * the GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <linux/fs.h>
  19. #include <linux/quotaops.h>
  20. #include "jfs_incore.h"
  21. #include "jfs_inode.h"
  22. #include "jfs_filsys.h"
  23. #include "jfs_imap.h"
  24. #include "jfs_dinode.h"
  25. #include "jfs_debug.h"
  26. void jfs_set_inode_flags(struct inode *inode)
  27. {
  28. unsigned int flags = JFS_IP(inode)->mode2;
  29. inode->i_flags &= ~(S_IMMUTABLE | S_APPEND |
  30. S_NOATIME | S_DIRSYNC | S_SYNC);
  31. if (flags & JFS_IMMUTABLE_FL)
  32. inode->i_flags |= S_IMMUTABLE;
  33. if (flags & JFS_APPEND_FL)
  34. inode->i_flags |= S_APPEND;
  35. if (flags & JFS_NOATIME_FL)
  36. inode->i_flags |= S_NOATIME;
  37. if (flags & JFS_DIRSYNC_FL)
  38. inode->i_flags |= S_DIRSYNC;
  39. if (flags & JFS_SYNC_FL)
  40. inode->i_flags |= S_SYNC;
  41. }
  42. void jfs_get_inode_flags(struct jfs_inode_info *jfs_ip)
  43. {
  44. unsigned int flags = jfs_ip->vfs_inode.i_flags;
  45. jfs_ip->mode2 &= ~(JFS_IMMUTABLE_FL | JFS_APPEND_FL | JFS_NOATIME_FL |
  46. JFS_DIRSYNC_FL | JFS_SYNC_FL);
  47. if (flags & S_IMMUTABLE)
  48. jfs_ip->mode2 |= JFS_IMMUTABLE_FL;
  49. if (flags & S_APPEND)
  50. jfs_ip->mode2 |= JFS_APPEND_FL;
  51. if (flags & S_NOATIME)
  52. jfs_ip->mode2 |= JFS_NOATIME_FL;
  53. if (flags & S_DIRSYNC)
  54. jfs_ip->mode2 |= JFS_DIRSYNC_FL;
  55. if (flags & S_SYNC)
  56. jfs_ip->mode2 |= JFS_SYNC_FL;
  57. }
  58. /*
  59. * NAME: ialloc()
  60. *
  61. * FUNCTION: Allocate a new inode
  62. *
  63. */
  64. struct inode *ialloc(struct inode *parent, umode_t mode)
  65. {
  66. struct super_block *sb = parent->i_sb;
  67. struct inode *inode;
  68. struct jfs_inode_info *jfs_inode;
  69. int rc;
  70. inode = new_inode(sb);
  71. if (!inode) {
  72. jfs_warn("ialloc: new_inode returned NULL!");
  73. rc = -ENOMEM;
  74. goto fail;
  75. }
  76. jfs_inode = JFS_IP(inode);
  77. rc = diAlloc(parent, S_ISDIR(mode), inode);
  78. if (rc) {
  79. jfs_warn("ialloc: diAlloc returned %d!", rc);
  80. if (rc == -EIO)
  81. make_bad_inode(inode);
  82. goto fail_put;
  83. }
  84. if (insert_inode_locked(inode) < 0) {
  85. rc = -EINVAL;
  86. goto fail_unlock;
  87. }
  88. inode_init_owner(inode, parent, mode);
  89. /*
  90. * New inodes need to save sane values on disk when
  91. * uid & gid mount options are used
  92. */
  93. jfs_inode->saved_uid = inode->i_uid;
  94. jfs_inode->saved_gid = inode->i_gid;
  95. /*
  96. * Allocate inode to quota.
  97. */
  98. dquot_initialize(inode);
  99. rc = dquot_alloc_inode(inode);
  100. if (rc)
  101. goto fail_drop;
  102. /* inherit flags from parent */
  103. jfs_inode->mode2 = JFS_IP(parent)->mode2 & JFS_FL_INHERIT;
  104. if (S_ISDIR(mode)) {
  105. jfs_inode->mode2 |= IDIRECTORY;
  106. jfs_inode->mode2 &= ~JFS_DIRSYNC_FL;
  107. }
  108. else {
  109. jfs_inode->mode2 |= INLINEEA | ISPARSE;
  110. if (S_ISLNK(mode))
  111. jfs_inode->mode2 &= ~(JFS_IMMUTABLE_FL|JFS_APPEND_FL);
  112. }
  113. jfs_inode->mode2 |= inode->i_mode;
  114. inode->i_blocks = 0;
  115. inode->i_mtime = inode->i_atime = inode->i_ctime = CURRENT_TIME;
  116. jfs_inode->otime = inode->i_ctime.tv_sec;
  117. inode->i_generation = JFS_SBI(sb)->gengen++;
  118. jfs_inode->cflag = 0;
  119. /* Zero remaining fields */
  120. memset(&jfs_inode->acl, 0, sizeof(dxd_t));
  121. memset(&jfs_inode->ea, 0, sizeof(dxd_t));
  122. jfs_inode->next_index = 0;
  123. jfs_inode->acltype = 0;
  124. jfs_inode->btorder = 0;
  125. jfs_inode->btindex = 0;
  126. jfs_inode->bxflag = 0;
  127. jfs_inode->blid = 0;
  128. jfs_inode->atlhead = 0;
  129. jfs_inode->atltail = 0;
  130. jfs_inode->xtlid = 0;
  131. jfs_set_inode_flags(inode);
  132. jfs_info("ialloc returns inode = 0x%p\n", inode);
  133. return inode;
  134. fail_drop:
  135. dquot_drop(inode);
  136. inode->i_flags |= S_NOQUOTA;
  137. fail_unlock:
  138. inode->i_nlink = 0;
  139. unlock_new_inode(inode);
  140. fail_put:
  141. iput(inode);
  142. fail:
  143. return ERR_PTR(rc);
  144. }