blob: 166062a682304be3361b93ffe5efffa3456fdc96 [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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Created by David Woodhouse <dwmw2@infradead.org>
7 *
8 * For licensing information, see the file 'LICENCE' in this directory.
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/kernel.h>
13#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/fs.h>
15#include <linux/crc32.h>
16#include <linux/jffs2.h>
David Woodhousecbb9a562006-05-03 13:07:27 +010017#include "jffs2_fs_i.h"
18#include "jffs2_fs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/time.h>
20#include "nodelist.h"
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static int jffs2_readdir (struct file *, void *, filldir_t);
23
24static int jffs2_create (struct inode *,struct dentry *,int,
25 struct nameidata *);
26static struct dentry *jffs2_lookup (struct inode *,struct dentry *,
27 struct nameidata *);
28static int jffs2_link (struct dentry *,struct inode *,struct dentry *);
29static int jffs2_unlink (struct inode *,struct dentry *);
30static int jffs2_symlink (struct inode *,struct dentry *,const char *);
31static int jffs2_mkdir (struct inode *,struct dentry *,int);
32static int jffs2_rmdir (struct inode *,struct dentry *);
David Woodhouse265489f2005-07-06 13:13:13 +010033static int jffs2_mknod (struct inode *,struct dentry *,int,dev_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static int jffs2_rename (struct inode *, struct dentry *,
David Woodhouseef53cb02007-07-10 10:01:22 +010035 struct inode *, struct dentry *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080037const struct file_operations jffs2_dir_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
39 .read = generic_read_dir,
40 .readdir = jffs2_readdir,
Stoyan Gaydarov05334002008-07-07 07:45:59 -050041 .unlocked_ioctl=jffs2_ioctl,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +020042 .fsync = jffs2_fsync,
43 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
46
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -080047const struct inode_operations jffs2_dir_inode_operations =
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
David Woodhouse265489f2005-07-06 13:13:13 +010049 .create = jffs2_create,
50 .lookup = jffs2_lookup,
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 .link = jffs2_link,
52 .unlink = jffs2_unlink,
53 .symlink = jffs2_symlink,
54 .mkdir = jffs2_mkdir,
55 .rmdir = jffs2_rmdir,
56 .mknod = jffs2_mknod,
57 .rename = jffs2_rename,
Linus Torvalds18f4c642009-08-28 12:29:03 -070058 .check_acl = jffs2_check_acl,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 .setattr = jffs2_setattr,
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +090060 .setxattr = jffs2_setxattr,
61 .getxattr = jffs2_getxattr,
62 .listxattr = jffs2_listxattr,
63 .removexattr = jffs2_removexattr
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
66/***********************************************************************/
67
68
69/* We keep the dirent list sorted in increasing order of name hash,
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000070 and we use the same hash function as the dentries. Makes this
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 nice and simple
72*/
73static struct dentry *jffs2_lookup(struct inode *dir_i, struct dentry *target,
74 struct nameidata *nd)
75{
76 struct jffs2_inode_info *dir_f;
77 struct jffs2_sb_info *c;
78 struct jffs2_full_dirent *fd = NULL, *fd_list;
79 uint32_t ino = 0;
80 struct inode *inode = NULL;
81
82 D1(printk(KERN_DEBUG "jffs2_lookup()\n"));
83
Richard Purdie373d5e72006-04-18 02:05:46 +010084 if (target->d_name.len > JFFS2_MAX_NAME_LEN)
85 return ERR_PTR(-ENAMETOOLONG);
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 dir_f = JFFS2_INODE_INFO(dir_i);
88 c = JFFS2_SB_INFO(dir_i->i_sb);
89
David Woodhouseced22072008-04-22 15:13:40 +010090 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 /* NB: The 2.2 backport will need to explicitly check for '.' and '..' here */
93 for (fd_list = dir_f->dents; fd_list && fd_list->nhash <= target->d_name.hash; fd_list = fd_list->next) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +000094 if (fd_list->nhash == target->d_name.hash &&
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 (!fd || fd_list->version > fd->version) &&
96 strlen(fd_list->name) == target->d_name.len &&
97 !strncmp(fd_list->name, target->d_name.name, target->d_name.len)) {
98 fd = fd_list;
99 }
100 }
101 if (fd)
102 ino = fd->ino;
David Woodhouseced22072008-04-22 15:13:40 +0100103 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (ino) {
David Howells5451f792008-02-07 00:15:42 -0800105 inode = jffs2_iget(dir_i->i_sb, ino);
106 if (IS_ERR(inode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 printk(KERN_WARNING "iget() failed for ino #%u\n", ino);
David Howells5451f792008-02-07 00:15:42 -0800108 return ERR_CAST(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110 }
111
David Woodhouse8966c5e2008-08-18 15:36:47 +0100112 return d_splice_alias(inode, target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115/***********************************************************************/
116
117
118static int jffs2_readdir(struct file *filp, void *dirent, filldir_t filldir)
119{
120 struct jffs2_inode_info *f;
121 struct jffs2_sb_info *c;
Josef Sipekec2e2032006-12-08 02:37:16 -0800122 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct jffs2_full_dirent *fd;
124 unsigned long offset, curofs;
125
Josef Sipekec2e2032006-12-08 02:37:16 -0800126 D1(printk(KERN_DEBUG "jffs2_readdir() for dir_i #%lu\n", filp->f_path.dentry->d_inode->i_ino));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128 f = JFFS2_INODE_INFO(inode);
129 c = JFFS2_SB_INFO(inode->i_sb);
130
131 offset = filp->f_pos;
132
133 if (offset == 0) {
134 D1(printk(KERN_DEBUG "Dirent 0: \".\", ino #%lu\n", inode->i_ino));
135 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
136 goto out;
137 offset++;
138 }
139 if (offset == 1) {
Josef Sipekec2e2032006-12-08 02:37:16 -0800140 unsigned long pino = parent_ino(filp->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 D1(printk(KERN_DEBUG "Dirent 1: \"..\", ino #%lu\n", pino));
142 if (filldir(dirent, "..", 2, 1, pino, DT_DIR) < 0)
143 goto out;
144 offset++;
145 }
146
147 curofs=1;
David Woodhouseced22072008-04-22 15:13:40 +0100148 mutex_lock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 for (fd = f->dents; fd; fd = fd->next) {
150
151 curofs++;
152 /* First loop: curofs = 2; offset = 2 */
153 if (curofs < offset) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000154 D2(printk(KERN_DEBUG "Skipping dirent: \"%s\", ino #%u, type %d, because curofs %ld < offset %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 fd->name, fd->ino, fd->type, curofs, offset));
156 continue;
157 }
158 if (!fd->ino) {
159 D2(printk(KERN_DEBUG "Skipping deletion dirent \"%s\"\n", fd->name));
160 offset++;
161 continue;
162 }
163 D2(printk(KERN_DEBUG "Dirent %ld: \"%s\", ino #%u, type %d\n", offset, fd->name, fd->ino, fd->type));
164 if (filldir(dirent, fd->name, strlen(fd->name), offset, fd->ino, fd->type) < 0)
165 break;
166 offset++;
167 }
David Woodhouseced22072008-04-22 15:13:40 +0100168 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 out:
170 filp->f_pos = offset;
171 return 0;
172}
173
174/***********************************************************************/
175
176
177static int jffs2_create(struct inode *dir_i, struct dentry *dentry, int mode,
178 struct nameidata *nd)
179{
180 struct jffs2_raw_inode *ri;
181 struct jffs2_inode_info *f, *dir_f;
182 struct jffs2_sb_info *c;
183 struct inode *inode;
184 int ret;
185
186 ri = jffs2_alloc_raw_inode();
187 if (!ri)
188 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 c = JFFS2_SB_INFO(dir_i->i_sb);
191
192 D1(printk(KERN_DEBUG "jffs2_create()\n"));
193
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900194 inode = jffs2_new_inode(dir_i, mode, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if (IS_ERR(inode)) {
197 D1(printk(KERN_DEBUG "jffs2_new_inode() failed\n"));
198 jffs2_free_raw_inode(ri);
199 return PTR_ERR(inode);
200 }
201
202 inode->i_op = &jffs2_file_inode_operations;
203 inode->i_fop = &jffs2_file_operations;
204 inode->i_mapping->a_ops = &jffs2_file_address_operations;
205 inode->i_mapping->nrpages = 0;
206
207 f = JFFS2_INODE_INFO(inode);
208 dir_f = JFFS2_INODE_INFO(dir_i);
209
David Woodhouse590fe342008-05-01 15:53:28 +0100210 /* jffs2_do_create() will want to lock it, _after_ reserving
211 space and taking c-alloc_sem. If we keep it locked here,
212 lockdep gets unhappy (although it's a false positive;
213 nothing else will be looking at this inode yet so there's
214 no chance of AB-BA deadlock involving its f->sem). */
215 mutex_unlock(&f->sem);
216
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000217 ret = jffs2_do_create(c, dir_f, f, ri,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 dentry->d_name.name, dentry->d_name.len);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900219 if (ret)
220 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(ri->ctime));
223
224 jffs2_free_raw_inode(ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 D1(printk(KERN_DEBUG "jffs2_create: Created ino #%lu with mode %o, nlink %d(%d). nrpages %ld\n",
David Woodhouse27c72b02008-05-01 18:47:17 +0100227 inode->i_ino, inode->i_mode, inode->i_nlink,
228 f->inocache->pino_nlink, inode->i_mapping->nrpages));
David Woodhousee72e6492010-06-03 08:09:12 +0100229
230 d_instantiate(dentry, inode);
231 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900233
234 fail:
235 make_bad_inode(inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100236 unlock_new_inode(inode);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900237 iput(inode);
238 jffs2_free_raw_inode(ri);
239 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242/***********************************************************************/
243
244
245static int jffs2_unlink(struct inode *dir_i, struct dentry *dentry)
246{
247 struct jffs2_sb_info *c = JFFS2_SB_INFO(dir_i->i_sb);
248 struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i);
249 struct jffs2_inode_info *dead_f = JFFS2_INODE_INFO(dentry->d_inode);
250 int ret;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100251 uint32_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000253 ret = jffs2_do_unlink(c, dir_f, dentry->d_name.name,
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100254 dentry->d_name.len, dead_f, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 if (dead_f->inocache)
David Woodhouse27c72b02008-05-01 18:47:17 +0100256 dentry->d_inode->i_nlink = dead_f->inocache->pino_nlink;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100257 if (!ret)
258 dir_i->i_mtime = dir_i->i_ctime = ITIME(now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return ret;
260}
261/***********************************************************************/
262
263
264static int jffs2_link (struct dentry *old_dentry, struct inode *dir_i, struct dentry *dentry)
265{
266 struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dentry->d_inode->i_sb);
267 struct jffs2_inode_info *f = JFFS2_INODE_INFO(old_dentry->d_inode);
268 struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i);
269 int ret;
270 uint8_t type;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100271 uint32_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 /* Don't let people make hard links to bad inodes. */
274 if (!f->inocache)
275 return -EIO;
276
277 if (S_ISDIR(old_dentry->d_inode->i_mode))
278 return -EPERM;
279
280 /* XXX: This is ugly */
281 type = (old_dentry->d_inode->i_mode & S_IFMT) >> 12;
282 if (!type) type = DT_REG;
283
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100284 now = get_seconds();
285 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 -0700286
287 if (!ret) {
David Woodhouseced22072008-04-22 15:13:40 +0100288 mutex_lock(&f->sem);
David Woodhouse27c72b02008-05-01 18:47:17 +0100289 old_dentry->d_inode->i_nlink = ++f->inocache->pino_nlink;
David Woodhouseced22072008-04-22 15:13:40 +0100290 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 d_instantiate(dentry, old_dentry->d_inode);
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100292 dir_i->i_mtime = dir_i->i_ctime = ITIME(now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 atomic_inc(&old_dentry->d_inode->i_count);
294 }
295 return ret;
296}
297
298/***********************************************************************/
299
300static int jffs2_symlink (struct inode *dir_i, struct dentry *dentry, const char *target)
301{
302 struct jffs2_inode_info *f, *dir_f;
303 struct jffs2_sb_info *c;
304 struct inode *inode;
305 struct jffs2_raw_inode *ri;
306 struct jffs2_raw_dirent *rd;
307 struct jffs2_full_dnode *fn;
308 struct jffs2_full_dirent *fd;
309 int namelen;
David Woodhouse9fe48542006-05-23 00:38:06 +0100310 uint32_t alloclen;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000311 int ret, targetlen = strlen(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
313 /* FIXME: If you care. We'd need to use frags for the target
314 if it grows much more than this */
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000315 if (targetlen > 254)
Adrian Hunterbde86fe2008-08-14 11:57:45 +0300316 return -ENAMETOOLONG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 ri = jffs2_alloc_raw_inode();
319
320 if (!ri)
321 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 c = JFFS2_SB_INFO(dir_i->i_sb);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000324
325 /* Try to reserve enough space for both node and dirent.
326 * Just the node will do for now, though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
328 namelen = dentry->d_name.len;
David Woodhouse9fe48542006-05-23 00:38:06 +0100329 ret = jffs2_reserve_space(c, sizeof(*ri) + targetlen, &alloclen,
330 ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 if (ret) {
333 jffs2_free_raw_inode(ri);
334 return ret;
335 }
336
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900337 inode = jffs2_new_inode(dir_i, S_IFLNK | S_IRWXUGO, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (IS_ERR(inode)) {
340 jffs2_free_raw_inode(ri);
341 jffs2_complete_reservation(c);
342 return PTR_ERR(inode);
343 }
344
345 inode->i_op = &jffs2_symlink_inode_operations;
346
347 f = JFFS2_INODE_INFO(inode);
348
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000349 inode->i_size = targetlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 ri->isize = ri->dsize = ri->csize = cpu_to_je32(inode->i_size);
351 ri->totlen = cpu_to_je32(sizeof(*ri) + inode->i_size);
352 ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4));
353
354 ri->compr = JFFS2_COMPR_NONE;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000355 ri->data_crc = cpu_to_je32(crc32(0, target, targetlen));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8));
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000357
David Woodhouse9fe48542006-05-23 00:38:06 +0100358 fn = jffs2_write_dnode(c, f, ri, target, targetlen, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 jffs2_free_raw_inode(ri);
361
362 if (IS_ERR(fn)) {
363 /* Eeek. Wave bye bye */
David Woodhouseced22072008-04-22 15:13:40 +0100364 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100366 ret = PTR_ERR(fn);
367 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000369
Artem B. Bityutskiy2b79adc2005-07-17 12:13:51 +0100370 /* We use f->target field to store the target path. */
371 f->target = kmalloc(targetlen + 1, GFP_KERNEL);
372 if (!f->target) {
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000373 printk(KERN_WARNING "Can't allocate %d bytes of memory\n", targetlen + 1);
David Woodhouseced22072008-04-22 15:13:40 +0100374 mutex_unlock(&f->sem);
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000375 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100376 ret = -ENOMEM;
377 goto fail;
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000378 }
379
Artem B. Bityutskiy2b79adc2005-07-17 12:13:51 +0100380 memcpy(f->target, target, targetlen + 1);
381 D1(printk(KERN_DEBUG "jffs2_symlink: symlink's target '%s' cached\n", (char *)f->target));
Artem B. Bityuckiy32f1a952005-03-01 10:50:52 +0000382
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000383 /* No data here. Only a metadata node, which will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 obsoleted by the first data write
385 */
386 f->metadata = fn;
David Woodhouseced22072008-04-22 15:13:40 +0100387 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 jffs2_complete_reservation(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900390
391 ret = jffs2_init_security(inode, dir_i);
David Woodhousef324e4c2010-06-03 08:03:39 +0100392 if (ret)
393 goto fail;
394
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900395 ret = jffs2_init_acl_post(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100396 if (ret)
397 goto fail;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900398
David Woodhouse9fe48542006-05-23 00:38:06 +0100399 ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen,
400 ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen));
David Woodhousef324e4c2010-06-03 08:03:39 +0100401 if (ret)
402 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 rd = jffs2_alloc_raw_dirent();
405 if (!rd) {
406 /* Argh. Now we treat it like a normal delete */
407 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100408 ret = -ENOMEM;
409 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 }
411
412 dir_f = JFFS2_INODE_INFO(dir_i);
David Woodhouseced22072008-04-22 15:13:40 +0100413 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
416 rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT);
417 rd->totlen = cpu_to_je32(sizeof(*rd) + namelen);
418 rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4));
419
420 rd->pino = cpu_to_je32(dir_i->i_ino);
421 rd->version = cpu_to_je32(++dir_f->highest_version);
422 rd->ino = cpu_to_je32(inode->i_ino);
423 rd->mctime = cpu_to_je32(get_seconds());
424 rd->nsize = namelen;
425 rd->type = DT_LNK;
426 rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8));
427 rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen));
428
David Woodhouse9fe48542006-05-23 00:38:06 +0100429 fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 if (IS_ERR(fd)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000432 /* dirent failed to write. Delete the inode normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 as if it were the final unlink() */
434 jffs2_complete_reservation(c);
435 jffs2_free_raw_dirent(rd);
David Woodhouseced22072008-04-22 15:13:40 +0100436 mutex_unlock(&dir_f->sem);
David Woodhousef324e4c2010-06-03 08:03:39 +0100437 ret = PTR_ERR(fd);
438 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
441 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime));
442
443 jffs2_free_raw_dirent(rd);
444
445 /* Link the fd into the inode's list, obsoleting an old
446 one if necessary. */
447 jffs2_add_fd_to_list(c, fd, &dir_f->dents);
448
David Woodhouseced22072008-04-22 15:13:40 +0100449 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 jffs2_complete_reservation(c);
451
452 d_instantiate(dentry, inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100453 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 return 0;
David Woodhousef324e4c2010-06-03 08:03:39 +0100455
456 fail:
457 make_bad_inode(inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100458 unlock_new_inode(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100459 iput(inode);
460 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463
464static int jffs2_mkdir (struct inode *dir_i, struct dentry *dentry, int mode)
465{
466 struct jffs2_inode_info *f, *dir_f;
467 struct jffs2_sb_info *c;
468 struct inode *inode;
469 struct jffs2_raw_inode *ri;
470 struct jffs2_raw_dirent *rd;
471 struct jffs2_full_dnode *fn;
472 struct jffs2_full_dirent *fd;
473 int namelen;
David Woodhouse9fe48542006-05-23 00:38:06 +0100474 uint32_t alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 int ret;
476
477 mode |= S_IFDIR;
478
479 ri = jffs2_alloc_raw_inode();
480 if (!ri)
481 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 c = JFFS2_SB_INFO(dir_i->i_sb);
484
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000485 /* Try to reserve enough space for both node and dirent.
486 * Just the node will do for now, though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
488 namelen = dentry->d_name.len;
David Woodhouse9fe48542006-05-23 00:38:06 +0100489 ret = jffs2_reserve_space(c, sizeof(*ri), &alloclen, ALLOC_NORMAL,
490 JFFS2_SUMMARY_INODE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 if (ret) {
493 jffs2_free_raw_inode(ri);
494 return ret;
495 }
496
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900497 inode = jffs2_new_inode(dir_i, mode, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (IS_ERR(inode)) {
500 jffs2_free_raw_inode(ri);
501 jffs2_complete_reservation(c);
502 return PTR_ERR(inode);
503 }
504
505 inode->i_op = &jffs2_dir_inode_operations;
506 inode->i_fop = &jffs2_dir_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 f = JFFS2_INODE_INFO(inode);
509
David Woodhouse27c72b02008-05-01 18:47:17 +0100510 /* Directories get nlink 2 at start */
511 inode->i_nlink = 2;
512 /* but ic->pino_nlink is the parent ino# */
513 f->inocache->pino_nlink = dir_i->i_ino;
514
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 ri->data_crc = cpu_to_je32(0);
516 ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8));
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000517
David Woodhouse9fe48542006-05-23 00:38:06 +0100518 fn = jffs2_write_dnode(c, f, ri, NULL, 0, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 jffs2_free_raw_inode(ri);
521
522 if (IS_ERR(fn)) {
523 /* Eeek. Wave bye bye */
David Woodhouseced22072008-04-22 15:13:40 +0100524 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100526 ret = PTR_ERR(fn);
527 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000529 /* No data here. Only a metadata node, which will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 obsoleted by the first data write
531 */
532 f->metadata = fn;
David Woodhouseced22072008-04-22 15:13:40 +0100533 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 jffs2_complete_reservation(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900536
537 ret = jffs2_init_security(inode, dir_i);
David Woodhousef324e4c2010-06-03 08:03:39 +0100538 if (ret)
539 goto fail;
540
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900541 ret = jffs2_init_acl_post(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100542 if (ret)
543 goto fail;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900544
David Woodhouse9fe48542006-05-23 00:38:06 +0100545 ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen,
546 ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen));
David Woodhousef324e4c2010-06-03 08:03:39 +0100547 if (ret)
548 goto fail;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 rd = jffs2_alloc_raw_dirent();
551 if (!rd) {
552 /* Argh. Now we treat it like a normal delete */
553 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100554 ret = -ENOMEM;
555 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
557
558 dir_f = JFFS2_INODE_INFO(dir_i);
David Woodhouseced22072008-04-22 15:13:40 +0100559 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560
561 rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
562 rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT);
563 rd->totlen = cpu_to_je32(sizeof(*rd) + namelen);
564 rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4));
565
566 rd->pino = cpu_to_je32(dir_i->i_ino);
567 rd->version = cpu_to_je32(++dir_f->highest_version);
568 rd->ino = cpu_to_je32(inode->i_ino);
569 rd->mctime = cpu_to_je32(get_seconds());
570 rd->nsize = namelen;
571 rd->type = DT_DIR;
572 rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8));
573 rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen));
574
David Woodhouse9fe48542006-05-23 00:38:06 +0100575 fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 if (IS_ERR(fd)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000578 /* dirent failed to write. Delete the inode normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 as if it were the final unlink() */
580 jffs2_complete_reservation(c);
581 jffs2_free_raw_dirent(rd);
David Woodhouseced22072008-04-22 15:13:40 +0100582 mutex_unlock(&dir_f->sem);
David Woodhousef324e4c2010-06-03 08:03:39 +0100583 ret = PTR_ERR(fd);
584 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
586
587 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime));
Dave Hansend8c76e62006-09-30 23:29:04 -0700588 inc_nlink(dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
590 jffs2_free_raw_dirent(rd);
591
592 /* Link the fd into the inode's list, obsoleting an old
593 one if necessary. */
594 jffs2_add_fd_to_list(c, fd, &dir_f->dents);
595
David Woodhouseced22072008-04-22 15:13:40 +0100596 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 jffs2_complete_reservation(c);
598
599 d_instantiate(dentry, inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100600 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return 0;
David Woodhousef324e4c2010-06-03 08:03:39 +0100602
603 fail:
604 make_bad_inode(inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100605 unlock_new_inode(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100606 iput(inode);
607 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610static int jffs2_rmdir (struct inode *dir_i, struct dentry *dentry)
611{
David Woodhouse27c72b02008-05-01 18:47:17 +0100612 struct jffs2_sb_info *c = JFFS2_SB_INFO(dir_i->i_sb);
613 struct jffs2_inode_info *dir_f = JFFS2_INODE_INFO(dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 struct jffs2_inode_info *f = JFFS2_INODE_INFO(dentry->d_inode);
615 struct jffs2_full_dirent *fd;
616 int ret;
David Woodhouse27c72b02008-05-01 18:47:17 +0100617 uint32_t now = get_seconds();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 for (fd = f->dents ; fd; fd = fd->next) {
620 if (fd->ino)
621 return -ENOTEMPTY;
622 }
David Woodhouse27c72b02008-05-01 18:47:17 +0100623
624 ret = jffs2_do_unlink(c, dir_f, dentry->d_name.name,
625 dentry->d_name.len, f, now);
626 if (!ret) {
627 dir_i->i_mtime = dir_i->i_ctime = ITIME(now);
628 clear_nlink(dentry->d_inode);
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700629 drop_nlink(dir_i);
David Woodhouse27c72b02008-05-01 18:47:17 +0100630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return ret;
632}
633
David Woodhouse265489f2005-07-06 13:13:13 +0100634static int jffs2_mknod (struct inode *dir_i, struct dentry *dentry, int mode, dev_t rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 struct jffs2_inode_info *f, *dir_f;
637 struct jffs2_sb_info *c;
638 struct inode *inode;
639 struct jffs2_raw_inode *ri;
640 struct jffs2_raw_dirent *rd;
641 struct jffs2_full_dnode *fn;
642 struct jffs2_full_dirent *fd;
643 int namelen;
David Woodhouseaef9ab42006-05-19 00:28:49 +0100644 union jffs2_device_node dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 int devlen = 0;
David Woodhouse9fe48542006-05-23 00:38:06 +0100646 uint32_t alloclen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 int ret;
648
David Woodhouseaef9ab42006-05-19 00:28:49 +0100649 if (!new_valid_dev(rdev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return -EINVAL;
651
652 ri = jffs2_alloc_raw_inode();
653 if (!ri)
654 return -ENOMEM;
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 c = JFFS2_SB_INFO(dir_i->i_sb);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000657
David Woodhouseaef9ab42006-05-19 00:28:49 +0100658 if (S_ISBLK(mode) || S_ISCHR(mode))
659 devlen = jffs2_encode_dev(&dev, rdev);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000660
661 /* Try to reserve enough space for both node and dirent.
662 * Just the node will do for now, though
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
664 namelen = dentry->d_name.len;
David Woodhouse9fe48542006-05-23 00:38:06 +0100665 ret = jffs2_reserve_space(c, sizeof(*ri) + devlen, &alloclen,
David Woodhouseaef9ab42006-05-19 00:28:49 +0100666 ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 if (ret) {
669 jffs2_free_raw_inode(ri);
670 return ret;
671 }
672
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900673 inode = jffs2_new_inode(dir_i, mode, ri);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 if (IS_ERR(inode)) {
676 jffs2_free_raw_inode(ri);
677 jffs2_complete_reservation(c);
678 return PTR_ERR(inode);
679 }
680 inode->i_op = &jffs2_file_inode_operations;
681 init_special_inode(inode, inode->i_mode, rdev);
682
683 f = JFFS2_INODE_INFO(inode);
684
685 ri->dsize = ri->csize = cpu_to_je32(devlen);
686 ri->totlen = cpu_to_je32(sizeof(*ri) + devlen);
687 ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4));
688
689 ri->compr = JFFS2_COMPR_NONE;
690 ri->data_crc = cpu_to_je32(crc32(0, &dev, devlen));
691 ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8));
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000692
David Woodhouse9fe48542006-05-23 00:38:06 +0100693 fn = jffs2_write_dnode(c, f, ri, (char *)&dev, devlen, ALLOC_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
695 jffs2_free_raw_inode(ri);
696
697 if (IS_ERR(fn)) {
698 /* Eeek. Wave bye bye */
David Woodhouseced22072008-04-22 15:13:40 +0100699 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100701 ret = PTR_ERR(fn);
702 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000704 /* No data here. Only a metadata node, which will be
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 obsoleted by the first data write
706 */
707 f->metadata = fn;
David Woodhouseced22072008-04-22 15:13:40 +0100708 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
710 jffs2_complete_reservation(c);
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900711
712 ret = jffs2_init_security(inode, dir_i);
David Woodhousef324e4c2010-06-03 08:03:39 +0100713 if (ret)
714 goto fail;
715
KaiGai Koheicfc8dc62007-09-14 15:16:35 +0900716 ret = jffs2_init_acl_post(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100717 if (ret)
718 goto fail;
KaiGai Koheiaa98d7c2006-05-13 15:09:47 +0900719
David Woodhouse9fe48542006-05-23 00:38:06 +0100720 ret = jffs2_reserve_space(c, sizeof(*rd)+namelen, &alloclen,
721 ALLOC_NORMAL, JFFS2_SUMMARY_DIRENT_SIZE(namelen));
David Woodhousef324e4c2010-06-03 08:03:39 +0100722 if (ret)
723 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 rd = jffs2_alloc_raw_dirent();
726 if (!rd) {
727 /* Argh. Now we treat it like a normal delete */
728 jffs2_complete_reservation(c);
David Woodhousef324e4c2010-06-03 08:03:39 +0100729 ret = -ENOMEM;
730 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
733 dir_f = JFFS2_INODE_INFO(dir_i);
David Woodhouseced22072008-04-22 15:13:40 +0100734 mutex_lock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 rd->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK);
737 rd->nodetype = cpu_to_je16(JFFS2_NODETYPE_DIRENT);
738 rd->totlen = cpu_to_je32(sizeof(*rd) + namelen);
739 rd->hdr_crc = cpu_to_je32(crc32(0, rd, sizeof(struct jffs2_unknown_node)-4));
740
741 rd->pino = cpu_to_je32(dir_i->i_ino);
742 rd->version = cpu_to_je32(++dir_f->highest_version);
743 rd->ino = cpu_to_je32(inode->i_ino);
744 rd->mctime = cpu_to_je32(get_seconds());
745 rd->nsize = namelen;
746
747 /* XXX: This is ugly. */
748 rd->type = (mode & S_IFMT) >> 12;
749
750 rd->node_crc = cpu_to_je32(crc32(0, rd, sizeof(*rd)-8));
751 rd->name_crc = cpu_to_je32(crc32(0, dentry->d_name.name, namelen));
752
David Woodhouse9fe48542006-05-23 00:38:06 +0100753 fd = jffs2_write_dirent(c, dir_f, rd, dentry->d_name.name, namelen, ALLOC_NORMAL);
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000754
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (IS_ERR(fd)) {
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000756 /* dirent failed to write. Delete the inode normally
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 as if it were the final unlink() */
758 jffs2_complete_reservation(c);
759 jffs2_free_raw_dirent(rd);
David Woodhouseced22072008-04-22 15:13:40 +0100760 mutex_unlock(&dir_f->sem);
David Woodhousef324e4c2010-06-03 08:03:39 +0100761 ret = PTR_ERR(fd);
762 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 }
764
765 dir_i->i_mtime = dir_i->i_ctime = ITIME(je32_to_cpu(rd->mctime));
766
767 jffs2_free_raw_dirent(rd);
768
769 /* Link the fd into the inode's list, obsoleting an old
770 one if necessary. */
771 jffs2_add_fd_to_list(c, fd, &dir_f->dents);
772
David Woodhouseced22072008-04-22 15:13:40 +0100773 mutex_unlock(&dir_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 jffs2_complete_reservation(c);
775
776 d_instantiate(dentry, inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100777 unlock_new_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return 0;
David Woodhousef324e4c2010-06-03 08:03:39 +0100779
780 fail:
781 make_bad_inode(inode);
David Woodhousee72e6492010-06-03 08:09:12 +0100782 unlock_new_inode(inode);
David Woodhousef324e4c2010-06-03 08:03:39 +0100783 iput(inode);
784 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
787static int jffs2_rename (struct inode *old_dir_i, struct dentry *old_dentry,
David Woodhouseef53cb02007-07-10 10:01:22 +0100788 struct inode *new_dir_i, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789{
790 int ret;
791 struct jffs2_sb_info *c = JFFS2_SB_INFO(old_dir_i->i_sb);
792 struct jffs2_inode_info *victim_f = NULL;
793 uint8_t type;
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100794 uint32_t now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000796 /* The VFS will check for us and prevent trying to rename a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * file over a directory and vice versa, but if it's a directory,
798 * the VFS can't check whether the victim is empty. The filesystem
799 * needs to do that for itself.
800 */
801 if (new_dentry->d_inode) {
802 victim_f = JFFS2_INODE_INFO(new_dentry->d_inode);
803 if (S_ISDIR(new_dentry->d_inode->i_mode)) {
804 struct jffs2_full_dirent *fd;
805
David Woodhouseced22072008-04-22 15:13:40 +0100806 mutex_lock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 for (fd = victim_f->dents; fd; fd = fd->next) {
808 if (fd->ino) {
David Woodhouseced22072008-04-22 15:13:40 +0100809 mutex_unlock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return -ENOTEMPTY;
811 }
812 }
David Woodhouseced22072008-04-22 15:13:40 +0100813 mutex_unlock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 }
816
817 /* XXX: We probably ought to alloc enough space for
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000818 both nodes at the same time. Writing the new link,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 then getting -ENOSPC, is quite bad :)
820 */
821
822 /* Make a hard link */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /* XXX: This is ugly */
825 type = (old_dentry->d_inode->i_mode & S_IFMT) >> 12;
826 if (!type) type = DT_REG;
827
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100828 now = get_seconds();
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000829 ret = jffs2_do_link(c, JFFS2_INODE_INFO(new_dir_i),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 old_dentry->d_inode->i_ino, type,
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100831 new_dentry->d_name.name, new_dentry->d_name.len, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 if (ret)
834 return ret;
835
836 if (victim_f) {
837 /* There was a victim. Kill it off nicely */
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700838 drop_nlink(new_dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* Don't oops if the victim was a dirent pointing to an
840 inode which didn't exist. */
841 if (victim_f->inocache) {
David Woodhouseced22072008-04-22 15:13:40 +0100842 mutex_lock(&victim_f->sem);
David Woodhouse27c72b02008-05-01 18:47:17 +0100843 if (S_ISDIR(new_dentry->d_inode->i_mode))
844 victim_f->inocache->pino_nlink = 0;
845 else
846 victim_f->inocache->pino_nlink--;
David Woodhouseced22072008-04-22 15:13:40 +0100847 mutex_unlock(&victim_f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849 }
850
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000851 /* If it was a directory we moved, and there was no victim,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 increase i_nlink on its new parent */
853 if (S_ISDIR(old_dentry->d_inode->i_mode) && !victim_f)
Dave Hansend8c76e62006-09-30 23:29:04 -0700854 inc_nlink(new_dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 /* Unlink the original */
Thomas Gleixner182ec4e2005-11-07 11:16:07 +0000857 ret = jffs2_do_unlink(c, JFFS2_INODE_INFO(old_dir_i),
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100858 old_dentry->d_name.name, old_dentry->d_name.len, NULL, now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 /* We don't touch inode->i_nlink */
861
862 if (ret) {
863 /* Oh shit. We really ought to make a single node which can do both atomically */
864 struct jffs2_inode_info *f = JFFS2_INODE_INFO(old_dentry->d_inode);
David Woodhouseced22072008-04-22 15:13:40 +0100865 mutex_lock(&f->sem);
Dave Hansend8c76e62006-09-30 23:29:04 -0700866 inc_nlink(old_dentry->d_inode);
David Woodhouse27c72b02008-05-01 18:47:17 +0100867 if (f->inocache && !S_ISDIR(old_dentry->d_inode->i_mode))
868 f->inocache->pino_nlink++;
David Woodhouseced22072008-04-22 15:13:40 +0100869 mutex_unlock(&f->sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 printk(KERN_NOTICE "jffs2_rename(): Link succeeded, unlink failed (err %d). You now have a hard link\n", ret);
872 /* Might as well let the VFS know */
873 d_instantiate(new_dentry, old_dentry->d_inode);
874 atomic_inc(&old_dentry->d_inode->i_count);
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100875 new_dir_i->i_mtime = new_dir_i->i_ctime = ITIME(now);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return ret;
877 }
878
879 if (S_ISDIR(old_dentry->d_inode->i_mode))
Dave Hansen9a53c3a2006-09-30 23:29:03 -0700880 drop_nlink(old_dir_i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Artem B. Bityutskiy3a69e0c2005-08-17 14:46:26 +0100882 new_dir_i->i_mtime = new_dir_i->i_ctime = old_dir_i->i_mtime = old_dir_i->i_ctime = ITIME(now);
883
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 0;
885}
886