Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1 | /* -*- mode: c; c-basic-offset: 8; -*- |
| 2 | * vim: noexpandtab sw=8 ts=8 sts=0: |
| 3 | * |
| 4 | * namei.c |
| 5 | * |
| 6 | * Create and rename file, directory, symlinks |
| 7 | * |
| 8 | * Copyright (C) 2002, 2004 Oracle. All rights reserved. |
| 9 | * |
| 10 | * Portions of this code from linux/fs/ext3/dir.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 | * from |
| 18 | * |
| 19 | * linux/fs/minix/dir.c |
| 20 | * |
| 21 | * Copyright (C) 1991, 1992 Linux Torvalds |
| 22 | * |
| 23 | * This program is free software; you can redistribute it and/or |
| 24 | * modify it under the terms of the GNU General Public |
| 25 | * License as published by the Free Software Foundation; either |
| 26 | * version 2 of the License, or (at your option) any later version. |
| 27 | * |
| 28 | * This program is distributed in the hope that it will be useful, |
| 29 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 30 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 31 | * General Public License for more details. |
| 32 | * |
| 33 | * You should have received a copy of the GNU General Public |
| 34 | * License along with this program; if not, write to the |
| 35 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 36 | * Boston, MA 021110-1307, USA. |
| 37 | */ |
| 38 | |
| 39 | #include <linux/fs.h> |
| 40 | #include <linux/types.h> |
| 41 | #include <linux/slab.h> |
| 42 | #include <linux/highmem.h> |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 43 | #include <linux/quotaops.h> |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 44 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 45 | #include <cluster/masklog.h> |
| 46 | |
| 47 | #include "ocfs2.h" |
| 48 | |
| 49 | #include "alloc.h" |
| 50 | #include "dcache.h" |
| 51 | #include "dir.h" |
| 52 | #include "dlmglue.h" |
| 53 | #include "extent_map.h" |
| 54 | #include "file.h" |
| 55 | #include "inode.h" |
| 56 | #include "journal.h" |
| 57 | #include "namei.h" |
| 58 | #include "suballoc.h" |
Mark Fasheh | aa95887 | 2006-04-21 13:49:02 -0700 | [diff] [blame] | 59 | #include "super.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 60 | #include "symlink.h" |
| 61 | #include "sysfile.h" |
| 62 | #include "uptodate.h" |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 63 | #include "xattr.h" |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 64 | #include "acl.h" |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 65 | #include "ocfs2_trace.h" |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 66 | |
| 67 | #include "buffer_head_io.h" |
| 68 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 69 | static int ocfs2_mknod_locked(struct ocfs2_super *osb, |
| 70 | struct inode *dir, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 71 | struct inode *inode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 72 | dev_t dev, |
| 73 | struct buffer_head **new_fe_bh, |
| 74 | struct buffer_head *parent_fe_bh, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 75 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 76 | struct ocfs2_alloc_context *inode_ac); |
| 77 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 78 | static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 79 | struct inode **ret_orphan_dir, |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 80 | u64 blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 81 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 82 | struct ocfs2_dir_lookup_result *lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 83 | |
| 84 | static int ocfs2_orphan_add(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 85 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 86 | struct inode *inode, |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 87 | struct buffer_head *fe_bh, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 88 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 89 | struct ocfs2_dir_lookup_result *lookup, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 90 | struct inode *orphan_dir_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 91 | |
| 92 | static int ocfs2_create_symlink_data(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 93 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 94 | struct inode *inode, |
| 95 | const char *symname); |
| 96 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 97 | /* An orphan dir name is an 8 byte value, printed as a hex string */ |
| 98 | #define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64))) |
| 99 | |
| 100 | static struct dentry *ocfs2_lookup(struct inode *dir, struct dentry *dentry, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 101 | unsigned int flags) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 102 | { |
| 103 | int status; |
| 104 | u64 blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 105 | struct inode *inode = NULL; |
| 106 | struct dentry *ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 107 | struct ocfs2_inode_info *oi; |
| 108 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 109 | trace_ocfs2_lookup(dir, dentry, dentry->d_name.len, |
| 110 | dentry->d_name.name, |
| 111 | (unsigned long long)OCFS2_I(dir)->ip_blkno, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 112 | |
| 113 | if (dentry->d_name.len > OCFS2_MAX_FILENAME_LEN) { |
| 114 | ret = ERR_PTR(-ENAMETOOLONG); |
| 115 | goto bail; |
| 116 | } |
| 117 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 118 | status = ocfs2_inode_lock_nested(dir, NULL, 0, OI_LS_PARENT); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 119 | if (status < 0) { |
| 120 | if (status != -ENOENT) |
| 121 | mlog_errno(status); |
| 122 | ret = ERR_PTR(status); |
| 123 | goto bail; |
| 124 | } |
| 125 | |
Mark Fasheh | be94d11 | 2007-09-11 15:22:06 -0700 | [diff] [blame] | 126 | status = ocfs2_lookup_ino_from_name(dir, dentry->d_name.name, |
| 127 | dentry->d_name.len, &blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 128 | if (status < 0) |
| 129 | goto bail_add; |
| 130 | |
Jan Kara | 5fa0613 | 2008-01-11 00:11:45 +0100 | [diff] [blame] | 131 | inode = ocfs2_iget(OCFS2_SB(dir->i_sb), blkno, 0, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 132 | if (IS_ERR(inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 133 | ret = ERR_PTR(-EACCES); |
| 134 | goto bail_unlock; |
| 135 | } |
| 136 | |
| 137 | oi = OCFS2_I(inode); |
| 138 | /* Clear any orphaned state... If we were able to look up the |
| 139 | * inode from a directory, it certainly can't be orphaned. We |
| 140 | * might have the bad state from a node which intended to |
| 141 | * orphan this inode but crashed before it could commit the |
| 142 | * unlink. */ |
| 143 | spin_lock(&oi->ip_lock); |
| 144 | oi->ip_flags &= ~OCFS2_INODE_MAYBE_ORPHANED; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 145 | spin_unlock(&oi->ip_lock); |
| 146 | |
| 147 | bail_add: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 148 | ret = d_splice_alias(inode, dentry); |
| 149 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 150 | if (inode) { |
| 151 | /* |
| 152 | * If d_splice_alias() finds a DCACHE_DISCONNECTED |
| 153 | * dentry, it will d_move() it on top of ourse. The |
| 154 | * return value will indicate this however, so in |
| 155 | * those cases, we switch them around for the locking |
| 156 | * code. |
| 157 | * |
| 158 | * NOTE: This dentry already has ->d_op set from |
| 159 | * ocfs2_get_parent() and ocfs2_get_dentry() |
| 160 | */ |
| 161 | if (ret) |
| 162 | dentry = ret; |
| 163 | |
| 164 | status = ocfs2_dentry_attach_lock(dentry, inode, |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 165 | OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 166 | if (status) { |
| 167 | mlog_errno(status); |
| 168 | ret = ERR_PTR(status); |
| 169 | goto bail_unlock; |
| 170 | } |
Goldwyn Rodrigues | 5e98d49 | 2010-06-28 10:04:32 -0500 | [diff] [blame] | 171 | } else |
| 172 | ocfs2_dentry_attach_gen(dentry); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 173 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 174 | bail_unlock: |
| 175 | /* Don't drop the cluster lock until *after* the d_add -- |
| 176 | * unlink on another node will message us to remove that |
| 177 | * dentry under this lock so otherwise we can race this with |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 178 | * the downconvert thread and have a stale dentry. */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 179 | ocfs2_inode_unlock(dir, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 180 | |
| 181 | bail: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 182 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 183 | trace_ocfs2_lookup_ret(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 184 | |
| 185 | return ret; |
| 186 | } |
| 187 | |
Al Viro | 67697cb | 2011-07-26 02:55:32 -0400 | [diff] [blame] | 188 | static struct inode *ocfs2_get_init_inode(struct inode *dir, umode_t mode) |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 189 | { |
| 190 | struct inode *inode; |
| 191 | |
| 192 | inode = new_inode(dir->i_sb); |
| 193 | if (!inode) { |
| 194 | mlog(ML_ERROR, "new_inode failed!\n"); |
| 195 | return NULL; |
| 196 | } |
| 197 | |
| 198 | /* populate as many fields early on as possible - many of |
| 199 | * these are used by the support functions here and in |
| 200 | * callers. */ |
| 201 | if (S_ISDIR(mode)) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 202 | set_nlink(inode, 2); |
Dmitry Monakhov | 75fe0a2 | 2010-03-04 17:32:16 +0300 | [diff] [blame] | 203 | inode_init_owner(inode, dir, mode); |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 204 | dquot_initialize(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 205 | return inode; |
| 206 | } |
| 207 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 208 | static int ocfs2_mknod(struct inode *dir, |
| 209 | struct dentry *dentry, |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 210 | umode_t mode, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 211 | dev_t dev) |
| 212 | { |
| 213 | int status = 0; |
| 214 | struct buffer_head *parent_fe_bh = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 215 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 216 | struct ocfs2_super *osb; |
| 217 | struct ocfs2_dinode *dirfe; |
| 218 | struct buffer_head *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 219 | struct inode *inode = NULL; |
| 220 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 221 | struct ocfs2_alloc_context *data_ac = NULL; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 222 | struct ocfs2_alloc_context *meta_ac = NULL; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 223 | int want_clusters = 0; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 224 | int want_meta = 0; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 225 | int xattr_credits = 0; |
| 226 | struct ocfs2_security_xattr_info si = { |
| 227 | .enable = 1, |
| 228 | }; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 229 | int did_quota_inode = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 230 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 231 | sigset_t oldset; |
| 232 | int did_block_signals = 0; |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 233 | struct posix_acl *default_acl = NULL, *acl = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 234 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 235 | trace_ocfs2_mknod(dir, dentry, dentry->d_name.len, dentry->d_name.name, |
| 236 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 237 | (unsigned long)dev, mode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 238 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 239 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 240 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 241 | /* get our super block */ |
| 242 | osb = OCFS2_SB(dir->i_sb); |
| 243 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 244 | status = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | e3a8213 | 2006-10-05 16:04:17 -0700 | [diff] [blame] | 245 | if (status < 0) { |
| 246 | if (status != -ENOENT) |
| 247 | mlog_errno(status); |
| 248 | return status; |
| 249 | } |
| 250 | |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 251 | if (S_ISDIR(mode) && (dir->i_nlink >= ocfs2_link_max(osb))) { |
Mark Fasheh | a663e30 | 2006-08-09 11:45:07 -0700 | [diff] [blame] | 252 | status = -EMLINK; |
| 253 | goto leave; |
| 254 | } |
| 255 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 256 | dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 257 | if (!ocfs2_read_links_count(dirfe)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 258 | /* can't make a file in a deleted directory. */ |
| 259 | status = -ENOENT; |
| 260 | goto leave; |
| 261 | } |
| 262 | |
| 263 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 264 | dentry->d_name.len); |
| 265 | if (status) |
| 266 | goto leave; |
| 267 | |
| 268 | /* get a spot inside the dir. */ |
| 269 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 270 | dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 271 | dentry->d_name.len, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 272 | if (status < 0) { |
| 273 | mlog_errno(status); |
| 274 | goto leave; |
| 275 | } |
| 276 | |
| 277 | /* reserve an inode spot */ |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 278 | status = ocfs2_reserve_new_inode(osb, &inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 279 | if (status < 0) { |
| 280 | if (status != -ENOSPC) |
| 281 | mlog_errno(status); |
| 282 | goto leave; |
| 283 | } |
| 284 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 285 | inode = ocfs2_get_init_inode(dir, mode); |
| 286 | if (!inode) { |
| 287 | status = -ENOMEM; |
| 288 | mlog_errno(status); |
| 289 | goto leave; |
| 290 | } |
| 291 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 292 | /* get security xattr */ |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 293 | status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 294 | if (status) { |
| 295 | if (status == -EOPNOTSUPP) |
| 296 | si.enable = 0; |
| 297 | else { |
| 298 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 299 | goto leave; |
| 300 | } |
| 301 | } |
| 302 | |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 303 | /* calculate meta data/clusters for setting security and acl xattr */ |
| 304 | status = ocfs2_calc_xattr_init(dir, parent_fe_bh, mode, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 305 | &si, &want_clusters, |
| 306 | &xattr_credits, &want_meta); |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 307 | if (status < 0) { |
| 308 | mlog_errno(status); |
| 309 | goto leave; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | /* Reserve a cluster if creating an extent based directory. */ |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 313 | if (S_ISDIR(mode) && !ocfs2_supports_inline_data(osb)) { |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 314 | want_clusters += 1; |
| 315 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 316 | /* Dir indexing requires extra space as well */ |
Mark Fasheh | 4ed8a6b | 2008-11-24 17:02:08 -0800 | [diff] [blame] | 317 | if (ocfs2_supports_indexed_dirs(osb)) |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 318 | want_meta++; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 319 | } |
| 320 | |
| 321 | status = ocfs2_reserve_new_metadata_blocks(osb, want_meta, &meta_ac); |
| 322 | if (status < 0) { |
| 323 | if (status != -ENOSPC) |
| 324 | mlog_errno(status); |
| 325 | goto leave; |
| 326 | } |
| 327 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 328 | status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac); |
| 329 | if (status < 0) { |
| 330 | if (status != -ENOSPC) |
| 331 | mlog_errno(status); |
| 332 | goto leave; |
| 333 | } |
| 334 | |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 335 | status = posix_acl_create(dir, &mode, &default_acl, &acl); |
| 336 | if (status) { |
| 337 | mlog_errno(status); |
| 338 | goto leave; |
| 339 | } |
| 340 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 341 | handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, |
| 342 | S_ISDIR(mode), |
| 343 | xattr_credits)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 344 | if (IS_ERR(handle)) { |
| 345 | status = PTR_ERR(handle); |
| 346 | handle = NULL; |
| 347 | mlog_errno(status); |
| 348 | goto leave; |
| 349 | } |
| 350 | |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 351 | /* Starting to change things, restart is no longer possible. */ |
| 352 | ocfs2_block_signals(&oldset); |
| 353 | did_block_signals = 1; |
| 354 | |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 355 | status = dquot_alloc_inode(inode); |
| 356 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 357 | goto leave; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 358 | did_quota_inode = 1; |
| 359 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 360 | /* do the real work now. */ |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 361 | status = ocfs2_mknod_locked(osb, dir, inode, dev, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 362 | &new_fe_bh, parent_fe_bh, handle, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 363 | inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 364 | if (status < 0) { |
| 365 | mlog_errno(status); |
| 366 | goto leave; |
| 367 | } |
| 368 | |
| 369 | if (S_ISDIR(mode)) { |
| 370 | status = ocfs2_fill_new_dir(osb, handle, dir, inode, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 371 | new_fe_bh, data_ac, meta_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 372 | if (status < 0) { |
| 373 | mlog_errno(status); |
| 374 | goto leave; |
| 375 | } |
| 376 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 377 | status = ocfs2_journal_access_di(handle, INODE_CACHE(dir), |
| 378 | parent_fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 379 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 380 | if (status < 0) { |
| 381 | mlog_errno(status); |
| 382 | goto leave; |
| 383 | } |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 384 | ocfs2_add_links_count(dirfe, 1); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 385 | ocfs2_journal_dirty(handle, parent_fe_bh); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 386 | inc_nlink(dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 387 | } |
| 388 | |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 389 | if (default_acl) { |
| 390 | status = ocfs2_set_acl(handle, inode, new_fe_bh, |
| 391 | ACL_TYPE_DEFAULT, default_acl, |
| 392 | meta_ac, data_ac); |
| 393 | } |
| 394 | if (!status && acl) { |
| 395 | status = ocfs2_set_acl(handle, inode, new_fe_bh, |
| 396 | ACL_TYPE_ACCESS, acl, |
| 397 | meta_ac, data_ac); |
| 398 | } |
| 399 | |
Tiger Yang | 89c38bd | 2008-11-14 11:17:41 +0800 | [diff] [blame] | 400 | if (status < 0) { |
| 401 | mlog_errno(status); |
| 402 | goto leave; |
| 403 | } |
| 404 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 405 | if (si.enable) { |
| 406 | status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si, |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 407 | meta_ac, data_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 408 | if (status < 0) { |
| 409 | mlog_errno(status); |
| 410 | goto leave; |
| 411 | } |
| 412 | } |
| 413 | |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 414 | /* |
| 415 | * Do this before adding the entry to the directory. We add |
| 416 | * also set d_op after success so that ->d_iput() will cleanup |
| 417 | * the dentry lock even if ocfs2_add_entry() fails below. |
| 418 | */ |
| 419 | status = ocfs2_dentry_attach_lock(dentry, inode, |
| 420 | OCFS2_I(dir)->ip_blkno); |
| 421 | if (status) { |
| 422 | mlog_errno(status); |
| 423 | goto leave; |
| 424 | } |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 425 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 426 | status = ocfs2_add_entry(handle, dentry, inode, |
| 427 | OCFS2_I(inode)->ip_blkno, parent_fe_bh, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 428 | &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 429 | if (status < 0) { |
| 430 | mlog_errno(status); |
| 431 | goto leave; |
| 432 | } |
| 433 | |
| 434 | insert_inode_hash(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 435 | d_instantiate(dentry, inode); |
| 436 | status = 0; |
| 437 | leave: |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 438 | if (default_acl) |
| 439 | posix_acl_release(default_acl); |
| 440 | if (acl) |
| 441 | posix_acl_release(acl); |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 442 | if (status < 0 && did_quota_inode) |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 443 | dquot_free_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 444 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 445 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 446 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 447 | ocfs2_inode_unlock(dir, 1); |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 448 | if (did_block_signals) |
| 449 | ocfs2_unblock_signals(&oldset); |
Mark Fasheh | e3a8213 | 2006-10-05 16:04:17 -0700 | [diff] [blame] | 450 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 451 | brelse(new_fe_bh); |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 452 | brelse(parent_fe_bh); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 453 | kfree(si.name); |
| 454 | kfree(si.value); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 455 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 456 | ocfs2_free_dir_lookup_result(&lookup); |
| 457 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 458 | if (inode_ac) |
| 459 | ocfs2_free_alloc_context(inode_ac); |
| 460 | |
| 461 | if (data_ac) |
| 462 | ocfs2_free_alloc_context(data_ac); |
| 463 | |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 464 | if (meta_ac) |
| 465 | ocfs2_free_alloc_context(meta_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 466 | |
Li Dongyang | 062d340 | 2010-04-22 16:11:29 +0800 | [diff] [blame] | 467 | /* |
| 468 | * We should call iput after the i_mutex of the bitmap been |
| 469 | * unlocked in ocfs2_free_alloc_context, or the |
| 470 | * ocfs2_delete_inode will mutex_lock again. |
| 471 | */ |
| 472 | if ((status < 0) && inode) { |
| 473 | OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR; |
| 474 | clear_nlink(inode); |
| 475 | iput(inode); |
| 476 | } |
| 477 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 478 | if (status) |
| 479 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 480 | |
| 481 | return status; |
| 482 | } |
| 483 | |
Mark Fasheh | 021960c | 2010-08-13 15:15:15 -0700 | [diff] [blame] | 484 | static int __ocfs2_mknod_locked(struct inode *dir, |
| 485 | struct inode *inode, |
| 486 | dev_t dev, |
| 487 | struct buffer_head **new_fe_bh, |
| 488 | struct buffer_head *parent_fe_bh, |
| 489 | handle_t *handle, |
| 490 | struct ocfs2_alloc_context *inode_ac, |
| 491 | u64 fe_blkno, u64 suballoc_loc, u16 suballoc_bit) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 492 | { |
| 493 | int status = 0; |
Mark Fasheh | 021960c | 2010-08-13 15:15:15 -0700 | [diff] [blame] | 494 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 495 | struct ocfs2_dinode *fe = NULL; |
| 496 | struct ocfs2_extent_list *fel; |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 497 | u16 feat; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 498 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 499 | *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 500 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 501 | /* populate as many fields early on as possible - many of |
| 502 | * these are used by the support functions here and in |
| 503 | * callers. */ |
| 504 | inode->i_ino = ino_from_blkno(osb->sb, fe_blkno); |
| 505 | OCFS2_I(inode)->ip_blkno = fe_blkno; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 506 | spin_lock(&osb->osb_lock); |
| 507 | inode->i_generation = osb->s_next_generation++; |
| 508 | spin_unlock(&osb->osb_lock); |
| 509 | |
| 510 | *new_fe_bh = sb_getblk(osb->sb, fe_blkno); |
| 511 | if (!*new_fe_bh) { |
Rui Xiang | 7391a29 | 2013-11-12 15:06:54 -0800 | [diff] [blame] | 512 | status = -ENOMEM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 513 | mlog_errno(status); |
| 514 | goto leave; |
| 515 | } |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 516 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), *new_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 517 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 518 | status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), |
| 519 | *new_fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 520 | OCFS2_JOURNAL_ACCESS_CREATE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 521 | if (status < 0) { |
| 522 | mlog_errno(status); |
| 523 | goto leave; |
| 524 | } |
| 525 | |
| 526 | fe = (struct ocfs2_dinode *) (*new_fe_bh)->b_data; |
| 527 | memset(fe, 0, osb->sb->s_blocksize); |
| 528 | |
| 529 | fe->i_generation = cpu_to_le32(inode->i_generation); |
| 530 | fe->i_fs_generation = cpu_to_le32(osb->fs_generation); |
| 531 | fe->i_blkno = cpu_to_le64(fe_blkno); |
Joel Becker | 2b6cb57 | 2010-03-26 10:09:15 +0800 | [diff] [blame] | 532 | fe->i_suballoc_loc = cpu_to_le64(suballoc_loc); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 533 | fe->i_suballoc_bit = cpu_to_le16(suballoc_bit); |
Tao Ma | 4d0ddb2 | 2008-03-05 16:11:46 +0800 | [diff] [blame] | 534 | fe->i_suballoc_slot = cpu_to_le16(inode_ac->ac_alloc_slot); |
Eric W. Biederman | 2c03417 | 2013-01-31 17:27:11 -0800 | [diff] [blame] | 535 | fe->i_uid = cpu_to_le32(i_uid_read(inode)); |
| 536 | fe->i_gid = cpu_to_le32(i_gid_read(inode)); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 537 | fe->i_mode = cpu_to_le16(inode->i_mode); |
| 538 | if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode)) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 539 | fe->id1.dev1.i_rdev = cpu_to_le64(huge_encode_dev(dev)); |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 540 | |
| 541 | ocfs2_set_links_count(fe, inode->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 542 | |
| 543 | fe->i_last_eb_blk = 0; |
| 544 | strcpy(fe->i_signature, OCFS2_INODE_SIGNATURE); |
Joseph Qi | 13eb988 | 2013-07-03 15:00:48 -0700 | [diff] [blame] | 545 | fe->i_flags |= cpu_to_le32(OCFS2_VALID_FL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 546 | fe->i_atime = fe->i_ctime = fe->i_mtime = |
| 547 | cpu_to_le64(CURRENT_TIME.tv_sec); |
| 548 | fe->i_mtime_nsec = fe->i_ctime_nsec = fe->i_atime_nsec = |
| 549 | cpu_to_le32(CURRENT_TIME.tv_nsec); |
| 550 | fe->i_dtime = 0; |
| 551 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 552 | /* |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 553 | * If supported, directories start with inline data. If inline |
| 554 | * isn't supported, but indexing is, we start them as indexed. |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 555 | */ |
Mark Fasheh | 9b7895e | 2008-11-12 16:27:44 -0800 | [diff] [blame] | 556 | feat = le16_to_cpu(fe->i_dyn_features); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 557 | if (S_ISDIR(inode->i_mode) && ocfs2_supports_inline_data(osb)) { |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 558 | fe->i_dyn_features = cpu_to_le16(feat | OCFS2_INLINE_DATA_FL); |
| 559 | |
Tiger Yang | d9ae49d | 2009-03-05 11:06:15 +0800 | [diff] [blame] | 560 | fe->id2.i_data.id_count = cpu_to_le16( |
| 561 | ocfs2_max_inline_data_with_xattr(osb->sb, fe)); |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 562 | } else { |
| 563 | fel = &fe->id2.i_list; |
| 564 | fel->l_tree_depth = 0; |
| 565 | fel->l_next_free_rec = 0; |
| 566 | fel->l_count = cpu_to_le16(ocfs2_extent_recs_per_inode(osb->sb)); |
| 567 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 568 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 569 | ocfs2_journal_dirty(handle, *new_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 570 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 571 | ocfs2_populate_inode(inode, fe, 1); |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 572 | ocfs2_ci_set_new(osb, INODE_CACHE(inode)); |
Sunil Mushran | c271c5c | 2006-12-05 17:56:35 -0800 | [diff] [blame] | 573 | if (!ocfs2_mount_local(osb)) { |
| 574 | status = ocfs2_create_new_inode_locks(inode); |
| 575 | if (status < 0) |
| 576 | mlog_errno(status); |
| 577 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 578 | |
| 579 | status = 0; /* error in ocfs2_create_new_inode_locks is not |
| 580 | * critical */ |
| 581 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 582 | leave: |
| 583 | if (status < 0) { |
| 584 | if (*new_fe_bh) { |
| 585 | brelse(*new_fe_bh); |
| 586 | *new_fe_bh = NULL; |
| 587 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 588 | } |
| 589 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 590 | if (status) |
| 591 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 592 | return status; |
| 593 | } |
| 594 | |
Mark Fasheh | 021960c | 2010-08-13 15:15:15 -0700 | [diff] [blame] | 595 | static int ocfs2_mknod_locked(struct ocfs2_super *osb, |
| 596 | struct inode *dir, |
| 597 | struct inode *inode, |
| 598 | dev_t dev, |
| 599 | struct buffer_head **new_fe_bh, |
| 600 | struct buffer_head *parent_fe_bh, |
| 601 | handle_t *handle, |
| 602 | struct ocfs2_alloc_context *inode_ac) |
| 603 | { |
| 604 | int status = 0; |
| 605 | u64 suballoc_loc, fe_blkno = 0; |
| 606 | u16 suballoc_bit; |
| 607 | |
| 608 | *new_fe_bh = NULL; |
| 609 | |
| 610 | status = ocfs2_claim_new_inode(handle, dir, parent_fe_bh, |
| 611 | inode_ac, &suballoc_loc, |
| 612 | &suballoc_bit, &fe_blkno); |
| 613 | if (status < 0) { |
| 614 | mlog_errno(status); |
| 615 | return status; |
| 616 | } |
| 617 | |
| 618 | return __ocfs2_mknod_locked(dir, inode, dev, new_fe_bh, |
| 619 | parent_fe_bh, handle, inode_ac, |
| 620 | fe_blkno, suballoc_loc, suballoc_bit); |
| 621 | } |
| 622 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 623 | static int ocfs2_mkdir(struct inode *dir, |
| 624 | struct dentry *dentry, |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 625 | umode_t mode) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 626 | { |
| 627 | int ret; |
| 628 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 629 | trace_ocfs2_mkdir(dir, dentry, dentry->d_name.len, dentry->d_name.name, |
| 630 | OCFS2_I(dir)->ip_blkno, mode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 631 | ret = ocfs2_mknod(dir, dentry, mode | S_IFDIR, 0); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 632 | if (ret) |
| 633 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 634 | |
| 635 | return ret; |
| 636 | } |
| 637 | |
| 638 | static int ocfs2_create(struct inode *dir, |
| 639 | struct dentry *dentry, |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 640 | umode_t mode, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 641 | bool excl) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 642 | { |
| 643 | int ret; |
| 644 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 645 | trace_ocfs2_create(dir, dentry, dentry->d_name.len, dentry->d_name.name, |
| 646 | (unsigned long long)OCFS2_I(dir)->ip_blkno, mode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 647 | ret = ocfs2_mknod(dir, dentry, mode | S_IFREG, 0); |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 648 | if (ret) |
| 649 | mlog_errno(ret); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 650 | |
| 651 | return ret; |
| 652 | } |
| 653 | |
| 654 | static int ocfs2_link(struct dentry *old_dentry, |
| 655 | struct inode *dir, |
| 656 | struct dentry *dentry) |
| 657 | { |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 658 | handle_t *handle; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 659 | struct inode *inode = old_dentry->d_inode; |
| 660 | int err; |
| 661 | struct buffer_head *fe_bh = NULL; |
| 662 | struct buffer_head *parent_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 663 | struct ocfs2_dinode *fe = NULL; |
| 664 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 665 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 666 | sigset_t oldset; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 667 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 668 | trace_ocfs2_link((unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 669 | old_dentry->d_name.len, old_dentry->d_name.name, |
| 670 | dentry->d_name.len, dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 671 | |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 672 | if (S_ISDIR(inode->i_mode)) |
| 673 | return -EPERM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 674 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 675 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 676 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 677 | err = ocfs2_inode_lock_nested(dir, &parent_fe_bh, 1, OI_LS_PARENT); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 678 | if (err < 0) { |
| 679 | if (err != -ENOENT) |
| 680 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 681 | return err; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 682 | } |
| 683 | |
Tiger Yang | 0f62de2 | 2006-08-31 20:39:47 -0700 | [diff] [blame] | 684 | if (!dir->i_nlink) { |
| 685 | err = -ENOENT; |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 686 | goto out; |
Tiger Yang | 0f62de2 | 2006-08-31 20:39:47 -0700 | [diff] [blame] | 687 | } |
| 688 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 689 | err = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 690 | dentry->d_name.len); |
| 691 | if (err) |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 692 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 693 | |
| 694 | err = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 695 | dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 696 | dentry->d_name.len, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 697 | if (err < 0) { |
| 698 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 699 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 700 | } |
| 701 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 702 | err = ocfs2_inode_lock(inode, &fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 703 | if (err < 0) { |
| 704 | if (err != -ENOENT) |
| 705 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 706 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | fe = (struct ocfs2_dinode *) fe_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 710 | if (ocfs2_read_links_count(fe) >= ocfs2_link_max(osb)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 711 | err = -EMLINK; |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 712 | goto out_unlock_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 713 | } |
| 714 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 715 | handle = ocfs2_start_trans(osb, ocfs2_link_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 716 | if (IS_ERR(handle)) { |
| 717 | err = PTR_ERR(handle); |
| 718 | handle = NULL; |
| 719 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 720 | goto out_unlock_inode; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 721 | } |
| 722 | |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 723 | /* Starting to change things, restart is no longer possible. */ |
| 724 | ocfs2_block_signals(&oldset); |
| 725 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 726 | err = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 727 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 728 | if (err < 0) { |
| 729 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 730 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 731 | } |
| 732 | |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 733 | inc_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 734 | inode->i_ctime = CURRENT_TIME; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 735 | ocfs2_set_links_count(fe, inode->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 736 | fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec); |
| 737 | fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 738 | ocfs2_journal_dirty(handle, fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 739 | |
| 740 | err = ocfs2_add_entry(handle, dentry, inode, |
| 741 | OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 742 | parent_fe_bh, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 743 | if (err) { |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 744 | ocfs2_add_links_count(fe, -1); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 745 | drop_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 746 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 747 | goto out_commit; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 748 | } |
| 749 | |
Mark Fasheh | 0027dd5 | 2006-09-21 16:51:28 -0700 | [diff] [blame] | 750 | err = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 751 | if (err) { |
| 752 | mlog_errno(err); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 753 | goto out_commit; |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 754 | } |
| 755 | |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 756 | ihold(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 757 | d_instantiate(dentry, inode); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 758 | |
| 759 | out_commit: |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 760 | ocfs2_commit_trans(osb, handle); |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 761 | ocfs2_unblock_signals(&oldset); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 762 | out_unlock_inode: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 763 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 764 | |
| 765 | out: |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 766 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 123a964 | 2006-10-05 16:48:23 -0700 | [diff] [blame] | 767 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 768 | brelse(fe_bh); |
| 769 | brelse(parent_fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 770 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 771 | ocfs2_free_dir_lookup_result(&lookup); |
| 772 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 773 | if (err) |
| 774 | mlog_errno(err); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 775 | |
| 776 | return err; |
| 777 | } |
| 778 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 779 | /* |
| 780 | * Takes and drops an exclusive lock on the given dentry. This will |
| 781 | * force other nodes to drop it. |
| 782 | */ |
| 783 | static int ocfs2_remote_dentry_delete(struct dentry *dentry) |
| 784 | { |
| 785 | int ret; |
| 786 | |
| 787 | ret = ocfs2_dentry_lock(dentry, 1); |
| 788 | if (ret) |
| 789 | mlog_errno(ret); |
| 790 | else |
| 791 | ocfs2_dentry_unlock(dentry, 1); |
| 792 | |
| 793 | return ret; |
| 794 | } |
| 795 | |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 796 | static inline int ocfs2_inode_is_unlinkable(struct inode *inode) |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 797 | { |
| 798 | if (S_ISDIR(inode->i_mode)) { |
| 799 | if (inode->i_nlink == 2) |
| 800 | return 1; |
| 801 | return 0; |
| 802 | } |
| 803 | |
| 804 | if (inode->i_nlink == 1) |
| 805 | return 1; |
| 806 | return 0; |
| 807 | } |
| 808 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 809 | static int ocfs2_unlink(struct inode *dir, |
| 810 | struct dentry *dentry) |
| 811 | { |
| 812 | int status; |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 813 | int child_locked = 0; |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 814 | bool is_unlinkable = false; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 815 | struct inode *inode = dentry->d_inode; |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 816 | struct inode *orphan_dir = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 817 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 818 | u64 blkno; |
| 819 | struct ocfs2_dinode *fe = NULL; |
| 820 | struct buffer_head *fe_bh = NULL; |
| 821 | struct buffer_head *parent_node_bh = NULL; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 822 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 823 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 824 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
| 825 | struct ocfs2_dir_lookup_result orphan_insert = { NULL, }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 826 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 827 | trace_ocfs2_unlink(dir, dentry, dentry->d_name.len, |
| 828 | dentry->d_name.name, |
| 829 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 830 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 831 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 832 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 833 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 834 | BUG_ON(dentry->d_parent->d_inode != dir); |
| 835 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 836 | if (inode == osb->root_inode) |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 837 | return -EPERM; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 838 | |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 839 | status = ocfs2_inode_lock_nested(dir, &parent_node_bh, 1, |
| 840 | OI_LS_PARENT); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 841 | if (status < 0) { |
| 842 | if (status != -ENOENT) |
| 843 | mlog_errno(status); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 844 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | status = ocfs2_find_files_on_disk(dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 848 | dentry->d_name.len, &blkno, dir, |
| 849 | &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 850 | if (status < 0) { |
| 851 | if (status != -ENOENT) |
| 852 | mlog_errno(status); |
| 853 | goto leave; |
| 854 | } |
| 855 | |
| 856 | if (OCFS2_I(inode)->ip_blkno != blkno) { |
| 857 | status = -ENOENT; |
| 858 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 859 | trace_ocfs2_unlink_noent( |
| 860 | (unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 861 | (unsigned long long)blkno, |
| 862 | OCFS2_I(inode)->ip_flags); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 863 | goto leave; |
| 864 | } |
| 865 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 866 | status = ocfs2_inode_lock(inode, &fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 867 | if (status < 0) { |
| 868 | if (status != -ENOENT) |
| 869 | mlog_errno(status); |
| 870 | goto leave; |
| 871 | } |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 872 | child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 873 | |
| 874 | if (S_ISDIR(inode->i_mode)) { |
Mark Fasheh | b80b549 | 2009-02-18 11:41:38 -0800 | [diff] [blame] | 875 | if (inode->i_nlink != 2 || !ocfs2_empty_dir(inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 876 | status = -ENOTEMPTY; |
| 877 | goto leave; |
| 878 | } |
| 879 | } |
| 880 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 881 | status = ocfs2_remote_dentry_delete(dentry); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 882 | if (status < 0) { |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 883 | /* This remote delete should succeed under all normal |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 884 | * circumstances. */ |
| 885 | mlog_errno(status); |
| 886 | goto leave; |
| 887 | } |
| 888 | |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 889 | if (ocfs2_inode_is_unlinkable(inode)) { |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 890 | status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, |
| 891 | OCFS2_I(inode)->ip_blkno, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 892 | orphan_name, &orphan_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 893 | if (status < 0) { |
| 894 | mlog_errno(status); |
| 895 | goto leave; |
| 896 | } |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 897 | is_unlinkable = true; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 898 | } |
| 899 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 900 | handle = ocfs2_start_trans(osb, ocfs2_unlink_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 901 | if (IS_ERR(handle)) { |
| 902 | status = PTR_ERR(handle); |
| 903 | handle = NULL; |
| 904 | mlog_errno(status); |
| 905 | goto leave; |
| 906 | } |
| 907 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 908 | status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), fe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 909 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 910 | if (status < 0) { |
| 911 | mlog_errno(status); |
| 912 | goto leave; |
| 913 | } |
| 914 | |
| 915 | fe = (struct ocfs2_dinode *) fe_bh->b_data; |
| 916 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 917 | /* delete the name from the parent dir */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 918 | status = ocfs2_delete_entry(handle, dir, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 919 | if (status < 0) { |
| 920 | mlog_errno(status); |
| 921 | goto leave; |
| 922 | } |
| 923 | |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 924 | if (S_ISDIR(inode->i_mode)) |
| 925 | drop_nlink(inode); |
| 926 | drop_nlink(inode); |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 927 | ocfs2_set_links_count(fe, inode->i_nlink); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 928 | ocfs2_journal_dirty(handle, fe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 929 | |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 930 | dir->i_ctime = dir->i_mtime = CURRENT_TIME; |
| 931 | if (S_ISDIR(inode->i_mode)) |
Mark Fasheh | 17ff785 | 2006-09-30 23:29:05 -0700 | [diff] [blame] | 932 | drop_nlink(dir); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 933 | |
| 934 | status = ocfs2_mark_inode_dirty(handle, dir, parent_node_bh); |
| 935 | if (status < 0) { |
| 936 | mlog_errno(status); |
| 937 | if (S_ISDIR(inode->i_mode)) |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 938 | inc_nlink(dir); |
Younger Liu | b5a8bb7 | 2013-07-03 15:01:01 -0700 | [diff] [blame] | 939 | goto leave; |
| 940 | } |
| 941 | |
| 942 | if (is_unlinkable) { |
| 943 | status = ocfs2_orphan_add(osb, handle, inode, fe_bh, |
| 944 | orphan_name, &orphan_insert, orphan_dir); |
| 945 | if (status < 0) |
| 946 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 947 | } |
| 948 | |
| 949 | leave: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 950 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 951 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 952 | |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 953 | if (child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 954 | ocfs2_inode_unlock(inode, 1); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 955 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 956 | ocfs2_inode_unlock(dir, 1); |
Mark Fasheh | 30a4f5e | 2006-10-06 11:49:45 -0700 | [diff] [blame] | 957 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 958 | if (orphan_dir) { |
| 959 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 960 | ocfs2_inode_unlock(orphan_dir, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 961 | mutex_unlock(&orphan_dir->i_mutex); |
| 962 | iput(orphan_dir); |
| 963 | } |
| 964 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 965 | brelse(fe_bh); |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 966 | brelse(parent_node_bh); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 967 | |
| 968 | ocfs2_free_dir_lookup_result(&orphan_insert); |
| 969 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 970 | |
Xiaowei.Hu | f5b2585 | 2014-01-27 17:06:56 -0800 | [diff] [blame] | 971 | if (status && (status != -ENOTEMPTY) && (status != -ENOENT)) |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 972 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 973 | |
| 974 | return status; |
| 975 | } |
| 976 | |
| 977 | /* |
| 978 | * The only place this should be used is rename! |
| 979 | * if they have the same id, then the 1st one is the only one locked. |
| 980 | */ |
| 981 | static int ocfs2_double_lock(struct ocfs2_super *osb, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 982 | struct buffer_head **bh1, |
| 983 | struct inode *inode1, |
| 984 | struct buffer_head **bh2, |
| 985 | struct inode *inode2) |
| 986 | { |
| 987 | int status; |
| 988 | struct ocfs2_inode_info *oi1 = OCFS2_I(inode1); |
| 989 | struct ocfs2_inode_info *oi2 = OCFS2_I(inode2); |
| 990 | struct buffer_head **tmpbh; |
| 991 | struct inode *tmpinode; |
| 992 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 993 | trace_ocfs2_double_lock((unsigned long long)oi1->ip_blkno, |
| 994 | (unsigned long long)oi2->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 995 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 996 | if (*bh1) |
| 997 | *bh1 = NULL; |
| 998 | if (*bh2) |
| 999 | *bh2 = NULL; |
| 1000 | |
| 1001 | /* we always want to lock the one with the lower lockid first. */ |
| 1002 | if (oi1->ip_blkno != oi2->ip_blkno) { |
| 1003 | if (oi1->ip_blkno < oi2->ip_blkno) { |
| 1004 | /* switch id1 and id2 around */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1005 | tmpbh = bh2; |
| 1006 | bh2 = bh1; |
| 1007 | bh1 = tmpbh; |
| 1008 | |
| 1009 | tmpinode = inode2; |
| 1010 | inode2 = inode1; |
| 1011 | inode1 = tmpinode; |
| 1012 | } |
| 1013 | /* lock id2 */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1014 | status = ocfs2_inode_lock_nested(inode2, bh2, 1, |
| 1015 | OI_LS_RENAME1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1016 | if (status < 0) { |
| 1017 | if (status != -ENOENT) |
| 1018 | mlog_errno(status); |
| 1019 | goto bail; |
| 1020 | } |
| 1021 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1022 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1023 | /* lock id1 */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1024 | status = ocfs2_inode_lock_nested(inode1, bh1, 1, OI_LS_RENAME2); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1025 | if (status < 0) { |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1026 | /* |
| 1027 | * An error return must mean that no cluster locks |
| 1028 | * were held on function exit. |
| 1029 | */ |
Tao Ma | 1e6d915 | 2010-12-20 16:21:11 +0800 | [diff] [blame] | 1030 | if (oi1->ip_blkno != oi2->ip_blkno) { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1031 | ocfs2_inode_unlock(inode2, 1); |
Tao Ma | 1e6d915 | 2010-12-20 16:21:11 +0800 | [diff] [blame] | 1032 | brelse(*bh2); |
| 1033 | *bh2 = NULL; |
| 1034 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1035 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1036 | if (status != -ENOENT) |
| 1037 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1038 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1039 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1040 | trace_ocfs2_double_lock_end( |
| 1041 | (unsigned long long)OCFS2_I(inode1)->ip_blkno, |
| 1042 | (unsigned long long)OCFS2_I(inode2)->ip_blkno); |
| 1043 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1044 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1045 | if (status) |
| 1046 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1047 | return status; |
| 1048 | } |
| 1049 | |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1050 | static void ocfs2_double_unlock(struct inode *inode1, struct inode *inode2) |
| 1051 | { |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1052 | ocfs2_inode_unlock(inode1, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1053 | |
| 1054 | if (inode1 != inode2) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1055 | ocfs2_inode_unlock(inode2, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1056 | } |
| 1057 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1058 | static int ocfs2_rename(struct inode *old_dir, |
| 1059 | struct dentry *old_dentry, |
| 1060 | struct inode *new_dir, |
| 1061 | struct dentry *new_dentry) |
| 1062 | { |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1063 | int status = 0, rename_lock = 0, parents_locked = 0, target_exists = 0; |
| 1064 | int old_child_locked = 0, new_child_locked = 0, update_dot_dot = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1065 | struct inode *old_inode = old_dentry->d_inode; |
| 1066 | struct inode *new_inode = new_dentry->d_inode; |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1067 | struct inode *orphan_dir = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1068 | struct ocfs2_dinode *newfe = NULL; |
| 1069 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1070 | struct buffer_head *newfe_bh = NULL; |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1071 | struct buffer_head *old_inode_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1072 | struct ocfs2_super *osb = NULL; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1073 | u64 newfe_blkno, old_de_ino; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1074 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1075 | struct buffer_head *old_dir_bh = NULL; |
| 1076 | struct buffer_head *new_dir_bh = NULL; |
Al Viro | 847c9db | 2012-02-12 21:00:05 -0500 | [diff] [blame] | 1077 | u32 old_dir_nlink = old_dir->i_nlink; |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1078 | struct ocfs2_dinode *old_di; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1079 | struct ocfs2_dir_lookup_result old_inode_dot_dot_res = { NULL, }; |
| 1080 | struct ocfs2_dir_lookup_result target_lookup_res = { NULL, }; |
| 1081 | struct ocfs2_dir_lookup_result old_entry_lookup = { NULL, }; |
| 1082 | struct ocfs2_dir_lookup_result orphan_insert = { NULL, }; |
| 1083 | struct ocfs2_dir_lookup_result target_insert = { NULL, }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1084 | |
| 1085 | /* At some point it might be nice to break this function up a |
| 1086 | * bit. */ |
| 1087 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1088 | trace_ocfs2_rename(old_dir, old_dentry, new_dir, new_dentry, |
| 1089 | old_dentry->d_name.len, old_dentry->d_name.name, |
| 1090 | new_dentry->d_name.len, new_dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1091 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 1092 | dquot_initialize(old_dir); |
| 1093 | dquot_initialize(new_dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 1094 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1095 | osb = OCFS2_SB(old_dir->i_sb); |
| 1096 | |
| 1097 | if (new_inode) { |
| 1098 | if (!igrab(new_inode)) |
| 1099 | BUG(); |
| 1100 | } |
| 1101 | |
Uwe Kleine-König | 1b3c371 | 2007-02-17 19:23:03 +0100 | [diff] [blame] | 1102 | /* Assume a directory hierarchy thusly: |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1103 | * a/b/c |
| 1104 | * a/d |
| 1105 | * a,b,c, and d are all directories. |
| 1106 | * |
| 1107 | * from cwd of 'a' on both nodes: |
| 1108 | * node1: mv b/c d |
| 1109 | * node2: mv d b/c |
| 1110 | * |
| 1111 | * And that's why, just like the VFS, we need a file system |
| 1112 | * rename lock. */ |
Jan Kara | 5dabd69 | 2008-02-21 18:00:00 +0100 | [diff] [blame] | 1113 | if (old_dir != new_dir && S_ISDIR(old_inode->i_mode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1114 | status = ocfs2_rename_lock(osb); |
| 1115 | if (status < 0) { |
| 1116 | mlog_errno(status); |
| 1117 | goto bail; |
| 1118 | } |
| 1119 | rename_lock = 1; |
| 1120 | } |
| 1121 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1122 | /* if old and new are the same, this'll just do one lock. */ |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1123 | status = ocfs2_double_lock(osb, &old_dir_bh, old_dir, |
| 1124 | &new_dir_bh, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1125 | if (status < 0) { |
| 1126 | mlog_errno(status); |
| 1127 | goto bail; |
| 1128 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1129 | parents_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1130 | |
| 1131 | /* make sure both dirs have bhs |
| 1132 | * get an extra ref on old_dir_bh if old==new */ |
| 1133 | if (!new_dir_bh) { |
| 1134 | if (old_dir_bh) { |
| 1135 | new_dir_bh = old_dir_bh; |
| 1136 | get_bh(new_dir_bh); |
| 1137 | } else { |
| 1138 | mlog(ML_ERROR, "no old_dir_bh!\n"); |
| 1139 | status = -EIO; |
| 1140 | goto bail; |
| 1141 | } |
| 1142 | } |
| 1143 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1144 | /* |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1145 | * Aside from allowing a meta data update, the locking here |
Mark Fasheh | 34d024f | 2007-09-24 15:56:19 -0700 | [diff] [blame] | 1146 | * also ensures that the downconvert thread on other nodes |
| 1147 | * won't have to concurrently downconvert the inode and the |
| 1148 | * dentry locks. |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1149 | */ |
Jan Kara | cb25797 | 2009-06-04 15:26:50 +0200 | [diff] [blame] | 1150 | status = ocfs2_inode_lock_nested(old_inode, &old_inode_bh, 1, |
| 1151 | OI_LS_PARENT); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1152 | if (status < 0) { |
| 1153 | if (status != -ENOENT) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1154 | mlog_errno(status); |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1155 | goto bail; |
| 1156 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1157 | old_child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1158 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1159 | status = ocfs2_remote_dentry_delete(old_dentry); |
| 1160 | if (status < 0) { |
| 1161 | mlog_errno(status); |
| 1162 | goto bail; |
| 1163 | } |
| 1164 | |
| 1165 | if (S_ISDIR(old_inode->i_mode)) { |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1166 | u64 old_inode_parent; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1167 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1168 | update_dot_dot = 1; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1169 | status = ocfs2_find_files_on_disk("..", 2, &old_inode_parent, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1170 | old_inode, |
| 1171 | &old_inode_dot_dot_res); |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1172 | if (status) { |
| 1173 | status = -EIO; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1174 | goto bail; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1175 | } |
| 1176 | |
| 1177 | if (old_inode_parent != OCFS2_I(old_dir)->ip_blkno) { |
| 1178 | status = -EIO; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1179 | goto bail; |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1180 | } |
| 1181 | |
| 1182 | if (!new_inode && new_dir != old_dir && |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1183 | new_dir->i_nlink >= ocfs2_link_max(osb)) { |
Mark Fasheh | 38760e2 | 2007-09-11 17:21:56 -0700 | [diff] [blame] | 1184 | status = -EMLINK; |
| 1185 | goto bail; |
| 1186 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1187 | } |
| 1188 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1189 | status = ocfs2_lookup_ino_from_name(old_dir, old_dentry->d_name.name, |
| 1190 | old_dentry->d_name.len, |
| 1191 | &old_de_ino); |
| 1192 | if (status) { |
| 1193 | status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1194 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1195 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1196 | |
| 1197 | /* |
| 1198 | * Check for inode number is _not_ due to possible IO errors. |
| 1199 | * We might rmdir the source, keep it as pwd of some process |
| 1200 | * and merrily kill the link to whatever was created under the |
| 1201 | * same name. Goodbye sticky bit ;-< |
| 1202 | */ |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1203 | if (old_de_ino != OCFS2_I(old_inode)->ip_blkno) { |
| 1204 | status = -ENOENT; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1205 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1206 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1207 | |
| 1208 | /* check if the target already exists (in which case we need |
| 1209 | * to delete it */ |
| 1210 | status = ocfs2_find_files_on_disk(new_dentry->d_name.name, |
| 1211 | new_dentry->d_name.len, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1212 | &newfe_blkno, new_dir, |
| 1213 | &target_lookup_res); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1214 | /* The only error we allow here is -ENOENT because the new |
| 1215 | * file not existing is perfectly valid. */ |
| 1216 | if ((status < 0) && (status != -ENOENT)) { |
| 1217 | /* If we cannot find the file specified we should just */ |
| 1218 | /* return the error... */ |
| 1219 | mlog_errno(status); |
| 1220 | goto bail; |
| 1221 | } |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1222 | if (status == 0) |
| 1223 | target_exists = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1224 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1225 | if (!target_exists && new_inode) { |
Srinivas Eeda | e325a88 | 2007-10-31 16:49:43 -0700 | [diff] [blame] | 1226 | /* |
| 1227 | * Target was unlinked by another node while we were |
| 1228 | * waiting to get to ocfs2_rename(). There isn't |
| 1229 | * anything we can do here to help the situation, so |
| 1230 | * bubble up the appropriate error. |
| 1231 | */ |
| 1232 | status = -ENOENT; |
| 1233 | goto bail; |
| 1234 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1235 | |
| 1236 | /* In case we need to overwrite an existing file, we blow it |
| 1237 | * away first */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1238 | if (target_exists) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1239 | /* VFS didn't think there existed an inode here, but |
| 1240 | * someone else in the cluster must have raced our |
| 1241 | * rename to create one. Today we error cleanly, in |
| 1242 | * the future we should consider calling iget to build |
| 1243 | * a new struct inode for this entry. */ |
| 1244 | if (!new_inode) { |
| 1245 | status = -EACCES; |
| 1246 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1247 | trace_ocfs2_rename_target_exists(new_dentry->d_name.len, |
| 1248 | new_dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1249 | goto bail; |
| 1250 | } |
| 1251 | |
| 1252 | if (OCFS2_I(new_inode)->ip_blkno != newfe_blkno) { |
| 1253 | status = -EACCES; |
| 1254 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1255 | trace_ocfs2_rename_disagree( |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1256 | (unsigned long long)OCFS2_I(new_inode)->ip_blkno, |
| 1257 | (unsigned long long)newfe_blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1258 | OCFS2_I(new_inode)->ip_flags); |
| 1259 | goto bail; |
| 1260 | } |
| 1261 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1262 | status = ocfs2_inode_lock(new_inode, &newfe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1263 | if (status < 0) { |
| 1264 | if (status != -ENOENT) |
| 1265 | mlog_errno(status); |
| 1266 | goto bail; |
| 1267 | } |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1268 | new_child_locked = 1; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1269 | |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1270 | status = ocfs2_remote_dentry_delete(new_dentry); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1271 | if (status < 0) { |
| 1272 | mlog_errno(status); |
| 1273 | goto bail; |
| 1274 | } |
| 1275 | |
| 1276 | newfe = (struct ocfs2_dinode *) newfe_bh->b_data; |
| 1277 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1278 | trace_ocfs2_rename_over_existing( |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1279 | (unsigned long long)newfe_blkno, newfe_bh, newfe_bh ? |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1280 | (unsigned long long)newfe_bh->b_blocknr : 0ULL); |
| 1281 | |
| 1282 | if (S_ISDIR(new_inode->i_mode) || (new_inode->i_nlink == 1)) { |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1283 | status = ocfs2_prepare_orphan_dir(osb, &orphan_dir, |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 1284 | OCFS2_I(new_inode)->ip_blkno, |
| 1285 | orphan_name, &orphan_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1286 | if (status < 0) { |
| 1287 | mlog_errno(status); |
| 1288 | goto bail; |
| 1289 | } |
| 1290 | } |
| 1291 | } else { |
| 1292 | BUG_ON(new_dentry->d_parent->d_inode != new_dir); |
| 1293 | |
| 1294 | status = ocfs2_check_dir_for_entry(new_dir, |
| 1295 | new_dentry->d_name.name, |
| 1296 | new_dentry->d_name.len); |
| 1297 | if (status) |
| 1298 | goto bail; |
| 1299 | |
| 1300 | status = ocfs2_prepare_dir_for_insert(osb, new_dir, new_dir_bh, |
| 1301 | new_dentry->d_name.name, |
| 1302 | new_dentry->d_name.len, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1303 | &target_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1304 | if (status < 0) { |
| 1305 | mlog_errno(status); |
| 1306 | goto bail; |
| 1307 | } |
| 1308 | } |
| 1309 | |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1310 | handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb)); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1311 | if (IS_ERR(handle)) { |
| 1312 | status = PTR_ERR(handle); |
| 1313 | handle = NULL; |
| 1314 | mlog_errno(status); |
| 1315 | goto bail; |
| 1316 | } |
| 1317 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1318 | if (target_exists) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1319 | if (S_ISDIR(new_inode->i_mode)) { |
Mark Fasheh | b80b549 | 2009-02-18 11:41:38 -0800 | [diff] [blame] | 1320 | if (new_inode->i_nlink != 2 || |
| 1321 | !ocfs2_empty_dir(new_inode)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1322 | status = -ENOTEMPTY; |
| 1323 | goto bail; |
| 1324 | } |
| 1325 | } |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1326 | status = ocfs2_journal_access_di(handle, INODE_CACHE(new_inode), |
| 1327 | newfe_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1328 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1329 | if (status < 0) { |
| 1330 | mlog_errno(status); |
| 1331 | goto bail; |
| 1332 | } |
| 1333 | |
| 1334 | if (S_ISDIR(new_inode->i_mode) || |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1335 | (ocfs2_read_links_count(newfe) == 1)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1336 | status = ocfs2_orphan_add(osb, handle, new_inode, |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 1337 | newfe_bh, orphan_name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1338 | &orphan_insert, orphan_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1339 | if (status < 0) { |
| 1340 | mlog_errno(status); |
| 1341 | goto bail; |
| 1342 | } |
| 1343 | } |
| 1344 | |
| 1345 | /* change the dirent to point to the correct inode */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1346 | status = ocfs2_update_entry(new_dir, handle, &target_lookup_res, |
| 1347 | old_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1348 | if (status < 0) { |
| 1349 | mlog_errno(status); |
| 1350 | goto bail; |
| 1351 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1352 | new_dir->i_version++; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1353 | |
| 1354 | if (S_ISDIR(new_inode->i_mode)) |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1355 | ocfs2_set_links_count(newfe, 0); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1356 | else |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1357 | ocfs2_add_links_count(newfe, -1); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1358 | ocfs2_journal_dirty(handle, newfe_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1359 | } else { |
| 1360 | /* if the name was not found in new_dir, add it now */ |
| 1361 | status = ocfs2_add_entry(handle, new_dentry, old_inode, |
| 1362 | OCFS2_I(old_inode)->ip_blkno, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1363 | new_dir_bh, &target_insert); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1364 | } |
| 1365 | |
| 1366 | old_inode->i_ctime = CURRENT_TIME; |
| 1367 | mark_inode_dirty(old_inode); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1368 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1369 | status = ocfs2_journal_access_di(handle, INODE_CACHE(old_inode), |
| 1370 | old_inode_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 1371 | OCFS2_JOURNAL_ACCESS_WRITE); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1372 | if (status >= 0) { |
| 1373 | old_di = (struct ocfs2_dinode *) old_inode_bh->b_data; |
| 1374 | |
| 1375 | old_di->i_ctime = cpu_to_le64(old_inode->i_ctime.tv_sec); |
| 1376 | old_di->i_ctime_nsec = cpu_to_le32(old_inode->i_ctime.tv_nsec); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1377 | ocfs2_journal_dirty(handle, old_inode_bh); |
Sunil Mushran | 480214d | 2007-08-06 15:11:56 -0700 | [diff] [blame] | 1378 | } else |
| 1379 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1380 | |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1381 | /* |
| 1382 | * Now that the name has been added to new_dir, remove the old name. |
| 1383 | * |
| 1384 | * We don't keep any directory entry context around until now |
| 1385 | * because the insert might have changed the type of directory |
| 1386 | * we're dealing with. |
| 1387 | */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1388 | status = ocfs2_find_entry(old_dentry->d_name.name, |
| 1389 | old_dentry->d_name.len, old_dir, |
| 1390 | &old_entry_lookup); |
| 1391 | if (status) |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1392 | goto bail; |
Mark Fasheh | 5b6a3a2 | 2007-09-13 16:33:54 -0700 | [diff] [blame] | 1393 | |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1394 | status = ocfs2_delete_entry(handle, old_dir, &old_entry_lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1395 | if (status < 0) { |
| 1396 | mlog_errno(status); |
| 1397 | goto bail; |
| 1398 | } |
| 1399 | |
| 1400 | if (new_inode) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 1401 | drop_nlink(new_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1402 | new_inode->i_ctime = CURRENT_TIME; |
| 1403 | } |
| 1404 | old_dir->i_ctime = old_dir->i_mtime = CURRENT_TIME; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1405 | |
| 1406 | if (update_dot_dot) { |
| 1407 | status = ocfs2_update_entry(old_inode, handle, |
| 1408 | &old_inode_dot_dot_res, new_dir); |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 1409 | drop_nlink(old_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1410 | if (new_inode) { |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 1411 | drop_nlink(new_inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1412 | } else { |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 1413 | inc_nlink(new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1414 | mark_inode_dirty(new_dir); |
| 1415 | } |
| 1416 | } |
| 1417 | mark_inode_dirty(old_dir); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1418 | ocfs2_mark_inode_dirty(handle, old_dir, old_dir_bh); |
| 1419 | if (new_inode) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1420 | mark_inode_dirty(new_inode); |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1421 | ocfs2_mark_inode_dirty(handle, new_inode, newfe_bh); |
| 1422 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1423 | |
Mark Fasheh | 592282c | 2007-01-02 17:59:40 -0800 | [diff] [blame] | 1424 | if (old_dir != new_dir) { |
| 1425 | /* Keep the same times on both directories.*/ |
| 1426 | new_dir->i_ctime = new_dir->i_mtime = old_dir->i_ctime; |
| 1427 | |
| 1428 | /* |
| 1429 | * This will also pick up the i_nlink change from the |
| 1430 | * block above. |
| 1431 | */ |
| 1432 | ocfs2_mark_inode_dirty(handle, new_dir, new_dir_bh); |
| 1433 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1434 | |
| 1435 | if (old_dir_nlink != old_dir->i_nlink) { |
| 1436 | if (!old_dir_bh) { |
| 1437 | mlog(ML_ERROR, "need to change nlink for old dir " |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1438 | "%llu from %d to %d but bh is NULL!\n", |
| 1439 | (unsigned long long)OCFS2_I(old_dir)->ip_blkno, |
| 1440 | (int)old_dir_nlink, old_dir->i_nlink); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1441 | } else { |
| 1442 | struct ocfs2_dinode *fe; |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1443 | status = ocfs2_journal_access_di(handle, |
| 1444 | INODE_CACHE(old_dir), |
| 1445 | old_dir_bh, |
| 1446 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1447 | fe = (struct ocfs2_dinode *) old_dir_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1448 | ocfs2_set_links_count(fe, old_dir->i_nlink); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1449 | ocfs2_journal_dirty(handle, old_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1450 | } |
| 1451 | } |
Mark Fasheh | 379dfe9 | 2006-09-08 14:21:03 -0700 | [diff] [blame] | 1452 | ocfs2_dentry_move(old_dentry, new_dentry, old_dir, new_dir); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1453 | status = 0; |
| 1454 | bail: |
| 1455 | if (rename_lock) |
| 1456 | ocfs2_rename_unlock(osb); |
| 1457 | |
| 1458 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 1459 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1460 | |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1461 | if (parents_locked) |
| 1462 | ocfs2_double_unlock(old_dir, new_dir); |
| 1463 | |
| 1464 | if (old_child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1465 | ocfs2_inode_unlock(old_inode, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1466 | |
| 1467 | if (new_child_locked) |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1468 | ocfs2_inode_unlock(new_inode, 1); |
Mark Fasheh | 8d5596c | 2006-10-06 15:04:51 -0700 | [diff] [blame] | 1469 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1470 | if (orphan_dir) { |
| 1471 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1472 | ocfs2_inode_unlock(orphan_dir, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1473 | mutex_unlock(&orphan_dir->i_mutex); |
| 1474 | iput(orphan_dir); |
| 1475 | } |
| 1476 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1477 | if (new_inode) |
| 1478 | sync_mapping_buffers(old_inode->i_mapping); |
| 1479 | |
| 1480 | if (new_inode) |
| 1481 | iput(new_inode); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1482 | |
| 1483 | ocfs2_free_dir_lookup_result(&target_lookup_res); |
| 1484 | ocfs2_free_dir_lookup_result(&old_entry_lookup); |
| 1485 | ocfs2_free_dir_lookup_result(&old_inode_dot_dot_res); |
| 1486 | ocfs2_free_dir_lookup_result(&orphan_insert); |
| 1487 | ocfs2_free_dir_lookup_result(&target_insert); |
| 1488 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1489 | brelse(newfe_bh); |
| 1490 | brelse(old_inode_bh); |
| 1491 | brelse(old_dir_bh); |
| 1492 | brelse(new_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1493 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1494 | if (status) |
| 1495 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1496 | |
| 1497 | return status; |
| 1498 | } |
| 1499 | |
| 1500 | /* |
| 1501 | * we expect i_size = strlen(symname). Copy symname into the file |
| 1502 | * data, including the null terminator. |
| 1503 | */ |
| 1504 | static int ocfs2_create_symlink_data(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1505 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1506 | struct inode *inode, |
| 1507 | const char *symname) |
| 1508 | { |
| 1509 | struct buffer_head **bhs = NULL; |
| 1510 | const char *c; |
| 1511 | struct super_block *sb = osb->sb; |
Mark Fasheh | 4f902c3 | 2007-03-09 16:26:50 -0800 | [diff] [blame] | 1512 | u64 p_blkno, p_blocks; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1513 | int virtual, blocks, status, i, bytes_left; |
| 1514 | |
| 1515 | bytes_left = i_size_read(inode) + 1; |
| 1516 | /* we can't trust i_blocks because we're actually going to |
| 1517 | * write i_size + 1 bytes. */ |
| 1518 | blocks = (bytes_left + sb->s_blocksize - 1) >> sb->s_blocksize_bits; |
| 1519 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1520 | trace_ocfs2_create_symlink_data((unsigned long long)inode->i_blocks, |
| 1521 | i_size_read(inode), blocks); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1522 | |
| 1523 | /* Sanity check -- make sure we're going to fit. */ |
| 1524 | if (bytes_left > |
| 1525 | ocfs2_clusters_to_bytes(sb, OCFS2_I(inode)->ip_clusters)) { |
| 1526 | status = -EIO; |
| 1527 | mlog_errno(status); |
| 1528 | goto bail; |
| 1529 | } |
| 1530 | |
| 1531 | bhs = kcalloc(blocks, sizeof(struct buffer_head *), GFP_KERNEL); |
| 1532 | if (!bhs) { |
| 1533 | status = -ENOMEM; |
| 1534 | mlog_errno(status); |
| 1535 | goto bail; |
| 1536 | } |
| 1537 | |
Mark Fasheh | 49cb8d2 | 2007-03-09 16:21:46 -0800 | [diff] [blame] | 1538 | status = ocfs2_extent_map_get_blocks(inode, 0, &p_blkno, &p_blocks, |
| 1539 | NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1540 | if (status < 0) { |
| 1541 | mlog_errno(status); |
| 1542 | goto bail; |
| 1543 | } |
| 1544 | |
| 1545 | /* links can never be larger than one cluster so we know this |
| 1546 | * is all going to be contiguous, but do a sanity check |
| 1547 | * anyway. */ |
| 1548 | if ((p_blocks << sb->s_blocksize_bits) < bytes_left) { |
| 1549 | status = -EIO; |
| 1550 | mlog_errno(status); |
| 1551 | goto bail; |
| 1552 | } |
| 1553 | |
| 1554 | virtual = 0; |
| 1555 | while(bytes_left > 0) { |
| 1556 | c = &symname[virtual * sb->s_blocksize]; |
| 1557 | |
| 1558 | bhs[virtual] = sb_getblk(sb, p_blkno); |
| 1559 | if (!bhs[virtual]) { |
| 1560 | status = -ENOMEM; |
| 1561 | mlog_errno(status); |
| 1562 | goto bail; |
| 1563 | } |
Joel Becker | 8cb471e | 2009-02-10 20:00:41 -0800 | [diff] [blame] | 1564 | ocfs2_set_new_buffer_uptodate(INODE_CACHE(inode), |
| 1565 | bhs[virtual]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1566 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 1567 | status = ocfs2_journal_access(handle, INODE_CACHE(inode), |
| 1568 | bhs[virtual], |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1569 | OCFS2_JOURNAL_ACCESS_CREATE); |
| 1570 | if (status < 0) { |
| 1571 | mlog_errno(status); |
| 1572 | goto bail; |
| 1573 | } |
| 1574 | |
| 1575 | memset(bhs[virtual]->b_data, 0, sb->s_blocksize); |
| 1576 | |
| 1577 | memcpy(bhs[virtual]->b_data, c, |
| 1578 | (bytes_left > sb->s_blocksize) ? sb->s_blocksize : |
| 1579 | bytes_left); |
| 1580 | |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 1581 | ocfs2_journal_dirty(handle, bhs[virtual]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1582 | |
| 1583 | virtual++; |
| 1584 | p_blkno++; |
| 1585 | bytes_left -= sb->s_blocksize; |
| 1586 | } |
| 1587 | |
| 1588 | status = 0; |
| 1589 | bail: |
| 1590 | |
| 1591 | if (bhs) { |
| 1592 | for(i = 0; i < blocks; i++) |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1593 | brelse(bhs[i]); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1594 | kfree(bhs); |
| 1595 | } |
| 1596 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1597 | if (status) |
| 1598 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1599 | return status; |
| 1600 | } |
| 1601 | |
| 1602 | static int ocfs2_symlink(struct inode *dir, |
| 1603 | struct dentry *dentry, |
| 1604 | const char *symname) |
| 1605 | { |
| 1606 | int status, l, credits; |
| 1607 | u64 newsize; |
| 1608 | struct ocfs2_super *osb = NULL; |
| 1609 | struct inode *inode = NULL; |
| 1610 | struct super_block *sb; |
| 1611 | struct buffer_head *new_fe_bh = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1612 | struct buffer_head *parent_fe_bh = NULL; |
| 1613 | struct ocfs2_dinode *fe = NULL; |
| 1614 | struct ocfs2_dinode *dirfe; |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 1615 | handle_t *handle = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1616 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 1617 | struct ocfs2_alloc_context *data_ac = NULL; |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1618 | struct ocfs2_alloc_context *xattr_ac = NULL; |
| 1619 | int want_clusters = 0; |
| 1620 | int xattr_credits = 0; |
| 1621 | struct ocfs2_security_xattr_info si = { |
| 1622 | .enable = 1, |
| 1623 | }; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1624 | int did_quota = 0, did_quota_inode = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1625 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 1626 | sigset_t oldset; |
| 1627 | int did_block_signals = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1628 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1629 | trace_ocfs2_symlink_begin(dir, dentry, symname, |
| 1630 | dentry->d_name.len, dentry->d_name.name); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1631 | |
Christoph Hellwig | 871a293 | 2010-03-03 09:05:07 -0500 | [diff] [blame] | 1632 | dquot_initialize(dir); |
Christoph Hellwig | 907f455 | 2010-03-03 09:05:06 -0500 | [diff] [blame] | 1633 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1634 | sb = dir->i_sb; |
| 1635 | osb = OCFS2_SB(sb); |
| 1636 | |
| 1637 | l = strlen(symname) + 1; |
| 1638 | |
| 1639 | credits = ocfs2_calc_symlink_credits(sb); |
| 1640 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1641 | /* lock the parent directory */ |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1642 | status = ocfs2_inode_lock(dir, &parent_fe_bh, 1); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1643 | if (status < 0) { |
| 1644 | if (status != -ENOENT) |
| 1645 | mlog_errno(status); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1646 | return status; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1647 | } |
| 1648 | |
| 1649 | dirfe = (struct ocfs2_dinode *) parent_fe_bh->b_data; |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 1650 | if (!ocfs2_read_links_count(dirfe)) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1651 | /* can't make a file in a deleted directory. */ |
| 1652 | status = -ENOENT; |
| 1653 | goto bail; |
| 1654 | } |
| 1655 | |
| 1656 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 1657 | dentry->d_name.len); |
| 1658 | if (status) |
| 1659 | goto bail; |
| 1660 | |
| 1661 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_fe_bh, |
| 1662 | dentry->d_name.name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1663 | dentry->d_name.len, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1664 | if (status < 0) { |
| 1665 | mlog_errno(status); |
| 1666 | goto bail; |
| 1667 | } |
| 1668 | |
Mark Fasheh | da5cbf2 | 2006-10-06 18:34:35 -0700 | [diff] [blame] | 1669 | status = ocfs2_reserve_new_inode(osb, &inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1670 | if (status < 0) { |
| 1671 | if (status != -ENOSPC) |
| 1672 | mlog_errno(status); |
| 1673 | goto bail; |
| 1674 | } |
| 1675 | |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1676 | inode = ocfs2_get_init_inode(dir, S_IFLNK | S_IRWXUGO); |
| 1677 | if (!inode) { |
| 1678 | status = -ENOMEM; |
| 1679 | mlog_errno(status); |
| 1680 | goto bail; |
| 1681 | } |
| 1682 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1683 | /* get security xattr */ |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 1684 | status = ocfs2_init_security_get(inode, dir, &dentry->d_name, &si); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1685 | if (status) { |
| 1686 | if (status == -EOPNOTSUPP) |
| 1687 | si.enable = 0; |
| 1688 | else { |
| 1689 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1690 | goto bail; |
| 1691 | } |
| 1692 | } |
| 1693 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1694 | /* calculate meta data/clusters for setting security xattr */ |
| 1695 | if (si.enable) { |
| 1696 | status = ocfs2_calc_security_init(dir, &si, &want_clusters, |
| 1697 | &xattr_credits, &xattr_ac); |
| 1698 | if (status < 0) { |
| 1699 | mlog_errno(status); |
| 1700 | goto bail; |
| 1701 | } |
| 1702 | } |
| 1703 | |
| 1704 | /* don't reserve bitmap space for fast symlinks. */ |
| 1705 | if (l > ocfs2_fast_symlink_chars(sb)) |
| 1706 | want_clusters += 1; |
| 1707 | |
| 1708 | status = ocfs2_reserve_clusters(osb, want_clusters, &data_ac); |
| 1709 | if (status < 0) { |
| 1710 | if (status != -ENOSPC) |
| 1711 | mlog_errno(status); |
| 1712 | goto bail; |
| 1713 | } |
| 1714 | |
| 1715 | handle = ocfs2_start_trans(osb, credits + xattr_credits); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1716 | if (IS_ERR(handle)) { |
| 1717 | status = PTR_ERR(handle); |
| 1718 | handle = NULL; |
| 1719 | mlog_errno(status); |
| 1720 | goto bail; |
| 1721 | } |
| 1722 | |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 1723 | /* Starting to change things, restart is no longer possible. */ |
| 1724 | ocfs2_block_signals(&oldset); |
| 1725 | did_block_signals = 1; |
| 1726 | |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 1727 | status = dquot_alloc_inode(inode); |
| 1728 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1729 | goto bail; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1730 | did_quota_inode = 1; |
| 1731 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1732 | trace_ocfs2_symlink_create(dir, dentry, dentry->d_name.len, |
| 1733 | dentry->d_name.name, |
| 1734 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 1735 | inode->i_mode); |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 1736 | |
| 1737 | status = ocfs2_mknod_locked(osb, dir, inode, |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1738 | 0, &new_fe_bh, parent_fe_bh, handle, |
| 1739 | inode_ac); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1740 | if (status < 0) { |
| 1741 | mlog_errno(status); |
| 1742 | goto bail; |
| 1743 | } |
| 1744 | |
| 1745 | fe = (struct ocfs2_dinode *) new_fe_bh->b_data; |
| 1746 | inode->i_rdev = 0; |
| 1747 | newsize = l - 1; |
Al Viro | ea022dfb | 2012-05-03 10:14:29 -0400 | [diff] [blame] | 1748 | inode->i_op = &ocfs2_symlink_inode_operations; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1749 | if (l > ocfs2_fast_symlink_chars(sb)) { |
Mark Fasheh | dcd0538 | 2007-01-16 11:32:23 -0800 | [diff] [blame] | 1750 | u32 offset = 0; |
| 1751 | |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1752 | status = dquot_alloc_space_nodirty(inode, |
| 1753 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
| 1754 | if (status) |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1755 | goto bail; |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1756 | did_quota = 1; |
Al Viro | ea022dfb | 2012-05-03 10:14:29 -0400 | [diff] [blame] | 1757 | inode->i_mapping->a_ops = &ocfs2_aops; |
Tao Ma | 0eb8d47 | 2008-08-18 17:38:45 +0800 | [diff] [blame] | 1758 | status = ocfs2_add_inode_data(osb, inode, &offset, 1, 0, |
| 1759 | new_fe_bh, |
| 1760 | handle, data_ac, NULL, |
| 1761 | NULL); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1762 | if (status < 0) { |
| 1763 | if (status != -ENOSPC && status != -EINTR) { |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1764 | mlog(ML_ERROR, |
| 1765 | "Failed to extend file to %llu\n", |
| 1766 | (unsigned long long)newsize); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1767 | mlog_errno(status); |
| 1768 | status = -ENOSPC; |
| 1769 | } |
| 1770 | goto bail; |
| 1771 | } |
| 1772 | i_size_write(inode, newsize); |
Mark Fasheh | 8110b07 | 2007-03-22 16:53:23 -0700 | [diff] [blame] | 1773 | inode->i_blocks = ocfs2_inode_sector_count(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1774 | } else { |
Al Viro | ea022dfb | 2012-05-03 10:14:29 -0400 | [diff] [blame] | 1775 | inode->i_mapping->a_ops = &ocfs2_fast_symlink_aops; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1776 | memcpy((char *) fe->id2.i_symlink, symname, l); |
| 1777 | i_size_write(inode, newsize); |
| 1778 | inode->i_blocks = 0; |
| 1779 | } |
| 1780 | |
| 1781 | status = ocfs2_mark_inode_dirty(handle, inode, new_fe_bh); |
| 1782 | if (status < 0) { |
| 1783 | mlog_errno(status); |
| 1784 | goto bail; |
| 1785 | } |
| 1786 | |
| 1787 | if (!ocfs2_inode_is_fast_symlink(inode)) { |
| 1788 | status = ocfs2_create_symlink_data(osb, handle, inode, |
| 1789 | symname); |
| 1790 | if (status < 0) { |
| 1791 | mlog_errno(status); |
| 1792 | goto bail; |
| 1793 | } |
| 1794 | } |
| 1795 | |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1796 | if (si.enable) { |
| 1797 | status = ocfs2_init_security_set(handle, inode, new_fe_bh, &si, |
| 1798 | xattr_ac, data_ac); |
| 1799 | if (status < 0) { |
| 1800 | mlog_errno(status); |
| 1801 | goto bail; |
| 1802 | } |
| 1803 | } |
| 1804 | |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 1805 | /* |
| 1806 | * Do this before adding the entry to the directory. We add |
| 1807 | * also set d_op after success so that ->d_iput() will cleanup |
| 1808 | * the dentry lock even if ocfs2_add_entry() fails below. |
| 1809 | */ |
| 1810 | status = ocfs2_dentry_attach_lock(dentry, inode, OCFS2_I(dir)->ip_blkno); |
| 1811 | if (status) { |
| 1812 | mlog_errno(status); |
| 1813 | goto bail; |
| 1814 | } |
Mark Fasheh | a9743fc | 2010-04-23 11:42:22 -0700 | [diff] [blame] | 1815 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1816 | status = ocfs2_add_entry(handle, dentry, inode, |
| 1817 | le64_to_cpu(fe->i_blkno), parent_fe_bh, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1818 | &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1819 | if (status < 0) { |
| 1820 | mlog_errno(status); |
| 1821 | goto bail; |
| 1822 | } |
| 1823 | |
| 1824 | insert_inode_hash(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1825 | d_instantiate(dentry, inode); |
| 1826 | bail: |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1827 | if (status < 0 && did_quota) |
Christoph Hellwig | 5dd4056 | 2010-03-03 09:05:00 -0500 | [diff] [blame] | 1828 | dquot_free_space_nodirty(inode, |
Jan Kara | a90714c | 2008-10-09 19:38:40 +0200 | [diff] [blame] | 1829 | ocfs2_clusters_to_bytes(osb->sb, 1)); |
| 1830 | if (status < 0 && did_quota_inode) |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 1831 | dquot_free_inode(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1832 | if (handle) |
Mark Fasheh | 02dc1af | 2006-10-09 16:48:10 -0700 | [diff] [blame] | 1833 | ocfs2_commit_trans(osb, handle); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1834 | |
Mark Fasheh | e63aecb6 | 2007-10-18 15:30:42 -0700 | [diff] [blame] | 1835 | ocfs2_inode_unlock(dir, 1); |
Joel Becker | 547ba7c | 2010-05-10 11:56:52 -0700 | [diff] [blame] | 1836 | if (did_block_signals) |
| 1837 | ocfs2_unblock_signals(&oldset); |
Mark Fasheh | 6d8fc40 | 2006-10-06 11:54:33 -0700 | [diff] [blame] | 1838 | |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 1839 | brelse(new_fe_bh); |
| 1840 | brelse(parent_fe_bh); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1841 | kfree(si.name); |
| 1842 | kfree(si.value); |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1843 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1844 | if (inode_ac) |
| 1845 | ocfs2_free_alloc_context(inode_ac); |
| 1846 | if (data_ac) |
| 1847 | ocfs2_free_alloc_context(data_ac); |
Tiger Yang | 534eadd | 2008-11-14 11:16:41 +0800 | [diff] [blame] | 1848 | if (xattr_ac) |
| 1849 | ocfs2_free_alloc_context(xattr_ac); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1850 | if ((status < 0) && inode) { |
Li Dongyang | ab41fdc | 2010-04-22 16:11:25 +0800 | [diff] [blame] | 1851 | OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SKIP_ORPHAN_DIR; |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1852 | clear_nlink(inode); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1853 | iput(inode); |
Tiger Yang | f5d3620 | 2008-11-14 11:15:44 +0800 | [diff] [blame] | 1854 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1855 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1856 | if (status) |
| 1857 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1858 | |
| 1859 | return status; |
| 1860 | } |
| 1861 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1862 | static int ocfs2_blkno_stringify(u64 blkno, char *name) |
| 1863 | { |
| 1864 | int status, namelen; |
| 1865 | |
Mark Fasheh | b0697053 | 2006-03-03 10:24:33 -0800 | [diff] [blame] | 1866 | namelen = snprintf(name, OCFS2_ORPHAN_NAMELEN + 1, "%016llx", |
| 1867 | (long long)blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1868 | if (namelen <= 0) { |
| 1869 | if (namelen) |
| 1870 | status = namelen; |
| 1871 | else |
| 1872 | status = -EINVAL; |
| 1873 | mlog_errno(status); |
| 1874 | goto bail; |
| 1875 | } |
| 1876 | if (namelen != OCFS2_ORPHAN_NAMELEN) { |
| 1877 | status = -EINVAL; |
| 1878 | mlog_errno(status); |
| 1879 | goto bail; |
| 1880 | } |
| 1881 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 1882 | trace_ocfs2_blkno_stringify(blkno, name, namelen); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1883 | |
| 1884 | status = 0; |
| 1885 | bail: |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 1886 | if (status < 0) |
| 1887 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1888 | return status; |
| 1889 | } |
| 1890 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1891 | static int ocfs2_lookup_lock_orphan_dir(struct ocfs2_super *osb, |
| 1892 | struct inode **ret_orphan_dir, |
| 1893 | struct buffer_head **ret_orphan_dir_bh) |
| 1894 | { |
| 1895 | struct inode *orphan_dir_inode; |
| 1896 | struct buffer_head *orphan_dir_bh = NULL; |
| 1897 | int ret = 0; |
| 1898 | |
| 1899 | orphan_dir_inode = ocfs2_get_system_file_inode(osb, |
| 1900 | ORPHAN_DIR_SYSTEM_INODE, |
| 1901 | osb->slot_num); |
| 1902 | if (!orphan_dir_inode) { |
| 1903 | ret = -ENOENT; |
| 1904 | mlog_errno(ret); |
| 1905 | return ret; |
| 1906 | } |
| 1907 | |
| 1908 | mutex_lock(&orphan_dir_inode->i_mutex); |
| 1909 | |
| 1910 | ret = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1); |
| 1911 | if (ret < 0) { |
| 1912 | mutex_unlock(&orphan_dir_inode->i_mutex); |
| 1913 | iput(orphan_dir_inode); |
| 1914 | |
| 1915 | mlog_errno(ret); |
| 1916 | return ret; |
| 1917 | } |
| 1918 | |
| 1919 | *ret_orphan_dir = orphan_dir_inode; |
| 1920 | *ret_orphan_dir_bh = orphan_dir_bh; |
| 1921 | |
| 1922 | return 0; |
| 1923 | } |
| 1924 | |
| 1925 | static int __ocfs2_prepare_orphan_dir(struct inode *orphan_dir_inode, |
| 1926 | struct buffer_head *orphan_dir_bh, |
| 1927 | u64 blkno, |
| 1928 | char *name, |
| 1929 | struct ocfs2_dir_lookup_result *lookup) |
| 1930 | { |
| 1931 | int ret; |
| 1932 | struct ocfs2_super *osb = OCFS2_SB(orphan_dir_inode->i_sb); |
| 1933 | |
| 1934 | ret = ocfs2_blkno_stringify(blkno, name); |
| 1935 | if (ret < 0) { |
| 1936 | mlog_errno(ret); |
| 1937 | return ret; |
| 1938 | } |
| 1939 | |
| 1940 | ret = ocfs2_prepare_dir_for_insert(osb, orphan_dir_inode, |
| 1941 | orphan_dir_bh, name, |
| 1942 | OCFS2_ORPHAN_NAMELEN, lookup); |
| 1943 | if (ret < 0) { |
| 1944 | mlog_errno(ret); |
| 1945 | return ret; |
| 1946 | } |
| 1947 | |
| 1948 | return 0; |
| 1949 | } |
| 1950 | |
| 1951 | /** |
| 1952 | * ocfs2_prepare_orphan_dir() - Prepare an orphan directory for |
| 1953 | * insertion of an orphan. |
| 1954 | * @osb: ocfs2 file system |
| 1955 | * @ret_orphan_dir: Orphan dir inode - returned locked! |
| 1956 | * @blkno: Actual block number of the inode to be inserted into orphan dir. |
| 1957 | * @lookup: dir lookup result, to be passed back into functions like |
| 1958 | * ocfs2_orphan_add |
| 1959 | * |
| 1960 | * Returns zero on success and the ret_orphan_dir, name and lookup |
| 1961 | * fields will be populated. |
| 1962 | * |
| 1963 | * Returns non-zero on failure. |
| 1964 | */ |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1965 | static int ocfs2_prepare_orphan_dir(struct ocfs2_super *osb, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1966 | struct inode **ret_orphan_dir, |
Tao Ma | 19bd341 | 2009-08-18 11:44:10 +0800 | [diff] [blame] | 1967 | u64 blkno, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1968 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 1969 | struct ocfs2_dir_lookup_result *lookup) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1970 | { |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1971 | struct inode *orphan_dir_inode = NULL; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1972 | struct buffer_head *orphan_dir_bh = NULL; |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1973 | int ret = 0; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1974 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1975 | ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir_inode, |
| 1976 | &orphan_dir_bh); |
| 1977 | if (ret < 0) { |
| 1978 | mlog_errno(ret); |
| 1979 | return ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1980 | } |
| 1981 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1982 | ret = __ocfs2_prepare_orphan_dir(orphan_dir_inode, orphan_dir_bh, |
| 1983 | blkno, name, lookup); |
| 1984 | if (ret < 0) { |
| 1985 | mlog_errno(ret); |
| 1986 | goto out; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1987 | } |
| 1988 | |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1989 | *ret_orphan_dir = orphan_dir_inode; |
| 1990 | |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 1991 | out: |
| 1992 | brelse(orphan_dir_bh); |
| 1993 | |
| 1994 | if (ret) { |
| 1995 | ocfs2_inode_unlock(orphan_dir_inode, 1); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1996 | mutex_unlock(&orphan_dir_inode->i_mutex); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1997 | iput(orphan_dir_inode); |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 1998 | } |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 1999 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2000 | if (ret) |
| 2001 | mlog_errno(ret); |
Mark Fasheh | dd43bcd | 2010-08-13 15:15:18 -0700 | [diff] [blame] | 2002 | return ret; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2003 | } |
| 2004 | |
| 2005 | static int ocfs2_orphan_add(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 2006 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2007 | struct inode *inode, |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2008 | struct buffer_head *fe_bh, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2009 | char *name, |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2010 | struct ocfs2_dir_lookup_result *lookup, |
Mark Fasheh | 5098c27 | 2006-10-05 18:12:57 -0700 | [diff] [blame] | 2011 | struct inode *orphan_dir_inode) |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2012 | { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2013 | struct buffer_head *orphan_dir_bh = NULL; |
| 2014 | int status = 0; |
| 2015 | struct ocfs2_dinode *orphan_fe; |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2016 | struct ocfs2_dinode *fe = (struct ocfs2_dinode *) fe_bh->b_data; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2017 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2018 | trace_ocfs2_orphan_add_begin( |
| 2019 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2020 | |
Joel Becker | b657c95 | 2008-11-13 14:49:11 -0800 | [diff] [blame] | 2021 | status = ocfs2_read_inode_block(orphan_dir_inode, &orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2022 | if (status < 0) { |
| 2023 | mlog_errno(status); |
| 2024 | goto leave; |
| 2025 | } |
| 2026 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2027 | status = ocfs2_journal_access_di(handle, |
| 2028 | INODE_CACHE(orphan_dir_inode), |
| 2029 | orphan_dir_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2030 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2031 | if (status < 0) { |
| 2032 | mlog_errno(status); |
| 2033 | goto leave; |
| 2034 | } |
| 2035 | |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2036 | /* |
| 2037 | * We're going to journal the change of i_flags and i_orphaned_slot. |
| 2038 | * It's safe anyway, though some callers may duplicate the journaling. |
| 2039 | * Journaling within the func just make the logic look more |
| 2040 | * straightforward. |
| 2041 | */ |
| 2042 | status = ocfs2_journal_access_di(handle, |
| 2043 | INODE_CACHE(inode), |
| 2044 | fe_bh, |
| 2045 | OCFS2_JOURNAL_ACCESS_WRITE); |
| 2046 | if (status < 0) { |
| 2047 | mlog_errno(status); |
| 2048 | goto leave; |
| 2049 | } |
| 2050 | |
Younger Liu | ea45466 | 2013-07-03 15:00:58 -0700 | [diff] [blame] | 2051 | /* we're a cluster, and nlink can change on disk from |
| 2052 | * underneath us... */ |
| 2053 | orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data; |
| 2054 | if (S_ISDIR(inode->i_mode)) |
| 2055 | ocfs2_add_links_count(orphan_fe, 1); |
| 2056 | set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe)); |
| 2057 | ocfs2_journal_dirty(handle, orphan_dir_bh); |
| 2058 | |
| 2059 | status = __ocfs2_add_entry(handle, orphan_dir_inode, name, |
| 2060 | OCFS2_ORPHAN_NAMELEN, inode, |
| 2061 | OCFS2_I(inode)->ip_blkno, |
| 2062 | orphan_dir_bh, lookup); |
| 2063 | if (status < 0) { |
| 2064 | mlog_errno(status); |
| 2065 | goto rollback; |
| 2066 | } |
| 2067 | |
Joseph Qi | 13eb988 | 2013-07-03 15:00:48 -0700 | [diff] [blame] | 2068 | fe->i_flags |= cpu_to_le32(OCFS2_ORPHANED_FL); |
Li Dongyang | d4cd187 | 2010-04-22 16:11:19 +0800 | [diff] [blame] | 2069 | OCFS2_I(inode)->ip_flags &= ~OCFS2_INODE_SKIP_ORPHAN_DIR; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2070 | |
| 2071 | /* Record which orphan dir our inode now resides |
| 2072 | * in. delete_inode will use this to determine which orphan |
| 2073 | * dir to lock. */ |
Tiger Yang | 5000863 | 2007-03-20 16:01:38 -0700 | [diff] [blame] | 2074 | fe->i_orphaned_slot = cpu_to_le16(osb->slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2075 | |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2076 | ocfs2_journal_dirty(handle, fe_bh); |
| 2077 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2078 | trace_ocfs2_orphan_add_end((unsigned long long)OCFS2_I(inode)->ip_blkno, |
| 2079 | osb->slot_num); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2080 | |
Younger Liu | ea45466 | 2013-07-03 15:00:58 -0700 | [diff] [blame] | 2081 | rollback: |
| 2082 | if (status < 0) { |
| 2083 | if (S_ISDIR(inode->i_mode)) |
| 2084 | ocfs2_add_links_count(orphan_fe, -1); |
| 2085 | set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe)); |
| 2086 | } |
| 2087 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2088 | leave: |
Mark Fasheh | a81cb88 | 2008-10-07 14:25:16 -0700 | [diff] [blame] | 2089 | brelse(orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2090 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2091 | return status; |
| 2092 | } |
| 2093 | |
| 2094 | /* unlike orphan_add, we expect the orphan dir to already be locked here. */ |
| 2095 | int ocfs2_orphan_del(struct ocfs2_super *osb, |
Mark Fasheh | 1fabe14 | 2006-10-09 18:11:45 -0700 | [diff] [blame] | 2096 | handle_t *handle, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2097 | struct inode *orphan_dir_inode, |
| 2098 | struct inode *inode, |
| 2099 | struct buffer_head *orphan_dir_bh) |
| 2100 | { |
| 2101 | char name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 2102 | struct ocfs2_dinode *orphan_fe; |
| 2103 | int status = 0; |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2104 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2105 | |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2106 | status = ocfs2_blkno_stringify(OCFS2_I(inode)->ip_blkno, name); |
| 2107 | if (status < 0) { |
| 2108 | mlog_errno(status); |
| 2109 | goto leave; |
| 2110 | } |
| 2111 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2112 | trace_ocfs2_orphan_del( |
| 2113 | (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno, |
| 2114 | name, OCFS2_ORPHAN_NAMELEN); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2115 | |
| 2116 | /* find it's spot in the orphan directory */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2117 | status = ocfs2_find_entry(name, OCFS2_ORPHAN_NAMELEN, orphan_dir_inode, |
| 2118 | &lookup); |
| 2119 | if (status) { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2120 | mlog_errno(status); |
| 2121 | goto leave; |
| 2122 | } |
| 2123 | |
| 2124 | /* remove it from the orphan directory */ |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2125 | status = ocfs2_delete_entry(handle, orphan_dir_inode, &lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2126 | if (status < 0) { |
| 2127 | mlog_errno(status); |
| 2128 | goto leave; |
| 2129 | } |
| 2130 | |
Joel Becker | 0cf2f76 | 2009-02-12 16:41:25 -0800 | [diff] [blame] | 2131 | status = ocfs2_journal_access_di(handle, |
| 2132 | INODE_CACHE(orphan_dir_inode), |
| 2133 | orphan_dir_bh, |
Joel Becker | 13723d0 | 2008-10-17 19:25:01 -0700 | [diff] [blame] | 2134 | OCFS2_JOURNAL_ACCESS_WRITE); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2135 | if (status < 0) { |
| 2136 | mlog_errno(status); |
| 2137 | goto leave; |
| 2138 | } |
| 2139 | |
| 2140 | /* do the i_nlink dance! :) */ |
| 2141 | orphan_fe = (struct ocfs2_dinode *) orphan_dir_bh->b_data; |
| 2142 | if (S_ISDIR(inode->i_mode)) |
Mark Fasheh | 198a1ca | 2008-11-20 17:54:57 -0800 | [diff] [blame] | 2143 | ocfs2_add_links_count(orphan_fe, -1); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2144 | set_nlink(orphan_dir_inode, ocfs2_read_links_count(orphan_fe)); |
Joel Becker | ec20cec | 2010-03-19 14:13:52 -0700 | [diff] [blame] | 2145 | ocfs2_journal_dirty(handle, orphan_dir_bh); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2146 | |
| 2147 | leave: |
Mark Fasheh | 4a12ca3 | 2008-11-12 15:43:34 -0800 | [diff] [blame] | 2148 | ocfs2_free_dir_lookup_result(&lookup); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2149 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2150 | if (status) |
| 2151 | mlog_errno(status); |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2152 | return status; |
| 2153 | } |
| 2154 | |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2155 | /** |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2156 | * ocfs2_prep_new_orphaned_file() - Prepare the orphan dir to receive a newly |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2157 | * allocated file. This is different from the typical 'add to orphan dir' |
| 2158 | * operation in that the inode does not yet exist. This is a problem because |
| 2159 | * the orphan dir stringifies the inode block number to come up with it's |
| 2160 | * dirent. Obviously if the inode does not yet exist we have a chicken and egg |
| 2161 | * problem. This function works around it by calling deeper into the orphan |
| 2162 | * and suballoc code than other callers. Use this only by necessity. |
| 2163 | * @dir: The directory which this inode will ultimately wind up under - not the |
| 2164 | * orphan dir! |
| 2165 | * @dir_bh: buffer_head the @dir inode block |
| 2166 | * @orphan_name: string of length (CFS2_ORPHAN_NAMELEN + 1). Will be filled |
| 2167 | * with the string to be used for orphan dirent. Pass back to the orphan dir |
| 2168 | * code. |
| 2169 | * @ret_orphan_dir: orphan dir inode returned to be passed back into orphan |
| 2170 | * dir code. |
| 2171 | * @ret_di_blkno: block number where the new inode will be allocated. |
| 2172 | * @orphan_insert: Dir insert context to be passed back into orphan dir code. |
| 2173 | * @ret_inode_ac: Inode alloc context to be passed back to the allocator. |
| 2174 | * |
| 2175 | * Returns zero on success and the ret_orphan_dir, name and lookup |
| 2176 | * fields will be populated. |
| 2177 | * |
| 2178 | * Returns non-zero on failure. |
| 2179 | */ |
| 2180 | static int ocfs2_prep_new_orphaned_file(struct inode *dir, |
| 2181 | struct buffer_head *dir_bh, |
| 2182 | char *orphan_name, |
| 2183 | struct inode **ret_orphan_dir, |
| 2184 | u64 *ret_di_blkno, |
| 2185 | struct ocfs2_dir_lookup_result *orphan_insert, |
| 2186 | struct ocfs2_alloc_context **ret_inode_ac) |
| 2187 | { |
| 2188 | int ret; |
| 2189 | u64 di_blkno; |
| 2190 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2191 | struct inode *orphan_dir = NULL; |
| 2192 | struct buffer_head *orphan_dir_bh = NULL; |
| 2193 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 2194 | |
| 2195 | ret = ocfs2_lookup_lock_orphan_dir(osb, &orphan_dir, &orphan_dir_bh); |
| 2196 | if (ret < 0) { |
| 2197 | mlog_errno(ret); |
| 2198 | return ret; |
| 2199 | } |
| 2200 | |
| 2201 | /* reserve an inode spot */ |
| 2202 | ret = ocfs2_reserve_new_inode(osb, &inode_ac); |
| 2203 | if (ret < 0) { |
| 2204 | if (ret != -ENOSPC) |
| 2205 | mlog_errno(ret); |
| 2206 | goto out; |
| 2207 | } |
| 2208 | |
| 2209 | ret = ocfs2_find_new_inode_loc(dir, dir_bh, inode_ac, |
| 2210 | &di_blkno); |
| 2211 | if (ret) { |
| 2212 | mlog_errno(ret); |
| 2213 | goto out; |
| 2214 | } |
| 2215 | |
| 2216 | ret = __ocfs2_prepare_orphan_dir(orphan_dir, orphan_dir_bh, |
| 2217 | di_blkno, orphan_name, orphan_insert); |
| 2218 | if (ret < 0) { |
| 2219 | mlog_errno(ret); |
| 2220 | goto out; |
| 2221 | } |
| 2222 | |
| 2223 | out: |
| 2224 | if (ret == 0) { |
| 2225 | *ret_orphan_dir = orphan_dir; |
| 2226 | *ret_di_blkno = di_blkno; |
| 2227 | *ret_inode_ac = inode_ac; |
| 2228 | /* |
| 2229 | * orphan_name and orphan_insert are already up to |
| 2230 | * date via prepare_orphan_dir |
| 2231 | */ |
| 2232 | } else { |
| 2233 | /* Unroll reserve_new_inode* */ |
| 2234 | if (inode_ac) |
| 2235 | ocfs2_free_alloc_context(inode_ac); |
| 2236 | |
| 2237 | /* Unroll orphan dir locking */ |
| 2238 | mutex_unlock(&orphan_dir->i_mutex); |
| 2239 | ocfs2_inode_unlock(orphan_dir, 1); |
| 2240 | iput(orphan_dir); |
| 2241 | } |
| 2242 | |
| 2243 | brelse(orphan_dir_bh); |
| 2244 | |
Xiaowei.Hu | 7869e59 | 2013-06-12 14:04:41 -0700 | [diff] [blame] | 2245 | return ret; |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2246 | } |
| 2247 | |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2248 | int ocfs2_create_inode_in_orphan(struct inode *dir, |
| 2249 | int mode, |
| 2250 | struct inode **new_inode) |
| 2251 | { |
| 2252 | int status, did_quota_inode = 0; |
| 2253 | struct inode *inode = NULL; |
| 2254 | struct inode *orphan_dir = NULL; |
| 2255 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2256 | struct ocfs2_dinode *di = NULL; |
| 2257 | handle_t *handle = NULL; |
| 2258 | char orphan_name[OCFS2_ORPHAN_NAMELEN + 1]; |
| 2259 | struct buffer_head *parent_di_bh = NULL; |
| 2260 | struct buffer_head *new_di_bh = NULL; |
| 2261 | struct ocfs2_alloc_context *inode_ac = NULL; |
| 2262 | struct ocfs2_dir_lookup_result orphan_insert = { NULL, }; |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2263 | u64 uninitialized_var(di_blkno), suballoc_loc; |
| 2264 | u16 suballoc_bit; |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2265 | |
| 2266 | status = ocfs2_inode_lock(dir, &parent_di_bh, 1); |
| 2267 | if (status < 0) { |
| 2268 | if (status != -ENOENT) |
| 2269 | mlog_errno(status); |
| 2270 | return status; |
| 2271 | } |
| 2272 | |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2273 | status = ocfs2_prep_new_orphaned_file(dir, parent_di_bh, |
| 2274 | orphan_name, &orphan_dir, |
| 2275 | &di_blkno, &orphan_insert, &inode_ac); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2276 | if (status < 0) { |
| 2277 | if (status != -ENOSPC) |
| 2278 | mlog_errno(status); |
| 2279 | goto leave; |
| 2280 | } |
| 2281 | |
| 2282 | inode = ocfs2_get_init_inode(dir, mode); |
| 2283 | if (!inode) { |
| 2284 | status = -ENOMEM; |
| 2285 | mlog_errno(status); |
| 2286 | goto leave; |
| 2287 | } |
| 2288 | |
| 2289 | handle = ocfs2_start_trans(osb, ocfs2_mknod_credits(osb->sb, 0, 0)); |
| 2290 | if (IS_ERR(handle)) { |
| 2291 | status = PTR_ERR(handle); |
| 2292 | handle = NULL; |
| 2293 | mlog_errno(status); |
| 2294 | goto leave; |
| 2295 | } |
| 2296 | |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 2297 | status = dquot_alloc_inode(inode); |
| 2298 | if (status) |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2299 | goto leave; |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2300 | did_quota_inode = 1; |
| 2301 | |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2302 | status = ocfs2_claim_new_inode_at_loc(handle, dir, inode_ac, |
| 2303 | &suballoc_loc, |
| 2304 | &suballoc_bit, di_blkno); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2305 | if (status < 0) { |
| 2306 | mlog_errno(status); |
| 2307 | goto leave; |
| 2308 | } |
| 2309 | |
Miklos Szeredi | 6d6b77f | 2011-10-28 14:13:28 +0200 | [diff] [blame] | 2310 | clear_nlink(inode); |
Mark Fasheh | 97b8f4a | 2010-08-13 15:15:19 -0700 | [diff] [blame] | 2311 | /* do the real work now. */ |
| 2312 | status = __ocfs2_mknod_locked(dir, inode, |
| 2313 | 0, &new_di_bh, parent_di_bh, handle, |
| 2314 | inode_ac, di_blkno, suballoc_loc, |
| 2315 | suballoc_bit); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2316 | if (status < 0) { |
| 2317 | mlog_errno(status); |
| 2318 | goto leave; |
| 2319 | } |
| 2320 | |
| 2321 | di = (struct ocfs2_dinode *)new_di_bh->b_data; |
Tristan Ye | 3939fda | 2010-03-19 09:21:09 +0800 | [diff] [blame] | 2322 | status = ocfs2_orphan_add(osb, handle, inode, new_di_bh, orphan_name, |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2323 | &orphan_insert, orphan_dir); |
| 2324 | if (status < 0) { |
| 2325 | mlog_errno(status); |
| 2326 | goto leave; |
| 2327 | } |
| 2328 | |
| 2329 | /* get open lock so that only nodes can't remove it from orphan dir. */ |
| 2330 | status = ocfs2_open_lock(inode); |
| 2331 | if (status < 0) |
| 2332 | mlog_errno(status); |
| 2333 | |
Tao Ma | c7d260a | 2009-12-18 10:24:54 +0800 | [diff] [blame] | 2334 | insert_inode_hash(inode); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2335 | leave: |
| 2336 | if (status < 0 && did_quota_inode) |
Christoph Hellwig | 63936dd | 2010-03-03 09:05:01 -0500 | [diff] [blame] | 2337 | dquot_free_inode(inode); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2338 | if (handle) |
| 2339 | ocfs2_commit_trans(osb, handle); |
| 2340 | |
| 2341 | if (orphan_dir) { |
| 2342 | /* This was locked for us in ocfs2_prepare_orphan_dir() */ |
| 2343 | ocfs2_inode_unlock(orphan_dir, 1); |
| 2344 | mutex_unlock(&orphan_dir->i_mutex); |
| 2345 | iput(orphan_dir); |
| 2346 | } |
| 2347 | |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2348 | if ((status < 0) && inode) { |
| 2349 | clear_nlink(inode); |
| 2350 | iput(inode); |
| 2351 | } |
| 2352 | |
| 2353 | if (inode_ac) |
| 2354 | ocfs2_free_alloc_context(inode_ac); |
| 2355 | |
| 2356 | brelse(new_di_bh); |
| 2357 | |
| 2358 | if (!status) |
| 2359 | *new_inode = inode; |
| 2360 | |
| 2361 | ocfs2_free_dir_lookup_result(&orphan_insert); |
| 2362 | |
| 2363 | ocfs2_inode_unlock(dir, 1); |
| 2364 | brelse(parent_di_bh); |
| 2365 | return status; |
| 2366 | } |
| 2367 | |
| 2368 | int ocfs2_mv_orphaned_inode_to_new(struct inode *dir, |
| 2369 | struct inode *inode, |
| 2370 | struct dentry *dentry) |
| 2371 | { |
| 2372 | int status = 0; |
| 2373 | struct buffer_head *parent_di_bh = NULL; |
| 2374 | handle_t *handle = NULL; |
| 2375 | struct ocfs2_super *osb = OCFS2_SB(dir->i_sb); |
| 2376 | struct ocfs2_dinode *dir_di, *di; |
| 2377 | struct inode *orphan_dir_inode = NULL; |
| 2378 | struct buffer_head *orphan_dir_bh = NULL; |
| 2379 | struct buffer_head *di_bh = NULL; |
| 2380 | struct ocfs2_dir_lookup_result lookup = { NULL, }; |
| 2381 | |
Tao Ma | 8990e44 | 2011-02-23 22:45:26 +0800 | [diff] [blame] | 2382 | trace_ocfs2_mv_orphaned_inode_to_new(dir, dentry, |
| 2383 | dentry->d_name.len, dentry->d_name.name, |
| 2384 | (unsigned long long)OCFS2_I(dir)->ip_blkno, |
| 2385 | (unsigned long long)OCFS2_I(inode)->ip_blkno); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2386 | |
| 2387 | status = ocfs2_inode_lock(dir, &parent_di_bh, 1); |
| 2388 | if (status < 0) { |
| 2389 | if (status != -ENOENT) |
| 2390 | mlog_errno(status); |
| 2391 | return status; |
| 2392 | } |
| 2393 | |
| 2394 | dir_di = (struct ocfs2_dinode *) parent_di_bh->b_data; |
| 2395 | if (!dir_di->i_links_count) { |
| 2396 | /* can't make a file in a deleted directory. */ |
| 2397 | status = -ENOENT; |
| 2398 | goto leave; |
| 2399 | } |
| 2400 | |
| 2401 | status = ocfs2_check_dir_for_entry(dir, dentry->d_name.name, |
| 2402 | dentry->d_name.len); |
| 2403 | if (status) |
| 2404 | goto leave; |
| 2405 | |
| 2406 | /* get a spot inside the dir. */ |
| 2407 | status = ocfs2_prepare_dir_for_insert(osb, dir, parent_di_bh, |
| 2408 | dentry->d_name.name, |
| 2409 | dentry->d_name.len, &lookup); |
| 2410 | if (status < 0) { |
| 2411 | mlog_errno(status); |
| 2412 | goto leave; |
| 2413 | } |
| 2414 | |
| 2415 | orphan_dir_inode = ocfs2_get_system_file_inode(osb, |
| 2416 | ORPHAN_DIR_SYSTEM_INODE, |
| 2417 | osb->slot_num); |
| 2418 | if (!orphan_dir_inode) { |
| 2419 | status = -EEXIST; |
| 2420 | mlog_errno(status); |
| 2421 | goto leave; |
| 2422 | } |
| 2423 | |
| 2424 | mutex_lock(&orphan_dir_inode->i_mutex); |
| 2425 | |
| 2426 | status = ocfs2_inode_lock(orphan_dir_inode, &orphan_dir_bh, 1); |
| 2427 | if (status < 0) { |
| 2428 | mlog_errno(status); |
| 2429 | mutex_unlock(&orphan_dir_inode->i_mutex); |
| 2430 | iput(orphan_dir_inode); |
| 2431 | goto leave; |
| 2432 | } |
| 2433 | |
| 2434 | status = ocfs2_read_inode_block(inode, &di_bh); |
| 2435 | if (status < 0) { |
| 2436 | mlog_errno(status); |
| 2437 | goto orphan_unlock; |
| 2438 | } |
| 2439 | |
| 2440 | handle = ocfs2_start_trans(osb, ocfs2_rename_credits(osb->sb)); |
| 2441 | if (IS_ERR(handle)) { |
| 2442 | status = PTR_ERR(handle); |
| 2443 | handle = NULL; |
| 2444 | mlog_errno(status); |
| 2445 | goto orphan_unlock; |
| 2446 | } |
| 2447 | |
| 2448 | status = ocfs2_journal_access_di(handle, INODE_CACHE(inode), |
| 2449 | di_bh, OCFS2_JOURNAL_ACCESS_WRITE); |
| 2450 | if (status < 0) { |
| 2451 | mlog_errno(status); |
| 2452 | goto out_commit; |
| 2453 | } |
| 2454 | |
| 2455 | status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode, |
| 2456 | orphan_dir_bh); |
| 2457 | if (status < 0) { |
| 2458 | mlog_errno(status); |
| 2459 | goto out_commit; |
| 2460 | } |
| 2461 | |
| 2462 | di = (struct ocfs2_dinode *)di_bh->b_data; |
Joseph Qi | 13eb988 | 2013-07-03 15:00:48 -0700 | [diff] [blame] | 2463 | di->i_flags &= ~cpu_to_le32(OCFS2_ORPHANED_FL); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2464 | di->i_orphaned_slot = 0; |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 2465 | set_nlink(inode, 1); |
Tao Ma | 10cf1a0 | 2009-12-18 10:24:55 +0800 | [diff] [blame] | 2466 | ocfs2_set_links_count(di, inode->i_nlink); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2467 | ocfs2_journal_dirty(handle, di_bh); |
| 2468 | |
| 2469 | status = ocfs2_add_entry(handle, dentry, inode, |
| 2470 | OCFS2_I(inode)->ip_blkno, parent_di_bh, |
| 2471 | &lookup); |
| 2472 | if (status < 0) { |
| 2473 | mlog_errno(status); |
| 2474 | goto out_commit; |
| 2475 | } |
| 2476 | |
| 2477 | status = ocfs2_dentry_attach_lock(dentry, inode, |
| 2478 | OCFS2_I(dir)->ip_blkno); |
| 2479 | if (status) { |
| 2480 | mlog_errno(status); |
| 2481 | goto out_commit; |
| 2482 | } |
| 2483 | |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2484 | d_instantiate(dentry, inode); |
| 2485 | status = 0; |
| 2486 | out_commit: |
| 2487 | ocfs2_commit_trans(osb, handle); |
| 2488 | orphan_unlock: |
| 2489 | ocfs2_inode_unlock(orphan_dir_inode, 1); |
| 2490 | mutex_unlock(&orphan_dir_inode->i_mutex); |
| 2491 | iput(orphan_dir_inode); |
| 2492 | leave: |
| 2493 | |
| 2494 | ocfs2_inode_unlock(dir, 1); |
| 2495 | |
| 2496 | brelse(di_bh); |
| 2497 | brelse(parent_di_bh); |
| 2498 | brelse(orphan_dir_bh); |
| 2499 | |
| 2500 | ocfs2_free_dir_lookup_result(&lookup); |
| 2501 | |
Tao Ma | c1e8d35 | 2011-03-07 16:43:21 +0800 | [diff] [blame] | 2502 | if (status) |
| 2503 | mlog_errno(status); |
Tao Ma | bc13d34 | 2009-08-18 11:44:14 +0800 | [diff] [blame] | 2504 | |
| 2505 | return status; |
| 2506 | } |
| 2507 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 2508 | const struct inode_operations ocfs2_dir_iops = { |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2509 | .create = ocfs2_create, |
| 2510 | .lookup = ocfs2_lookup, |
| 2511 | .link = ocfs2_link, |
| 2512 | .unlink = ocfs2_unlink, |
| 2513 | .rmdir = ocfs2_unlink, |
| 2514 | .symlink = ocfs2_symlink, |
| 2515 | .mkdir = ocfs2_mkdir, |
| 2516 | .mknod = ocfs2_mknod, |
| 2517 | .rename = ocfs2_rename, |
| 2518 | .setattr = ocfs2_setattr, |
| 2519 | .getattr = ocfs2_getattr, |
Tiger Yang | d38eb8d | 2006-11-27 09:59:21 +0800 | [diff] [blame] | 2520 | .permission = ocfs2_permission, |
Tiger Yang | cf1d6c7 | 2008-08-18 17:11:00 +0800 | [diff] [blame] | 2521 | .setxattr = generic_setxattr, |
| 2522 | .getxattr = generic_getxattr, |
| 2523 | .listxattr = ocfs2_listxattr, |
| 2524 | .removexattr = generic_removexattr, |
Tristan Ye | 55f4946 | 2009-12-17 18:42:16 +0800 | [diff] [blame] | 2525 | .fiemap = ocfs2_fiemap, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 2526 | .get_acl = ocfs2_iop_get_acl, |
Christoph Hellwig | 702e5bc | 2013-12-20 05:16:48 -0800 | [diff] [blame] | 2527 | .set_acl = ocfs2_iop_set_acl, |
Mark Fasheh | ccd979b | 2005-12-15 14:31:24 -0800 | [diff] [blame] | 2528 | }; |