Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * JFFS2 -- Journalling Flash File System, Version 2. |
| 3 | * |
| 4 | * Copyright (C) 2001-2003 Red Hat, Inc. |
| 5 | * |
| 6 | * Created by David Woodhouse <dwmw2@infradead.org> |
| 7 | * |
| 8 | * For licensing information, see the file 'LICENCE' in this directory. |
| 9 | * |
Artem B. Bityutskiy | 2f0077e | 2005-09-27 14:17:32 +0100 | [diff] [blame] | 10 | * $Id: fs.c,v 1.66 2005/09/27 13:17:29 dedekind Exp $ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * |
| 12 | */ |
| 13 | |
Randy Dunlap | 16f7e0f | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 14 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/config.h> |
| 16 | #include <linux/kernel.h> |
| 17 | #include <linux/sched.h> |
| 18 | #include <linux/fs.h> |
| 19 | #include <linux/list.h> |
| 20 | #include <linux/mtd/mtd.h> |
| 21 | #include <linux/pagemap.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/vmalloc.h> |
| 24 | #include <linux/vfs.h> |
| 25 | #include <linux/crc32.h> |
| 26 | #include "nodelist.h" |
| 27 | |
| 28 | static int jffs2_flash_setup(struct jffs2_sb_info *c); |
| 29 | |
| 30 | static int jffs2_do_setattr (struct inode *inode, struct iattr *iattr) |
| 31 | { |
| 32 | struct jffs2_full_dnode *old_metadata, *new_metadata; |
| 33 | struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode); |
| 34 | struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb); |
| 35 | struct jffs2_raw_inode *ri; |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 36 | union jffs2_device_node dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | unsigned char *mdata = NULL; |
| 38 | int mdatalen = 0; |
| 39 | unsigned int ivalid; |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 40 | uint32_t alloclen; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | int ret; |
| 42 | D1(printk(KERN_DEBUG "jffs2_setattr(): ino #%lu\n", inode->i_ino)); |
| 43 | ret = inode_change_ok(inode, iattr); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 44 | if (ret) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | return ret; |
| 46 | |
| 47 | /* Special cases - we don't want more than one data node |
| 48 | for these types on the medium at any time. So setattr |
| 49 | must read the original data associated with the node |
| 50 | (i.e. the device numbers or the target name) and write |
| 51 | it out again with the appropriate data attached */ |
| 52 | if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) { |
| 53 | /* For these, we don't actually need to read the old node */ |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 54 | mdatalen = jffs2_encode_dev(&dev, inode->i_rdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | mdata = (char *)&dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | D1(printk(KERN_DEBUG "jffs2_setattr(): Writing %d bytes of kdev_t\n", mdatalen)); |
| 57 | } else if (S_ISLNK(inode->i_mode)) { |
Dmitry Bazhenov | 422138d | 2006-05-05 22:46:49 +0100 | [diff] [blame] | 58 | down(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | mdatalen = f->metadata->size; |
| 60 | mdata = kmalloc(f->metadata->size, GFP_USER); |
Dmitry Bazhenov | 422138d | 2006-05-05 22:46:49 +0100 | [diff] [blame] | 61 | if (!mdata) { |
| 62 | up(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | return -ENOMEM; |
Dmitry Bazhenov | 422138d | 2006-05-05 22:46:49 +0100 | [diff] [blame] | 64 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | ret = jffs2_read_dnode(c, f, f->metadata, mdata, 0, mdatalen); |
| 66 | if (ret) { |
Dmitry Bazhenov | 422138d | 2006-05-05 22:46:49 +0100 | [diff] [blame] | 67 | up(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | kfree(mdata); |
| 69 | return ret; |
| 70 | } |
Dmitry Bazhenov | 422138d | 2006-05-05 22:46:49 +0100 | [diff] [blame] | 71 | up(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | D1(printk(KERN_DEBUG "jffs2_setattr(): Writing %d bytes of symlink target\n", mdatalen)); |
| 73 | } |
| 74 | |
| 75 | ri = jffs2_alloc_raw_inode(); |
| 76 | if (!ri) { |
| 77 | if (S_ISLNK(inode->i_mode)) |
| 78 | kfree(mdata); |
| 79 | return -ENOMEM; |
| 80 | } |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 81 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 82 | ret = jffs2_reserve_space(c, sizeof(*ri) + mdatalen, &alloclen, |
| 83 | ALLOC_NORMAL, JFFS2_SUMMARY_INODE_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | if (ret) { |
| 85 | jffs2_free_raw_inode(ri); |
| 86 | if (S_ISLNK(inode->i_mode & S_IFMT)) |
| 87 | kfree(mdata); |
| 88 | return ret; |
| 89 | } |
| 90 | down(&f->sem); |
| 91 | ivalid = iattr->ia_valid; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | ri->magic = cpu_to_je16(JFFS2_MAGIC_BITMASK); |
| 94 | ri->nodetype = cpu_to_je16(JFFS2_NODETYPE_INODE); |
| 95 | ri->totlen = cpu_to_je32(sizeof(*ri) + mdatalen); |
| 96 | ri->hdr_crc = cpu_to_je32(crc32(0, ri, sizeof(struct jffs2_unknown_node)-4)); |
| 97 | |
| 98 | ri->ino = cpu_to_je32(inode->i_ino); |
| 99 | ri->version = cpu_to_je32(++f->highest_version); |
| 100 | |
| 101 | ri->uid = cpu_to_je16((ivalid & ATTR_UID)?iattr->ia_uid:inode->i_uid); |
| 102 | ri->gid = cpu_to_je16((ivalid & ATTR_GID)?iattr->ia_gid:inode->i_gid); |
| 103 | |
| 104 | if (ivalid & ATTR_MODE) |
| 105 | if (iattr->ia_mode & S_ISGID && |
| 106 | !in_group_p(je16_to_cpu(ri->gid)) && !capable(CAP_FSETID)) |
| 107 | ri->mode = cpu_to_jemode(iattr->ia_mode & ~S_ISGID); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 108 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | ri->mode = cpu_to_jemode(iattr->ia_mode); |
| 110 | else |
| 111 | ri->mode = cpu_to_jemode(inode->i_mode); |
| 112 | |
| 113 | |
| 114 | ri->isize = cpu_to_je32((ivalid & ATTR_SIZE)?iattr->ia_size:inode->i_size); |
| 115 | ri->atime = cpu_to_je32(I_SEC((ivalid & ATTR_ATIME)?iattr->ia_atime:inode->i_atime)); |
| 116 | ri->mtime = cpu_to_je32(I_SEC((ivalid & ATTR_MTIME)?iattr->ia_mtime:inode->i_mtime)); |
| 117 | ri->ctime = cpu_to_je32(I_SEC((ivalid & ATTR_CTIME)?iattr->ia_ctime:inode->i_ctime)); |
| 118 | |
| 119 | ri->offset = cpu_to_je32(0); |
| 120 | ri->csize = ri->dsize = cpu_to_je32(mdatalen); |
| 121 | ri->compr = JFFS2_COMPR_NONE; |
| 122 | if (ivalid & ATTR_SIZE && inode->i_size < iattr->ia_size) { |
| 123 | /* It's an extension. Make it a hole node */ |
| 124 | ri->compr = JFFS2_COMPR_ZERO; |
| 125 | ri->dsize = cpu_to_je32(iattr->ia_size - inode->i_size); |
| 126 | ri->offset = cpu_to_je32(inode->i_size); |
| 127 | } |
| 128 | ri->node_crc = cpu_to_je32(crc32(0, ri, sizeof(*ri)-8)); |
| 129 | if (mdatalen) |
| 130 | ri->data_crc = cpu_to_je32(crc32(0, mdata, mdatalen)); |
| 131 | else |
| 132 | ri->data_crc = cpu_to_je32(0); |
| 133 | |
David Woodhouse | 9fe4854 | 2006-05-23 00:38:06 +0100 | [diff] [blame] | 134 | new_metadata = jffs2_write_dnode(c, f, ri, mdata, mdatalen, ALLOC_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | if (S_ISLNK(inode->i_mode)) |
| 136 | kfree(mdata); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | if (IS_ERR(new_metadata)) { |
| 139 | jffs2_complete_reservation(c); |
| 140 | jffs2_free_raw_inode(ri); |
| 141 | up(&f->sem); |
| 142 | return PTR_ERR(new_metadata); |
| 143 | } |
| 144 | /* It worked. Update the inode */ |
| 145 | inode->i_atime = ITIME(je32_to_cpu(ri->atime)); |
| 146 | inode->i_ctime = ITIME(je32_to_cpu(ri->ctime)); |
| 147 | inode->i_mtime = ITIME(je32_to_cpu(ri->mtime)); |
| 148 | inode->i_mode = jemode_to_cpu(ri->mode); |
| 149 | inode->i_uid = je16_to_cpu(ri->uid); |
| 150 | inode->i_gid = je16_to_cpu(ri->gid); |
| 151 | |
| 152 | |
| 153 | old_metadata = f->metadata; |
| 154 | |
| 155 | if (ivalid & ATTR_SIZE && inode->i_size > iattr->ia_size) |
Artem B. Bityutskiy | f302cd0 | 2005-07-24 16:29:59 +0100 | [diff] [blame] | 156 | jffs2_truncate_fragtree (c, &f->fragtree, iattr->ia_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | |
| 158 | if (ivalid & ATTR_SIZE && inode->i_size < iattr->ia_size) { |
| 159 | jffs2_add_full_dnode_to_inode(c, f, new_metadata); |
| 160 | inode->i_size = iattr->ia_size; |
| 161 | f->metadata = NULL; |
| 162 | } else { |
| 163 | f->metadata = new_metadata; |
| 164 | } |
| 165 | if (old_metadata) { |
| 166 | jffs2_mark_node_obsolete(c, old_metadata->raw); |
| 167 | jffs2_free_full_dnode(old_metadata); |
| 168 | } |
| 169 | jffs2_free_raw_inode(ri); |
| 170 | |
| 171 | up(&f->sem); |
| 172 | jffs2_complete_reservation(c); |
| 173 | |
| 174 | /* We have to do the vmtruncate() without f->sem held, since |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 175 | some pages may be locked and waiting for it in readpage(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | We are protected from a simultaneous write() extending i_size |
| 177 | back past iattr->ia_size, because do_truncate() holds the |
| 178 | generic inode semaphore. */ |
| 179 | if (ivalid & ATTR_SIZE && inode->i_size > iattr->ia_size) |
| 180 | vmtruncate(inode, iattr->ia_size); |
| 181 | |
| 182 | return 0; |
| 183 | } |
| 184 | |
| 185 | int jffs2_setattr(struct dentry *dentry, struct iattr *iattr) |
| 186 | { |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 187 | int rc; |
| 188 | |
| 189 | rc = jffs2_do_setattr(dentry->d_inode, iattr); |
| 190 | if (!rc && (iattr->ia_valid & ATTR_MODE)) |
| 191 | rc = jffs2_acl_chmod(dentry->d_inode); |
| 192 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | } |
| 194 | |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 195 | int jffs2_statfs(struct dentry *dentry, struct kstatfs *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
David Howells | 726c334 | 2006-06-23 02:02:58 -0700 | [diff] [blame] | 197 | struct jffs2_sb_info *c = JFFS2_SB_INFO(dentry->d_sb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | unsigned long avail; |
| 199 | |
| 200 | buf->f_type = JFFS2_SUPER_MAGIC; |
| 201 | buf->f_bsize = 1 << PAGE_SHIFT; |
| 202 | buf->f_blocks = c->flash_size >> PAGE_SHIFT; |
| 203 | buf->f_files = 0; |
| 204 | buf->f_ffree = 0; |
| 205 | buf->f_namelen = JFFS2_MAX_NAME_LEN; |
| 206 | |
| 207 | spin_lock(&c->erase_completion_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | avail = c->dirty_size + c->free_size; |
| 209 | if (avail > c->sector_size * c->resv_blocks_write) |
| 210 | avail -= c->sector_size * c->resv_blocks_write; |
| 211 | else |
| 212 | avail = 0; |
Artem B. Bityutskiy | e0c8e42 | 2005-07-24 16:14:17 +0100 | [diff] [blame] | 213 | spin_unlock(&c->erase_completion_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
| 215 | buf->f_bavail = buf->f_bfree = avail >> PAGE_SHIFT; |
| 216 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | return 0; |
| 218 | } |
| 219 | |
| 220 | |
| 221 | void jffs2_clear_inode (struct inode *inode) |
| 222 | { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 223 | /* We can forget about this inode for now - drop all |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | * the nodelists associated with it, etc. |
| 225 | */ |
| 226 | struct jffs2_sb_info *c = JFFS2_SB_INFO(inode->i_sb); |
| 227 | struct jffs2_inode_info *f = JFFS2_INODE_INFO(inode); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | D1(printk(KERN_DEBUG "jffs2_clear_inode(): ino #%lu mode %o\n", inode->i_ino, inode->i_mode)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | jffs2_do_clear_inode(c, f); |
| 231 | } |
| 232 | |
| 233 | void jffs2_read_inode (struct inode *inode) |
| 234 | { |
| 235 | struct jffs2_inode_info *f; |
| 236 | struct jffs2_sb_info *c; |
| 237 | struct jffs2_raw_inode latest_node; |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 238 | union jffs2_device_node jdev; |
| 239 | dev_t rdev = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | int ret; |
| 241 | |
| 242 | D1(printk(KERN_DEBUG "jffs2_read_inode(): inode->i_ino == %lu\n", inode->i_ino)); |
| 243 | |
| 244 | f = JFFS2_INODE_INFO(inode); |
| 245 | c = JFFS2_SB_INFO(inode->i_sb); |
| 246 | |
| 247 | jffs2_init_inode_info(f); |
Thomas Gleixner | 21eeb7a | 2005-11-29 16:57:17 +0100 | [diff] [blame] | 248 | down(&f->sem); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 249 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | ret = jffs2_do_read_inode(c, f, inode->i_ino, &latest_node); |
| 251 | |
| 252 | if (ret) { |
| 253 | make_bad_inode(inode); |
| 254 | up(&f->sem); |
| 255 | return; |
| 256 | } |
| 257 | inode->i_mode = jemode_to_cpu(latest_node.mode); |
| 258 | inode->i_uid = je16_to_cpu(latest_node.uid); |
| 259 | inode->i_gid = je16_to_cpu(latest_node.gid); |
| 260 | inode->i_size = je32_to_cpu(latest_node.isize); |
| 261 | inode->i_atime = ITIME(je32_to_cpu(latest_node.atime)); |
| 262 | inode->i_mtime = ITIME(je32_to_cpu(latest_node.mtime)); |
| 263 | inode->i_ctime = ITIME(je32_to_cpu(latest_node.ctime)); |
| 264 | |
| 265 | inode->i_nlink = f->inocache->nlink; |
| 266 | |
| 267 | inode->i_blksize = PAGE_SIZE; |
| 268 | inode->i_blocks = (inode->i_size + 511) >> 9; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 269 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | switch (inode->i_mode & S_IFMT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | |
| 272 | case S_IFLNK: |
| 273 | inode->i_op = &jffs2_symlink_inode_operations; |
| 274 | break; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 275 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | case S_IFDIR: |
| 277 | { |
| 278 | struct jffs2_full_dirent *fd; |
| 279 | |
| 280 | for (fd=f->dents; fd; fd = fd->next) { |
| 281 | if (fd->type == DT_DIR && fd->ino) |
| 282 | inode->i_nlink++; |
| 283 | } |
| 284 | /* and '..' */ |
| 285 | inode->i_nlink++; |
| 286 | /* Root dir gets i_nlink 3 for some reason */ |
| 287 | if (inode->i_ino == 1) |
| 288 | inode->i_nlink++; |
| 289 | |
| 290 | inode->i_op = &jffs2_dir_inode_operations; |
| 291 | inode->i_fop = &jffs2_dir_operations; |
| 292 | break; |
| 293 | } |
| 294 | case S_IFREG: |
| 295 | inode->i_op = &jffs2_file_inode_operations; |
| 296 | inode->i_fop = &jffs2_file_operations; |
| 297 | inode->i_mapping->a_ops = &jffs2_file_address_operations; |
| 298 | inode->i_mapping->nrpages = 0; |
| 299 | break; |
| 300 | |
| 301 | case S_IFBLK: |
| 302 | case S_IFCHR: |
| 303 | /* Read the device numbers from the media */ |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 304 | if (f->metadata->size != sizeof(jdev.old) && |
| 305 | f->metadata->size != sizeof(jdev.new)) { |
| 306 | printk(KERN_NOTICE "Device node has strange size %d\n", f->metadata->size); |
| 307 | up(&f->sem); |
| 308 | jffs2_do_clear_inode(c, f); |
| 309 | make_bad_inode(inode); |
| 310 | return; |
| 311 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | D1(printk(KERN_DEBUG "Reading device numbers from flash\n")); |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 313 | if (jffs2_read_dnode(c, f, f->metadata, (char *)&jdev, 0, f->metadata->size) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | /* Eep */ |
| 315 | printk(KERN_NOTICE "Read device numbers for inode %lu failed\n", (unsigned long)inode->i_ino); |
| 316 | up(&f->sem); |
| 317 | jffs2_do_clear_inode(c, f); |
| 318 | make_bad_inode(inode); |
| 319 | return; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 320 | } |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 321 | if (f->metadata->size == sizeof(jdev.old)) |
| 322 | rdev = old_decode_dev(je16_to_cpu(jdev.old)); |
| 323 | else |
| 324 | rdev = new_decode_dev(je32_to_cpu(jdev.new)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | |
| 326 | case S_IFSOCK: |
| 327 | case S_IFIFO: |
| 328 | inode->i_op = &jffs2_file_inode_operations; |
David Woodhouse | aef9ab4 | 2006-05-19 00:28:49 +0100 | [diff] [blame] | 329 | init_special_inode(inode, inode->i_mode, rdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | break; |
| 331 | |
| 332 | default: |
| 333 | printk(KERN_WARNING "jffs2_read_inode(): Bogus imode %o for ino %lu\n", inode->i_mode, (unsigned long)inode->i_ino); |
| 334 | } |
| 335 | |
| 336 | up(&f->sem); |
| 337 | |
| 338 | D1(printk(KERN_DEBUG "jffs2_read_inode() returning\n")); |
| 339 | } |
| 340 | |
| 341 | void jffs2_dirty_inode(struct inode *inode) |
| 342 | { |
| 343 | struct iattr iattr; |
| 344 | |
| 345 | if (!(inode->i_state & I_DIRTY_DATASYNC)) { |
| 346 | D2(printk(KERN_DEBUG "jffs2_dirty_inode() not calling setattr() for ino #%lu\n", inode->i_ino)); |
| 347 | return; |
| 348 | } |
| 349 | |
| 350 | D1(printk(KERN_DEBUG "jffs2_dirty_inode() calling setattr() for ino #%lu\n", inode->i_ino)); |
| 351 | |
| 352 | iattr.ia_valid = ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_ATIME|ATTR_MTIME|ATTR_CTIME; |
| 353 | iattr.ia_mode = inode->i_mode; |
| 354 | iattr.ia_uid = inode->i_uid; |
| 355 | iattr.ia_gid = inode->i_gid; |
| 356 | iattr.ia_atime = inode->i_atime; |
| 357 | iattr.ia_mtime = inode->i_mtime; |
| 358 | iattr.ia_ctime = inode->i_ctime; |
| 359 | |
| 360 | jffs2_do_setattr(inode, &iattr); |
| 361 | } |
| 362 | |
| 363 | int jffs2_remount_fs (struct super_block *sb, int *flags, char *data) |
| 364 | { |
| 365 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
| 366 | |
| 367 | if (c->flags & JFFS2_SB_FLAG_RO && !(sb->s_flags & MS_RDONLY)) |
| 368 | return -EROFS; |
| 369 | |
| 370 | /* We stop if it was running, then restart if it needs to. |
| 371 | This also catches the case where it was stopped and this |
| 372 | is just a remount to restart it. |
| 373 | Flush the writebuffer, if neccecary, else we loose it */ |
| 374 | if (!(sb->s_flags & MS_RDONLY)) { |
| 375 | jffs2_stop_garbage_collect_thread(c); |
| 376 | down(&c->alloc_sem); |
| 377 | jffs2_flush_wbuf_pad(c); |
| 378 | up(&c->alloc_sem); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 379 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | if (!(*flags & MS_RDONLY)) |
| 382 | jffs2_start_garbage_collect_thread(c); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 383 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | *flags |= MS_NOATIME; |
| 385 | |
| 386 | return 0; |
| 387 | } |
| 388 | |
| 389 | void jffs2_write_super (struct super_block *sb) |
| 390 | { |
| 391 | struct jffs2_sb_info *c = JFFS2_SB_INFO(sb); |
| 392 | sb->s_dirt = 0; |
| 393 | |
| 394 | if (sb->s_flags & MS_RDONLY) |
| 395 | return; |
| 396 | |
| 397 | D1(printk(KERN_DEBUG "jffs2_write_super()\n")); |
| 398 | jffs2_garbage_collect_trigger(c); |
| 399 | jffs2_erase_pending_blocks(c, 0); |
| 400 | jffs2_flush_wbuf_gc(c, 0); |
| 401 | } |
| 402 | |
| 403 | |
| 404 | /* jffs2_new_inode: allocate a new inode and inocache, add it to the hash, |
| 405 | fill in the raw_inode while you're at it. */ |
| 406 | struct inode *jffs2_new_inode (struct inode *dir_i, int mode, struct jffs2_raw_inode *ri) |
| 407 | { |
| 408 | struct inode *inode; |
| 409 | struct super_block *sb = dir_i->i_sb; |
| 410 | struct jffs2_sb_info *c; |
| 411 | struct jffs2_inode_info *f; |
| 412 | int ret; |
| 413 | |
| 414 | D1(printk(KERN_DEBUG "jffs2_new_inode(): dir_i %ld, mode 0x%x\n", dir_i->i_ino, mode)); |
| 415 | |
| 416 | c = JFFS2_SB_INFO(sb); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 417 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | inode = new_inode(sb); |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 419 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | if (!inode) |
| 421 | return ERR_PTR(-ENOMEM); |
| 422 | |
| 423 | f = JFFS2_INODE_INFO(inode); |
| 424 | jffs2_init_inode_info(f); |
Thomas Gleixner | 21eeb7a | 2005-11-29 16:57:17 +0100 | [diff] [blame] | 425 | down(&f->sem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
| 427 | memset(ri, 0, sizeof(*ri)); |
| 428 | /* Set OS-specific defaults for new inodes */ |
| 429 | ri->uid = cpu_to_je16(current->fsuid); |
| 430 | |
| 431 | if (dir_i->i_mode & S_ISGID) { |
| 432 | ri->gid = cpu_to_je16(dir_i->i_gid); |
| 433 | if (S_ISDIR(mode)) |
| 434 | mode |= S_ISGID; |
| 435 | } else { |
| 436 | ri->gid = cpu_to_je16(current->fsgid); |
| 437 | } |
| 438 | ri->mode = cpu_to_jemode(mode); |
| 439 | ret = jffs2_do_new_inode (c, f, mode, ri); |
| 440 | if (ret) { |
| 441 | make_bad_inode(inode); |
| 442 | iput(inode); |
| 443 | return ERR_PTR(ret); |
| 444 | } |
| 445 | inode->i_nlink = 1; |
| 446 | inode->i_ino = je32_to_cpu(ri->ino); |
| 447 | inode->i_mode = jemode_to_cpu(ri->mode); |
| 448 | inode->i_gid = je16_to_cpu(ri->gid); |
| 449 | inode->i_uid = je16_to_cpu(ri->uid); |
| 450 | inode->i_atime = inode->i_ctime = inode->i_mtime = CURRENT_TIME_SEC; |
| 451 | ri->atime = ri->mtime = ri->ctime = cpu_to_je32(I_SEC(inode->i_mtime)); |
| 452 | |
| 453 | inode->i_blksize = PAGE_SIZE; |
| 454 | inode->i_blocks = 0; |
| 455 | inode->i_size = 0; |
| 456 | |
| 457 | insert_inode_hash(inode); |
| 458 | |
| 459 | return inode; |
| 460 | } |
| 461 | |
| 462 | |
| 463 | int jffs2_do_fill_super(struct super_block *sb, void *data, int silent) |
| 464 | { |
| 465 | struct jffs2_sb_info *c; |
| 466 | struct inode *root_i; |
| 467 | int ret; |
| 468 | size_t blocks; |
| 469 | |
| 470 | c = JFFS2_SB_INFO(sb); |
| 471 | |
Andrew Victor | 2f82ce1 | 2005-02-09 09:24:26 +0000 | [diff] [blame] | 472 | #ifndef CONFIG_JFFS2_FS_WRITEBUFFER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | if (c->mtd->type == MTD_NANDFLASH) { |
| 474 | printk(KERN_ERR "jffs2: Cannot operate on NAND flash unless jffs2 NAND support is compiled in.\n"); |
| 475 | return -EINVAL; |
| 476 | } |
Andrew Victor | 8f15fd5 | 2005-02-09 09:17:45 +0000 | [diff] [blame] | 477 | if (c->mtd->type == MTD_DATAFLASH) { |
| 478 | printk(KERN_ERR "jffs2: Cannot operate on DataFlash unless jffs2 DataFlash support is compiled in.\n"); |
| 479 | return -EINVAL; |
| 480 | } |
| 481 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | |
| 483 | c->flash_size = c->mtd->size; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 484 | c->sector_size = c->mtd->erasesize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | blocks = c->flash_size / c->sector_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | |
| 487 | /* |
| 488 | * Size alignment check |
| 489 | */ |
| 490 | if ((c->sector_size * blocks) != c->flash_size) { |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 491 | c->flash_size = c->sector_size * blocks; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | printk(KERN_INFO "jffs2: Flash size not aligned to erasesize, reducing to %dKiB\n", |
| 493 | c->flash_size / 1024); |
| 494 | } |
| 495 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 496 | if (c->flash_size < 5*c->sector_size) { |
| 497 | printk(KERN_ERR "jffs2: Too few erase blocks (%d)\n", c->flash_size / c->sector_size); |
| 498 | return -EINVAL; |
| 499 | } |
| 500 | |
| 501 | c->cleanmarker_size = sizeof(struct jffs2_unknown_node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
| 503 | /* NAND (or other bizarre) flash... do setup accordingly */ |
| 504 | ret = jffs2_flash_setup(c); |
| 505 | if (ret) |
| 506 | return ret; |
| 507 | |
| 508 | c->inocache_list = kmalloc(INOCACHE_HASHSIZE * sizeof(struct jffs2_inode_cache *), GFP_KERNEL); |
| 509 | if (!c->inocache_list) { |
| 510 | ret = -ENOMEM; |
| 511 | goto out_wbuf; |
| 512 | } |
| 513 | memset(c->inocache_list, 0, INOCACHE_HASHSIZE * sizeof(struct jffs2_inode_cache *)); |
| 514 | |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 515 | jffs2_init_xattr_subsystem(c); |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | if ((ret = jffs2_do_mount_fs(c))) |
| 518 | goto out_inohash; |
| 519 | |
| 520 | ret = -EINVAL; |
| 521 | |
| 522 | D1(printk(KERN_DEBUG "jffs2_do_fill_super(): Getting root inode\n")); |
| 523 | root_i = iget(sb, 1); |
| 524 | if (is_bad_inode(root_i)) { |
| 525 | D1(printk(KERN_WARNING "get root inode failed\n")); |
Artem B. Bityutskiy | 6dac02a | 2005-07-18 12:21:23 +0100 | [diff] [blame] | 526 | goto out_root_i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | } |
| 528 | |
| 529 | D1(printk(KERN_DEBUG "jffs2_do_fill_super(): d_alloc_root()\n")); |
| 530 | sb->s_root = d_alloc_root(root_i); |
| 531 | if (!sb->s_root) |
| 532 | goto out_root_i; |
| 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | sb->s_maxbytes = 0xFFFFFFFF; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | sb->s_blocksize = PAGE_CACHE_SIZE; |
| 536 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; |
| 537 | sb->s_magic = JFFS2_SUPER_MAGIC; |
| 538 | if (!(sb->s_flags & MS_RDONLY)) |
| 539 | jffs2_start_garbage_collect_thread(c); |
| 540 | return 0; |
| 541 | |
| 542 | out_root_i: |
| 543 | iput(root_i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | jffs2_free_ino_caches(c); |
| 545 | jffs2_free_raw_node_refs(c); |
Ferenc Havasi | 4ce1f56 | 2005-08-31 14:51:04 +0100 | [diff] [blame] | 546 | if (jffs2_blocks_use_vmalloc(c)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | vfree(c->blocks); |
| 548 | else |
| 549 | kfree(c->blocks); |
| 550 | out_inohash: |
KaiGai Kohei | aa98d7c | 2006-05-13 15:09:47 +0900 | [diff] [blame] | 551 | jffs2_clear_xattr_subsystem(c); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | kfree(c->inocache_list); |
| 553 | out_wbuf: |
| 554 | jffs2_flash_cleanup(c); |
| 555 | |
| 556 | return ret; |
| 557 | } |
| 558 | |
| 559 | void jffs2_gc_release_inode(struct jffs2_sb_info *c, |
| 560 | struct jffs2_inode_info *f) |
| 561 | { |
| 562 | iput(OFNI_EDONI_2SFFJ(f)); |
| 563 | } |
| 564 | |
| 565 | struct jffs2_inode_info *jffs2_gc_fetch_inode(struct jffs2_sb_info *c, |
| 566 | int inum, int nlink) |
| 567 | { |
| 568 | struct inode *inode; |
| 569 | struct jffs2_inode_cache *ic; |
| 570 | if (!nlink) { |
| 571 | /* The inode has zero nlink but its nodes weren't yet marked |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 572 | obsolete. This has to be because we're still waiting for |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 573 | the final (close() and) iput() to happen. |
| 574 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 575 | There's a possibility that the final iput() could have |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | happened while we were contemplating. In order to ensure |
| 577 | that we don't cause a new read_inode() (which would fail) |
| 578 | for the inode in question, we use ilookup() in this case |
| 579 | instead of iget(). |
| 580 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 581 | The nlink can't _become_ zero at this point because we're |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | holding the alloc_sem, and jffs2_do_unlink() would also |
| 583 | need that while decrementing nlink on any inode. |
| 584 | */ |
| 585 | inode = ilookup(OFNI_BS_2SFFJ(c), inum); |
| 586 | if (!inode) { |
| 587 | D1(printk(KERN_DEBUG "ilookup() failed for ino #%u; inode is probably deleted.\n", |
| 588 | inum)); |
| 589 | |
| 590 | spin_lock(&c->inocache_lock); |
| 591 | ic = jffs2_get_ino_cache(c, inum); |
| 592 | if (!ic) { |
| 593 | D1(printk(KERN_DEBUG "Inode cache for ino #%u is gone.\n", inum)); |
| 594 | spin_unlock(&c->inocache_lock); |
| 595 | return NULL; |
| 596 | } |
| 597 | if (ic->state != INO_STATE_CHECKEDABSENT) { |
| 598 | /* Wait for progress. Don't just loop */ |
| 599 | D1(printk(KERN_DEBUG "Waiting for ino #%u in state %d\n", |
| 600 | ic->ino, ic->state)); |
| 601 | sleep_on_spinunlock(&c->inocache_wq, &c->inocache_lock); |
| 602 | } else { |
| 603 | spin_unlock(&c->inocache_lock); |
| 604 | } |
| 605 | |
| 606 | return NULL; |
| 607 | } |
| 608 | } else { |
| 609 | /* Inode has links to it still; they're not going away because |
| 610 | jffs2_do_unlink() would need the alloc_sem and we have it. |
| 611 | Just iget() it, and if read_inode() is necessary that's OK. |
| 612 | */ |
| 613 | inode = iget(OFNI_BS_2SFFJ(c), inum); |
| 614 | if (!inode) |
| 615 | return ERR_PTR(-ENOMEM); |
| 616 | } |
| 617 | if (is_bad_inode(inode)) { |
| 618 | printk(KERN_NOTICE "Eep. read_inode() failed for ino #%u. nlink %d\n", |
| 619 | inum, nlink); |
| 620 | /* NB. This will happen again. We need to do something appropriate here. */ |
| 621 | iput(inode); |
| 622 | return ERR_PTR(-EIO); |
| 623 | } |
| 624 | |
| 625 | return JFFS2_INODE_INFO(inode); |
| 626 | } |
| 627 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 628 | unsigned char *jffs2_gc_fetch_page(struct jffs2_sb_info *c, |
| 629 | struct jffs2_inode_info *f, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | unsigned long offset, |
| 631 | unsigned long *priv) |
| 632 | { |
| 633 | struct inode *inode = OFNI_EDONI_2SFFJ(f); |
| 634 | struct page *pg; |
| 635 | |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 636 | pg = read_cache_page(inode->i_mapping, offset >> PAGE_CACHE_SHIFT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | (void *)jffs2_do_readpage_unlock, inode); |
| 638 | if (IS_ERR(pg)) |
| 639 | return (void *)pg; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 640 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | *priv = (unsigned long)pg; |
| 642 | return kmap(pg); |
| 643 | } |
| 644 | |
| 645 | void jffs2_gc_release_page(struct jffs2_sb_info *c, |
| 646 | unsigned char *ptr, |
| 647 | unsigned long *priv) |
| 648 | { |
| 649 | struct page *pg = (void *)*priv; |
| 650 | |
| 651 | kunmap(pg); |
| 652 | page_cache_release(pg); |
| 653 | } |
| 654 | |
| 655 | static int jffs2_flash_setup(struct jffs2_sb_info *c) { |
| 656 | int ret = 0; |
Thomas Gleixner | 182ec4e | 2005-11-07 11:16:07 +0000 | [diff] [blame] | 657 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 658 | if (jffs2_cleanmarker_oob(c)) { |
| 659 | /* NAND flash... do setup accordingly */ |
| 660 | ret = jffs2_nand_flash_setup(c); |
| 661 | if (ret) |
| 662 | return ret; |
| 663 | } |
| 664 | |
Andrew Victor | 8f15fd5 | 2005-02-09 09:17:45 +0000 | [diff] [blame] | 665 | /* and Dataflash */ |
| 666 | if (jffs2_dataflash(c)) { |
| 667 | ret = jffs2_dataflash_setup(c); |
| 668 | if (ret) |
| 669 | return ret; |
| 670 | } |
Nicolas Pitre | 59da721 | 2005-08-06 05:51:33 +0100 | [diff] [blame] | 671 | |
| 672 | /* and Intel "Sibley" flash */ |
| 673 | if (jffs2_nor_wbuf_flash(c)) { |
| 674 | ret = jffs2_nor_wbuf_flash_setup(c); |
| 675 | if (ret) |
| 676 | return ret; |
| 677 | } |
| 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | return ret; |
| 680 | } |
| 681 | |
| 682 | void jffs2_flash_cleanup(struct jffs2_sb_info *c) { |
| 683 | |
| 684 | if (jffs2_cleanmarker_oob(c)) { |
| 685 | jffs2_nand_flash_cleanup(c); |
| 686 | } |
| 687 | |
Andrew Victor | 8f15fd5 | 2005-02-09 09:17:45 +0000 | [diff] [blame] | 688 | /* and DataFlash */ |
| 689 | if (jffs2_dataflash(c)) { |
| 690 | jffs2_dataflash_cleanup(c); |
| 691 | } |
Nicolas Pitre | 59da721 | 2005-08-06 05:51:33 +0100 | [diff] [blame] | 692 | |
| 693 | /* and Intel "Sibley" flash */ |
| 694 | if (jffs2_nor_wbuf_flash(c)) { |
| 695 | jffs2_nor_wbuf_flash_cleanup(c); |
| 696 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |