blob: 4572b7cf183d855b0b3312c8b5fb098510f5f86c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Kleikamp63f83c92006-10-02 09:55:27 -05006 * the Free Software Foundation; either version 2 of the License, or
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (at your option) any later version.
Dave Kleikamp63f83c92006-10-02 09:55:27 -05008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * 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 Kleikamp63f83c92006-10-02 09:55:27 -050015 * along with this program; if not, write to the Free Software
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 * 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 Kleikamp1868f4a2005-05-04 15:29:35 -050022#include "jfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "jfs_filsys.h"
24#include "jfs_imap.h"
25#include "jfs_dinode.h"
26#include "jfs_debug.h"
27
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060028
29void jfs_set_inode_flags(struct inode *inode)
30{
31 unsigned int flags = JFS_IP(inode)->mode2;
Fabian Frederick24e4a0f2014-04-14 09:39:01 +020032 unsigned int new_fl = 0;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060033
34 if (flags & JFS_IMMUTABLE_FL)
Fabian Frederick24e4a0f2014-04-14 09:39:01 +020035 new_fl |= S_IMMUTABLE;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060036 if (flags & JFS_APPEND_FL)
Fabian Frederick24e4a0f2014-04-14 09:39:01 +020037 new_fl |= S_APPEND;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060038 if (flags & JFS_NOATIME_FL)
Fabian Frederick24e4a0f2014-04-14 09:39:01 +020039 new_fl |= S_NOATIME;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060040 if (flags & JFS_DIRSYNC_FL)
Fabian Frederick24e4a0f2014-04-14 09:39:01 +020041 new_fl |= S_DIRSYNC;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060042 if (flags & JFS_SYNC_FL)
Fabian Frederick24e4a0f2014-04-14 09:39:01 +020043 new_fl |= S_SYNC;
44 inode_set_flags(inode, new_fl, S_IMMUTABLE | S_APPEND | S_NOATIME |
45 S_DIRSYNC | S_SYNC);
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060046}
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * NAME: ialloc()
50 *
51 * FUNCTION: Allocate a new inode
52 *
53 */
54struct 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!");
Al Viroa6cbedf2018-06-29 11:59:37 -040064 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 }
66
67 jfs_inode = JFS_IP(inode);
68
69 rc = diAlloc(parent, S_ISDIR(mode), inode);
70 if (rc) {
71 jfs_warn("ialloc: diAlloc returned %d!", rc);
Dave Kleikamp1f3403f2008-12-30 22:08:37 -060072 goto fail_put;
73 }
74
75 if (insert_inode_locked(inode) < 0) {
76 rc = -EINVAL;
Dave Kleikamp86609982013-09-06 21:49:56 -050077 goto fail_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79
Dmitry Monakhov319b2be2010-03-04 17:30:58 +030080 inode_init_owner(inode, parent, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 /*
Dave Kleikamp69eb66d2006-03-09 13:59:30 -060082 * New inodes need to save sane values on disk when
83 * uid & gid mount options are used
84 */
85 jfs_inode->saved_uid = inode->i_uid;
86 jfs_inode->saved_gid = inode->i_gid;
87
88 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * Allocate inode to quota.
90 */
Dave Kleikampacc84b02015-07-15 13:53:19 -050091 rc = dquot_initialize(inode);
92 if (rc)
93 goto fail_drop;
Christoph Hellwig63936dd2010-03-03 09:05:01 -050094 rc = dquot_alloc_inode(inode);
95 if (rc)
Dave Kleikamp1f3403f2008-12-30 22:08:37 -060096 goto fail_drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Herbert Poetzlfa3241d2006-02-09 09:09:16 -060098 /* inherit flags from parent */
99 jfs_inode->mode2 = JFS_IP(parent)->mode2 & JFS_FL_INHERIT;
100
101 if (S_ISDIR(mode)) {
102 jfs_inode->mode2 |= IDIRECTORY;
103 jfs_inode->mode2 &= ~JFS_DIRSYNC_FL;
104 }
Dave Kleikamp4837c672006-02-10 08:11:53 -0600105 else {
Herbert Poetzlfa3241d2006-02-09 09:09:16 -0600106 jfs_inode->mode2 |= INLINEEA | ISPARSE;
Dave Kleikamp4837c672006-02-10 08:11:53 -0600107 if (S_ISLNK(mode))
108 jfs_inode->mode2 &= ~(JFS_IMMUTABLE_FL|JFS_APPEND_FL);
109 }
Dmitry Monakhov319b2be2010-03-04 17:30:58 +0300110 jfs_inode->mode2 |= inode->i_mode;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -0600111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 inode->i_blocks = 0;
Deepa Dinamani078cd822016-09-14 07:48:04 -0700113 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 jfs_inode->otime = inode->i_ctime.tv_sec;
115 inode->i_generation = JFS_SBI(sb)->gengen++;
116
117 jfs_inode->cflag = 0;
118
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;
Herbert Poetzlfa3241d2006-02-09 09:09:16 -0600131 jfs_set_inode_flags(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Joe Perchesb18db6d2016-03-30 05:23:16 -0700133 jfs_info("ialloc returns inode = 0x%p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 return inode;
Dave Kleikamp1f3403f2008-12-30 22:08:37 -0600136
137fail_drop:
Christoph Hellwig9f754752010-03-03 09:05:05 -0500138 dquot_drop(inode);
Dave Kleikamp1f3403f2008-12-30 22:08:37 -0600139 inode->i_flags |= S_NOQUOTA;
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200140 clear_nlink(inode);
Al Viroa6cbedf2018-06-29 11:59:37 -0400141 discard_new_inode(inode);
142 return ERR_PTR(rc);
143
Dave Kleikamp1f3403f2008-12-30 22:08:37 -0600144fail_put:
145 iput(inode);
Dave Kleikamp1f3403f2008-12-30 22:08:37 -0600146 return ERR_PTR(rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147}