Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 6 | * the Free Software Foundation; either version 2 of the License, or |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * (at your option) any later version. |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
Dave Kleikamp | 63f83c9 | 2006-10-02 09:55:27 -0500 | [diff] [blame] | 15 | * along with this program; if not, write to the Free Software |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | */ |
| 18 | |
| 19 | #include <linux/fs.h> |
| 20 | #include <linux/quotaops.h> |
| 21 | #include "jfs_incore.h" |
Dave Kleikamp | 1868f4a | 2005-05-04 15:29:35 -0500 | [diff] [blame] | 22 | #include "jfs_inode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "jfs_filsys.h" |
| 24 | #include "jfs_imap.h" |
| 25 | #include "jfs_dinode.h" |
| 26 | #include "jfs_debug.h" |
| 27 | |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 28 | |
| 29 | void jfs_set_inode_flags(struct inode *inode) |
| 30 | { |
| 31 | unsigned int flags = JFS_IP(inode)->mode2; |
Fabian Frederick | 24e4a0f | 2014-04-14 09:39:01 +0200 | [diff] [blame] | 32 | unsigned int new_fl = 0; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 33 | |
| 34 | if (flags & JFS_IMMUTABLE_FL) |
Fabian Frederick | 24e4a0f | 2014-04-14 09:39:01 +0200 | [diff] [blame] | 35 | new_fl |= S_IMMUTABLE; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 36 | if (flags & JFS_APPEND_FL) |
Fabian Frederick | 24e4a0f | 2014-04-14 09:39:01 +0200 | [diff] [blame] | 37 | new_fl |= S_APPEND; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 38 | if (flags & JFS_NOATIME_FL) |
Fabian Frederick | 24e4a0f | 2014-04-14 09:39:01 +0200 | [diff] [blame] | 39 | new_fl |= S_NOATIME; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 40 | if (flags & JFS_DIRSYNC_FL) |
Fabian Frederick | 24e4a0f | 2014-04-14 09:39:01 +0200 | [diff] [blame] | 41 | new_fl |= S_DIRSYNC; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 42 | if (flags & JFS_SYNC_FL) |
Fabian Frederick | 24e4a0f | 2014-04-14 09:39:01 +0200 | [diff] [blame] | 43 | new_fl |= S_SYNC; |
| 44 | inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND | S_NOATIME | |
| 45 | S_DIRSYNC | S_SYNC); |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 46 | } |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* |
| 49 | * NAME: ialloc() |
| 50 | * |
| 51 | * FUNCTION: Allocate a new inode |
| 52 | * |
| 53 | */ |
| 54 | struct inode *ialloc(struct inode *parent, umode_t mode) |
| 55 | { |
| 56 | struct super_block *sb = parent->i_sb; |
| 57 | struct inode *inode; |
| 58 | struct jfs_inode_info *jfs_inode; |
| 59 | int rc; |
| 60 | |
| 61 | inode = new_inode(sb); |
| 62 | if (!inode) { |
| 63 | jfs_warn("ialloc: new_inode returned NULL!"); |
Dave Kleikamp | 1f3403f | 2008-12-30 22:08:37 -0600 | [diff] [blame] | 64 | rc = -ENOMEM; |
| 65 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | jfs_inode = JFS_IP(inode); |
| 69 | |
| 70 | rc = diAlloc(parent, S_ISDIR(mode), inode); |
| 71 | if (rc) { |
| 72 | jfs_warn("ialloc: diAlloc returned %d!", rc); |
Akinobu Mita | 087387f | 2006-09-14 09:22:38 -0500 | [diff] [blame] | 73 | if (rc == -EIO) |
| 74 | make_bad_inode(inode); |
Dave Kleikamp | 1f3403f | 2008-12-30 22:08:37 -0600 | [diff] [blame] | 75 | goto fail_put; |
| 76 | } |
| 77 | |
| 78 | if (insert_inode_locked(inode) < 0) { |
| 79 | rc = -EINVAL; |
Dave Kleikamp | 8660998 | 2013-09-06 21:49:56 -0500 | [diff] [blame] | 80 | goto fail_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
Dmitry Monakhov | 319b2be | 2010-03-04 17:30:58 +0300 | [diff] [blame] | 83 | inode_init_owner(inode, parent, mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /* |
Dave Kleikamp | 69eb66d | 2006-03-09 13:59:30 -0600 | [diff] [blame] | 85 | * New inodes need to save sane values on disk when |
| 86 | * uid & gid mount options are used |
| 87 | */ |
| 88 | jfs_inode->saved_uid = inode->i_uid; |
| 89 | jfs_inode->saved_gid = inode->i_gid; |
| 90 | |
| 91 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | * Allocate inode to quota. |
| 93 | */ |
Dave Kleikamp | acc84b0 | 2015-07-15 13:53:19 -0500 | [diff] [blame] | 94 | rc = dquot_initialize(inode); |
| 95 | if (rc) |
| 96 | goto fail_drop; |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 97 | rc = dquot_alloc_inode(inode); |
| 98 | if (rc) |
Dave Kleikamp | 1f3403f | 2008-12-30 22:08:37 -0600 | [diff] [blame] | 99 | goto fail_drop; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 101 | /* inherit flags from parent */ |
| 102 | jfs_inode->mode2 = JFS_IP(parent)->mode2 & JFS_FL_INHERIT; |
| 103 | |
| 104 | if (S_ISDIR(mode)) { |
| 105 | jfs_inode->mode2 |= IDIRECTORY; |
| 106 | jfs_inode->mode2 &= ~JFS_DIRSYNC_FL; |
| 107 | } |
Dave Kleikamp | 4837c67 | 2006-02-10 08:11:53 -0600 | [diff] [blame] | 108 | else { |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 109 | jfs_inode->mode2 |= INLINEEA | ISPARSE; |
Dave Kleikamp | 4837c67 | 2006-02-10 08:11:53 -0600 | [diff] [blame] | 110 | if (S_ISLNK(mode)) |
| 111 | jfs_inode->mode2 &= ~(JFS_IMMUTABLE_FL|JFS_APPEND_FL); |
| 112 | } |
Dmitry Monakhov | 319b2be | 2010-03-04 17:30:58 +0300 | [diff] [blame] | 113 | jfs_inode->mode2 |= inode->i_mode; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 114 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | inode->i_blocks = 0; |
Deepa Dinamani | 078cd82 | 2016-09-14 07:48:04 -0700 | [diff] [blame] | 116 | inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | jfs_inode->otime = inode->i_ctime.tv_sec; |
| 118 | inode->i_generation = JFS_SBI(sb)->gengen++; |
| 119 | |
| 120 | jfs_inode->cflag = 0; |
| 121 | |
| 122 | /* Zero remaining fields */ |
| 123 | memset(&jfs_inode->acl, 0, sizeof(dxd_t)); |
| 124 | memset(&jfs_inode->ea, 0, sizeof(dxd_t)); |
| 125 | jfs_inode->next_index = 0; |
| 126 | jfs_inode->acltype = 0; |
| 127 | jfs_inode->btorder = 0; |
| 128 | jfs_inode->btindex = 0; |
| 129 | jfs_inode->bxflag = 0; |
| 130 | jfs_inode->blid = 0; |
| 131 | jfs_inode->atlhead = 0; |
| 132 | jfs_inode->atltail = 0; |
| 133 | jfs_inode->xtlid = 0; |
Herbert Poetzl | fa3241d | 2006-02-09 09:09:16 -0600 | [diff] [blame] | 134 | jfs_set_inode_flags(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Joe Perches | b18db6d | 2016-03-30 05:23:16 -0700 | [diff] [blame] | 136 | jfs_info("ialloc returns inode = 0x%p", inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | return inode; |
Dave Kleikamp | 1f3403f | 2008-12-30 22:08:37 -0600 | [diff] [blame] | 139 | |
| 140 | fail_drop: |
Christoph Hellwig | 9f75475 | 2010-03-03 09:05:05 -0500 | [diff] [blame] | 141 | dquot_drop(inode); |
Dave Kleikamp | 1f3403f | 2008-12-30 22:08:37 -0600 | [diff] [blame] | 142 | inode->i_flags |= S_NOQUOTA; |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 143 | clear_nlink(inode); |
Dave Kleikamp | 1f3403f | 2008-12-30 22:08:37 -0600 | [diff] [blame] | 144 | unlock_new_inode(inode); |
| 145 | fail_put: |
| 146 | iput(inode); |
| 147 | fail: |
| 148 | return ERR_PTR(rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |