Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
David Woodhouse | c00c310 | 2007-04-25 14:16:47 +0100 | [diff] [blame] | 4 | * Copyright © 2001-2007 Red Hat, Inc. |
David Woodhouse | 6088c05 | 2010-08-08 14:15:22 +0100 | [diff] [blame] | 5 | * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * |
| 7 | * Created by David Woodhouse <dwmw2@infradead.org> |
| 8 | * |
| 9 | * For licensing information, see the file 'LICENCE' in this directory. |
| 10 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
Joe Perches | 5a52895 | 2012-02-15 15:56:45 -0800 | [diff] [blame] | 13 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/kernel.h> |
| 16 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/fs.h> |
| 18 | #include <linux/crc32.h> |
| 19 | #include <linux/jffs2.h> |
David Woodhouse | cbb9a56 | 2006-05-03 13:07:27 +0100 | [diff] [blame] | 20 | #include "jffs2_fs_i.h" |
| 21 | #include "jffs2_fs_sb.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/time.h> |
| 23 | #include "nodelist.h" |
| 24 | |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 25 | static int jffs2_readdir (struct file *, struct dir_context *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 27 | static int jffs2_create (struct inode *,struct dentry *,umode_t, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 28 | bool); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | static struct dentry *jffs2_lookup (struct inode *,struct dentry *, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 30 | unsigned int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | static int jffs2_link (struct dentry *,struct inode *,struct dentry *); |
| 32 | static int jffs2_unlink (struct inode *,struct dentry *); |
| 33 | static int jffs2_symlink (struct inode *,struct dentry *,const char *); |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 34 | static int jffs2_mkdir (struct inode *,struct dentry *,umode_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | static int jffs2_rmdir (struct inode *,struct dentry *); |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 36 | static int jffs2_mknod (struct inode *,struct dentry *,umode_t,dev_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | static int jffs2_rename (struct inode *, struct dentry *, |
David Woodhouse | ef53cb0 | 2007-07-10 10:01:22 +0100 | [diff] [blame] | 38 | struct inode *, struct dentry *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 40 | const struct file_operations jffs2_dir_operations = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { |
| 42 | .read = generic_read_dir, |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 43 | .iterate = jffs2_readdir, |
Stoyan Gaydarov | 0533400 | 2008-07-07 07:45:59 -0500 | [diff] [blame] | 44 | .unlocked_ioctl=jffs2_ioctl, |
Christoph Hellwig | 3222a3e | 2008-09-03 21:53:01 +0200 | [diff] [blame] | 45 | .fsync = jffs2_fsync, |
| 46 | .llseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 50 | const struct inode_operations jffs2_dir_inode_operations = |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | { |
David Woodhouse | 265489f | 2005-07-06 13:13:13 +0100 | [diff] [blame] | 52 | .create = jffs2_create, |
| 53 | .lookup = jffs2_lookup, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | .link = jffs2_link, |
| 55 | .unlink = jffs2_unlink, |
| 56 | .symlink = jffs2_symlink, |
| 57 | .mkdir = jffs2_mkdir, |
| 58 | .rmdir = jffs2_rmdir, |
| 59 | .mknod = jffs2_mknod, |
| 60 | .rename = jffs2_rename, |
Christoph Hellwig | 4e34e71 | 2011-07-23 17:37:31 +0200 | [diff] [blame] | 61 | .get_acl = jffs2_get_acl, |
Christoph Hellwig | f2963d4 | 2013-12-20 05:16:47 -0800 | [diff] [blame] | 62 | .set_acl = jffs2_set_acl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | .setattr = jffs2_setattr, |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 64 | .setxattr = jffs2_setxattr, |
| 65 | .getxattr = jffs2_getxattr, |
| 66 | .listxattr = jffs2_listxattr, |
| 67 | .removexattr = jffs2_removexattr |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | /***********************************************************************/ |
| 71 | |
| 72 | |
| 73 | /* We keep the dirent list sorted in increasing order of name hash, |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 74 | and we use the same hash function as the dentries. Makes this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | nice and simple |
| 76 | */ |
| 77 | static struct dentry *jffs2_lookup(struct inode *dir_i, struct dentry *target, |
Al Viro | 00cd8dd | 2012-06-10 17:13:09 -0400 | [diff] [blame] | 78 | unsigned int flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
| 80 | struct jffs2_inode_info *dir_f; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | struct jffs2_full_dirent *fd = NULL, *fd_list; |
| 82 | uint32_t ino = 0; |
| 83 | struct inode *inode = NULL; |
| 84 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 85 | jffs2_dbg(1, "jffs2_lookup()\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Richard Purdie | 373d5e7 | 2006-04-18 02:05:46 +0100 | [diff] [blame] | 87 | if (target->d_name.len > JFFS2_MAX_NAME_LEN) |
| 88 | return ERR_PTR(-ENAMETOOLONG); |
| 89 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | dir_f = JFFS2_INODE_INFO(dir_i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 92 | mutex_lock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | |
| 94 | /* NB: The 2.2 backport will need to explicitly check for '.' and '..' here */ |
| 95 | for (fd_list = dir_f->dents; fd_list && fd_list->nhash <= target->d_name.hash; fd_list = fd_list->next) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 96 | if (fd_list->nhash == target->d_name.hash && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | (!fd || fd_list->version > fd->version) && |
| 98 | strlen(fd_list->name) == target->d_name.len && |
| 99 | !strncmp(fd_list->name, target->d_name.name, target->d_name.len)) { |
| 100 | fd = fd_list; |
| 101 | } |
| 102 | } |
| 103 | if (fd) |
| 104 | ino = fd->ino; |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 105 | mutex_unlock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | if (ino) { |
David Howells | 5451f79 | 2008-02-07 00:15:42 -0800 | [diff] [blame] | 107 | inode = jffs2_iget(dir_i->i_sb, ino); |
Al Viro | a904937 | 2011-07-08 21:20:11 -0400 | [diff] [blame] | 108 | if (IS_ERR(inode)) |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame] | 109 | pr_warn("iget() failed for ino #%u\n", ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
David Woodhouse | 8966c5e | 2008-08-18 15:36:47 +0100 | [diff] [blame] | 112 | return d_splice_alias(inode, target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
| 115 | /***********************************************************************/ |
| 116 | |
| 117 | |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 118 | static int jffs2_readdir(struct file *file, struct dir_context *ctx) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | { |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 120 | struct inode *inode = file_inode(file); |
| 121 | struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | struct jffs2_full_dirent *fd; |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 123 | unsigned long curofs = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 125 | jffs2_dbg(1, "jffs2_readdir() for dir_i #%lu\n", inode->i_ino); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 127 | if (!dir_emit_dots(file, ctx)) |
| 128 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 130 | mutex_lock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | for (fd = f->dents; fd; fd = fd->next) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | curofs++; |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 133 | /* First loop: curofs = 2; pos = 2 */ |
| 134 | if (curofs < ctx->pos) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 135 | jffs2_dbg(2, "Skipping dirent: \"%s\", ino #%u, type %d, because curofs %ld < offset %ld\n", |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 136 | fd->name, fd->ino, fd->type, curofs, (unsigned long)ctx->pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | continue; |
| 138 | } |
| 139 | if (!fd->ino) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 140 | jffs2_dbg(2, "Skipping deletion dirent \"%s\"\n", |
| 141 | fd->name); |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 142 | ctx->pos++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | continue; |
| 144 | } |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 145 | jffs2_dbg(2, "Dirent %ld: \"%s\", ino #%u, type %d\n", |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 146 | (unsigned long)ctx->pos, fd->name, fd->ino, fd->type); |
| 147 | if (!dir_emit(ctx, fd->name, strlen(fd->name), fd->ino, fd->type)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | break; |
Al Viro | 0312fa7 | 2013-05-17 18:08:49 -0400 | [diff] [blame] | 149 | ctx->pos++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 151 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | return 0; |
| 153 | } |
| 154 | |
| 155 | /***********************************************************************/ |
| 156 | |
| 157 | |
Al Viro | 4acdaf2 | 2011-07-26 01:42:34 -0400 | [diff] [blame] | 158 | static int jffs2_create(struct inode *dir_i, struct dentry *dentry, |
Al Viro | ebfc3b4 | 2012-06-10 18:05:36 -0400 | [diff] [blame] | 159 | umode_t mode, bool excl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | { |
| 161 | struct jffs2_raw_inode *ri; |
| 162 | struct jffs2_inode_info *f, *dir_f; |
| 163 | struct jffs2_sb_info *c; |
| 164 | struct inode *inode; |
| 165 | int ret; |
| 166 | |
| 167 | ri = jffs2_alloc_raw_inode(); |
| 168 | if (!ri) |
| 169 | return -ENOMEM; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | c = JFFS2_SB_INFO(dir_i->i_sb); |
| 172 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 173 | jffs2_dbg(1, "%s()\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 175 | inode = jffs2_new_inode(dir_i, mode, ri); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | |
| 177 | if (IS_ERR(inode)) { |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 178 | jffs2_dbg(1, "jffs2_new_inode() failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | jffs2_free_raw_inode(ri); |
| 180 | return PTR_ERR(inode); |
| 181 | } |
| 182 | |
| 183 | inode->i_op = &jffs2_file_inode_operations; |
| 184 | inode->i_fop = &jffs2_file_operations; |
| 185 | inode->i_mapping->a_ops = &jffs2_file_address_operations; |
| 186 | inode->i_mapping->nrpages = 0; |
| 187 | |
| 188 | f = JFFS2_INODE_INFO(inode); |
| 189 | dir_f = JFFS2_INODE_INFO(dir_i); |
| 190 | |
David Woodhouse | 590fe34 | 2008-05-01 15:53:28 +0100 | [diff] [blame] | 191 | /* jffs2_do_create() will want to lock it, _after_ reserving |
| 192 | space and taking c-alloc_sem. If we keep it locked here, |
| 193 | lockdep gets unhappy (although it's a false positive; |
| 194 | nothing else will be looking at this inode yet so there's |
| 195 | no chance of AB-BA deadlock involving its f->sem). */ |
| 196 | mutex_unlock(&f->sem); |
| 197 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 198 | ret = jffs2_do_create(c, dir_f, f, ri, &dentry->d_name); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 199 | if (ret) |
| 200 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(ri->ctime)); |
| 203 | |
| 204 | jffs2_free_raw_inode(ri); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 206 | jffs2_dbg(1, "%s(): Created ino #%lu with mode %o, nlink %d(%d). nrpages %ld\n", |
| 207 | __func__, inode->i_ino, inode->i_mode, inode->i_nlink, |
| 208 | f->inocache->pino_nlink, inode->i_mapping->nrpages); |
David Woodhouse | e72e649 | 2010-06-03 08:09:12 +0100 | [diff] [blame] | 209 | |
David Woodhouse | e72e649 | 2010-06-03 08:09:12 +0100 | [diff] [blame] | 210 | unlock_new_inode(inode); |
Al Viro | 8fc37ec | 2012-07-19 09:18:15 +0400 | [diff] [blame] | 211 | d_instantiate(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | return 0; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 213 | |
| 214 | fail: |
Al Viro | 41cce64 | 2010-06-08 13:24:56 -0400 | [diff] [blame] | 215 | iget_failed(inode); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 216 | jffs2_free_raw_inode(ri); |
| 217 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /***********************************************************************/ |
| 221 | |
| 222 | |
| 223 | static int jffs2_unlink(struct inode *dir_i, struct dentry *dentry) |
| 224 | { |
| 225 | struct jffs2_sb_info *c = JFFS2_SB_INFO(dir_i->i_sb); |
| 226 | struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i); |
| 227 | struct jffs2_inode_info *dead_f = JFFS2_INODE_INFO(dentry->d_inode); |
| 228 | int ret; |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 229 | uint32_t now = get_seconds(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 231 | ret = jffs2_do_unlink(c, dir_f, dentry->d_name.name, |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 232 | dentry->d_name.len, dead_f, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | if (dead_f->inocache) |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 234 | set_nlink(dentry->d_inode, dead_f->inocache->pino_nlink); |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 235 | if (!ret) |
| 236 | dir_i->i_mtime = dir_i->i_ctime = ITIME(now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | return ret; |
| 238 | } |
| 239 | /***********************************************************************/ |
| 240 | |
| 241 | |
| 242 | static int jffs2_link (struct dentry *old_dentry, struct inode *dir_i, struct dentry *dentry) |
| 243 | { |
| 244 | struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dentry->d_inode->i_sb); |
| 245 | struct jffs2_inode_info *f = JFFS2_INODE_INFO(old_dentry->d_inode); |
| 246 | struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i); |
| 247 | int ret; |
| 248 | uint8_t type; |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 249 | uint32_t now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | |
| 251 | /* Don't let people make hard links to bad inodes. */ |
| 252 | if (!f->inocache) |
| 253 | return -EIO; |
| 254 | |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 255 | if (d_is_dir(old_dentry)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | return -EPERM; |
| 257 | |
| 258 | /* XXX: This is ugly */ |
| 259 | type = (old_dentry->d_inode->i_mode & S_IFMT) >> 12; |
| 260 | if (!type) type = DT_REG; |
| 261 | |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 262 | now = get_seconds(); |
| 263 | ret = jffs2_do_link(c, dir_f, f->inocache->ino, type, dentry->d_name.name, dentry->d_name.len, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | if (!ret) { |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 266 | mutex_lock(&f->sem); |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 267 | set_nlink(old_dentry->d_inode, ++f->inocache->pino_nlink); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 268 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | d_instantiate(dentry, old_dentry->d_inode); |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 270 | dir_i->i_mtime = dir_i->i_ctime = ITIME(now); |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 271 | ihold(old_dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | } |
| 273 | return ret; |
| 274 | } |
| 275 | |
| 276 | /***********************************************************************/ |
| 277 | |
| 278 | static int jffs2_symlink (struct inode *dir_i, struct dentry *dentry, const char *target) |
| 279 | { |
| 280 | struct jffs2_inode_info *f, *dir_f; |
| 281 | struct jffs2_sb_info *c; |
| 282 | struct inode *inode; |
| 283 | struct jffs2_raw_inode *ri; |
| 284 | struct jffs2_raw_dirent *rd; |
| 285 | struct jffs2_full_dnode *fn; |
| 286 | struct jffs2_full_dirent *fd; |
| 287 | int namelen; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 288 | uint32_t alloclen; |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 289 | int ret, targetlen = strlen(target); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
| 291 | /* FIXME: If you care. We'd need to use frags for the target |
| 292 | if it grows much more than this */ |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 293 | if (targetlen > 254) |
Adrian Hunter | bde86fe | 2008-08-14 11:57:45 +0300 | [diff] [blame] | 294 | return -ENAMETOOLONG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
| 296 | ri = jffs2_alloc_raw_inode(); |
| 297 | |
| 298 | if (!ri) |
| 299 | return -ENOMEM; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 300 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | c = JFFS2_SB_INFO(dir_i->i_sb); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 302 | |
| 303 | /* Try to reserve enough space for both node and dirent. |
| 304 | * Just the node will do for now, though |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | */ |
| 306 | namelen = dentry->d_name.len; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 307 | ret = jffs2_reserve_space(c, sizeof(*ri) + targetlen, &alloclen, |
| 308 | ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | |
| 310 | if (ret) { |
| 311 | jffs2_free_raw_inode(ri); |
| 312 | return ret; |
| 313 | } |
| 314 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 315 | inode = jffs2_new_inode(dir_i, S_IFLNK | S_IRWXUGO, ri); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | |
| 317 | if (IS_ERR(inode)) { |
| 318 | jffs2_free_raw_inode(ri); |
| 319 | jffs2_complete_reservation(c); |
| 320 | return PTR_ERR(inode); |
| 321 | } |
| 322 | |
| 323 | inode->i_op = &jffs2_symlink_inode_operations; |
| 324 | |
| 325 | f = JFFS2_INODE_INFO(inode); |
| 326 | |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 327 | inode->i_size = targetlen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | ri->isize = ri->dsize = ri->csize = cpu_to_je32(inode->i_size); |
| 329 | ri->totlen = cpu_to_je32(sizeof(*ri) + inode->i_size); |
| 330 | ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4)); |
| 331 | |
| 332 | ri->compr = JFFS2_COMPR_NONE; |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 333 | ri->data_crc = cpu_to_je32(crc32(0, target, targetlen)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8)); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 335 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 336 | fn = jffs2_write_dnode(c, f, ri, target, targetlen, ALLOC_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
| 338 | jffs2_free_raw_inode(ri); |
| 339 | |
| 340 | if (IS_ERR(fn)) { |
| 341 | /* Eeek. Wave bye bye */ |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 342 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 344 | ret = PTR_ERR(fn); |
| 345 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 347 | |
Artem B. Bityutskiy | 2b79adc | 2005-07-17 12:13:51 +0100 | [diff] [blame] | 348 | /* We use f->target field to store the target path. */ |
Julia Lawall | 04aadf3 | 2010-10-17 21:56:15 +0200 | [diff] [blame] | 349 | f->target = kmemdup(target, targetlen + 1, GFP_KERNEL); |
Artem B. Bityutskiy | 2b79adc | 2005-07-17 12:13:51 +0100 | [diff] [blame] | 350 | if (!f->target) { |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame] | 351 | pr_warn("Can't allocate %d bytes of memory\n", targetlen + 1); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 352 | mutex_unlock(&f->sem); |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 353 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 354 | ret = -ENOMEM; |
| 355 | goto fail; |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 356 | } |
| 357 | |
Joe Perches | 9c261b3 | 2012-02-15 15:56:43 -0800 | [diff] [blame] | 358 | jffs2_dbg(1, "%s(): symlink's target '%s' cached\n", |
| 359 | __func__, (char *)f->target); |
Artem B. Bityuckiy | 32f1a95 | 2005-03-01 10:50:52 +0000 | [diff] [blame] | 360 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 361 | /* No data here. Only a metadata node, which will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | obsoleted by the first data write |
| 363 | */ |
| 364 | f->metadata = fn; |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 365 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | |
| 367 | jffs2_complete_reservation(c); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 368 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 369 | ret = jffs2_init_security(inode, dir_i, &dentry->d_name); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 370 | if (ret) |
| 371 | goto fail; |
| 372 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 373 | ret = jffs2_init_acl_post(inode); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 374 | if (ret) |
| 375 | goto fail; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 376 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 377 | ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen, |
| 378 | ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen)); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 379 | if (ret) |
| 380 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | |
| 382 | rd = jffs2_alloc_raw_dirent(); |
| 383 | if (!rd) { |
| 384 | /* Argh. Now we treat it like a normal delete */ |
| 385 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 386 | ret = -ENOMEM; |
| 387 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | } |
| 389 | |
| 390 | dir_f = JFFS2_INODE_INFO(dir_i); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 391 | mutex_lock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | |
| 393 | rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK); |
| 394 | rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT); |
| 395 | rd->totlen = cpu_to_je32(sizeof(*rd) + namelen); |
| 396 | rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4)); |
| 397 | |
| 398 | rd->pino = cpu_to_je32(dir_i->i_ino); |
| 399 | rd->version = cpu_to_je32(++dir_f->highest_version); |
| 400 | rd->ino = cpu_to_je32(inode->i_ino); |
| 401 | rd->mctime = cpu_to_je32(get_seconds()); |
| 402 | rd->nsize = namelen; |
| 403 | rd->type = DT_LNK; |
| 404 | rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8)); |
| 405 | rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen)); |
| 406 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 407 | fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
| 409 | if (IS_ERR(fd)) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 410 | /* dirent failed to write. Delete the inode normally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | as if it were the final unlink() */ |
| 412 | jffs2_complete_reservation(c); |
| 413 | jffs2_free_raw_dirent(rd); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 414 | mutex_unlock(&dir_f->sem); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 415 | ret = PTR_ERR(fd); |
| 416 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime)); |
| 420 | |
| 421 | jffs2_free_raw_dirent(rd); |
| 422 | |
| 423 | /* Link the fd into the inode's list, obsoleting an old |
| 424 | one if necessary. */ |
| 425 | jffs2_add_fd_to_list(c, fd, &dir_f->dents); |
| 426 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 427 | mutex_unlock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | jffs2_complete_reservation(c); |
| 429 | |
David Woodhouse | e72e649 | 2010-06-03 08:09:12 +0100 | [diff] [blame] | 430 | unlock_new_inode(inode); |
Al Viro | 8fc37ec | 2012-07-19 09:18:15 +0400 | [diff] [blame] | 431 | d_instantiate(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | return 0; |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 433 | |
| 434 | fail: |
Al Viro | 41cce64 | 2010-06-08 13:24:56 -0400 | [diff] [blame] | 435 | iget_failed(inode); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 436 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | } |
| 438 | |
| 439 | |
Al Viro | 18bb1db | 2011-07-26 01:41:39 -0400 | [diff] [blame] | 440 | static int jffs2_mkdir (struct inode *dir_i, struct dentry *dentry, umode_t mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
| 442 | struct jffs2_inode_info *f, *dir_f; |
| 443 | struct jffs2_sb_info *c; |
| 444 | struct inode *inode; |
| 445 | struct jffs2_raw_inode *ri; |
| 446 | struct jffs2_raw_dirent *rd; |
| 447 | struct jffs2_full_dnode *fn; |
| 448 | struct jffs2_full_dirent *fd; |
| 449 | int namelen; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 450 | uint32_t alloclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | int ret; |
| 452 | |
| 453 | mode |= S_IFDIR; |
| 454 | |
| 455 | ri = jffs2_alloc_raw_inode(); |
| 456 | if (!ri) |
| 457 | return -ENOMEM; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 458 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | c = JFFS2_SB_INFO(dir_i->i_sb); |
| 460 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 461 | /* Try to reserve enough space for both node and dirent. |
| 462 | * Just the node will do for now, though |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | */ |
| 464 | namelen = dentry->d_name.len; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 465 | ret = jffs2_reserve_space(c, sizeof(*ri), &alloclen, ALLOC_NORMAL, |
| 466 | JFFS2_SUMMARY_INODE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
| 468 | if (ret) { |
| 469 | jffs2_free_raw_inode(ri); |
| 470 | return ret; |
| 471 | } |
| 472 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 473 | inode = jffs2_new_inode(dir_i, mode, ri); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
| 475 | if (IS_ERR(inode)) { |
| 476 | jffs2_free_raw_inode(ri); |
| 477 | jffs2_complete_reservation(c); |
| 478 | return PTR_ERR(inode); |
| 479 | } |
| 480 | |
| 481 | inode->i_op = &jffs2_dir_inode_operations; |
| 482 | inode->i_fop = &jffs2_dir_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | |
| 484 | f = JFFS2_INODE_INFO(inode); |
| 485 | |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 486 | /* Directories get nlink 2 at start */ |
Miklos Szeredi | bfe8684 | 2011-10-28 14:13:29 +0200 | [diff] [blame] | 487 | set_nlink(inode, 2); |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 488 | /* but ic->pino_nlink is the parent ino# */ |
| 489 | f->inocache->pino_nlink = dir_i->i_ino; |
| 490 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | ri->data_crc = cpu_to_je32(0); |
| 492 | ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8)); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 493 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 494 | fn = jffs2_write_dnode(c, f, ri, NULL, 0, ALLOC_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | |
| 496 | jffs2_free_raw_inode(ri); |
| 497 | |
| 498 | if (IS_ERR(fn)) { |
| 499 | /* Eeek. Wave bye bye */ |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 500 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 502 | ret = PTR_ERR(fn); |
| 503 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 504 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 505 | /* No data here. Only a metadata node, which will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 506 | obsoleted by the first data write |
| 507 | */ |
| 508 | f->metadata = fn; |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 509 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 511 | jffs2_complete_reservation(c); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 512 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 513 | ret = jffs2_init_security(inode, dir_i, &dentry->d_name); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 514 | if (ret) |
| 515 | goto fail; |
| 516 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 517 | ret = jffs2_init_acl_post(inode); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 518 | if (ret) |
| 519 | goto fail; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 520 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 521 | ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen, |
| 522 | ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen)); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 523 | if (ret) |
| 524 | goto fail; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 525 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | rd = jffs2_alloc_raw_dirent(); |
| 527 | if (!rd) { |
| 528 | /* Argh. Now we treat it like a normal delete */ |
| 529 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 530 | ret = -ENOMEM; |
| 531 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | dir_f = JFFS2_INODE_INFO(dir_i); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 535 | mutex_lock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | |
| 537 | rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK); |
| 538 | rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT); |
| 539 | rd->totlen = cpu_to_je32(sizeof(*rd) + namelen); |
| 540 | rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4)); |
| 541 | |
| 542 | rd->pino = cpu_to_je32(dir_i->i_ino); |
| 543 | rd->version = cpu_to_je32(++dir_f->highest_version); |
| 544 | rd->ino = cpu_to_je32(inode->i_ino); |
| 545 | rd->mctime = cpu_to_je32(get_seconds()); |
| 546 | rd->nsize = namelen; |
| 547 | rd->type = DT_DIR; |
| 548 | rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8)); |
| 549 | rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen)); |
| 550 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 551 | fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 552 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | if (IS_ERR(fd)) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 554 | /* dirent failed to write. Delete the inode normally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | as if it were the final unlink() */ |
| 556 | jffs2_complete_reservation(c); |
| 557 | jffs2_free_raw_dirent(rd); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 558 | mutex_unlock(&dir_f->sem); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 559 | ret = PTR_ERR(fd); |
| 560 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime)); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 564 | inc_nlink(dir_i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | |
| 566 | jffs2_free_raw_dirent(rd); |
| 567 | |
| 568 | /* Link the fd into the inode's list, obsoleting an old |
| 569 | one if necessary. */ |
| 570 | jffs2_add_fd_to_list(c, fd, &dir_f->dents); |
| 571 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 572 | mutex_unlock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | jffs2_complete_reservation(c); |
| 574 | |
David Woodhouse | e72e649 | 2010-06-03 08:09:12 +0100 | [diff] [blame] | 575 | unlock_new_inode(inode); |
Al Viro | 8fc37ec | 2012-07-19 09:18:15 +0400 | [diff] [blame] | 576 | d_instantiate(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | return 0; |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 578 | |
| 579 | fail: |
Al Viro | 41cce64 | 2010-06-08 13:24:56 -0400 | [diff] [blame] | 580 | iget_failed(inode); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 581 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | } |
| 583 | |
| 584 | static int jffs2_rmdir (struct inode *dir_i, struct dentry *dentry) |
| 585 | { |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 586 | struct jffs2_sb_info *c = JFFS2_SB_INFO(dir_i->i_sb); |
| 587 | struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 588 | struct jffs2_inode_info *f = JFFS2_INODE_INFO(dentry->d_inode); |
| 589 | struct jffs2_full_dirent *fd; |
| 590 | int ret; |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 591 | uint32_t now = get_seconds(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | |
| 593 | for (fd = f->dents ; fd; fd = fd->next) { |
| 594 | if (fd->ino) |
| 595 | return -ENOTEMPTY; |
| 596 | } |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 597 | |
| 598 | ret = jffs2_do_unlink(c, dir_f, dentry->d_name.name, |
| 599 | dentry->d_name.len, f, now); |
| 600 | if (!ret) { |
| 601 | dir_i->i_mtime = dir_i->i_ctime = ITIME(now); |
| 602 | clear_nlink(dentry->d_inode); |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 603 | drop_nlink(dir_i); |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | return ret; |
| 606 | } |
| 607 | |
Al Viro | 1a67aaf | 2011-07-26 01:52:52 -0400 | [diff] [blame] | 608 | static int jffs2_mknod (struct inode *dir_i, struct dentry *dentry, umode_t mode, dev_t rdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | { |
| 610 | struct jffs2_inode_info *f, *dir_f; |
| 611 | struct jffs2_sb_info *c; |
| 612 | struct inode *inode; |
| 613 | struct jffs2_raw_inode *ri; |
| 614 | struct jffs2_raw_dirent *rd; |
| 615 | struct jffs2_full_dnode *fn; |
| 616 | struct jffs2_full_dirent *fd; |
| 617 | int namelen; |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 618 | union jffs2_device_node dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | int devlen = 0; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 620 | uint32_t alloclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 621 | int ret; |
| 622 | |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 623 | if (!new_valid_dev(rdev)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | return -EINVAL; |
| 625 | |
| 626 | ri = jffs2_alloc_raw_inode(); |
| 627 | if (!ri) |
| 628 | return -ENOMEM; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | c = JFFS2_SB_INFO(dir_i->i_sb); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 631 | |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 632 | if (S_ISBLK(mode) || S_ISCHR(mode)) |
| 633 | devlen = jffs2_encode_dev(&dev, rdev); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 634 | |
| 635 | /* Try to reserve enough space for both node and dirent. |
| 636 | * Just the node will do for now, though |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | */ |
| 638 | namelen = dentry->d_name.len; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 639 | ret = jffs2_reserve_space(c, sizeof(*ri) + devlen, &alloclen, |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 640 | ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | |
| 642 | if (ret) { |
| 643 | jffs2_free_raw_inode(ri); |
| 644 | return ret; |
| 645 | } |
| 646 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 647 | inode = jffs2_new_inode(dir_i, mode, ri); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | |
| 649 | if (IS_ERR(inode)) { |
| 650 | jffs2_free_raw_inode(ri); |
| 651 | jffs2_complete_reservation(c); |
| 652 | return PTR_ERR(inode); |
| 653 | } |
| 654 | inode->i_op = &jffs2_file_inode_operations; |
| 655 | init_special_inode(inode, inode->i_mode, rdev); |
| 656 | |
| 657 | f = JFFS2_INODE_INFO(inode); |
| 658 | |
| 659 | ri->dsize = ri->csize = cpu_to_je32(devlen); |
| 660 | ri->totlen = cpu_to_je32(sizeof(*ri) + devlen); |
| 661 | ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4)); |
| 662 | |
| 663 | ri->compr = JFFS2_COMPR_NONE; |
| 664 | ri->data_crc = cpu_to_je32(crc32(0, &dev, devlen)); |
| 665 | ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8)); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 666 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 667 | fn = jffs2_write_dnode(c, f, ri, (char *)&dev, devlen, ALLOC_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | |
| 669 | jffs2_free_raw_inode(ri); |
| 670 | |
| 671 | if (IS_ERR(fn)) { |
| 672 | /* Eeek. Wave bye bye */ |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 673 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 674 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 675 | ret = PTR_ERR(fn); |
| 676 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 677 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 678 | /* No data here. Only a metadata node, which will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | obsoleted by the first data write |
| 680 | */ |
| 681 | f->metadata = fn; |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 682 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 683 | |
| 684 | jffs2_complete_reservation(c); |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 685 | |
Eric Paris | 2a7dba3 | 2011-02-01 11:05:39 -0500 | [diff] [blame] | 686 | ret = jffs2_init_security(inode, dir_i, &dentry->d_name); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 687 | if (ret) |
| 688 | goto fail; |
| 689 | |
KaiGai Kohei | cfc8dc6 | 2007-09-14 15:16:35 +0900 | [diff] [blame] | 690 | ret = jffs2_init_acl_post(inode); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 691 | if (ret) |
| 692 | goto fail; |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 693 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 694 | ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen, |
| 695 | ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen)); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 696 | if (ret) |
| 697 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | |
| 699 | rd = jffs2_alloc_raw_dirent(); |
| 700 | if (!rd) { |
| 701 | /* Argh. Now we treat it like a normal delete */ |
| 702 | jffs2_complete_reservation(c); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 703 | ret = -ENOMEM; |
| 704 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | dir_f = JFFS2_INODE_INFO(dir_i); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 708 | mutex_lock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | |
| 710 | rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK); |
| 711 | rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT); |
| 712 | rd->totlen = cpu_to_je32(sizeof(*rd) + namelen); |
| 713 | rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4)); |
| 714 | |
| 715 | rd->pino = cpu_to_je32(dir_i->i_ino); |
| 716 | rd->version = cpu_to_je32(++dir_f->highest_version); |
| 717 | rd->ino = cpu_to_je32(inode->i_ino); |
| 718 | rd->mctime = cpu_to_je32(get_seconds()); |
| 719 | rd->nsize = namelen; |
| 720 | |
| 721 | /* XXX: This is ugly. */ |
| 722 | rd->type = (mode & S_IFMT) >> 12; |
| 723 | |
| 724 | rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8)); |
| 725 | rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen)); |
| 726 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 727 | fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 728 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 729 | if (IS_ERR(fd)) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 730 | /* dirent failed to write. Delete the inode normally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 731 | as if it were the final unlink() */ |
| 732 | jffs2_complete_reservation(c); |
| 733 | jffs2_free_raw_dirent(rd); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 734 | mutex_unlock(&dir_f->sem); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 735 | ret = PTR_ERR(fd); |
| 736 | goto fail; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime)); |
| 740 | |
| 741 | jffs2_free_raw_dirent(rd); |
| 742 | |
| 743 | /* Link the fd into the inode's list, obsoleting an old |
| 744 | one if necessary. */ |
| 745 | jffs2_add_fd_to_list(c, fd, &dir_f->dents); |
| 746 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 747 | mutex_unlock(&dir_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 748 | jffs2_complete_reservation(c); |
| 749 | |
David Woodhouse | e72e649 | 2010-06-03 08:09:12 +0100 | [diff] [blame] | 750 | unlock_new_inode(inode); |
Al Viro | 8fc37ec | 2012-07-19 09:18:15 +0400 | [diff] [blame] | 751 | d_instantiate(dentry, inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 752 | return 0; |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 753 | |
| 754 | fail: |
Al Viro | 41cce64 | 2010-06-08 13:24:56 -0400 | [diff] [blame] | 755 | iget_failed(inode); |
David Woodhouse | f324e4c | 2010-06-03 08:03:39 +0100 | [diff] [blame] | 756 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | } |
| 758 | |
| 759 | static int jffs2_rename (struct inode *old_dir_i, struct dentry *old_dentry, |
David Woodhouse | ef53cb0 | 2007-07-10 10:01:22 +0100 | [diff] [blame] | 760 | struct inode *new_dir_i, struct dentry *new_dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | { |
| 762 | int ret; |
| 763 | struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dir_i->i_sb); |
| 764 | struct jffs2_inode_info *victim_f = NULL; |
| 765 | uint8_t type; |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 766 | uint32_t now; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 768 | /* The VFS will check for us and prevent trying to rename a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | * file over a directory and vice versa, but if it's a directory, |
| 770 | * the VFS can't check whether the victim is empty. The filesystem |
| 771 | * needs to do that for itself. |
| 772 | */ |
| 773 | if (new_dentry->d_inode) { |
| 774 | victim_f = JFFS2_INODE_INFO(new_dentry->d_inode); |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 775 | if (d_is_dir(new_dentry)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | struct jffs2_full_dirent *fd; |
| 777 | |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 778 | mutex_lock(&victim_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | for (fd = victim_f->dents; fd; fd = fd->next) { |
| 780 | if (fd->ino) { |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 781 | mutex_unlock(&victim_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | return -ENOTEMPTY; |
| 783 | } |
| 784 | } |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 785 | mutex_unlock(&victim_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | } |
| 787 | } |
| 788 | |
| 789 | /* XXX: We probably ought to alloc enough space for |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 790 | both nodes at the same time. Writing the new link, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | then getting -ENOSPC, is quite bad :) |
| 792 | */ |
| 793 | |
| 794 | /* Make a hard link */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | /* XXX: This is ugly */ |
| 797 | type = (old_dentry->d_inode->i_mode & S_IFMT) >> 12; |
| 798 | if (!type) type = DT_REG; |
| 799 | |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 800 | now = get_seconds(); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 801 | ret = jffs2_do_link(c, JFFS2_INODE_INFO(new_dir_i), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | old_dentry->d_inode->i_ino, type, |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 803 | new_dentry->d_name.name, new_dentry->d_name.len, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 804 | |
| 805 | if (ret) |
| 806 | return ret; |
| 807 | |
| 808 | if (victim_f) { |
| 809 | /* There was a victim. Kill it off nicely */ |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 810 | if (d_is_dir(new_dentry)) |
Al Viro | 22ba747 | 2011-07-21 15:57:47 -0400 | [diff] [blame] | 811 | clear_nlink(new_dentry->d_inode); |
| 812 | else |
| 813 | drop_nlink(new_dentry->d_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | /* Don't oops if the victim was a dirent pointing to an |
| 815 | inode which didn't exist. */ |
| 816 | if (victim_f->inocache) { |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 817 | mutex_lock(&victim_f->sem); |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 818 | if (d_is_dir(new_dentry)) |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 819 | victim_f->inocache->pino_nlink = 0; |
| 820 | else |
| 821 | victim_f->inocache->pino_nlink--; |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 822 | mutex_unlock(&victim_f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | } |
| 824 | } |
| 825 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 826 | /* If it was a directory we moved, and there was no victim, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | increase i_nlink on its new parent */ |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 828 | if (d_is_dir(old_dentry) && !victim_f) |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 829 | inc_nlink(new_dir_i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
| 831 | /* Unlink the original */ |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 832 | ret = jffs2_do_unlink(c, JFFS2_INODE_INFO(old_dir_i), |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 833 | old_dentry->d_name.name, old_dentry->d_name.len, NULL, now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | |
| 835 | /* We don't touch inode->i_nlink */ |
| 836 | |
| 837 | if (ret) { |
| 838 | /* Oh shit. We really ought to make a single node which can do both atomically */ |
| 839 | struct jffs2_inode_info *f = JFFS2_INODE_INFO(old_dentry->d_inode); |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 840 | mutex_lock(&f->sem); |
Dave Hansen | d8c76e6 | 2006-09-30 23:29:04 -0700 | [diff] [blame] | 841 | inc_nlink(old_dentry->d_inode); |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 842 | if (f->inocache && !d_is_dir(old_dentry)) |
David Woodhouse | 27c72b0 | 2008-05-01 18:47:17 +0100 | [diff] [blame] | 843 | f->inocache->pino_nlink++; |
David Woodhouse | ced2207 | 2008-04-22 15:13:40 +0100 | [diff] [blame] | 844 | mutex_unlock(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | |
Joe Perches | da320f0 | 2012-02-15 15:56:44 -0800 | [diff] [blame] | 846 | pr_notice("%s(): Link succeeded, unlink failed (err %d). You now have a hard link\n", |
| 847 | __func__, ret); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | /* Might as well let the VFS know */ |
| 849 | d_instantiate(new_dentry, old_dentry->d_inode); |
Al Viro | 7de9c6ee | 2010-10-23 11:11:40 -0400 | [diff] [blame] | 850 | ihold(old_dentry->d_inode); |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 851 | new_dir_i->i_mtime = new_dir_i->i_ctime = ITIME(now); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | return ret; |
| 853 | } |
| 854 | |
David Howells | e36cb0b | 2015-01-29 12:02:35 +0000 | [diff] [blame] | 855 | if (d_is_dir(old_dentry)) |
Dave Hansen | 9a53c3a | 2006-09-30 23:29:03 -0700 | [diff] [blame] | 856 | drop_nlink(old_dir_i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | |
Artem B. Bityutskiy | 3a69e0c | 2005-08-17 14:46:26 +0100 | [diff] [blame] | 858 | new_dir_i->i_mtime = new_dir_i->i_ctime = old_dir_i->i_mtime = old_dir_i->i_ctime = ITIME(now); |
| 859 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 860 | return 0; |
| 861 | } |
| 862 | |