blob: 9b242434adf27ed629381c13853501e48a1348c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * JFFS2 -- Journalling Flash File System, Version 2.
3 *
David Woodhousec00c3102007-04-25 14:16:47 +01004 * Copyright © 2001-2007 Red Hat, Inc.
David Woodhouse6088c052010-08-08 14:15:22 +01005 * Copyright © 2004-2010 David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Created by David Woodhouse <dwmw2@infradead.org>
8 *
9 * For licensing information, see the file 'LICENCE' in this directory.
10 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Joe Perches5a528952012-02-15 15:56:45 -080013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/fs.h>
18#include <linux/crc32.h>
19#include <linux/jffs2.h>
David Woodhousecbb9a562006-05-03 13:07:27 +010020#include "jffs2_fs_i.h"
21#include "jffs2_fs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/time.h>
23#include "nodelist.h"
24
Al Viro0312fa72013-05-17 18:08:49 -040025static int jffs2_readdir (struct file *, struct dir_context *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
Al Viro4acdaf22011-07-26 01:42:34 -040027static int jffs2_create (struct inode *,struct dentry *,umode_t,
Al Viroebfc3b42012-06-10 18:05:36 -040028 bool);
Linus Torvalds1da177e2005-04-16 15:20:36 -070029static struct dentry *jffs2_lookup (struct inode *,struct dentry *,
Al Viro00cd8dd2012-06-10 17:13:09 -040030 unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int jffs2_link (struct dentry *,struct inode *,struct dentry *);
32static int jffs2_unlink (struct inode *,struct dentry *);
33static int jffs2_symlink (struct inode *,struct dentry *,const char *);
Al Viro18bb1db2011-07-26 01:41:39 -040034static int jffs2_mkdir (struct inode *,struct dentry *,umode_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static int jffs2_rmdir (struct inode *,struct dentry *);
Al Viro1a67aaf2011-07-26 01:52:52 -040036static int jffs2_mknod (struct inode *,struct dentry *,umode_t,dev_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037static int jffs2_rename (struct inode *, struct dentry *,
David Woodhouseef53cb02007-07-10 10:01:22 +010038 struct inode *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080040const struct file_operations jffs2_dir_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 .read = generic_read_dir,
Al Viroc51da202016-04-30 22:37:34 -040043 .iterate_shared=jffs2_readdir,
Stoyan Gaydarov05334002008-07-07 07:45:59 -050044 .unlocked_ioctl=jffs2_ioctl,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +020045 .fsync = jffs2_fsync,
46 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047};
48
49
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080050const struct inode_operations jffs2_dir_inode_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
David Woodhouse265489f2005-07-06 13:13:13 +010052 .create = jffs2_create,
53 .lookup = jffs2_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .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 Hellwig4e34e712011-07-23 17:37:31 +020061 .get_acl = jffs2_get_acl,
Christoph Hellwigf2963d42013-12-20 05:16:47 -080062 .set_acl = jffs2_set_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 .setattr = jffs2_setattr,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090064 .listxattr = jffs2_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070065};
66
67/***********************************************************************/
68
69
70/* We keep the dirent list sorted in increasing order of name hash,
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000071 and we use the same hash function as the dentries. Makes this
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 nice and simple
73*/
74static struct dentry *jffs2_lookup(struct inode *dir_i, struct dentry *target,
Al Viro00cd8dd2012-06-10 17:13:09 -040075 unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
77 struct jffs2_inode_info *dir_f;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 struct jffs2_full_dirent *fd = NULL, *fd_list;
79 uint32_t ino = 0;
80 struct inode *inode = NULL;
Linus Torvalds8387ff22016-06-10 07:51:30 -070081 unsigned int nhash;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Joe Perches9c261b32012-02-15 15:56:43 -080083 jffs2_dbg(1, "jffs2_lookup()\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Richard Purdie373d5e72006-04-18 02:05:46 +010085 if (target->d_name.len > JFFS2_MAX_NAME_LEN)
86 return ERR_PTR(-ENAMETOOLONG);
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 dir_f = JFFS2_INODE_INFO(dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Linus Torvalds8387ff22016-06-10 07:51:30 -070090 /* The 'nhash' on the fd_list is not the same as the dentry hash */
91 nhash = full_name_hash(NULL, target->d_name.name, target->d_name.len);
92
David Woodhouseced22072008-04-22 15:13:40 +010093 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* NB: The 2.2 backport will need to explicitly check for '.' and '..' here */
Linus Torvalds8387ff22016-06-10 07:51:30 -070096 for (fd_list = dir_f->dents; fd_list && fd_list->nhash <= nhash; fd_list = fd_list->next) {
97 if (fd_list->nhash == nhash &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 (!fd || fd_list->version > fd->version) &&
99 strlen(fd_list->name) == target->d_name.len &&
100 !strncmp(fd_list->name, target->d_name.name, target->d_name.len)) {
101 fd = fd_list;
102 }
103 }
104 if (fd)
105 ino = fd->ino;
David Woodhouseced22072008-04-22 15:13:40 +0100106 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 if (ino) {
David Howells5451f792008-02-07 00:15:42 -0800108 inode = jffs2_iget(dir_i->i_sb, ino);
Al Viroa9049372011-07-08 21:20:11 -0400109 if (IS_ERR(inode))
Joe Perchesda320f02012-02-15 15:56:44 -0800110 pr_warn("iget() failed for ino #%u\n", ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112
David Woodhouse8966c5e2008-08-18 15:36:47 +0100113 return d_splice_alias(inode, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116/***********************************************************************/
117
118
Al Viro0312fa72013-05-17 18:08:49 -0400119static int jffs2_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Al Viro0312fa72013-05-17 18:08:49 -0400121 struct inode *inode = file_inode(file);
122 struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct jffs2_full_dirent *fd;
Al Viro0312fa72013-05-17 18:08:49 -0400124 unsigned long curofs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Al Viro0312fa72013-05-17 18:08:49 -0400126 jffs2_dbg(1, "jffs2_readdir() for dir_i #%lu\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Al Viro0312fa72013-05-17 18:08:49 -0400128 if (!dir_emit_dots(file, ctx))
129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
David Woodhouseced22072008-04-22 15:13:40 +0100131 mutex_lock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 for (fd = f->dents; fd; fd = fd->next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 curofs++;
Al Viro0312fa72013-05-17 18:08:49 -0400134 /* First loop: curofs = 2; pos = 2 */
135 if (curofs < ctx->pos) {
Joe Perches9c261b32012-02-15 15:56:43 -0800136 jffs2_dbg(2, "Skipping dirent: \"%s\", ino #%u, type %d, because curofs %ld < offset %ld\n",
Al Viro0312fa72013-05-17 18:08:49 -0400137 fd->name, fd->ino, fd->type, curofs, (unsigned long)ctx->pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 continue;
139 }
140 if (!fd->ino) {
Joe Perches9c261b32012-02-15 15:56:43 -0800141 jffs2_dbg(2, "Skipping deletion dirent \"%s\"\n",
142 fd->name);
Al Viro0312fa72013-05-17 18:08:49 -0400143 ctx->pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 continue;
145 }
Joe Perches9c261b32012-02-15 15:56:43 -0800146 jffs2_dbg(2, "Dirent %ld: \"%s\", ino #%u, type %d\n",
Al Viro0312fa72013-05-17 18:08:49 -0400147 (unsigned long)ctx->pos, fd->name, fd->ino, fd->type);
148 if (!dir_emit(ctx, fd->name, strlen(fd->name), fd->ino, fd->type))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 break;
Al Viro0312fa72013-05-17 18:08:49 -0400150 ctx->pos++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
David Woodhouseced22072008-04-22 15:13:40 +0100152 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 return 0;
154}
155
156/***********************************************************************/
157
158
Al Viro4acdaf22011-07-26 01:42:34 -0400159static int jffs2_create(struct inode *dir_i, struct dentry *dentry,
Al Viroebfc3b42012-06-10 18:05:36 -0400160 umode_t mode, bool excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
162 struct jffs2_raw_inode *ri;
163 struct jffs2_inode_info *f, *dir_f;
164 struct jffs2_sb_info *c;
165 struct inode *inode;
166 int ret;
167
168 ri = jffs2_alloc_raw_inode();
169 if (!ri)
170 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 c = JFFS2_SB_INFO(dir_i->i_sb);
173
Joe Perches9c261b32012-02-15 15:56:43 -0800174 jffs2_dbg(1, "%s()\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900176 inode = jffs2_new_inode(dir_i, mode, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 if (IS_ERR(inode)) {
Joe Perches9c261b32012-02-15 15:56:43 -0800179 jffs2_dbg(1, "jffs2_new_inode() failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 jffs2_free_raw_inode(ri);
181 return PTR_ERR(inode);
182 }
183
184 inode->i_op = &jffs2_file_inode_operations;
185 inode->i_fop = &jffs2_file_operations;
186 inode->i_mapping->a_ops = &jffs2_file_address_operations;
187 inode->i_mapping->nrpages = 0;
188
189 f = JFFS2_INODE_INFO(inode);
190 dir_f = JFFS2_INODE_INFO(dir_i);
191
David Woodhouse590fe342008-05-01 15:53:28 +0100192 /* jffs2_do_create() will want to lock it, _after_ reserving
193 space and taking c-alloc_sem. If we keep it locked here,
194 lockdep gets unhappy (although it's a false positive;
195 nothing else will be looking at this inode yet so there's
196 no chance of AB-BA deadlock involving its f->sem). */
197 mutex_unlock(&f->sem);
198
Eric Paris2a7dba32011-02-01 11:05:39 -0500199 ret = jffs2_do_create(c, dir_f, f, ri, &dentry->d_name);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900200 if (ret)
201 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(ri->ctime));
204
205 jffs2_free_raw_inode(ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Joe Perches9c261b32012-02-15 15:56:43 -0800207 jffs2_dbg(1, "%s(): Created ino #%lu with mode %o, nlink %d(%d). nrpages %ld\n",
208 __func__, inode->i_ino, inode->i_mode, inode->i_nlink,
209 f->inocache->pino_nlink, inode->i_mapping->nrpages);
David Woodhousee72e6492010-06-03 08:09:12 +0100210
David Woodhousee72e6492010-06-03 08:09:12 +0100211 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +0400212 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900214
215 fail:
Al Viro41cce642010-06-08 13:24:56 -0400216 iget_failed(inode);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900217 jffs2_free_raw_inode(ri);
218 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220
221/***********************************************************************/
222
223
224static int jffs2_unlink(struct inode *dir_i, struct dentry *dentry)
225{
226 struct jffs2_sb_info *c = JFFS2_SB_INFO(dir_i->i_sb);
227 struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i);
David Howells2b0143b2015-03-17 22:25:59 +0000228 struct jffs2_inode_info *dead_f = JFFS2_INODE_INFO(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 int ret;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100230 uint32_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000232 ret = jffs2_do_unlink(c, dir_f, dentry->d_name.name,
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100233 dentry->d_name.len, dead_f, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (dead_f->inocache)
David Howells2b0143b2015-03-17 22:25:59 +0000235 set_nlink(d_inode(dentry), dead_f->inocache->pino_nlink);
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100236 if (!ret)
237 dir_i->i_mtime = dir_i->i_ctime = ITIME(now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return ret;
239}
240/***********************************************************************/
241
242
243static int jffs2_link (struct dentry *old_dentry, struct inode *dir_i, struct dentry *dentry)
244{
Al Virofc640052016-04-10 01:33:30 -0400245 struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dentry->d_sb);
David Howells2b0143b2015-03-17 22:25:59 +0000246 struct jffs2_inode_info *f = JFFS2_INODE_INFO(d_inode(old_dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i);
248 int ret;
249 uint8_t type;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100250 uint32_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* Don't let people make hard links to bad inodes. */
253 if (!f->inocache)
254 return -EIO;
255
David Howellse36cb0b2015-01-29 12:02:35 +0000256 if (d_is_dir(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return -EPERM;
258
259 /* XXX: This is ugly */
David Howells2b0143b2015-03-17 22:25:59 +0000260 type = (d_inode(old_dentry)->i_mode & S_IFMT) >> 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (!type) type = DT_REG;
262
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100263 now = get_seconds();
264 ret = jffs2_do_link(c, dir_f, f->inocache->ino, type, dentry->d_name.name, dentry->d_name.len, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (!ret) {
David Woodhouseced22072008-04-22 15:13:40 +0100267 mutex_lock(&f->sem);
David Howells2b0143b2015-03-17 22:25:59 +0000268 set_nlink(d_inode(old_dentry), ++f->inocache->pino_nlink);
David Woodhouseced22072008-04-22 15:13:40 +0100269 mutex_unlock(&f->sem);
David Howells2b0143b2015-03-17 22:25:59 +0000270 d_instantiate(dentry, d_inode(old_dentry));
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100271 dir_i->i_mtime = dir_i->i_ctime = ITIME(now);
David Howells2b0143b2015-03-17 22:25:59 +0000272 ihold(d_inode(old_dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274 return ret;
275}
276
277/***********************************************************************/
278
279static int jffs2_symlink (struct inode *dir_i, struct dentry *dentry, const char *target)
280{
281 struct jffs2_inode_info *f, *dir_f;
282 struct jffs2_sb_info *c;
283 struct inode *inode;
284 struct jffs2_raw_inode *ri;
285 struct jffs2_raw_dirent *rd;
286 struct jffs2_full_dnode *fn;
287 struct jffs2_full_dirent *fd;
288 int namelen;
David Woodhouse9fe48542006-05-23 00:38:06 +0100289 uint32_t alloclen;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000290 int ret, targetlen = strlen(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /* FIXME: If you care. We'd need to use frags for the target
293 if it grows much more than this */
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000294 if (targetlen > 254)
Adrian Hunterbde86fe2008-08-14 11:57:45 +0300295 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297 ri = jffs2_alloc_raw_inode();
298
299 if (!ri)
300 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 c = JFFS2_SB_INFO(dir_i->i_sb);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000303
304 /* Try to reserve enough space for both node and dirent.
305 * Just the node will do for now, though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 */
307 namelen = dentry->d_name.len;
David Woodhouse9fe48542006-05-23 00:38:06 +0100308 ret = jffs2_reserve_space(c, sizeof(*ri) + targetlen, &alloclen,
309 ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (ret) {
312 jffs2_free_raw_inode(ri);
313 return ret;
314 }
315
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900316 inode = jffs2_new_inode(dir_i, S_IFLNK | S_IRWXUGO, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 if (IS_ERR(inode)) {
319 jffs2_free_raw_inode(ri);
320 jffs2_complete_reservation(c);
321 return PTR_ERR(inode);
322 }
323
324 inode->i_op = &jffs2_symlink_inode_operations;
325
326 f = JFFS2_INODE_INFO(inode);
327
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000328 inode->i_size = targetlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 ri->isize = ri->dsize = ri->csize = cpu_to_je32(inode->i_size);
330 ri->totlen = cpu_to_je32(sizeof(*ri) + inode->i_size);
331 ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4));
332
333 ri->compr = JFFS2_COMPR_NONE;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000334 ri->data_crc = cpu_to_je32(crc32(0, target, targetlen));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8));
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000336
David Woodhouse9fe48542006-05-23 00:38:06 +0100337 fn = jffs2_write_dnode(c, f, ri, target, targetlen, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 jffs2_free_raw_inode(ri);
340
341 if (IS_ERR(fn)) {
342 /* Eeek. Wave bye bye */
David Woodhouseced22072008-04-22 15:13:40 +0100343 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100345 ret = PTR_ERR(fn);
346 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 }
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000348
Artem B. Bityutskiy2b79adc2005-07-17 12:13:51 +0100349 /* We use f->target field to store the target path. */
Julia Lawall04aadf32010-10-17 21:56:15 +0200350 f->target = kmemdup(target, targetlen + 1, GFP_KERNEL);
Artem B. Bityutskiy2b79adc2005-07-17 12:13:51 +0100351 if (!f->target) {
Joe Perchesda320f02012-02-15 15:56:44 -0800352 pr_warn("Can't allocate %d bytes of memory\n", targetlen + 1);
David Woodhouseced22072008-04-22 15:13:40 +0100353 mutex_unlock(&f->sem);
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000354 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100355 ret = -ENOMEM;
356 goto fail;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000357 }
Al Viroa8db1492015-05-02 10:21:20 -0400358 inode->i_link = f->target;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000359
Joe Perches9c261b32012-02-15 15:56:43 -0800360 jffs2_dbg(1, "%s(): symlink's target '%s' cached\n",
361 __func__, (char *)f->target);
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000362
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000363 /* No data here. Only a metadata node, which will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 obsoleted by the first data write
365 */
366 f->metadata = fn;
David Woodhouseced22072008-04-22 15:13:40 +0100367 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 jffs2_complete_reservation(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900370
Eric Paris2a7dba32011-02-01 11:05:39 -0500371 ret = jffs2_init_security(inode, dir_i, &dentry->d_name);
David Woodhousef324e4c2010-06-03 08:03:39 +0100372 if (ret)
373 goto fail;
374
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900375 ret = jffs2_init_acl_post(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100376 if (ret)
377 goto fail;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900378
David Woodhouse9fe48542006-05-23 00:38:06 +0100379 ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen,
380 ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen));
David Woodhousef324e4c2010-06-03 08:03:39 +0100381 if (ret)
382 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 rd = jffs2_alloc_raw_dirent();
385 if (!rd) {
386 /* Argh. Now we treat it like a normal delete */
387 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100388 ret = -ENOMEM;
389 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
391
392 dir_f = JFFS2_INODE_INFO(dir_i);
David Woodhouseced22072008-04-22 15:13:40 +0100393 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
396 rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT);
397 rd->totlen = cpu_to_je32(sizeof(*rd) + namelen);
398 rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4));
399
400 rd->pino = cpu_to_je32(dir_i->i_ino);
401 rd->version = cpu_to_je32(++dir_f->highest_version);
402 rd->ino = cpu_to_je32(inode->i_ino);
403 rd->mctime = cpu_to_je32(get_seconds());
404 rd->nsize = namelen;
405 rd->type = DT_LNK;
406 rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8));
407 rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen));
408
David Woodhouse9fe48542006-05-23 00:38:06 +0100409 fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 if (IS_ERR(fd)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000412 /* dirent failed to write. Delete the inode normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 as if it were the final unlink() */
414 jffs2_complete_reservation(c);
415 jffs2_free_raw_dirent(rd);
David Woodhouseced22072008-04-22 15:13:40 +0100416 mutex_unlock(&dir_f->sem);
David Woodhousef324e4c2010-06-03 08:03:39 +0100417 ret = PTR_ERR(fd);
418 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime));
422
423 jffs2_free_raw_dirent(rd);
424
425 /* Link the fd into the inode's list, obsoleting an old
426 one if necessary. */
427 jffs2_add_fd_to_list(c, fd, &dir_f->dents);
428
David Woodhouseced22072008-04-22 15:13:40 +0100429 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 jffs2_complete_reservation(c);
431
David Woodhousee72e6492010-06-03 08:09:12 +0100432 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +0400433 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return 0;
David Woodhousef324e4c2010-06-03 08:03:39 +0100435
436 fail:
Al Viro41cce642010-06-08 13:24:56 -0400437 iget_failed(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100438 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439}
440
441
Al Viro18bb1db2011-07-26 01:41:39 -0400442static int jffs2_mkdir (struct inode *dir_i, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 struct jffs2_inode_info *f, *dir_f;
445 struct jffs2_sb_info *c;
446 struct inode *inode;
447 struct jffs2_raw_inode *ri;
448 struct jffs2_raw_dirent *rd;
449 struct jffs2_full_dnode *fn;
450 struct jffs2_full_dirent *fd;
451 int namelen;
David Woodhouse9fe48542006-05-23 00:38:06 +0100452 uint32_t alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 int ret;
454
455 mode |= S_IFDIR;
456
457 ri = jffs2_alloc_raw_inode();
458 if (!ri)
459 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 c = JFFS2_SB_INFO(dir_i->i_sb);
462
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000463 /* Try to reserve enough space for both node and dirent.
464 * Just the node will do for now, though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 */
466 namelen = dentry->d_name.len;
David Woodhouse9fe48542006-05-23 00:38:06 +0100467 ret = jffs2_reserve_space(c, sizeof(*ri), &alloclen, ALLOC_NORMAL,
468 JFFS2_SUMMARY_INODE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
470 if (ret) {
471 jffs2_free_raw_inode(ri);
472 return ret;
473 }
474
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900475 inode = jffs2_new_inode(dir_i, mode, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
477 if (IS_ERR(inode)) {
478 jffs2_free_raw_inode(ri);
479 jffs2_complete_reservation(c);
480 return PTR_ERR(inode);
481 }
482
483 inode->i_op = &jffs2_dir_inode_operations;
484 inode->i_fop = &jffs2_dir_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 f = JFFS2_INODE_INFO(inode);
487
David Woodhouse27c72b02008-05-01 18:47:17 +0100488 /* Directories get nlink 2 at start */
Miklos Szeredibfe86842011-10-28 14:13:29 +0200489 set_nlink(inode, 2);
David Woodhouse27c72b02008-05-01 18:47:17 +0100490 /* but ic->pino_nlink is the parent ino# */
491 f->inocache->pino_nlink = dir_i->i_ino;
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 ri->data_crc = cpu_to_je32(0);
494 ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8));
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000495
David Woodhouse9fe48542006-05-23 00:38:06 +0100496 fn = jffs2_write_dnode(c, f, ri, NULL, 0, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 jffs2_free_raw_inode(ri);
499
500 if (IS_ERR(fn)) {
501 /* Eeek. Wave bye bye */
David Woodhouseced22072008-04-22 15:13:40 +0100502 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100504 ret = PTR_ERR(fn);
505 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000507 /* No data here. Only a metadata node, which will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 obsoleted by the first data write
509 */
510 f->metadata = fn;
David Woodhouseced22072008-04-22 15:13:40 +0100511 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512
513 jffs2_complete_reservation(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900514
Eric Paris2a7dba32011-02-01 11:05:39 -0500515 ret = jffs2_init_security(inode, dir_i, &dentry->d_name);
David Woodhousef324e4c2010-06-03 08:03:39 +0100516 if (ret)
517 goto fail;
518
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900519 ret = jffs2_init_acl_post(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100520 if (ret)
521 goto fail;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900522
David Woodhouse9fe48542006-05-23 00:38:06 +0100523 ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen,
524 ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen));
David Woodhousef324e4c2010-06-03 08:03:39 +0100525 if (ret)
526 goto fail;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 rd = jffs2_alloc_raw_dirent();
529 if (!rd) {
530 /* Argh. Now we treat it like a normal delete */
531 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100532 ret = -ENOMEM;
533 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535
536 dir_f = JFFS2_INODE_INFO(dir_i);
David Woodhouseced22072008-04-22 15:13:40 +0100537 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
540 rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT);
541 rd->totlen = cpu_to_je32(sizeof(*rd) + namelen);
542 rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4));
543
544 rd->pino = cpu_to_je32(dir_i->i_ino);
545 rd->version = cpu_to_je32(++dir_f->highest_version);
546 rd->ino = cpu_to_je32(inode->i_ino);
547 rd->mctime = cpu_to_je32(get_seconds());
548 rd->nsize = namelen;
549 rd->type = DT_DIR;
550 rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8));
551 rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen));
552
David Woodhouse9fe48542006-05-23 00:38:06 +0100553 fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (IS_ERR(fd)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000556 /* dirent failed to write. Delete the inode normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 as if it were the final unlink() */
558 jffs2_complete_reservation(c);
559 jffs2_free_raw_dirent(rd);
David Woodhouseced22072008-04-22 15:13:40 +0100560 mutex_unlock(&dir_f->sem);
David Woodhousef324e4c2010-06-03 08:03:39 +0100561 ret = PTR_ERR(fd);
562 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 }
564
565 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime));
Dave Hansend8c76e62006-09-30 23:29:04 -0700566 inc_nlink(dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 jffs2_free_raw_dirent(rd);
569
570 /* Link the fd into the inode's list, obsoleting an old
571 one if necessary. */
572 jffs2_add_fd_to_list(c, fd, &dir_f->dents);
573
David Woodhouseced22072008-04-22 15:13:40 +0100574 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 jffs2_complete_reservation(c);
576
David Woodhousee72e6492010-06-03 08:09:12 +0100577 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +0400578 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return 0;
David Woodhousef324e4c2010-06-03 08:03:39 +0100580
581 fail:
Al Viro41cce642010-06-08 13:24:56 -0400582 iget_failed(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100583 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586static int jffs2_rmdir (struct inode *dir_i, struct dentry *dentry)
587{
David Woodhouse27c72b02008-05-01 18:47:17 +0100588 struct jffs2_sb_info *c = JFFS2_SB_INFO(dir_i->i_sb);
589 struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i);
David Howells2b0143b2015-03-17 22:25:59 +0000590 struct jffs2_inode_info *f = JFFS2_INODE_INFO(d_inode(dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 struct jffs2_full_dirent *fd;
592 int ret;
David Woodhouse27c72b02008-05-01 18:47:17 +0100593 uint32_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 for (fd = f->dents ; fd; fd = fd->next) {
596 if (fd->ino)
597 return -ENOTEMPTY;
598 }
David Woodhouse27c72b02008-05-01 18:47:17 +0100599
600 ret = jffs2_do_unlink(c, dir_f, dentry->d_name.name,
601 dentry->d_name.len, f, now);
602 if (!ret) {
603 dir_i->i_mtime = dir_i->i_ctime = ITIME(now);
David Howells2b0143b2015-03-17 22:25:59 +0000604 clear_nlink(d_inode(dentry));
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700605 drop_nlink(dir_i);
David Woodhouse27c72b02008-05-01 18:47:17 +0100606 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return ret;
608}
609
Al Viro1a67aaf2011-07-26 01:52:52 -0400610static int jffs2_mknod (struct inode *dir_i, struct dentry *dentry, umode_t mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 struct jffs2_inode_info *f, *dir_f;
613 struct jffs2_sb_info *c;
614 struct inode *inode;
615 struct jffs2_raw_inode *ri;
616 struct jffs2_raw_dirent *rd;
617 struct jffs2_full_dnode *fn;
618 struct jffs2_full_dirent *fd;
619 int namelen;
David Woodhouseaef9ab42006-05-19 00:28:49 +0100620 union jffs2_device_node dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 int devlen = 0;
David Woodhouse9fe48542006-05-23 00:38:06 +0100622 uint32_t alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 int ret;
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 ri = jffs2_alloc_raw_inode();
626 if (!ri)
627 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 c = JFFS2_SB_INFO(dir_i->i_sb);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000630
David Woodhouseaef9ab42006-05-19 00:28:49 +0100631 if (S_ISBLK(mode) || S_ISCHR(mode))
632 devlen = jffs2_encode_dev(&dev, rdev);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000633
634 /* Try to reserve enough space for both node and dirent.
635 * Just the node will do for now, though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
637 namelen = dentry->d_name.len;
David Woodhouse9fe48542006-05-23 00:38:06 +0100638 ret = jffs2_reserve_space(c, sizeof(*ri) + devlen, &alloclen,
David Woodhouseaef9ab42006-05-19 00:28:49 +0100639 ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (ret) {
642 jffs2_free_raw_inode(ri);
643 return ret;
644 }
645
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900646 inode = jffs2_new_inode(dir_i, mode, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 if (IS_ERR(inode)) {
649 jffs2_free_raw_inode(ri);
650 jffs2_complete_reservation(c);
651 return PTR_ERR(inode);
652 }
653 inode->i_op = &jffs2_file_inode_operations;
654 init_special_inode(inode, inode->i_mode, rdev);
655
656 f = JFFS2_INODE_INFO(inode);
657
658 ri->dsize = ri->csize = cpu_to_je32(devlen);
659 ri->totlen = cpu_to_je32(sizeof(*ri) + devlen);
660 ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4));
661
662 ri->compr = JFFS2_COMPR_NONE;
663 ri->data_crc = cpu_to_je32(crc32(0, &dev, devlen));
664 ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8));
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000665
David Woodhouse9fe48542006-05-23 00:38:06 +0100666 fn = jffs2_write_dnode(c, f, ri, (char *)&dev, devlen, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 jffs2_free_raw_inode(ri);
669
670 if (IS_ERR(fn)) {
671 /* Eeek. Wave bye bye */
David Woodhouseced22072008-04-22 15:13:40 +0100672 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100674 ret = PTR_ERR(fn);
675 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000677 /* No data here. Only a metadata node, which will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 obsoleted by the first data write
679 */
680 f->metadata = fn;
David Woodhouseced22072008-04-22 15:13:40 +0100681 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 jffs2_complete_reservation(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900684
Eric Paris2a7dba32011-02-01 11:05:39 -0500685 ret = jffs2_init_security(inode, dir_i, &dentry->d_name);
David Woodhousef324e4c2010-06-03 08:03:39 +0100686 if (ret)
687 goto fail;
688
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900689 ret = jffs2_init_acl_post(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100690 if (ret)
691 goto fail;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900692
David Woodhouse9fe48542006-05-23 00:38:06 +0100693 ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen,
694 ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen));
David Woodhousef324e4c2010-06-03 08:03:39 +0100695 if (ret)
696 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
698 rd = jffs2_alloc_raw_dirent();
699 if (!rd) {
700 /* Argh. Now we treat it like a normal delete */
701 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100702 ret = -ENOMEM;
703 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705
706 dir_f = JFFS2_INODE_INFO(dir_i);
David Woodhouseced22072008-04-22 15:13:40 +0100707 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
710 rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT);
711 rd->totlen = cpu_to_je32(sizeof(*rd) + namelen);
712 rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4));
713
714 rd->pino = cpu_to_je32(dir_i->i_ino);
715 rd->version = cpu_to_je32(++dir_f->highest_version);
716 rd->ino = cpu_to_je32(inode->i_ino);
717 rd->mctime = cpu_to_je32(get_seconds());
718 rd->nsize = namelen;
719
720 /* XXX: This is ugly. */
721 rd->type = (mode & S_IFMT) >> 12;
722
723 rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8));
724 rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen));
725
David Woodhouse9fe48542006-05-23 00:38:06 +0100726 fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (IS_ERR(fd)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000729 /* dirent failed to write. Delete the inode normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 as if it were the final unlink() */
731 jffs2_complete_reservation(c);
732 jffs2_free_raw_dirent(rd);
David Woodhouseced22072008-04-22 15:13:40 +0100733 mutex_unlock(&dir_f->sem);
David Woodhousef324e4c2010-06-03 08:03:39 +0100734 ret = PTR_ERR(fd);
735 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
738 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime));
739
740 jffs2_free_raw_dirent(rd);
741
742 /* Link the fd into the inode's list, obsoleting an old
743 one if necessary. */
744 jffs2_add_fd_to_list(c, fd, &dir_f->dents);
745
David Woodhouseced22072008-04-22 15:13:40 +0100746 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 jffs2_complete_reservation(c);
748
David Woodhousee72e6492010-06-03 08:09:12 +0100749 unlock_new_inode(inode);
Al Viro8fc37ec2012-07-19 09:18:15 +0400750 d_instantiate(dentry, inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 return 0;
David Woodhousef324e4c2010-06-03 08:03:39 +0100752
753 fail:
Al Viro41cce642010-06-08 13:24:56 -0400754 iget_failed(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100755 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
758static int jffs2_rename (struct inode *old_dir_i, struct dentry *old_dentry,
David Woodhouseef53cb02007-07-10 10:01:22 +0100759 struct inode *new_dir_i, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
761 int ret;
762 struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dir_i->i_sb);
763 struct jffs2_inode_info *victim_f = NULL;
764 uint8_t type;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100765 uint32_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000767 /* The VFS will check for us and prevent trying to rename a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * file over a directory and vice versa, but if it's a directory,
769 * the VFS can't check whether the victim is empty. The filesystem
770 * needs to do that for itself.
771 */
David Howells2b0143b2015-03-17 22:25:59 +0000772 if (d_really_is_positive(new_dentry)) {
773 victim_f = JFFS2_INODE_INFO(d_inode(new_dentry));
David Howellse36cb0b2015-01-29 12:02:35 +0000774 if (d_is_dir(new_dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 struct jffs2_full_dirent *fd;
776
David Woodhouseced22072008-04-22 15:13:40 +0100777 mutex_lock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 for (fd = victim_f->dents; fd; fd = fd->next) {
779 if (fd->ino) {
David Woodhouseced22072008-04-22 15:13:40 +0100780 mutex_unlock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return -ENOTEMPTY;
782 }
783 }
David Woodhouseced22072008-04-22 15:13:40 +0100784 mutex_unlock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 }
787
788 /* XXX: We probably ought to alloc enough space for
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000789 both nodes at the same time. Writing the new link,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 then getting -ENOSPC, is quite bad :)
791 */
792
793 /* Make a hard link */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /* XXX: This is ugly */
David Howells2b0143b2015-03-17 22:25:59 +0000796 type = (d_inode(old_dentry)->i_mode & S_IFMT) >> 12;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (!type) type = DT_REG;
798
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100799 now = get_seconds();
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000800 ret = jffs2_do_link(c, JFFS2_INODE_INFO(new_dir_i),
David Howells2b0143b2015-03-17 22:25:59 +0000801 d_inode(old_dentry)->i_ino, type,
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100802 new_dentry->d_name.name, new_dentry->d_name.len, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 if (ret)
805 return ret;
806
807 if (victim_f) {
808 /* There was a victim. Kill it off nicely */
David Howellse36cb0b2015-01-29 12:02:35 +0000809 if (d_is_dir(new_dentry))
David Howells2b0143b2015-03-17 22:25:59 +0000810 clear_nlink(d_inode(new_dentry));
Al Viro22ba7472011-07-21 15:57:47 -0400811 else
David Howells2b0143b2015-03-17 22:25:59 +0000812 drop_nlink(d_inode(new_dentry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 /* Don't oops if the victim was a dirent pointing to an
814 inode which didn't exist. */
815 if (victim_f->inocache) {
David Woodhouseced22072008-04-22 15:13:40 +0100816 mutex_lock(&victim_f->sem);
David Howellse36cb0b2015-01-29 12:02:35 +0000817 if (d_is_dir(new_dentry))
David Woodhouse27c72b02008-05-01 18:47:17 +0100818 victim_f->inocache->pino_nlink = 0;
819 else
820 victim_f->inocache->pino_nlink--;
David Woodhouseced22072008-04-22 15:13:40 +0100821 mutex_unlock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823 }
824
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000825 /* If it was a directory we moved, and there was no victim,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 increase i_nlink on its new parent */
David Howellse36cb0b2015-01-29 12:02:35 +0000827 if (d_is_dir(old_dentry) && !victim_f)
Dave Hansend8c76e62006-09-30 23:29:04 -0700828 inc_nlink(new_dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 /* Unlink the original */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000831 ret = jffs2_do_unlink(c, JFFS2_INODE_INFO(old_dir_i),
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100832 old_dentry->d_name.name, old_dentry->d_name.len, NULL, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 /* We don't touch inode->i_nlink */
835
836 if (ret) {
837 /* Oh shit. We really ought to make a single node which can do both atomically */
David Howells2b0143b2015-03-17 22:25:59 +0000838 struct jffs2_inode_info *f = JFFS2_INODE_INFO(d_inode(old_dentry));
David Woodhouseced22072008-04-22 15:13:40 +0100839 mutex_lock(&f->sem);
David Howells2b0143b2015-03-17 22:25:59 +0000840 inc_nlink(d_inode(old_dentry));
David Howellse36cb0b2015-01-29 12:02:35 +0000841 if (f->inocache && !d_is_dir(old_dentry))
David Woodhouse27c72b02008-05-01 18:47:17 +0100842 f->inocache->pino_nlink++;
David Woodhouseced22072008-04-22 15:13:40 +0100843 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Joe Perchesda320f02012-02-15 15:56:44 -0800845 pr_notice("%s(): Link succeeded, unlink failed (err %d). You now have a hard link\n",
846 __func__, ret);
Al Virof9381282016-03-07 23:07:10 -0500847 /*
848 * We can't keep the target in dcache after that.
849 * For one thing, we can't afford dentry aliases for directories.
850 * For another, if there was a victim, we _can't_ set new inode
851 * for that sucker and we have to trigger mount eviction - the
852 * caller won't do it on its own since we are returning an error.
853 */
854 d_invalidate(new_dentry);
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100855 new_dir_i->i_mtime = new_dir_i->i_ctime = ITIME(now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 return ret;
857 }
858
David Howellse36cb0b2015-01-29 12:02:35 +0000859 if (d_is_dir(old_dentry))
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700860 drop_nlink(old_dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100862 new_dir_i->i_mtime = new_dir_i->i_ctime = old_dir_i->i_mtime = old_dir_i->i_ctime = ITIME(now);
863
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return 0;
865}
866