WIP large file support
[yaffs2.git] / yaffs_vfs_multi.c
1 /*
2  * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2011 Aleph One Ltd.
5  *   for Toby Churchill Ltd and Brightstar Engineering
6  *
7  * Created by Charles Manning <charles@aleph1.co.uk>
8  * Acknowledgements:
9  * Luc van OostenRyck for numerous patches.
10  * Nick Bane for numerous patches.
11  * Nick Bane for 2.5/2.6 integration.
12  * Andras Toth for mknod rdev issue.
13  * Michael Fischer for finding the problem with inode inconsistency.
14  * Some code bodily lifted from JFFS
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License version 2 as
18  * published by the Free Software Foundation.
19  */
20
21 /*
22  *
23  * This is the file system front-end to YAFFS that hooks it up to
24  * the VFS.
25  *
26  * Special notes:
27  * >> 2.4: sb->u.generic_sbp points to the struct yaffs_dev associated with
28  *         this superblock
29  * >> 2.6: sb->s_fs_info  points to the struct yaffs_dev associated with this
30  *         superblock
31  * >> inode->u.generic_ip points to the associated struct yaffs_obj.
32  */
33
34 /*
35  * There are two variants of the VFS glue code. This variant should compile
36  * for any version of Linux.
37  */
38 #include <linux/version.h>
39
40 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 10))
41 #define YAFFS_COMPILE_BACKGROUND
42 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 23))
43 #define YAFFS_COMPILE_FREEZER
44 #endif
45 #endif
46
47 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28))
48 #define YAFFS_COMPILE_EXPORTFS
49 #endif
50
51 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35))
52 #define YAFFS_USE_SETATTR_COPY
53 #define YAFFS_USE_TRUNCATE_SETSIZE
54 #endif
55 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 35))
56 #define YAFFS_HAS_EVICT_INODE
57 #endif
58
59 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 13))
60 #define YAFFS_NEW_FOLLOW_LINK 1
61 #else
62 #define YAFFS_NEW_FOLLOW_LINK 0
63 #endif
64
65 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19))
66 #include <linux/config.h>
67 #endif
68
69 #include <linux/kernel.h>
70 #include <linux/module.h>
71 #include <linux/slab.h>
72 #include <linux/init.h>
73 #include <linux/fs.h>
74 #include <linux/proc_fs.h>
75 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 39))
76 #include <linux/smp_lock.h>
77 #endif
78 #include <linux/pagemap.h>
79 #include <linux/mtd/mtd.h>
80 #include <linux/interrupt.h>
81 #include <linux/string.h>
82 #include <linux/ctype.h>
83
84 #if (YAFFS_NEW_FOLLOW_LINK == 1)
85 #include <linux/namei.h>
86 #endif
87
88 #ifdef YAFFS_COMPILE_EXPORTFS
89 #include <linux/exportfs.h>
90 #endif
91
92 #ifdef YAFFS_COMPILE_BACKGROUND
93 #include <linux/kthread.h>
94 #include <linux/delay.h>
95 #endif
96 #ifdef YAFFS_COMPILE_FREEZER
97 #include <linux/freezer.h>
98 #endif
99
100 #include <asm/div64.h>
101
102 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
103
104 #include <linux/statfs.h>
105
106 #define UnlockPage(p) unlock_page(p)
107 #define Page_Uptodate(page)     test_bit(PG_uptodate, &(page)->flags)
108
109 /* FIXME: use sb->s_id instead ? */
110 #define yaffs_devname(sb, buf)  bdevname(sb->s_bdev, buf)
111
112 #else
113
114 #include <linux/locks.h>
115 #define BDEVNAME_SIZE           0
116 #define yaffs_devname(sb, buf)  kdevname(sb->s_dev)
117
118 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 5, 0))
119 /* added NCB 26/5/2006 for 2.4.25-vrs2-tcl1 kernel */
120 #define __user
121 #endif
122
123 #endif
124
125 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26))
126 #define YPROC_ROOT  (&proc_root)
127 #else
128 #define YPROC_ROOT  NULL
129 #endif
130
131 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 26))
132 #define Y_INIT_TIMER(a) init_timer(a)
133 #else
134 #define Y_INIT_TIMER(a) init_timer_on_stack(a)
135 #endif
136
137 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
138 #define WRITE_SIZE_STR "writesize"
139 #define WRITE_SIZE(mtd) ((mtd)->writesize)
140 #else
141 #define WRITE_SIZE_STR "oobblock"
142 #define WRITE_SIZE(mtd) ((mtd)->oobblock)
143 #endif
144
145 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 27))
146 #define YAFFS_USE_WRITE_BEGIN_END 1
147 #else
148 #define YAFFS_USE_WRITE_BEGIN_END 0
149 #endif
150
151 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 28))
152 static uint32_t YCALCBLOCKS(uint64_t partition_size, uint32_t block_size)
153 {
154         uint64_t result = partition_size;
155         do_div(result, block_size);
156         return (uint32_t) result;
157 }
158 #else
159 #define YCALCBLOCKS(s, b) ((s)/(b))
160 #endif
161
162 #include <linux/uaccess.h>
163 #include <linux/mtd/mtd.h>
164
165 #include "yportenv.h"
166 #include "yaffs_trace.h"
167 #include "yaffs_guts.h"
168 #include "yaffs_attribs.h"
169
170 #include "yaffs_linux.h"
171
172 #include "yaffs_mtdif.h"
173 #include "yaffs_mtdif1.h"
174 #include "yaffs_mtdif2.h"
175
176 unsigned int yaffs_trace_mask = YAFFS_TRACE_BAD_BLOCKS | YAFFS_TRACE_ALWAYS;
177 unsigned int yaffs_wr_attempts = YAFFS_WR_ATTEMPTS;
178 unsigned int yaffs_auto_checkpoint = 1;
179 unsigned int yaffs_gc_control = 1;
180 unsigned int yaffs_bg_enable = 1;
181 unsigned int yaffs_auto_select = 1;
182 /* Module Parameters */
183 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
184 module_param(yaffs_trace_mask, uint, 0644);
185 module_param(yaffs_wr_attempts, uint, 0644);
186 module_param(yaffs_auto_checkpoint, uint, 0644);
187 module_param(yaffs_gc_control, uint, 0644);
188 module_param(yaffs_bg_enable, uint, 0644);
189 #else
190 MODULE_PARM(yaffs_trace_mask, "i");
191 MODULE_PARM(yaffs_wr_attempts, "i");
192 MODULE_PARM(yaffs_auto_checkpoint, "i");
193 MODULE_PARM(yaffs_gc_control, "i");
194 #endif
195
196 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 25))
197 /* use iget and read_inode */
198 #define Y_IGET(sb, inum) iget((sb), (inum))
199 static void yaffs_read_inode(struct inode *inode);
200
201 #else
202 /* Call local equivalent */
203 #define YAFFS_USE_OWN_IGET
204 #define Y_IGET(sb, inum) yaffs_iget((sb), (inum))
205
206 static struct inode *yaffs_iget(struct super_block *sb, unsigned long ino);
207 #endif
208
209 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 18))
210 #define yaffs_inode_to_obj_lv(iptr) ((iptr)->i_private)
211 #else
212 #define yaffs_inode_to_obj_lv(iptr) ((iptr)->u.generic_ip)
213 #endif
214
215 #define yaffs_inode_to_obj(iptr) \
216         ((struct yaffs_obj *)(yaffs_inode_to_obj_lv(iptr)))
217 #define yaffs_dentry_to_obj(dptr) yaffs_inode_to_obj((dptr)->d_inode)
218
219 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
220 #define yaffs_super_to_dev(sb)  ((struct yaffs_dev *)sb->s_fs_info)
221 #else
222 #define yaffs_super_to_dev(sb)  ((struct yaffs_dev *)sb->u.generic_sbp)
223 #endif
224
225 #define update_dir_time(dir) do {\
226                         (dir)->i_ctime = (dir)->i_mtime = CURRENT_TIME; \
227                 } while (0)
228
229 static void yaffs_put_super(struct super_block *sb);
230
231 static ssize_t yaffs_file_write(struct file *f, const char *buf, size_t n,
232                                 loff_t *pos);
233 static ssize_t yaffs_hold_space(struct file *f);
234 static void yaffs_release_space(struct file *f);
235
236 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
237 static int yaffs_file_flush(struct file *file, fl_owner_t id);
238 #else
239 static int yaffs_file_flush(struct file *file);
240 #endif
241
242 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
243 static int yaffs_sync_object(struct file *file, loff_t start, loff_t end, int datasync);
244 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 34))
245 static int yaffs_sync_object(struct file *file, int datasync);
246 #else
247 static int yaffs_sync_object(struct file *file, struct dentry *dentry,
248                              int datasync);
249 #endif
250
251 static int yaffs_readdir(struct file *f, void *dirent, filldir_t filldir);
252
253 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
254 static int yaffs_create(struct inode *dir, struct dentry *dentry, int mode,
255                         struct nameidata *n);
256 static struct dentry *yaffs_lookup(struct inode *dir, struct dentry *dentry,
257                                    struct nameidata *n);
258 #else
259 static int yaffs_create(struct inode *dir, struct dentry *dentry, int mode);
260 static struct dentry *yaffs_lookup(struct inode *dir, struct dentry *dentry);
261 #endif
262 static int yaffs_link(struct dentry *old_dentry, struct inode *dir,
263                       struct dentry *dentry);
264 static int yaffs_unlink(struct inode *dir, struct dentry *dentry);
265 static int yaffs_symlink(struct inode *dir, struct dentry *dentry,
266                          const char *symname);
267 static int yaffs_mkdir(struct inode *dir, struct dentry *dentry, int mode);
268
269 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
270 static int yaffs_mknod(struct inode *dir, struct dentry *dentry, int mode,
271                        dev_t dev);
272 #else
273 static int yaffs_mknod(struct inode *dir, struct dentry *dentry, int mode,
274                        int dev);
275 #endif
276 static int yaffs_rename(struct inode *old_dir, struct dentry *old_dentry,
277                         struct inode *new_dir, struct dentry *new_dentry);
278 static int yaffs_setattr(struct dentry *dentry, struct iattr *attr);
279
280 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
281 static int yaffs_sync_fs(struct super_block *sb, int wait);
282 static void yaffs_write_super(struct super_block *sb);
283 #else
284 static int yaffs_sync_fs(struct super_block *sb);
285 static int yaffs_write_super(struct super_block *sb);
286 #endif
287
288 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
289 static int yaffs_statfs(struct dentry *dentry, struct kstatfs *buf);
290 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
291 static int yaffs_statfs(struct super_block *sb, struct kstatfs *buf);
292 #else
293 static int yaffs_statfs(struct super_block *sb, struct statfs *buf);
294 #endif
295
296 #ifdef YAFFS_HAS_PUT_INODE
297 static void yaffs_put_inode(struct inode *inode);
298 #endif
299
300 #ifdef YAFFS_HAS_EVICT_INODE
301 static void yaffs_evict_inode(struct inode *);
302 #else
303 static void yaffs_delete_inode(struct inode *);
304 static void yaffs_clear_inode(struct inode *);
305 #endif
306
307 static int yaffs_readpage(struct file *file, struct page *page);
308 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
309 static int yaffs_writepage(struct page *page, struct writeback_control *wbc);
310 #else
311 static int yaffs_writepage(struct page *page);
312 #endif
313
314 static int yaffs_setxattr(struct dentry *dentry, const char *name,
315                    const void *value, size_t size, int flags);
316 static ssize_t yaffs_getxattr(struct dentry *dentry, const char *name,
317                                 void *buff, size_t size);
318 static int yaffs_removexattr(struct dentry *dentry, const char *name);
319 static ssize_t yaffs_listxattr(struct dentry *dentry, char *buff, size_t size);
320
321 #if (YAFFS_USE_WRITE_BEGIN_END != 0)
322 static int yaffs_write_begin(struct file *filp, struct address_space *mapping,
323                              loff_t pos, unsigned len, unsigned flags,
324                              struct page **pagep, void **fsdata);
325 static int yaffs_write_end(struct file *filp, struct address_space *mapping,
326                            loff_t pos, unsigned len, unsigned copied,
327                            struct page *pg, void *fsdadata);
328 #else
329 static int yaffs_prepare_write(struct file *f, struct page *pg,
330                                unsigned offset, unsigned to);
331 static int yaffs_commit_write(struct file *f, struct page *pg, unsigned offset,
332                               unsigned to);
333
334 #endif
335
336 static int yaffs_readlink(struct dentry *dentry, char __user * buffer,
337                           int buflen);
338 #if (YAFFS_NEW_FOLLOW_LINK == 1)
339 void yaffs_put_link(struct dentry *dentry, struct nameidata *nd, void *alias);
340 static void *yaffs_follow_link(struct dentry *dentry, struct nameidata *nd);
341 #else
342 static int yaffs_follow_link(struct dentry *dentry, struct nameidata *nd);
343 #endif
344
345 static void yaffs_touch_super(struct yaffs_dev *dev);
346
347 static int yaffs_vfs_setattr(struct inode *, struct iattr *);
348
349 static struct address_space_operations yaffs_file_address_operations = {
350         .readpage = yaffs_readpage,
351         .writepage = yaffs_writepage,
352 #if (YAFFS_USE_WRITE_BEGIN_END > 0)
353         .write_begin = yaffs_write_begin,
354         .write_end = yaffs_write_end,
355 #else
356         .prepare_write = yaffs_prepare_write,
357         .commit_write = yaffs_commit_write,
358 #endif
359 };
360
361 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 22))
362 static const struct file_operations yaffs_file_operations = {
363         .read = do_sync_read,
364         .write = do_sync_write,
365         .aio_read = generic_file_aio_read,
366         .aio_write = generic_file_aio_write,
367         .mmap = generic_file_mmap,
368         .flush = yaffs_file_flush,
369         .fsync = yaffs_sync_object,
370         .splice_read = generic_file_splice_read,
371         .splice_write = generic_file_splice_write,
372         .llseek = generic_file_llseek,
373 };
374
375 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 18))
376
377 static const struct file_operations yaffs_file_operations = {
378         .read = do_sync_read,
379         .write = do_sync_write,
380         .aio_read = generic_file_aio_read,
381         .aio_write = generic_file_aio_write,
382         .mmap = generic_file_mmap,
383         .flush = yaffs_file_flush,
384         .fsync = yaffs_sync_object,
385         .sendfile = generic_file_sendfile,
386 };
387
388 #else
389
390 static const struct file_operations yaffs_file_operations = {
391         .read = generic_file_read,
392         .write = generic_file_write,
393         .mmap = generic_file_mmap,
394         .flush = yaffs_file_flush,
395         .fsync = yaffs_sync_object,
396 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
397         .sendfile = generic_file_sendfile,
398 #endif
399 };
400 #endif
401
402 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 25))
403 static void zero_user_segment(struct page *page, unsigned start, unsigned end)
404 {
405         void *kaddr = kmap_atomic(page, KM_USER0);
406         memset(kaddr + start, 0, end - start);
407         kunmap_atomic(kaddr, KM_USER0);
408         flush_dcache_page(page);
409 }
410 #endif
411
412 static const struct inode_operations yaffs_file_inode_operations = {
413         .setattr = yaffs_setattr,
414         .setxattr = yaffs_setxattr,
415         .getxattr = yaffs_getxattr,
416         .listxattr = yaffs_listxattr,
417         .removexattr = yaffs_removexattr,
418 };
419
420 static const struct inode_operations yaffs_symlink_inode_operations = {
421         .readlink = yaffs_readlink,
422         .follow_link = yaffs_follow_link,
423 #if (YAFFS_NEW_FOLLOW_LINK == 1)
424         .put_link = yaffs_put_link,
425 #endif
426         .setattr = yaffs_setattr,
427         .setxattr = yaffs_setxattr,
428         .getxattr = yaffs_getxattr,
429         .listxattr = yaffs_listxattr,
430         .removexattr = yaffs_removexattr,
431 };
432
433 static const struct inode_operations yaffs_dir_inode_operations = {
434         .create = yaffs_create,
435         .lookup = yaffs_lookup,
436         .link = yaffs_link,
437         .unlink = yaffs_unlink,
438         .symlink = yaffs_symlink,
439         .mkdir = yaffs_mkdir,
440         .rmdir = yaffs_unlink,
441         .mknod = yaffs_mknod,
442         .rename = yaffs_rename,
443         .setattr = yaffs_setattr,
444         .setxattr = yaffs_setxattr,
445         .getxattr = yaffs_getxattr,
446         .listxattr = yaffs_listxattr,
447         .removexattr = yaffs_removexattr,
448 };
449
450 static const struct file_operations yaffs_dir_operations = {
451         .read = generic_read_dir,
452         .readdir = yaffs_readdir,
453         .fsync = yaffs_sync_object,
454         .llseek = generic_file_llseek,
455 };
456
457 static const struct super_operations yaffs_super_ops = {
458         .statfs = yaffs_statfs,
459
460 #ifndef YAFFS_USE_OWN_IGET
461         .read_inode = yaffs_read_inode,
462 #endif
463 #ifdef YAFFS_HAS_PUT_INODE
464         .put_inode = yaffs_put_inode,
465 #endif
466         .put_super = yaffs_put_super,
467 #ifdef YAFFS_HAS_EVICT_INODE
468         .evict_inode = yaffs_evict_inode,
469 #else
470         .delete_inode = yaffs_delete_inode,
471         .clear_inode = yaffs_clear_inode,
472 #endif
473         .sync_fs = yaffs_sync_fs,
474         .write_super = yaffs_write_super,
475 };
476
477 static int yaffs_vfs_setattr(struct inode *inode, struct iattr *attr)
478 {
479 #ifdef YAFFS_USE_SETATTR_COPY
480         setattr_copy(inode, attr);
481         return 0;
482 #else
483         return inode_setattr(inode, attr);
484 #endif
485
486 }
487
488 static int yaffs_vfs_setsize(struct inode *inode, loff_t newsize)
489 {
490 #ifdef YAFFS_USE_TRUNCATE_SETSIZE
491         truncate_setsize(inode, newsize);
492         return 0;
493 #else
494         truncate_inode_pages(&inode->i_data, newsize);
495         return 0;
496 #endif
497
498 }
499
500 static unsigned yaffs_gc_control_callback(struct yaffs_dev *dev)
501 {
502         return yaffs_gc_control;
503 }
504
505 static void yaffs_gross_lock(struct yaffs_dev *dev)
506 {
507         yaffs_trace(YAFFS_TRACE_LOCK, "yaffs locking %p", current);
508         mutex_lock(&(yaffs_dev_to_lc(dev)->gross_lock));
509         yaffs_trace(YAFFS_TRACE_LOCK, "yaffs locked %p", current);
510 }
511
512 static void yaffs_gross_unlock(struct yaffs_dev *dev)
513 {
514         yaffs_trace(YAFFS_TRACE_LOCK, "yaffs unlocking %p", current);
515         mutex_unlock(&(yaffs_dev_to_lc(dev)->gross_lock));
516 }
517
518 #ifdef YAFFS_COMPILE_EXPORTFS
519
520 static struct inode *yaffs2_nfs_get_inode(struct super_block *sb, uint64_t ino,
521                                           uint32_t generation)
522 {
523         return Y_IGET(sb, ino);
524 }
525
526 static struct dentry *yaffs2_fh_to_dentry(struct super_block *sb,
527                                           struct fid *fid, int fh_len,
528                                           int fh_type)
529 {
530         return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
531                                     yaffs2_nfs_get_inode);
532 }
533
534 static struct dentry *yaffs2_fh_to_parent(struct super_block *sb,
535                                           struct fid *fid, int fh_len,
536                                           int fh_type)
537 {
538         return generic_fh_to_parent(sb, fid, fh_len, fh_type,
539                                     yaffs2_nfs_get_inode);
540 }
541
542 struct dentry *yaffs2_get_parent(struct dentry *dentry)
543 {
544
545         struct super_block *sb = dentry->d_inode->i_sb;
546         struct dentry *parent = ERR_PTR(-ENOENT);
547         struct inode *inode;
548         unsigned long parent_ino;
549         struct yaffs_obj *d_obj;
550         struct yaffs_obj *parent_obj;
551
552         d_obj = yaffs_inode_to_obj(dentry->d_inode);
553
554         if (d_obj) {
555                 parent_obj = d_obj->parent;
556                 if (parent_obj) {
557                         parent_ino = yaffs_get_obj_inode(parent_obj);
558                         inode = Y_IGET(sb, parent_ino);
559
560                         if (IS_ERR(inode)) {
561                                 parent = ERR_CAST(inode);
562                         } else {
563                                 parent = d_obtain_alias(inode);
564                                 if (!IS_ERR(parent)) {
565                                         parent = ERR_PTR(-ENOMEM);
566                                         iput(inode);
567                                 }
568                         }
569                 }
570         }
571
572         return parent;
573 }
574
575 /* Just declare a zero structure as a NULL value implies
576  * using the default functions of exportfs.
577  */
578
579 static struct export_operations yaffs_export_ops = {
580         .fh_to_dentry = yaffs2_fh_to_dentry,
581         .fh_to_parent = yaffs2_fh_to_parent,
582         .get_parent = yaffs2_get_parent,
583 };
584
585 #endif
586
587 /*-----------------------------------------------------------------*/
588 /* Directory search context allows us to unlock access to yaffs during
589  * filldir without causing problems with the directory being modified.
590  * This is similar to the tried and tested mechanism used in yaffs direct.
591  *
592  * A search context iterates along a doubly linked list of siblings in the
593  * directory. If the iterating object is deleted then this would corrupt
594  * the list iteration, likely causing a crash. The search context avoids
595  * this by using the remove_obj_fn to move the search context to the
596  * next object before the object is deleted.
597  *
598  * Many readdirs (and thus seach conexts) may be alive simulateously so
599  * each struct yaffs_dev has a list of these.
600  *
601  * A seach context lives for the duration of a readdir.
602  *
603  * All these functions must be called while yaffs is locked.
604  */
605
606 struct yaffs_search_context {
607         struct yaffs_dev *dev;
608         struct yaffs_obj *dir_obj;
609         struct yaffs_obj *next_return;
610         struct list_head others;
611 };
612
613 /*
614  * yaffs_new_search() creates a new search context, initialises it and
615  * adds it to the device's search context list.
616  *
617  * Called at start of readdir.
618  */
619 static struct yaffs_search_context *yaffs_new_search(struct yaffs_obj *dir)
620 {
621         struct yaffs_dev *dev = dir->my_dev;
622         struct yaffs_search_context *sc =
623             kmalloc(sizeof(struct yaffs_search_context), GFP_NOFS);
624         if (sc) {
625                 sc->dir_obj = dir;
626                 sc->dev = dev;
627                 if (list_empty(&sc->dir_obj->variant.dir_variant.children))
628                         sc->next_return = NULL;
629                 else
630                         sc->next_return =
631                             list_entry(dir->variant.dir_variant.children.next,
632                                        struct yaffs_obj, siblings);
633                 INIT_LIST_HEAD(&sc->others);
634                 list_add(&sc->others, &(yaffs_dev_to_lc(dev)->search_contexts));
635         }
636         return sc;
637 }
638
639 /*
640  * yaffs_search_end() disposes of a search context and cleans up.
641  */
642 static void yaffs_search_end(struct yaffs_search_context *sc)
643 {
644         if (sc) {
645                 list_del(&sc->others);
646                 kfree(sc);
647         }
648 }
649
650 /*
651  * yaffs_search_advance() moves a search context to the next object.
652  * Called when the search iterates or when an object removal causes
653  * the search context to be moved to the next object.
654  */
655 static void yaffs_search_advance(struct yaffs_search_context *sc)
656 {
657         if (!sc)
658                 return;
659
660         if (sc->next_return == NULL ||
661             list_empty(&sc->dir_obj->variant.dir_variant.children))
662                 sc->next_return = NULL;
663         else {
664                 struct list_head *next = sc->next_return->siblings.next;
665
666                 if (next == &sc->dir_obj->variant.dir_variant.children)
667                         sc->next_return = NULL; /* end of list */
668                 else
669                         sc->next_return =
670                             list_entry(next, struct yaffs_obj, siblings);
671         }
672 }
673
674 /*
675  * yaffs_remove_obj_callback() is called when an object is unlinked.
676  * We check open search contexts and advance any which are currently
677  * on the object being iterated.
678  */
679 static void yaffs_remove_obj_callback(struct yaffs_obj *obj)
680 {
681
682         struct list_head *i;
683         struct yaffs_search_context *sc;
684         struct list_head *search_contexts =
685             &(yaffs_dev_to_lc(obj->my_dev)->search_contexts);
686
687         /* Iterate through the directory search contexts.
688          * If any are currently on the object being removed, then advance
689          * the search context to the next object to prevent a hanging pointer.
690          */
691         list_for_each(i, search_contexts) {
692                 sc = list_entry(i, struct yaffs_search_context, others);
693                 if (sc->next_return == obj)
694                         yaffs_search_advance(sc);
695         }
696
697 }
698
699 /*-----------------------------------------------------------------*/
700
701 static int yaffs_readlink(struct dentry *dentry, char __user * buffer,
702                           int buflen)
703 {
704         unsigned char *alias;
705         int ret;
706
707         struct yaffs_dev *dev = yaffs_dentry_to_obj(dentry)->my_dev;
708
709         yaffs_gross_lock(dev);
710
711         alias = yaffs_get_symlink_alias(yaffs_dentry_to_obj(dentry));
712
713         yaffs_gross_unlock(dev);
714
715         if (!alias)
716                 return -ENOMEM;
717
718         ret = vfs_readlink(dentry, buffer, buflen, alias);
719         kfree(alias);
720         return ret;
721 }
722
723 #if (YAFFS_NEW_FOLLOW_LINK == 1)
724 static void *yaffs_follow_link(struct dentry *dentry, struct nameidata *nd)
725 {
726         void *ret;
727 #else
728 static int yaffs_follow_link(struct dentry *dentry, struct nameidata *nd)
729 {
730         int ret
731 #endif
732         unsigned char *alias;
733         int ret_int = 0;
734         struct yaffs_dev *dev = yaffs_dentry_to_obj(dentry)->my_dev;
735
736         yaffs_gross_lock(dev);
737
738         alias = yaffs_get_symlink_alias(yaffs_dentry_to_obj(dentry));
739         yaffs_gross_unlock(dev);
740
741         if (!alias) {
742                 ret_int = -ENOMEM;
743                 goto out;
744         }
745 #if (YAFFS_NEW_FOLLOW_LINK == 1)
746         nd_set_link(nd, alias);
747         ret = alias;
748 out:
749         if (ret_int)
750                 ret = ERR_PTR(ret_int);
751         return ret;
752 #else
753         ret = vfs_follow_link(nd, alias);
754         kfree(alias);
755 out:
756         if (ret_int)
757                 ret = ret_int;
758         return ret;
759 #endif
760 }
761
762 #if (YAFFS_NEW_FOLLOW_LINK == 1)
763 void yaffs_put_link(struct dentry *dentry, struct nameidata *nd, void *alias)
764 {
765         kfree(alias);
766 }
767 #endif
768
769 struct inode *yaffs_get_inode(struct super_block *sb, int mode, int dev,
770                               struct yaffs_obj *obj);
771
772 /*
773  * Lookup is used to find objects in the fs
774  */
775 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
776
777 static struct dentry *yaffs_lookup(struct inode *dir, struct dentry *dentry,
778                                    struct nameidata *n)
779 #else
780 static struct dentry *yaffs_lookup(struct inode *dir, struct dentry *dentry)
781 #endif
782 {
783         struct yaffs_obj *obj;
784         struct inode *inode = NULL;     /* NCB 2.5/2.6 needs NULL here */
785
786         struct yaffs_dev *dev = yaffs_inode_to_obj(dir)->my_dev;
787
788         if (current != yaffs_dev_to_lc(dev)->readdir_process)
789                 yaffs_gross_lock(dev);
790
791         yaffs_trace(YAFFS_TRACE_OS, "yaffs_lookup for %d:%s",
792                 yaffs_inode_to_obj(dir)->obj_id, dentry->d_name.name);
793
794         obj = yaffs_find_by_name(yaffs_inode_to_obj(dir), dentry->d_name.name);
795
796         obj = yaffs_get_equivalent_obj(obj);    /* in case it was a hardlink */
797
798         /* Can't hold gross lock when calling yaffs_get_inode() */
799         if (current != yaffs_dev_to_lc(dev)->readdir_process)
800                 yaffs_gross_unlock(dev);
801
802         if (obj) {
803                 yaffs_trace(YAFFS_TRACE_OS,
804                         "yaffs_lookup found %d", obj->obj_id);
805
806                 inode = yaffs_get_inode(dir->i_sb, obj->yst_mode, 0, obj);
807         } else {
808                 yaffs_trace(YAFFS_TRACE_OS, "yaffs_lookup not found");
809
810         }
811
812 /* added NCB for 2.5/6 compatability - forces add even if inode is
813  * NULL which creates dentry hash */
814         d_add(dentry, inode);
815
816         return NULL;
817 }
818
819 #ifdef YAFFS_HAS_PUT_INODE
820
821 /* For now put inode is just for debugging
822  * Put inode is called when the inode **structure** is put.
823  */
824 static void yaffs_put_inode(struct inode *inode)
825 {
826         yaffs_trace(YAFFS_TRACE_OS,
827                 "yaffs_put_inode: ino %d, count %d"),
828                 (int)inode->i_ino, atomic_read(&inode->i_count);
829
830 }
831 #endif
832
833 static void yaffs_unstitch_obj(struct inode *inode, struct yaffs_obj *obj)
834 {
835         /* Clear the association between the inode and
836          * the struct yaffs_obj.
837          */
838         obj->my_inode = NULL;
839         yaffs_inode_to_obj_lv(inode) = NULL;
840
841         /* If the object freeing was deferred, then the real
842          * free happens now.
843          * This should fix the inode inconsistency problem.
844          */
845         yaffs_handle_defered_free(obj);
846 }
847
848 #ifdef YAFFS_HAS_EVICT_INODE
849 /* yaffs_evict_inode combines into one operation what was previously done in
850  * yaffs_clear_inode() and yaffs_delete_inode()
851  *
852  */
853 static void yaffs_evict_inode(struct inode *inode)
854 {
855         struct yaffs_obj *obj;
856         struct yaffs_dev *dev;
857         int deleteme = 0;
858
859         obj = yaffs_inode_to_obj(inode);
860
861         yaffs_trace(YAFFS_TRACE_OS,
862                 "yaffs_evict_inode: ino %d, count %d %s",
863                 (int)inode->i_ino, atomic_read(&inode->i_count),
864                 obj ? "object exists" : "null object");
865
866         if (!inode->i_nlink && !is_bad_inode(inode))
867                 deleteme = 1;
868         truncate_inode_pages(&inode->i_data, 0);
869         end_writeback(inode);
870
871         if (deleteme && obj) {
872                 dev = obj->my_dev;
873                 yaffs_gross_lock(dev);
874                 yaffs_del_obj(obj);
875                 yaffs_gross_unlock(dev);
876         }
877         if (obj) {
878                 dev = obj->my_dev;
879                 yaffs_gross_lock(dev);
880                 yaffs_unstitch_obj(inode, obj);
881                 yaffs_gross_unlock(dev);
882         }
883 }
884 #else
885
886 /* clear is called to tell the fs to release any per-inode data it holds.
887  * The object might still exist on disk and is just being thrown out of the cache
888  * or else the object has actually been deleted and we're being called via
889  * the chain
890  *   yaffs_delete_inode() -> clear_inode()->yaffs_clear_inode()
891  */
892
893 static void yaffs_clear_inode(struct inode *inode)
894 {
895         struct yaffs_obj *obj;
896         struct yaffs_dev *dev;
897
898         obj = yaffs_inode_to_obj(inode);
899
900         yaffs_trace(YAFFS_TRACE_OS,
901                 "yaffs_clear_inode: ino %d, count %d %s",
902                 (int)inode->i_ino, atomic_read(&inode->i_count),
903                 obj ? "object exists" : "null object");
904
905         if (obj) {
906                 dev = obj->my_dev;
907                 yaffs_gross_lock(dev);
908                 yaffs_unstitch_obj(inode, obj);
909                 yaffs_gross_unlock(dev);
910         }
911
912 }
913
914 /* delete is called when the link count is zero and the inode
915  * is put (ie. nobody wants to know about it anymore, time to
916  * delete the file).
917  * NB Must call clear_inode()
918  */
919 static void yaffs_delete_inode(struct inode *inode)
920 {
921         struct yaffs_obj *obj = yaffs_inode_to_obj(inode);
922         struct yaffs_dev *dev;
923
924         yaffs_trace(YAFFS_TRACE_OS,
925                 "yaffs_delete_inode: ino %d, count %d %s",
926                 (int)inode->i_ino, atomic_read(&inode->i_count),
927                 obj ? "object exists" : "null object");
928
929         if (obj) {
930                 dev = obj->my_dev;
931                 yaffs_gross_lock(dev);
932                 yaffs_del_obj(obj);
933                 yaffs_gross_unlock(dev);
934         }
935 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 13))
936         truncate_inode_pages(&inode->i_data, 0);
937 #endif
938         clear_inode(inode);
939 }
940 #endif
941
942 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
943 static int yaffs_file_flush(struct file *file, fl_owner_t id)
944 #else
945 static int yaffs_file_flush(struct file *file)
946 #endif
947 {
948         struct yaffs_obj *obj = yaffs_dentry_to_obj(file->f_dentry);
949
950         struct yaffs_dev *dev = obj->my_dev;
951
952         yaffs_trace(YAFFS_TRACE_OS,
953                 "yaffs_file_flush object %d (%s)",
954                 obj->obj_id,
955                 obj->dirty ? "dirty" : "clean");
956
957         yaffs_gross_lock(dev);
958
959         yaffs_flush_file(obj, 1, 0);
960
961         yaffs_gross_unlock(dev);
962
963         return 0;
964 }
965
966 static int yaffs_readpage_nolock(struct file *f, struct page *pg)
967 {
968         /* Lifted from jffs2 */
969
970         struct yaffs_obj *obj;
971         unsigned char *pg_buf;
972         int ret;
973
974         struct yaffs_dev *dev;
975
976         yaffs_trace(YAFFS_TRACE_OS,
977                 "yaffs_readpage_nolock at %08x, size %08x",
978                 (unsigned)(pg->index << PAGE_CACHE_SHIFT),
979                 (unsigned)PAGE_CACHE_SIZE);
980
981         obj = yaffs_dentry_to_obj(f->f_dentry);
982
983         dev = obj->my_dev;
984
985 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
986         BUG_ON(!PageLocked(pg));
987 #else
988         if (!PageLocked(pg))
989                 PAGE_BUG(pg);
990 #endif
991
992         pg_buf = kmap(pg);
993         /* FIXME: Can kmap fail? */
994
995         yaffs_gross_lock(dev);
996
997         ret = yaffs_file_rd(obj, pg_buf,
998                             pg->index << PAGE_CACHE_SHIFT, PAGE_CACHE_SIZE);
999
1000         yaffs_gross_unlock(dev);
1001
1002         if (ret >= 0)
1003                 ret = 0;
1004
1005         if (ret) {
1006                 ClearPageUptodate(pg);
1007                 SetPageError(pg);
1008         } else {
1009                 SetPageUptodate(pg);
1010                 ClearPageError(pg);
1011         }
1012
1013         flush_dcache_page(pg);
1014         kunmap(pg);
1015
1016         yaffs_trace(YAFFS_TRACE_OS, "yaffs_readpage_nolock done");
1017         return ret;
1018 }
1019
1020 static int yaffs_readpage_unlock(struct file *f, struct page *pg)
1021 {
1022         int ret = yaffs_readpage_nolock(f, pg);
1023         UnlockPage(pg);
1024         return ret;
1025 }
1026
1027 static int yaffs_readpage(struct file *f, struct page *pg)
1028 {
1029         int ret;
1030
1031         yaffs_trace(YAFFS_TRACE_OS, "yaffs_readpage");
1032         ret = yaffs_readpage_unlock(f, pg);
1033         yaffs_trace(YAFFS_TRACE_OS, "yaffs_readpage done");
1034         return ret;
1035 }
1036
1037 /* writepage inspired by/stolen from smbfs */
1038
1039 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
1040 static int yaffs_writepage(struct page *page, struct writeback_control *wbc)
1041 #else
1042 static int yaffs_writepage(struct page *page)
1043 #endif
1044 {
1045         struct yaffs_dev *dev;
1046         struct address_space *mapping = page->mapping;
1047         struct inode *inode;
1048         unsigned long end_index;
1049         char *buffer;
1050         struct yaffs_obj *obj;
1051         int n_written = 0;
1052         unsigned n_bytes;
1053         loff_t i_size;
1054
1055         if (!mapping)
1056                 BUG();
1057         inode = mapping->host;
1058         if (!inode)
1059                 BUG();
1060         i_size = i_size_read(inode);
1061
1062         end_index = i_size >> PAGE_CACHE_SHIFT;
1063
1064         if (page->index < end_index)
1065                 n_bytes = PAGE_CACHE_SIZE;
1066         else {
1067                 n_bytes = i_size & (PAGE_CACHE_SIZE - 1);
1068
1069                 if (page->index > end_index || !n_bytes) {
1070                         yaffs_trace(YAFFS_TRACE_OS,
1071                                 "yaffs_writepage at %lld, inode size = %lld!!",
1072                                 ((loff_t)page->index) << PAGE_CACHE_SHIFT,
1073                                 inode->i_size);
1074                         yaffs_trace(YAFFS_TRACE_OS,
1075                                 "                -> don't care!!");
1076
1077                         zero_user_segment(page, 0, PAGE_CACHE_SIZE);
1078                         set_page_writeback(page);
1079                         unlock_page(page);
1080                         end_page_writeback(page);
1081                         return 0;
1082                 }
1083         }
1084
1085         if (n_bytes != PAGE_CACHE_SIZE)
1086                 zero_user_segment(page, n_bytes, PAGE_CACHE_SIZE);
1087
1088         get_page(page);
1089
1090         buffer = kmap(page);
1091
1092         obj = yaffs_inode_to_obj(inode);
1093         dev = obj->my_dev;
1094         yaffs_gross_lock(dev);
1095
1096         yaffs_trace(YAFFS_TRACE_OS,
1097                 "yaffs_writepage at %lld, size %08x",
1098                 ((loff_t)page->index) << PAGE_CACHE_SHIFT, n_bytes);
1099         yaffs_trace(YAFFS_TRACE_OS,
1100                 "writepag0: obj = %lld, ino = %lld",
1101                 obj->variant.file_variant.file_size, inode->i_size);
1102
1103         n_written = yaffs_wr_file(obj, buffer,
1104                                   page->index << PAGE_CACHE_SHIFT, n_bytes, 0);
1105
1106         yaffs_touch_super(dev);
1107
1108         yaffs_trace(YAFFS_TRACE_OS,
1109                 "writepag1: obj = %lld, ino = %lld",
1110                 obj->variant.file_variant.file_size, inode->i_size);
1111
1112         yaffs_gross_unlock(dev);
1113
1114         kunmap(page);
1115         set_page_writeback(page);
1116         unlock_page(page);
1117         end_page_writeback(page);
1118         put_page(page);
1119
1120         return (n_written == n_bytes) ? 0 : -ENOSPC;
1121 }
1122
1123 #if (YAFFS_USE_WRITE_BEGIN_END > 0)
1124 static int yaffs_write_begin(struct file *filp, struct address_space *mapping,
1125                              loff_t pos, unsigned len, unsigned flags,
1126                              struct page **pagep, void **fsdata)
1127 {
1128         struct page *pg = NULL;
1129         pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1130
1131         int ret = 0;
1132         int space_held = 0;
1133
1134         /* Get a page */
1135 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 28)
1136         pg = grab_cache_page_write_begin(mapping, index, flags);
1137 #else
1138         pg = __grab_cache_page(mapping, index);
1139 #endif
1140
1141         *pagep = pg;
1142         if (!pg) {
1143                 ret = -ENOMEM;
1144                 goto out;
1145         }
1146         yaffs_trace(YAFFS_TRACE_OS,
1147                 "start yaffs_write_begin index %d(%x) uptodate %d",
1148                 (int)index, (int)index, Page_Uptodate(pg) ? 1 : 0);
1149
1150         /* Get fs space */
1151         space_held = yaffs_hold_space(filp);
1152
1153         if (!space_held) {
1154                 ret = -ENOSPC;
1155                 goto out;
1156         }
1157
1158         /* Update page if required */
1159
1160         if (!Page_Uptodate(pg))
1161                 ret = yaffs_readpage_nolock(filp, pg);
1162
1163         if (ret)
1164                 goto out;
1165
1166         /* Happy path return */
1167         yaffs_trace(YAFFS_TRACE_OS, "end yaffs_write_begin - ok");
1168
1169         return 0;
1170
1171 out:
1172         yaffs_trace(YAFFS_TRACE_OS,
1173                 "end yaffs_write_begin fail returning %d", ret);
1174         if (space_held)
1175                 yaffs_release_space(filp);
1176         if (pg) {
1177                 unlock_page(pg);
1178                 page_cache_release(pg);
1179         }
1180         return ret;
1181 }
1182
1183 #else
1184
1185 static int yaffs_prepare_write(struct file *f, struct page *pg,
1186                                unsigned offset, unsigned to)
1187 {
1188         yaffs_trace(YAFFS_TRACE_OS, "yaffs_prepair_write");
1189
1190         if (!Page_Uptodate(pg))
1191                 return yaffs_readpage_nolock(f, pg);
1192         return 0;
1193 }
1194 #endif
1195
1196 #if (YAFFS_USE_WRITE_BEGIN_END > 0)
1197 static int yaffs_write_end(struct file *filp, struct address_space *mapping,
1198                            loff_t pos, unsigned len, unsigned copied,
1199                            struct page *pg, void *fsdadata)
1200 {
1201         int ret = 0;
1202         void *addr, *kva;
1203         uint32_t offset_into_page = pos & (PAGE_CACHE_SIZE - 1);
1204
1205         kva = kmap(pg);
1206         addr = kva + offset_into_page;
1207
1208         yaffs_trace(YAFFS_TRACE_OS,
1209                 "yaffs_write_end addr %p pos %lld n_bytes %d",
1210                 addr, pos, copied);
1211
1212         ret = yaffs_file_write(filp, addr, copied, &pos);
1213
1214         if (ret != copied) {
1215                 yaffs_trace(YAFFS_TRACE_OS,
1216                         "yaffs_write_end not same size ret %d  copied %d",
1217                         ret, copied);
1218                 SetPageError(pg);
1219         }
1220
1221         kunmap(pg);
1222
1223         yaffs_release_space(filp);
1224         unlock_page(pg);
1225         page_cache_release(pg);
1226         return ret;
1227 }
1228 #else
1229
1230 static int yaffs_commit_write(struct file *f, struct page *pg, unsigned offset,
1231                               unsigned to)
1232 {
1233         void *addr, *kva;
1234
1235         loff_t pos = (((loff_t) pg->index) << PAGE_CACHE_SHIFT) + offset;
1236         int n_bytes = to - offset;
1237         int n_written;
1238
1239         kva = kmap(pg);
1240         addr = kva + offset;
1241
1242         yaffs_trace(YAFFS_TRACE_OS,
1243                 "yaffs_commit_write addr %p pos %lld n_bytes %d",
1244                 addr, pos, n_bytes);
1245
1246         n_written = yaffs_file_write(f, addr, n_bytes, &pos);
1247
1248         if (n_written != n_bytes) {
1249                 yaffs_trace(YAFFS_TRACE_OS,
1250                         "yaffs_commit_write not same size n_written %d  n_bytes %d",
1251                         n_written, n_bytes);
1252                 SetPageError(pg);
1253         }
1254         kunmap(pg);
1255
1256         yaffs_trace(YAFFS_TRACE_OS,
1257                 "yaffs_commit_write returning %d",
1258                 n_written == n_bytes ? 0 : n_written);
1259
1260         return n_written == n_bytes ? 0 : n_written;
1261 }
1262 #endif
1263
1264 static void yaffs_fill_inode_from_obj(struct inode *inode,
1265                                       struct yaffs_obj *obj)
1266 {
1267         if (inode && obj) {
1268
1269                 /* Check mode against the variant type and attempt to repair if broken. */
1270                 u32 mode = obj->yst_mode;
1271                 switch (obj->variant_type) {
1272                 case YAFFS_OBJECT_TYPE_FILE:
1273                         if (!S_ISREG(mode)) {
1274                                 obj->yst_mode &= ~S_IFMT;
1275                                 obj->yst_mode |= S_IFREG;
1276                         }
1277
1278                         break;
1279                 case YAFFS_OBJECT_TYPE_SYMLINK:
1280                         if (!S_ISLNK(mode)) {
1281                                 obj->yst_mode &= ~S_IFMT;
1282                                 obj->yst_mode |= S_IFLNK;
1283                         }
1284
1285                         break;
1286                 case YAFFS_OBJECT_TYPE_DIRECTORY:
1287                         if (!S_ISDIR(mode)) {
1288                                 obj->yst_mode &= ~S_IFMT;
1289                                 obj->yst_mode |= S_IFDIR;
1290                         }
1291
1292                         break;
1293                 case YAFFS_OBJECT_TYPE_UNKNOWN:
1294                 case YAFFS_OBJECT_TYPE_HARDLINK:
1295                 case YAFFS_OBJECT_TYPE_SPECIAL:
1296                 default:
1297                         /* TODO? */
1298                         break;
1299                 }
1300
1301                 inode->i_flags |= S_NOATIME;
1302
1303                 inode->i_ino = obj->obj_id;
1304                 inode->i_mode = obj->yst_mode;
1305                 inode->i_uid = obj->yst_uid;
1306                 inode->i_gid = obj->yst_gid;
1307 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 19))
1308                 inode->i_blksize = inode->i_sb->s_blocksize;
1309 #endif
1310 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
1311
1312                 inode->i_rdev = old_decode_dev(obj->yst_rdev);
1313                 inode->i_atime.tv_sec = (time_t) (obj->yst_atime);
1314                 inode->i_atime.tv_nsec = 0;
1315                 inode->i_mtime.tv_sec = (time_t) obj->yst_mtime;
1316                 inode->i_mtime.tv_nsec = 0;
1317                 inode->i_ctime.tv_sec = (time_t) obj->yst_ctime;
1318                 inode->i_ctime.tv_nsec = 0;
1319 #else
1320                 inode->i_rdev = obj->yst_rdev;
1321                 inode->i_atime = obj->yst_atime;
1322                 inode->i_mtime = obj->yst_mtime;
1323                 inode->i_ctime = obj->yst_ctime;
1324 #endif
1325                 inode->i_size = yaffs_get_obj_length(obj);
1326                 inode->i_blocks = (inode->i_size + 511) >> 9;
1327
1328                 inode->i_nlink = yaffs_get_obj_link_count(obj);
1329
1330                 yaffs_trace(YAFFS_TRACE_OS,
1331                         "yaffs_fill_inode mode %x uid %d gid %d size %lld count %d",
1332                         inode->i_mode, inode->i_uid, inode->i_gid,
1333                         inode->i_size, atomic_read(&inode->i_count));
1334
1335                 switch (obj->yst_mode & S_IFMT) {
1336                 default:        /* fifo, device or socket */
1337 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
1338                         init_special_inode(inode, obj->yst_mode,
1339                                            old_decode_dev(obj->yst_rdev));
1340 #else
1341                         init_special_inode(inode, obj->yst_mode,
1342                                            (dev_t) (obj->yst_rdev));
1343 #endif
1344                         break;
1345                 case S_IFREG:   /* file */
1346                         inode->i_op = &yaffs_file_inode_operations;
1347                         inode->i_fop = &yaffs_file_operations;
1348                         inode->i_mapping->a_ops =
1349                             &yaffs_file_address_operations;
1350                         break;
1351                 case S_IFDIR:   /* directory */
1352                         inode->i_op = &yaffs_dir_inode_operations;
1353                         inode->i_fop = &yaffs_dir_operations;
1354                         break;
1355                 case S_IFLNK:   /* symlink */
1356                         inode->i_op = &yaffs_symlink_inode_operations;
1357                         break;
1358                 }
1359
1360                 yaffs_inode_to_obj_lv(inode) = obj;
1361
1362                 obj->my_inode = inode;
1363
1364         } else {
1365                 yaffs_trace(YAFFS_TRACE_OS,
1366                         "yaffs_fill_inode invalid parameters");
1367         }
1368
1369 }
1370
1371 struct inode *yaffs_get_inode(struct super_block *sb, int mode, int dev,
1372                               struct yaffs_obj *obj)
1373 {
1374         struct inode *inode;
1375
1376         if (!sb) {
1377                 yaffs_trace(YAFFS_TRACE_OS,
1378                         "yaffs_get_inode for NULL super_block!!");
1379                 return NULL;
1380
1381         }
1382
1383         if (!obj) {
1384                 yaffs_trace(YAFFS_TRACE_OS,
1385                         "yaffs_get_inode for NULL object!!");
1386                 return NULL;
1387
1388         }
1389
1390         yaffs_trace(YAFFS_TRACE_OS,
1391                 "yaffs_get_inode for object %d", obj->obj_id);
1392
1393         inode = Y_IGET(sb, obj->obj_id);
1394         if (IS_ERR(inode))
1395                 return NULL;
1396
1397         /* NB Side effect: iget calls back to yaffs_read_inode(). */
1398         /* iget also increments the inode's i_count */
1399         /* NB You can't be holding gross_lock or deadlock will happen! */
1400
1401         return inode;
1402 }
1403
1404 static ssize_t yaffs_file_write(struct file *f, const char *buf, size_t n,
1405                                 loff_t * pos)
1406 {
1407         struct yaffs_obj *obj;
1408         int n_written;
1409         loff_t ipos;
1410         struct inode *inode;
1411         struct yaffs_dev *dev;
1412
1413         obj = yaffs_dentry_to_obj(f->f_dentry);
1414
1415         if (!obj) {
1416                 yaffs_trace(YAFFS_TRACE_OS,
1417                         "yaffs_file_write: hey obj is null!");
1418                 return -EINVAL;
1419         }
1420
1421         dev = obj->my_dev;
1422
1423         yaffs_gross_lock(dev);
1424
1425         inode = f->f_dentry->d_inode;
1426
1427         if (!S_ISBLK(inode->i_mode) && f->f_flags & O_APPEND)
1428                 ipos = inode->i_size;
1429         else
1430                 ipos = *pos;
1431
1432         yaffs_trace(YAFFS_TRACE_OS,
1433                 "yaffs_file_write about to write writing %u(%x) bytes to object %d at %lld",
1434                 (unsigned)n, (unsigned)n, obj->obj_id, ipos);
1435
1436         n_written = yaffs_wr_file(obj, buf, ipos, n, 0);
1437
1438         yaffs_touch_super(dev);
1439
1440         yaffs_trace(YAFFS_TRACE_OS,
1441                 "yaffs_file_write: %d(%x) bytes written",
1442                 (unsigned)n, (unsigned)n);
1443
1444         if (n_written > 0) {
1445                 ipos += n_written;
1446                 *pos = ipos;
1447                 if (ipos > inode->i_size) {
1448                         inode->i_size = ipos;
1449                         inode->i_blocks = (ipos + 511) >> 9;
1450
1451                         yaffs_trace(YAFFS_TRACE_OS,
1452                                 "yaffs_file_write size updated to %lld bytes, %d blocks",
1453                                 ipos, (int)(inode->i_blocks));
1454                 }
1455
1456         }
1457         yaffs_gross_unlock(dev);
1458         return (n_written == 0) && (n > 0) ? -ENOSPC : n_written;
1459 }
1460
1461 /* Space holding and freeing is done to ensure we have space available for write_begin/end */
1462 /* For now we just assume few parallel writes and check against a small number. */
1463 /* Todo: need to do this with a counter to handle parallel reads better */
1464
1465 static ssize_t yaffs_hold_space(struct file *f)
1466 {
1467         struct yaffs_obj *obj;
1468         struct yaffs_dev *dev;
1469
1470         int n_free_chunks;
1471
1472         obj = yaffs_dentry_to_obj(f->f_dentry);
1473
1474         dev = obj->my_dev;
1475
1476         yaffs_gross_lock(dev);
1477
1478         n_free_chunks = yaffs_get_n_free_chunks(dev);
1479
1480         yaffs_gross_unlock(dev);
1481
1482         return (n_free_chunks > 20) ? 1 : 0;
1483 }
1484
1485 static void yaffs_release_space(struct file *f)
1486 {
1487         struct yaffs_obj *obj;
1488         struct yaffs_dev *dev;
1489
1490         obj = yaffs_dentry_to_obj(f->f_dentry);
1491
1492         dev = obj->my_dev;
1493
1494         yaffs_gross_lock(dev);
1495
1496         yaffs_gross_unlock(dev);
1497 }
1498
1499 static int yaffs_readdir(struct file *f, void *dirent, filldir_t filldir)
1500 {
1501         struct yaffs_obj *obj;
1502         struct yaffs_dev *dev;
1503         struct yaffs_search_context *sc;
1504         struct inode *inode = f->f_dentry->d_inode;
1505         unsigned long offset, curoffs;
1506         struct yaffs_obj *l;
1507         int ret_val = 0;
1508
1509         char name[YAFFS_MAX_NAME_LENGTH + 1];
1510
1511         obj = yaffs_dentry_to_obj(f->f_dentry);
1512         dev = obj->my_dev;
1513
1514         yaffs_gross_lock(dev);
1515
1516         yaffs_dev_to_lc(dev)->readdir_process = current;
1517
1518         offset = f->f_pos;
1519
1520         sc = yaffs_new_search(obj);
1521         if (!sc) {
1522                 ret_val = -ENOMEM;
1523                 goto out;
1524         }
1525
1526         yaffs_trace(YAFFS_TRACE_OS,
1527                 "yaffs_readdir: starting at %d", (int)offset);
1528
1529         if (offset == 0) {
1530                 yaffs_trace(YAFFS_TRACE_OS,
1531                         "yaffs_readdir: entry . ino %d",
1532                         (int)inode->i_ino);
1533                 yaffs_gross_unlock(dev);
1534                 if (filldir(dirent, ".", 1, offset, inode->i_ino, DT_DIR) < 0) {
1535                         yaffs_gross_lock(dev);
1536                         goto out;
1537                 }
1538                 yaffs_gross_lock(dev);
1539                 offset++;
1540                 f->f_pos++;
1541         }
1542         if (offset == 1) {
1543                 yaffs_trace(YAFFS_TRACE_OS,
1544                         "yaffs_readdir: entry .. ino %d",
1545                         (int)f->f_dentry->d_parent->d_inode->i_ino);
1546                 yaffs_gross_unlock(dev);
1547                 if (filldir(dirent, "..", 2, offset,
1548                             f->f_dentry->d_parent->d_inode->i_ino,
1549                             DT_DIR) < 0) {
1550                         yaffs_gross_lock(dev);
1551                         goto out;
1552                 }
1553                 yaffs_gross_lock(dev);
1554                 offset++;
1555                 f->f_pos++;
1556         }
1557
1558         curoffs = 1;
1559
1560         /* If the directory has changed since the open or last call to
1561            readdir, rewind to after the 2 canned entries. */
1562         if (f->f_version != inode->i_version) {
1563                 offset = 2;
1564                 f->f_pos = offset;
1565                 f->f_version = inode->i_version;
1566         }
1567
1568         while (sc->next_return) {
1569                 curoffs++;
1570                 l = sc->next_return;
1571                 if (curoffs >= offset) {
1572                         int this_inode = yaffs_get_obj_inode(l);
1573                         int this_type = yaffs_get_obj_type(l);
1574
1575                         yaffs_get_obj_name(l, name, YAFFS_MAX_NAME_LENGTH + 1);
1576                         yaffs_trace(YAFFS_TRACE_OS,
1577                                 "yaffs_readdir: %s inode %d",
1578                                 name, yaffs_get_obj_inode(l));
1579
1580                         yaffs_gross_unlock(dev);
1581
1582                         if (filldir(dirent,
1583                                     name,
1584                                     strlen(name),
1585                                     offset, this_inode, this_type) < 0) {
1586                                 yaffs_gross_lock(dev);
1587                                 goto out;
1588                         }
1589
1590                         yaffs_gross_lock(dev);
1591
1592                         offset++;
1593                         f->f_pos++;
1594                 }
1595                 yaffs_search_advance(sc);
1596         }
1597
1598 out:
1599         yaffs_search_end(sc);
1600         yaffs_dev_to_lc(dev)->readdir_process = NULL;
1601         yaffs_gross_unlock(dev);
1602
1603         return ret_val;
1604 }
1605
1606 /*
1607  * File creation. Allocate an inode, and we're done..
1608  */
1609
1610 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 29)
1611 #define YCRED(x) x
1612 #else
1613 #define YCRED(x) (x->cred)
1614 #endif
1615
1616 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
1617 static int yaffs_mknod(struct inode *dir, struct dentry *dentry, int mode,
1618                        dev_t rdev)
1619 #else
1620 static int yaffs_mknod(struct inode *dir, struct dentry *dentry, int mode,
1621                        int rdev)
1622 #endif
1623 {
1624         struct inode *inode;
1625
1626         struct yaffs_obj *obj = NULL;
1627         struct yaffs_dev *dev;
1628
1629         struct yaffs_obj *parent = yaffs_inode_to_obj(dir);
1630
1631         int error = -ENOSPC;
1632         uid_t uid = YCRED(current)->fsuid;
1633         gid_t gid =
1634             (dir->i_mode & S_ISGID) ? dir->i_gid : YCRED(current)->fsgid;
1635
1636         if ((dir->i_mode & S_ISGID) && S_ISDIR(mode))
1637                 mode |= S_ISGID;
1638
1639         if (parent) {
1640                 yaffs_trace(YAFFS_TRACE_OS,
1641                         "yaffs_mknod: parent object %d type %d",
1642                         parent->obj_id, parent->variant_type);
1643         } else {
1644                 yaffs_trace(YAFFS_TRACE_OS,
1645                         "yaffs_mknod: could not get parent object");
1646                 return -EPERM;
1647         }
1648
1649         yaffs_trace(YAFFS_TRACE_OS,
1650                 "yaffs_mknod: making oject for %s, mode %x dev %x",
1651                 dentry->d_name.name, mode, rdev);
1652
1653         dev = parent->my_dev;
1654
1655         yaffs_gross_lock(dev);
1656
1657         switch (mode & S_IFMT) {
1658         default:
1659                 /* Special (socket, fifo, device...) */
1660                 yaffs_trace(YAFFS_TRACE_OS, "yaffs_mknod: making special");
1661 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
1662                 obj =
1663                     yaffs_create_special(parent, dentry->d_name.name, mode, uid,
1664                                          gid, old_encode_dev(rdev));
1665 #else
1666                 obj =
1667                     yaffs_create_special(parent, dentry->d_name.name, mode, uid,
1668                                          gid, rdev);
1669 #endif
1670                 break;
1671         case S_IFREG:           /* file          */
1672                 yaffs_trace(YAFFS_TRACE_OS, "yaffs_mknod: making file");
1673                 obj = yaffs_create_file(parent, dentry->d_name.name, mode, uid,
1674                                         gid);
1675                 break;
1676         case S_IFDIR:           /* directory */
1677                 yaffs_trace(YAFFS_TRACE_OS, "yaffs_mknod: making directory");
1678                 obj = yaffs_create_dir(parent, dentry->d_name.name, mode,
1679                                        uid, gid);
1680                 break;
1681         case S_IFLNK:           /* symlink */
1682                 yaffs_trace(YAFFS_TRACE_OS, "yaffs_mknod: making symlink");
1683                 obj = NULL;     /* Do we ever get here? */
1684                 break;
1685         }
1686
1687         /* Can not call yaffs_get_inode() with gross lock held */
1688         yaffs_gross_unlock(dev);
1689
1690         if (obj) {
1691                 inode = yaffs_get_inode(dir->i_sb, mode, rdev, obj);
1692                 d_instantiate(dentry, inode);
1693                 update_dir_time(dir);
1694                 yaffs_trace(YAFFS_TRACE_OS,
1695                         "yaffs_mknod created object %d count = %d",
1696                         obj->obj_id, atomic_read(&inode->i_count));
1697                 error = 0;
1698                 yaffs_fill_inode_from_obj(dir, parent);
1699         } else {
1700                 yaffs_trace(YAFFS_TRACE_OS, "yaffs_mknod failed making object");
1701                 error = -ENOMEM;
1702         }
1703
1704         return error;
1705 }
1706
1707 static int yaffs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1708 {
1709         int ret_val;
1710         yaffs_trace(YAFFS_TRACE_OS, "yaffs_mkdir");
1711         ret_val = yaffs_mknod(dir, dentry, mode | S_IFDIR, 0);
1712         return ret_val;
1713 }
1714
1715 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
1716 static int yaffs_create(struct inode *dir, struct dentry *dentry, int mode,
1717                         struct nameidata *n)
1718 #else
1719 static int yaffs_create(struct inode *dir, struct dentry *dentry, int mode)
1720 #endif
1721 {
1722         yaffs_trace(YAFFS_TRACE_OS, "yaffs_create");
1723         return yaffs_mknod(dir, dentry, mode | S_IFREG, 0);
1724 }
1725
1726 static int yaffs_unlink(struct inode *dir, struct dentry *dentry)
1727 {
1728         int ret_val;
1729
1730         struct yaffs_dev *dev;
1731         struct yaffs_obj *obj;
1732
1733         yaffs_trace(YAFFS_TRACE_OS, "yaffs_unlink %d:%s",
1734                 (int)(dir->i_ino), dentry->d_name.name);
1735         obj = yaffs_inode_to_obj(dir);
1736         dev = obj->my_dev;
1737
1738         yaffs_gross_lock(dev);
1739
1740         ret_val = yaffs_unlinker(obj, dentry->d_name.name);
1741
1742         if (ret_val == YAFFS_OK) {
1743                 dentry->d_inode->i_nlink--;
1744                 dir->i_version++;
1745                 yaffs_gross_unlock(dev);
1746                 mark_inode_dirty(dentry->d_inode);
1747                 update_dir_time(dir);
1748                 return 0;
1749         }
1750         yaffs_gross_unlock(dev);
1751         return -ENOTEMPTY;
1752 }
1753
1754 /*
1755  * Create a link...
1756  */
1757 static int yaffs_link(struct dentry *old_dentry, struct inode *dir,
1758                       struct dentry *dentry)
1759 {
1760         struct inode *inode = old_dentry->d_inode;
1761         struct yaffs_obj *obj = NULL;
1762         struct yaffs_obj *link = NULL;
1763         struct yaffs_dev *dev;
1764
1765         yaffs_trace(YAFFS_TRACE_OS, "yaffs_link");
1766
1767         obj = yaffs_inode_to_obj(inode);
1768         dev = obj->my_dev;
1769
1770         yaffs_gross_lock(dev);
1771
1772         if (!S_ISDIR(inode->i_mode))    /* Don't link directories */
1773                 link =
1774                     yaffs_link_obj(yaffs_inode_to_obj(dir), dentry->d_name.name,
1775                                    obj);
1776
1777         if (link) {
1778                 old_dentry->d_inode->i_nlink = yaffs_get_obj_link_count(obj);
1779                 d_instantiate(dentry, old_dentry->d_inode);
1780                 atomic_inc(&old_dentry->d_inode->i_count);
1781                 yaffs_trace(YAFFS_TRACE_OS,
1782                         "yaffs_link link count %d i_count %d",
1783                         old_dentry->d_inode->i_nlink,
1784                         atomic_read(&old_dentry->d_inode->i_count));
1785         }
1786
1787         yaffs_gross_unlock(dev);
1788
1789         if (link) {
1790                 update_dir_time(dir);
1791                 return 0;
1792         }
1793
1794         return -EPERM;
1795 }
1796
1797 static int yaffs_symlink(struct inode *dir, struct dentry *dentry,
1798                          const char *symname)
1799 {
1800         struct yaffs_obj *obj;
1801         struct yaffs_dev *dev;
1802         uid_t uid = YCRED(current)->fsuid;
1803         gid_t gid =
1804             (dir->i_mode & S_ISGID) ? dir->i_gid : YCRED(current)->fsgid;
1805
1806         yaffs_trace(YAFFS_TRACE_OS, "yaffs_symlink");
1807
1808         dev = yaffs_inode_to_obj(dir)->my_dev;
1809         yaffs_gross_lock(dev);
1810         obj = yaffs_create_symlink(yaffs_inode_to_obj(dir), dentry->d_name.name,
1811                                    S_IFLNK | S_IRWXUGO, uid, gid, symname);
1812         yaffs_gross_unlock(dev);
1813
1814         if (obj) {
1815                 struct inode *inode;
1816
1817                 inode = yaffs_get_inode(dir->i_sb, obj->yst_mode, 0, obj);
1818                 d_instantiate(dentry, inode);
1819                 update_dir_time(dir);
1820                 yaffs_trace(YAFFS_TRACE_OS, "symlink created OK");
1821                 return 0;
1822         } else {
1823                 yaffs_trace(YAFFS_TRACE_OS, "symlink not created");
1824         }
1825
1826         return -ENOMEM;
1827 }
1828
1829 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
1830 static int yaffs_sync_object(struct file *file, loff_t start, loff_t end, int datasync)
1831 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 34))
1832 static int yaffs_sync_object(struct file *file, int datasync)
1833 #else
1834 static int yaffs_sync_object(struct file *file, struct dentry *dentry,
1835                              int datasync)
1836 #endif
1837 {
1838
1839         struct yaffs_obj *obj;
1840         struct yaffs_dev *dev;
1841 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 34))
1842         struct dentry *dentry = file->f_path.dentry;
1843 #endif
1844
1845         obj = yaffs_dentry_to_obj(dentry);
1846
1847         dev = obj->my_dev;
1848
1849         yaffs_trace(YAFFS_TRACE_OS | YAFFS_TRACE_SYNC,
1850                 "yaffs_sync_object");
1851         yaffs_gross_lock(dev);
1852         yaffs_flush_file(obj, 1, datasync);
1853         yaffs_gross_unlock(dev);
1854         return 0;
1855 }
1856
1857 /*
1858  * The VFS layer already does all the dentry stuff for rename.
1859  *
1860  * NB: POSIX says you can rename an object over an old object of the same name
1861  */
1862 static int yaffs_rename(struct inode *old_dir, struct dentry *old_dentry,
1863                         struct inode *new_dir, struct dentry *new_dentry)
1864 {
1865         struct yaffs_dev *dev;
1866         int ret_val = YAFFS_FAIL;
1867         struct yaffs_obj *target;
1868
1869         yaffs_trace(YAFFS_TRACE_OS, "yaffs_rename");
1870         dev = yaffs_inode_to_obj(old_dir)->my_dev;
1871
1872         yaffs_gross_lock(dev);
1873
1874         /* Check if the target is an existing directory that is not empty. */
1875         target = yaffs_find_by_name(yaffs_inode_to_obj(new_dir),
1876                                     new_dentry->d_name.name);
1877
1878         if (target && target->variant_type == YAFFS_OBJECT_TYPE_DIRECTORY &&
1879             !list_empty(&target->variant.dir_variant.children)) {
1880
1881                 yaffs_trace(YAFFS_TRACE_OS, "target is non-empty dir");
1882
1883                 ret_val = YAFFS_FAIL;
1884         } else {
1885                 /* Now does unlinking internally using shadowing mechanism */
1886                 yaffs_trace(YAFFS_TRACE_OS, "calling yaffs_rename_obj");
1887
1888                 ret_val = yaffs_rename_obj(yaffs_inode_to_obj(old_dir),
1889                                            old_dentry->d_name.name,
1890                                            yaffs_inode_to_obj(new_dir),
1891                                            new_dentry->d_name.name);
1892         }
1893         yaffs_gross_unlock(dev);
1894
1895         if (ret_val == YAFFS_OK) {
1896                 if (target) {
1897                         new_dentry->d_inode->i_nlink--;
1898                         mark_inode_dirty(new_dentry->d_inode);
1899                 }
1900
1901                 update_dir_time(old_dir);
1902                 if (old_dir != new_dir)
1903                         update_dir_time(new_dir);
1904                 return 0;
1905         } else {
1906                 return -ENOTEMPTY;
1907         }
1908 }
1909
1910 static int yaffs_setattr(struct dentry *dentry, struct iattr *attr)
1911 {
1912         struct inode *inode = dentry->d_inode;
1913         int error = 0;
1914         struct yaffs_dev *dev;
1915
1916         yaffs_trace(YAFFS_TRACE_OS,
1917                 "yaffs_setattr of object %d",
1918                 yaffs_inode_to_obj(inode)->obj_id);
1919 #if 0
1920         /* Fail if a requested resize >= 2GB */
1921         if (attr->ia_valid & ATTR_SIZE && (attr->ia_size >> 31))
1922                 error = -EINVAL;
1923 #endif
1924
1925         if (error == 0)
1926                 error = inode_change_ok(inode, attr);
1927         if (error == 0) {
1928                 int result;
1929                 if (!error) {
1930                         error = yaffs_vfs_setattr(inode, attr);
1931                         yaffs_trace(YAFFS_TRACE_OS, "inode_setattr called");
1932                         if (attr->ia_valid & ATTR_SIZE) {
1933                                 yaffs_vfs_setsize(inode, attr->ia_size);
1934                                 inode->i_blocks = (inode->i_size + 511) >> 9;
1935                         }
1936                 }
1937                 dev = yaffs_inode_to_obj(inode)->my_dev;
1938                 if (attr->ia_valid & ATTR_SIZE) {
1939                         yaffs_trace(YAFFS_TRACE_OS,
1940                                 "resize to %d(%x)",
1941                                 (int)(attr->ia_size),
1942                                 (int)(attr->ia_size));
1943                 }
1944                 yaffs_gross_lock(dev);
1945                 result = yaffs_set_attribs(yaffs_inode_to_obj(inode), attr);
1946                 if (result == YAFFS_OK) {
1947                         error = 0;
1948                 } else {
1949                         error = -EPERM;
1950                 }
1951                 yaffs_gross_unlock(dev);
1952
1953         }
1954
1955         yaffs_trace(YAFFS_TRACE_OS, "yaffs_setattr done returning %d", error);
1956
1957         return error;
1958 }
1959
1960 static int yaffs_setxattr(struct dentry *dentry, const char *name,
1961                    const void *value, size_t size, int flags)
1962 {
1963         struct inode *inode = dentry->d_inode;
1964         int error = 0;
1965         struct yaffs_dev *dev;
1966         struct yaffs_obj *obj = yaffs_inode_to_obj(inode);
1967
1968         yaffs_trace(YAFFS_TRACE_OS, "yaffs_setxattr of object %d", obj->obj_id);
1969
1970         if (error == 0) {
1971                 int result;
1972                 dev = obj->my_dev;
1973                 yaffs_gross_lock(dev);
1974                 result = yaffs_set_xattrib(obj, name, value, size, flags);
1975                 if (result == YAFFS_OK)
1976                         error = 0;
1977                 else if (result < 0)
1978                         error = result;
1979                 yaffs_gross_unlock(dev);
1980
1981         }
1982         yaffs_trace(YAFFS_TRACE_OS, "yaffs_setxattr done returning %d", error);
1983
1984         return error;
1985 }
1986
1987 static ssize_t yaffs_getxattr(struct dentry * dentry, const char *name,
1988                         void *buff, size_t size)
1989 {
1990         struct inode *inode = dentry->d_inode;
1991         int error = 0;
1992         struct yaffs_dev *dev;
1993         struct yaffs_obj *obj = yaffs_inode_to_obj(inode);
1994
1995         yaffs_trace(YAFFS_TRACE_OS,
1996                 "yaffs_getxattr \"%s\" from object %d",
1997                 name, obj->obj_id);
1998
1999         if (error == 0) {
2000                 dev = obj->my_dev;
2001                 yaffs_gross_lock(dev);
2002                 error = yaffs_get_xattrib(obj, name, buff, size);
2003                 yaffs_gross_unlock(dev);
2004
2005         }
2006         yaffs_trace(YAFFS_TRACE_OS, "yaffs_getxattr done returning %d", error);
2007
2008         return error;
2009 }
2010
2011 static int yaffs_removexattr(struct dentry *dentry, const char *name)
2012 {
2013         struct inode *inode = dentry->d_inode;
2014         int error = 0;
2015         struct yaffs_dev *dev;
2016         struct yaffs_obj *obj = yaffs_inode_to_obj(inode);
2017
2018         yaffs_trace(YAFFS_TRACE_OS,
2019                 "yaffs_removexattr of object %d", obj->obj_id);
2020
2021         if (error == 0) {
2022                 int result;
2023                 dev = obj->my_dev;
2024                 yaffs_gross_lock(dev);
2025                 result = yaffs_remove_xattrib(obj, name);
2026                 if (result == YAFFS_OK)
2027                         error = 0;
2028                 else if (result < 0)
2029                         error = result;
2030                 yaffs_gross_unlock(dev);
2031
2032         }
2033         yaffs_trace(YAFFS_TRACE_OS,
2034                 "yaffs_removexattr done returning %d", error);
2035
2036         return error;
2037 }
2038
2039 static ssize_t yaffs_listxattr(struct dentry * dentry, char *buff, size_t size)
2040 {
2041         struct inode *inode = dentry->d_inode;
2042         int error = 0;
2043         struct yaffs_dev *dev;
2044         struct yaffs_obj *obj = yaffs_inode_to_obj(inode);
2045
2046         yaffs_trace(YAFFS_TRACE_OS,
2047                 "yaffs_listxattr of object %d", obj->obj_id);
2048
2049         if (error == 0) {
2050                 dev = obj->my_dev;
2051                 yaffs_gross_lock(dev);
2052                 error = yaffs_list_xattrib(obj, buff, size);
2053                 yaffs_gross_unlock(dev);
2054
2055         }
2056         yaffs_trace(YAFFS_TRACE_OS,
2057                 "yaffs_listxattr done returning %d", error);
2058
2059         return error;
2060 }
2061
2062
2063 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2064 static int yaffs_statfs(struct dentry *dentry, struct kstatfs *buf)
2065 {
2066         struct yaffs_dev *dev = yaffs_dentry_to_obj(dentry)->my_dev;
2067         struct super_block *sb = dentry->d_sb;
2068 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
2069 static int yaffs_statfs(struct super_block *sb, struct kstatfs *buf)
2070 {
2071         struct yaffs_dev *dev = yaffs_super_to_dev(sb);
2072 #else
2073 static int yaffs_statfs(struct super_block *sb, struct statfs *buf)
2074 {
2075         struct yaffs_dev *dev = yaffs_super_to_dev(sb);
2076 #endif
2077
2078         yaffs_trace(YAFFS_TRACE_OS, "yaffs_statfs");
2079
2080         yaffs_gross_lock(dev);
2081
2082         buf->f_type = YAFFS_MAGIC;
2083         buf->f_bsize = sb->s_blocksize;
2084         buf->f_namelen = 255;
2085
2086         if (dev->data_bytes_per_chunk & (dev->data_bytes_per_chunk - 1)) {
2087                 /* Do this if chunk size is not a power of 2 */
2088
2089                 uint64_t bytes_in_dev;
2090                 uint64_t bytes_free;
2091
2092                 bytes_in_dev =
2093                     ((uint64_t)
2094                      ((dev->param.end_block - dev->param.start_block +
2095                        1))) * ((uint64_t) (dev->param.chunks_per_block *
2096                                            dev->data_bytes_per_chunk));
2097
2098                 do_div(bytes_in_dev, sb->s_blocksize);  /* bytes_in_dev becomes the number of blocks */
2099                 buf->f_blocks = bytes_in_dev;
2100
2101                 bytes_free = ((uint64_t) (yaffs_get_n_free_chunks(dev))) *
2102                     ((uint64_t) (dev->data_bytes_per_chunk));
2103
2104                 do_div(bytes_free, sb->s_blocksize);
2105
2106                 buf->f_bfree = bytes_free;
2107
2108         } else if (sb->s_blocksize > dev->data_bytes_per_chunk) {
2109
2110                 buf->f_blocks =
2111                     (dev->param.end_block - dev->param.start_block + 1) *
2112                     dev->param.chunks_per_block /
2113                     (sb->s_blocksize / dev->data_bytes_per_chunk);
2114                 buf->f_bfree =
2115                     yaffs_get_n_free_chunks(dev) /
2116                     (sb->s_blocksize / dev->data_bytes_per_chunk);
2117         } else {
2118                 buf->f_blocks =
2119                     (dev->param.end_block - dev->param.start_block + 1) *
2120                     dev->param.chunks_per_block *
2121                     (dev->data_bytes_per_chunk / sb->s_blocksize);
2122
2123                 buf->f_bfree =
2124                     yaffs_get_n_free_chunks(dev) *
2125                     (dev->data_bytes_per_chunk / sb->s_blocksize);
2126         }
2127
2128         buf->f_files = 0;
2129         buf->f_ffree = 0;
2130         buf->f_bavail = buf->f_bfree;
2131
2132         yaffs_gross_unlock(dev);
2133         return 0;
2134 }
2135
2136 static void yaffs_flush_inodes(struct super_block *sb)
2137 {
2138         struct inode *iptr;
2139         struct yaffs_obj *obj;
2140
2141         list_for_each_entry(iptr, &sb->s_inodes, i_sb_list) {
2142                 obj = yaffs_inode_to_obj(iptr);
2143                 if (obj) {
2144                         yaffs_trace(YAFFS_TRACE_OS,
2145                                 "flushing obj %d",
2146                                 obj->obj_id);
2147                         yaffs_flush_file(obj, 1, 0);
2148                 }
2149         }
2150 }
2151
2152 static void yaffs_flush_super(struct super_block *sb, int do_checkpoint)
2153 {
2154         struct yaffs_dev *dev = yaffs_super_to_dev(sb);
2155         if (!dev)
2156                 return;
2157
2158         yaffs_flush_inodes(sb);
2159         yaffs_update_dirty_dirs(dev);
2160         yaffs_flush_whole_cache(dev);
2161         if (do_checkpoint)
2162                 yaffs_checkpoint_save(dev);
2163 }
2164
2165 static unsigned yaffs_bg_gc_urgency(struct yaffs_dev *dev)
2166 {
2167         unsigned erased_chunks =
2168             dev->n_erased_blocks * dev->param.chunks_per_block;
2169         struct yaffs_linux_context *context = yaffs_dev_to_lc(dev);
2170         unsigned scattered = 0; /* Free chunks not in an erased block */
2171
2172         if (erased_chunks < dev->n_free_chunks)
2173                 scattered = (dev->n_free_chunks - erased_chunks);
2174
2175         if (!context->bg_running)
2176                 return 0;
2177         else if (scattered < (dev->param.chunks_per_block * 2))
2178                 return 0;
2179         else if (erased_chunks > dev->n_free_chunks / 2)
2180                 return 0;
2181         else if (erased_chunks > dev->n_free_chunks / 4)
2182                 return 1;
2183         else
2184                 return 2;
2185 }
2186
2187 static int yaffs_do_sync_fs(struct super_block *sb, int request_checkpoint)
2188 {
2189
2190         struct yaffs_dev *dev = yaffs_super_to_dev(sb);
2191         unsigned int oneshot_checkpoint = (yaffs_auto_checkpoint & 4);
2192         unsigned gc_urgent = yaffs_bg_gc_urgency(dev);
2193         int do_checkpoint;
2194
2195         yaffs_trace(YAFFS_TRACE_OS | YAFFS_TRACE_SYNC | YAFFS_TRACE_BACKGROUND,
2196                 "yaffs_do_sync_fs: gc-urgency %d %s %s%s",
2197                 gc_urgent,
2198                 sb->s_dirt ? "dirty" : "clean",
2199                 request_checkpoint ? "checkpoint requested" : "no checkpoint",
2200                 oneshot_checkpoint ? " one-shot" : "");
2201
2202         yaffs_gross_lock(dev);
2203         do_checkpoint = ((request_checkpoint && !gc_urgent) ||
2204                          oneshot_checkpoint) && !dev->is_checkpointed;
2205
2206         if (sb->s_dirt || do_checkpoint) {
2207                 yaffs_flush_super(sb, !dev->is_checkpointed && do_checkpoint);
2208                 sb->s_dirt = 0;
2209                 if (oneshot_checkpoint)
2210                         yaffs_auto_checkpoint &= ~4;
2211         }
2212         yaffs_gross_unlock(dev);
2213
2214         return 0;
2215 }
2216
2217 /*
2218  * yaffs background thread functions .
2219  * yaffs_bg_thread_fn() the thread function
2220  * yaffs_bg_start() launches the background thread.
2221  * yaffs_bg_stop() cleans up the background thread.
2222  *
2223  * NB:
2224  * The thread should only run after the yaffs is initialised
2225  * The thread should be stopped before yaffs is unmounted.
2226  * The thread should not do any writing while the fs is in read only.
2227  */
2228
2229 #ifdef YAFFS_COMPILE_BACKGROUND
2230
2231 void yaffs_background_waker(unsigned long data)
2232 {
2233         wake_up_process((struct task_struct *)data);
2234 }
2235
2236 static int yaffs_bg_thread_fn(void *data)
2237 {
2238         struct yaffs_dev *dev = (struct yaffs_dev *)data;
2239         struct yaffs_linux_context *context = yaffs_dev_to_lc(dev);
2240         unsigned long now = jiffies;
2241         unsigned long next_dir_update = now;
2242         unsigned long next_gc = now;
2243         unsigned long expires;
2244         unsigned int urgency;
2245
2246         int gc_result;
2247         struct timer_list timer;
2248
2249         yaffs_trace(YAFFS_TRACE_BACKGROUND,
2250                 "yaffs_background starting for dev %p", (void *)dev);
2251
2252 #ifdef YAFFS_COMPILE_FREEZER
2253         set_freezable();
2254 #endif
2255         while (context->bg_running) {
2256                 yaffs_trace(YAFFS_TRACE_BACKGROUND, "yaffs_background");
2257
2258                 if (kthread_should_stop())
2259                         break;
2260
2261 #ifdef YAFFS_COMPILE_FREEZER
2262                 if (try_to_freeze())
2263                         continue;
2264 #endif
2265                 yaffs_gross_lock(dev);
2266
2267                 now = jiffies;
2268
2269                 if (time_after(now, next_dir_update) && yaffs_bg_enable) {
2270                         yaffs_update_dirty_dirs(dev);
2271                         next_dir_update = now + HZ;
2272                 }
2273
2274                 if (time_after(now, next_gc) && yaffs_bg_enable) {
2275                         if (!dev->is_checkpointed) {
2276                                 urgency = yaffs_bg_gc_urgency(dev);
2277                                 gc_result = yaffs_bg_gc(dev, urgency);
2278                                 if (urgency > 1)
2279                                         next_gc = now + HZ / 20 + 1;
2280                                 else if (urgency > 0)
2281                                         next_gc = now + HZ / 10 + 1;
2282                                 else
2283                                         next_gc = now + HZ * 2;
2284                         } else  {
2285                                 /*
2286                                  * gc not running so set to next_dir_update
2287                                  * to cut down on wake ups
2288                                  */
2289                                 next_gc = next_dir_update;
2290                         }
2291                 }
2292                 yaffs_gross_unlock(dev);
2293 #if 1
2294                 expires = next_dir_update;
2295                 if (time_before(next_gc, expires))
2296                         expires = next_gc;
2297                 if (time_before(expires, now))
2298                         expires = now + HZ;
2299
2300                 Y_INIT_TIMER(&timer);
2301                 timer.expires = expires + 1;
2302                 timer.data = (unsigned long)current;
2303                 timer.function = yaffs_background_waker;
2304
2305                 set_current_state(TASK_INTERRUPTIBLE);
2306                 add_timer(&timer);
2307                 schedule();
2308                 del_timer_sync(&timer);
2309 #else
2310                 msleep(10);
2311 #endif
2312         }
2313
2314         return 0;
2315 }
2316
2317 static int yaffs_bg_start(struct yaffs_dev *dev)
2318 {
2319         int retval = 0;
2320         struct yaffs_linux_context *context = yaffs_dev_to_lc(dev);
2321
2322         if (dev->read_only)
2323                 return -1;
2324
2325         context->bg_running = 1;
2326
2327         context->bg_thread = kthread_run(yaffs_bg_thread_fn,
2328                                          (void *)dev, "yaffs-bg-%d",
2329                                          context->mount_id);
2330
2331         if (IS_ERR(context->bg_thread)) {
2332                 retval = PTR_ERR(context->bg_thread);
2333                 context->bg_thread = NULL;
2334                 context->bg_running = 0;
2335         }
2336         return retval;
2337 }
2338
2339 static void yaffs_bg_stop(struct yaffs_dev *dev)
2340 {
2341         struct yaffs_linux_context *ctxt = yaffs_dev_to_lc(dev);
2342
2343         ctxt->bg_running = 0;
2344
2345         if (ctxt->bg_thread) {
2346                 kthread_stop(ctxt->bg_thread);
2347                 ctxt->bg_thread = NULL;
2348         }
2349 }
2350 #else
2351 static int yaffs_bg_thread_fn(void *data)
2352 {
2353         return 0;
2354 }
2355
2356 static int yaffs_bg_start(struct yaffs_dev *dev)
2357 {
2358         return 0;
2359 }
2360
2361 static void yaffs_bg_stop(struct yaffs_dev *dev)
2362 {
2363 }
2364 #endif
2365
2366 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2367 static void yaffs_write_super(struct super_block *sb)
2368 #else
2369 static int yaffs_write_super(struct super_block *sb)
2370 #endif
2371 {
2372         unsigned request_checkpoint = (yaffs_auto_checkpoint >= 2);
2373
2374         yaffs_trace(YAFFS_TRACE_OS | YAFFS_TRACE_SYNC | YAFFS_TRACE_BACKGROUND,
2375                 "yaffs_write_super %s",
2376                 request_checkpoint ? " checkpt" : "");
2377
2378         yaffs_do_sync_fs(sb, request_checkpoint);
2379
2380 #if (LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 18))
2381         return 0;
2382 #endif
2383 }
2384
2385 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2386 static int yaffs_sync_fs(struct super_block *sb, int wait)
2387 #else
2388 static int yaffs_sync_fs(struct super_block *sb)
2389 #endif
2390 {
2391         unsigned request_checkpoint = (yaffs_auto_checkpoint >= 1);
2392
2393         yaffs_trace(YAFFS_TRACE_OS | YAFFS_TRACE_SYNC,
2394                 "yaffs_sync_fs%s", request_checkpoint ? " checkpt" : "");
2395
2396         yaffs_do_sync_fs(sb, request_checkpoint);
2397
2398         return 0;
2399 }
2400
2401 #ifdef YAFFS_USE_OWN_IGET
2402
2403 static struct inode *yaffs_iget(struct super_block *sb, unsigned long ino)
2404 {
2405         struct inode *inode;
2406         struct yaffs_obj *obj;
2407         struct yaffs_dev *dev = yaffs_super_to_dev(sb);
2408
2409         yaffs_trace(YAFFS_TRACE_OS, "yaffs_iget for %lu", ino);
2410
2411         inode = iget_locked(sb, ino);
2412         if (!inode)
2413                 return ERR_PTR(-ENOMEM);
2414         if (!(inode->i_state & I_NEW))
2415                 return inode;
2416
2417         /* NB This is called as a side effect of other functions, but
2418          * we had to release the lock to prevent deadlocks, so
2419          * need to lock again.
2420          */
2421
2422         yaffs_gross_lock(dev);
2423
2424         obj = yaffs_find_by_number(dev, inode->i_ino);
2425
2426         yaffs_fill_inode_from_obj(inode, obj);
2427
2428         yaffs_gross_unlock(dev);
2429
2430         unlock_new_inode(inode);
2431         return inode;
2432 }
2433
2434 #else
2435
2436 static void yaffs_read_inode(struct inode *inode)
2437 {
2438         /* NB This is called as a side effect of other functions, but
2439          * we had to release the lock to prevent deadlocks, so
2440          * need to lock again.
2441          */
2442
2443         struct yaffs_obj *obj;
2444         struct yaffs_dev *dev = yaffs_super_to_dev(inode->i_sb);
2445
2446         yaffs_trace(YAFFS_TRACE_OS,
2447                 "yaffs_read_inode for %d", (int)inode->i_ino);
2448
2449         if (current != yaffs_dev_to_lc(dev)->readdir_process)
2450                 yaffs_gross_lock(dev);
2451
2452         obj = yaffs_find_by_number(dev, inode->i_ino);
2453
2454         yaffs_fill_inode_from_obj(inode, obj);
2455
2456         if (current != yaffs_dev_to_lc(dev)->readdir_process)
2457                 yaffs_gross_unlock(dev);
2458 }
2459
2460 #endif
2461
2462 static LIST_HEAD(yaffs_context_list);
2463 struct mutex yaffs_context_lock;
2464
2465 static void yaffs_put_super(struct super_block *sb)
2466 {
2467         struct yaffs_dev *dev = yaffs_super_to_dev(sb);
2468
2469         yaffs_trace(YAFFS_TRACE_OS, "yaffs_put_super");
2470
2471         yaffs_trace(YAFFS_TRACE_OS | YAFFS_TRACE_BACKGROUND,
2472                 "Shutting down yaffs background thread");
2473         yaffs_bg_stop(dev);
2474         yaffs_trace(YAFFS_TRACE_OS | YAFFS_TRACE_BACKGROUND,
2475                 "yaffs background thread shut down");
2476
2477         yaffs_gross_lock(dev);
2478
2479         yaffs_flush_super(sb, 1);
2480
2481         if (yaffs_dev_to_lc(dev)->put_super_fn)
2482                 yaffs_dev_to_lc(dev)->put_super_fn(sb);
2483
2484         yaffs_deinitialise(dev);
2485
2486         yaffs_gross_unlock(dev);
2487
2488         mutex_lock(&yaffs_context_lock);
2489         list_del_init(&(yaffs_dev_to_lc(dev)->context_list));
2490         mutex_unlock(&yaffs_context_lock);
2491
2492         if (yaffs_dev_to_lc(dev)->spare_buffer) {
2493                 kfree(yaffs_dev_to_lc(dev)->spare_buffer);
2494                 yaffs_dev_to_lc(dev)->spare_buffer = NULL;
2495         }
2496
2497         kfree(dev);
2498 }
2499
2500 static void yaffs_mtd_put_super(struct super_block *sb)
2501 {
2502         struct mtd_info *mtd = yaffs_dev_to_mtd(yaffs_super_to_dev(sb));
2503
2504         if (mtd->sync)
2505                 mtd->sync(mtd);
2506
2507         put_mtd_device(mtd);
2508 }
2509
2510 static void yaffs_touch_super(struct yaffs_dev *dev)
2511 {
2512         struct super_block *sb = yaffs_dev_to_lc(dev)->super;
2513
2514         yaffs_trace(YAFFS_TRACE_OS, "yaffs_touch_super() sb = %p", sb);
2515         if (sb)
2516                 sb->s_dirt = 1;
2517 }
2518
2519 struct yaffs_options {
2520         int inband_tags;
2521         int skip_checkpoint_read;
2522         int skip_checkpoint_write;
2523         int no_cache;
2524         int tags_ecc_on;
2525         int tags_ecc_overridden;
2526         int lazy_loading_enabled;
2527         int lazy_loading_overridden;
2528         int empty_lost_and_found;
2529         int empty_lost_and_found_overridden;
2530         int disable_summary;
2531 };
2532
2533 #define MAX_OPT_LEN 30
2534 static int yaffs_parse_options(struct yaffs_options *options,
2535                                const char *options_str)
2536 {
2537         char cur_opt[MAX_OPT_LEN + 1];
2538         int p;
2539         int error = 0;
2540
2541         /* Parse through the options which is a comma seperated list */
2542
2543         while (options_str && *options_str && !error) {
2544                 memset(cur_opt, 0, MAX_OPT_LEN + 1);
2545                 p = 0;
2546
2547                 while (*options_str == ',')
2548                         options_str++;
2549
2550                 while (*options_str && *options_str != ',') {
2551                         if (p < MAX_OPT_LEN) {
2552                                 cur_opt[p] = *options_str;
2553                                 p++;
2554                         }
2555                         options_str++;
2556                 }
2557
2558                 if (!strcmp(cur_opt, "inband-tags")) {
2559                         options->inband_tags = 1;
2560                 } else if (!strcmp(cur_opt, "tags-ecc-off")) {
2561                         options->tags_ecc_on = 0;
2562                         options->tags_ecc_overridden = 1;
2563                 } else if (!strcmp(cur_opt, "tags-ecc-on")) {
2564                         options->tags_ecc_on = 1;
2565                         options->tags_ecc_overridden = 1;
2566                 } else if (!strcmp(cur_opt, "lazy-loading-off")) {
2567                         options->lazy_loading_enabled = 0;
2568                         options->lazy_loading_overridden = 1;
2569                 } else if (!strcmp(cur_opt, "lazy-loading-on")) {
2570                         options->lazy_loading_enabled = 1;
2571                         options->lazy_loading_overridden = 1;
2572                 } else if (!strcmp(cur_opt, "disable-summary")) {
2573                         options->disable_summary = 1;
2574                 } else if (!strcmp(cur_opt, "empty-lost-and-found-off")) {
2575                         options->empty_lost_and_found = 0;
2576                         options->empty_lost_and_found_overridden = 1;
2577                 } else if (!strcmp(cur_opt, "empty-lost-and-found-on")) {
2578                         options->empty_lost_and_found = 1;
2579                         options->empty_lost_and_found_overridden = 1;
2580                 } else if (!strcmp(cur_opt, "no-cache")) {
2581                         options->no_cache = 1;
2582                 } else if (!strcmp(cur_opt, "no-checkpoint-read")) {
2583                         options->skip_checkpoint_read = 1;
2584                 } else if (!strcmp(cur_opt, "no-checkpoint-write")) {
2585                         options->skip_checkpoint_write = 1;
2586                 } else if (!strcmp(cur_opt, "no-checkpoint")) {
2587                         options->skip_checkpoint_read = 1;
2588                         options->skip_checkpoint_write = 1;
2589                 } else {
2590                         printk(KERN_INFO "yaffs: Bad mount option \"%s\"\n",
2591                                cur_opt);
2592                         error = 1;
2593                 }
2594         }
2595
2596         return error;
2597 }
2598
2599 static struct super_block *yaffs_internal_read_super(int yaffs_version,
2600                                                      struct super_block *sb,
2601                                                      void *data, int silent)
2602 {
2603         int n_blocks;
2604         struct inode *inode = NULL;
2605         struct dentry *root;
2606         struct yaffs_dev *dev = 0;
2607         char devname_buf[BDEVNAME_SIZE + 1];
2608         struct mtd_info *mtd;
2609         int err;
2610         char *data_str = (char *)data;
2611         struct yaffs_linux_context *context = NULL;
2612         struct yaffs_param *param;
2613
2614         int read_only = 0;
2615
2616         struct yaffs_options options;
2617
2618         unsigned mount_id;
2619         int found;
2620         struct yaffs_linux_context *context_iterator;
2621         struct list_head *l;
2622
2623         if (!sb) {
2624                 printk(KERN_INFO "yaffs: sb is NULL\n");
2625                 return NULL;
2626         }
2627
2628         sb->s_magic = YAFFS_MAGIC;
2629         sb->s_op = &yaffs_super_ops;
2630         sb->s_flags |= MS_NOATIME;
2631
2632         read_only = ((sb->s_flags & MS_RDONLY) != 0);
2633
2634 #ifdef YAFFS_COMPILE_EXPORTFS
2635         sb->s_export_op = &yaffs_export_ops;
2636 #endif
2637
2638         if (!sb->s_dev)
2639                 printk(KERN_INFO "yaffs: sb->s_dev is NULL\n");
2640         else if (!yaffs_devname(sb, devname_buf))
2641                 printk(KERN_INFO "yaffs: devname is NULL\n");
2642         else
2643                 printk(KERN_INFO "yaffs: dev is %d name is \"%s\" %s\n",
2644                        sb->s_dev,
2645                        yaffs_devname(sb, devname_buf), read_only ? "ro" : "rw");
2646
2647         if (!data_str)
2648                 data_str = "";
2649
2650         printk(KERN_INFO "yaffs: passed flags \"%s\"\n", data_str);
2651
2652         memset(&options, 0, sizeof(options));
2653
2654         if (yaffs_parse_options(&options, data_str)) {
2655                 /* Option parsing failed */
2656                 return NULL;
2657         }
2658
2659         sb->s_blocksize = PAGE_CACHE_SIZE;
2660         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2661
2662         yaffs_trace(YAFFS_TRACE_OS,
2663                 "yaffs_read_super: Using yaffs%d", yaffs_version);
2664         yaffs_trace(YAFFS_TRACE_OS,
2665                 "yaffs_read_super: block size %d", (int)(sb->s_blocksize));
2666
2667         yaffs_trace(YAFFS_TRACE_ALWAYS,
2668                 "yaffs: Attempting MTD mount of %u.%u,\"%s\"",
2669                 MAJOR(sb->s_dev), MINOR(sb->s_dev),
2670                 yaffs_devname(sb, devname_buf));
2671
2672         /* Check it's an mtd device..... */
2673         if (MAJOR(sb->s_dev) != MTD_BLOCK_MAJOR)
2674                 return NULL;    /* This isn't an mtd device */
2675
2676         /* Get the device */
2677         mtd = get_mtd_device(NULL, MINOR(sb->s_dev));
2678         if (!mtd) {
2679                 yaffs_trace(YAFFS_TRACE_ALWAYS,
2680                         "yaffs: MTD device #%u doesn't appear to exist",
2681                         MINOR(sb->s_dev));
2682                 return NULL;
2683         }
2684         /* Check it's NAND */
2685         if (mtd->type != MTD_NANDFLASH) {
2686                 yaffs_trace(YAFFS_TRACE_ALWAYS,
2687                         "yaffs: MTD device is not NAND it's type %d",
2688                         mtd->type);
2689                 return NULL;
2690         }
2691
2692         yaffs_trace(YAFFS_TRACE_OS, " erase %p", mtd->erase);
2693         yaffs_trace(YAFFS_TRACE_OS, " read %p", mtd->read);
2694         yaffs_trace(YAFFS_TRACE_OS, " write %p", mtd->write);
2695         yaffs_trace(YAFFS_TRACE_OS, " readoob %p", mtd->read_oob);
2696         yaffs_trace(YAFFS_TRACE_OS, " writeoob %p", mtd->write_oob);
2697         yaffs_trace(YAFFS_TRACE_OS, " block_isbad %p", mtd->block_isbad);
2698         yaffs_trace(YAFFS_TRACE_OS, " block_markbad %p", mtd->block_markbad);
2699         yaffs_trace(YAFFS_TRACE_OS, " %s %d", WRITE_SIZE_STR, WRITE_SIZE(mtd));
2700         yaffs_trace(YAFFS_TRACE_OS, " oobsize %d", mtd->oobsize);
2701         yaffs_trace(YAFFS_TRACE_OS, " erasesize %d", mtd->erasesize);
2702 #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 29)
2703         yaffs_trace(YAFFS_TRACE_OS, " size %u", mtd->size);
2704 #else
2705         yaffs_trace(YAFFS_TRACE_OS, " size %lld", mtd->size);
2706 #endif
2707
2708         if (yaffs_auto_select && yaffs_version == 1 && WRITE_SIZE(mtd) >= 2048) {
2709                 yaffs_trace(YAFFS_TRACE_ALWAYS, "auto selecting yaffs2");
2710                 yaffs_version = 2;
2711         }
2712
2713         /* Added NCB 26/5/2006 for completeness */
2714         if (yaffs_version == 2 && !options.inband_tags
2715             && WRITE_SIZE(mtd) == 512) {
2716                 yaffs_trace(YAFFS_TRACE_ALWAYS, "auto selecting yaffs1");
2717                 yaffs_version = 1;
2718         }
2719
2720         if (yaffs_version == 2) {
2721                 /* Check for version 2 style functions */
2722                 if (!mtd->erase ||
2723                     !mtd->block_isbad ||
2724                     !mtd->block_markbad || !mtd->read || !mtd->write ||
2725 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2726                     !mtd->read_oob || !mtd->write_oob) {
2727 #else
2728                     !mtd->write_ecc ||
2729                     !mtd->read_ecc || !mtd->read_oob || !mtd->write_oob) {
2730 #endif
2731                         yaffs_trace(YAFFS_TRACE_ALWAYS,
2732                                 "MTD device does not support required functions"
2733                         );
2734                         return NULL;
2735                 }
2736
2737                 if ((WRITE_SIZE(mtd) < YAFFS_MIN_YAFFS2_CHUNK_SIZE ||
2738                      mtd->oobsize < YAFFS_MIN_YAFFS2_SPARE_SIZE) &&
2739                     !options.inband_tags) {
2740                         yaffs_trace(YAFFS_TRACE_ALWAYS,
2741                                 "MTD device does not have the right page sizes"
2742                         );
2743                         return NULL;
2744                 }
2745         } else {
2746                 /* Check for V1 style functions */
2747                 if (!mtd->erase || !mtd->read || !mtd->write ||
2748 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2749                     !mtd->read_oob || !mtd->write_oob) {
2750 #else
2751                     !mtd->write_ecc ||
2752                     !mtd->read_ecc || !mtd->read_oob || !mtd->write_oob) {
2753 #endif
2754                         yaffs_trace(YAFFS_TRACE_ALWAYS,
2755                                 "MTD device does not support required functions"
2756                         );
2757                         return NULL;
2758                 }
2759
2760                 if (WRITE_SIZE(mtd) < YAFFS_BYTES_PER_CHUNK ||
2761                     mtd->oobsize != YAFFS_BYTES_PER_SPARE) {
2762                         yaffs_trace(YAFFS_TRACE_ALWAYS,
2763                                 "MTD device does not support have the right page sizes"
2764                         );
2765                         return NULL;
2766                 }
2767         }
2768
2769         /* OK, so if we got here, we have an MTD that's NAND and looks
2770          * like it has the right capabilities
2771          * Set the struct yaffs_dev up for mtd
2772          */
2773
2774         if (!read_only && !(mtd->flags & MTD_WRITEABLE)) {
2775                 read_only = 1;
2776                 printk(KERN_INFO
2777                        "yaffs: mtd is read only, setting superblock read only\n"
2778                 );
2779                 sb->s_flags |= MS_RDONLY;
2780         }
2781
2782         dev = kmalloc(sizeof(struct yaffs_dev), GFP_KERNEL);
2783         context = kmalloc(sizeof(struct yaffs_linux_context), GFP_KERNEL);
2784
2785         if (!dev || !context) {
2786                 if (dev)
2787                         kfree(dev);
2788                 if (context)
2789                         kfree(context);
2790                 dev = NULL;
2791                 context = NULL;
2792         }
2793
2794         if (!dev) {
2795                 /* Deep shit could not allocate device structure */
2796                 yaffs_trace(YAFFS_TRACE_ALWAYS,
2797                         "yaffs_read_super: Failed trying to allocate struct yaffs_dev."
2798                 );
2799                 return NULL;
2800         }
2801         memset(dev, 0, sizeof(struct yaffs_dev));
2802         param = &(dev->param);
2803
2804         memset(context, 0, sizeof(struct yaffs_linux_context));
2805         dev->os_context = context;
2806         INIT_LIST_HEAD(&(context->context_list));
2807         context->dev = dev;
2808         context->super = sb;
2809
2810         dev->read_only = read_only;
2811
2812 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
2813         sb->s_fs_info = dev;
2814 #else
2815         sb->u.generic_sbp = dev;
2816 #endif
2817
2818         dev->driver_context = mtd;
2819         param->name = mtd->name;
2820
2821         /* Set up the memory size parameters.... */
2822
2823         n_blocks =
2824             YCALCBLOCKS(mtd->size,
2825                         (YAFFS_CHUNKS_PER_BLOCK * YAFFS_BYTES_PER_CHUNK));
2826
2827         param->start_block = 0;
2828         param->end_block = n_blocks - 1;
2829         param->chunks_per_block = YAFFS_CHUNKS_PER_BLOCK;
2830         param->total_bytes_per_chunk = YAFFS_BYTES_PER_CHUNK;
2831         param->n_reserved_blocks = 5;
2832         param->n_caches = (options.no_cache) ? 0 : 10;
2833         param->inband_tags = options.inband_tags;
2834
2835         param->enable_xattr = 1;
2836         if (options.lazy_loading_overridden)
2837                 param->disable_lazy_load = !options.lazy_loading_enabled;
2838
2839         param->defered_dir_update = 1;
2840
2841         if (options.tags_ecc_overridden)
2842                 param->no_tags_ecc = !options.tags_ecc_on;
2843
2844         param->empty_lost_n_found = 1;
2845         param->refresh_period = 500;
2846         param->disable_summary = options.disable_summary;
2847
2848         if (options.empty_lost_and_found_overridden)
2849                 param->empty_lost_n_found = options.empty_lost_and_found;
2850
2851         /* ... and the functions. */
2852         if (yaffs_version == 2) {
2853                 param->write_chunk_tags_fn = nandmtd2_write_chunk_tags;
2854                 param->read_chunk_tags_fn = nandmtd2_read_chunk_tags;
2855                 param->bad_block_fn = nandmtd2_mark_block_bad;
2856                 param->query_block_fn = nandmtd2_query_block;
2857                 yaffs_dev_to_lc(dev)->spare_buffer =
2858                                 kmalloc(mtd->oobsize, GFP_NOFS);
2859                 param->is_yaffs2 = 1;
2860 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2861                 param->total_bytes_per_chunk = mtd->writesize;
2862                 param->chunks_per_block = mtd->erasesize / mtd->writesize;
2863 #else
2864                 param->total_bytes_per_chunk = mtd->oobblock;
2865                 param->chunks_per_block = mtd->erasesize / mtd->oobblock;
2866 #endif
2867                 n_blocks = YCALCBLOCKS(mtd->size, mtd->erasesize);
2868
2869                 param->start_block = 0;
2870                 param->end_block = n_blocks - 1;
2871         } else {
2872 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2873                 /* use the MTD interface in yaffs_mtdif1.c */
2874                 param->write_chunk_tags_fn = nandmtd1_write_chunk_tags;
2875                 param->read_chunk_tags_fn = nandmtd1_read_chunk_tags;
2876                 param->bad_block_fn = nandmtd1_mark_block_bad;
2877                 param->query_block_fn = nandmtd1_query_block;
2878 #else
2879                 param->write_chunk_fn = nandmtd_write_chunk;
2880                 param->read_chunk_fn = nandmtd_read_chunk;
2881 #endif
2882                 param->is_yaffs2 = 0;
2883         }
2884         /* ... and common functions */
2885         param->erase_fn = nandmtd_erase_block;
2886         param->initialise_flash_fn = nandmtd_initialise;
2887
2888         yaffs_dev_to_lc(dev)->put_super_fn = yaffs_mtd_put_super;
2889
2890         param->sb_dirty_fn = yaffs_touch_super;
2891         param->gc_control = yaffs_gc_control_callback;
2892
2893         yaffs_dev_to_lc(dev)->super = sb;
2894
2895         param->use_nand_ecc = 1;
2896
2897         param->skip_checkpt_rd = options.skip_checkpoint_read;
2898         param->skip_checkpt_wr = options.skip_checkpoint_write;
2899
2900         mutex_lock(&yaffs_context_lock);
2901         /* Get a mount id */
2902         found = 0;
2903         for (mount_id = 0; !found; mount_id++) {
2904                 found = 1;
2905                 list_for_each(l, &yaffs_context_list) {
2906                         context_iterator =
2907                             list_entry(l, struct yaffs_linux_context,
2908                                        context_list);
2909                         if (context_iterator->mount_id == mount_id)
2910                                 found = 0;
2911                 }
2912         }
2913         context->mount_id = mount_id;
2914
2915         list_add_tail(&(yaffs_dev_to_lc(dev)->context_list),
2916                       &yaffs_context_list);
2917         mutex_unlock(&yaffs_context_lock);
2918
2919         /* Directory search handling... */
2920         INIT_LIST_HEAD(&(yaffs_dev_to_lc(dev)->search_contexts));
2921         param->remove_obj_fn = yaffs_remove_obj_callback;
2922
2923         mutex_init(&(yaffs_dev_to_lc(dev)->gross_lock));
2924
2925         yaffs_gross_lock(dev);
2926
2927         err = yaffs_guts_initialise(dev);
2928
2929         yaffs_trace(YAFFS_TRACE_OS,
2930                 "yaffs_read_super: guts initialised %s",
2931                 (err == YAFFS_OK) ? "OK" : "FAILED");
2932
2933         if (err == YAFFS_OK)
2934                 yaffs_bg_start(dev);
2935
2936         if (!context->bg_thread)
2937                 param->defered_dir_update = 0;
2938
2939         /* Release lock before yaffs_get_inode() */
2940         yaffs_gross_unlock(dev);
2941
2942         /* Create root inode */
2943         if (err == YAFFS_OK)
2944                 inode = yaffs_get_inode(sb, S_IFDIR | 0755, 0, yaffs_root(dev));
2945
2946         if (!inode)
2947                 return NULL;
2948
2949         inode->i_op = &yaffs_dir_inode_operations;
2950         inode->i_fop = &yaffs_dir_operations;
2951
2952         yaffs_trace(YAFFS_TRACE_OS, "yaffs_read_super: got root inode");
2953
2954         root = d_alloc_root(inode);
2955
2956         yaffs_trace(YAFFS_TRACE_OS, "yaffs_read_super: d_alloc_root done");
2957
2958         if (!root) {
2959                 iput(inode);
2960                 return NULL;
2961         }
2962         sb->s_root = root;
2963         sb->s_dirt = !dev->is_checkpointed;
2964         yaffs_trace(YAFFS_TRACE_ALWAYS,
2965                 "yaffs_read_super: is_checkpointed %d",
2966                 dev->is_checkpointed);
2967
2968         yaffs_trace(YAFFS_TRACE_OS, "yaffs_read_super: done");
2969         return sb;
2970 }
2971
2972 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
2973 static int yaffs_internal_read_super_mtd(struct super_block *sb, void *data,
2974                                          int silent)
2975 {
2976         return yaffs_internal_read_super(1, sb, data, silent) ? 0 : -EINVAL;
2977 }
2978
2979 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
2980 static struct dentry *yaffs_mount(struct file_system_type *fs_type, int flags,
2981         const char *dev_name, void *data)
2982 {
2983     return mount_bdev(fs_type, flags, dev_name, data, yaffs_internal_read_super_mtd);
2984 }
2985 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
2986 static int yaffs_read_super(struct file_system_type *fs,
2987                             int flags, const char *dev_name,
2988                             void *data, struct vfsmount *mnt)
2989 {
2990
2991         return get_sb_bdev(fs, flags, dev_name, data,
2992                            yaffs_internal_read_super_mtd, mnt);
2993 }
2994 #else
2995 static struct super_block *yaffs_read_super(struct file_system_type *fs,
2996                                             int flags, const char *dev_name,
2997                                             void *data)
2998 {
2999
3000         return get_sb_bdev(fs, flags, dev_name, data,
3001                            yaffs_internal_read_super_mtd);
3002 }
3003 #endif
3004
3005 static struct file_system_type yaffs_fs_type = {
3006         .owner = THIS_MODULE,
3007         .name = "yaffs",
3008 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
3009         .mount = yaffs_mount,
3010 #else
3011         .get_sb = yaffs_read_super,
3012 #endif
3013         .kill_sb = kill_block_super,
3014         .fs_flags = FS_REQUIRES_DEV,
3015 };
3016 #else
3017 static struct super_block *yaffs_read_super(struct super_block *sb, void *data,
3018                                             int silent)
3019 {
3020         return yaffs_internal_read_super(1, sb, data, silent);
3021 }
3022
3023 static DECLARE_FSTYPE(yaffs_fs_type, "yaffs", yaffs_read_super,
3024                       FS_REQUIRES_DEV);
3025 #endif
3026
3027
3028 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0))
3029 static int yaffs2_internal_read_super_mtd(struct super_block *sb, void *data,
3030                                           int silent)
3031 {
3032         return yaffs_internal_read_super(2, sb, data, silent) ? 0 : -EINVAL;
3033 }
3034
3035 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
3036 static struct dentry *yaffs2_mount(struct file_system_type *fs_type, int flags,
3037         const char *dev_name, void *data)
3038 {
3039         return mount_bdev(fs_type, flags, dev_name, data, yaffs2_internal_read_super_mtd);
3040 }
3041 #elif (LINUX_VERSION_CODE > KERNEL_VERSION(2, 6, 17))
3042 static int yaffs2_read_super(struct file_system_type *fs,
3043                              int flags, const char *dev_name, void *data,
3044                              struct vfsmount *mnt)
3045 {
3046         return get_sb_bdev(fs, flags, dev_name, data,
3047                            yaffs2_internal_read_super_mtd, mnt);
3048 }
3049 #else
3050 static struct super_block *yaffs2_read_super(struct file_system_type *fs,
3051                                              int flags, const char *dev_name,
3052                                              void *data)
3053 {
3054
3055         return get_sb_bdev(fs, flags, dev_name, data,
3056                            yaffs2_internal_read_super_mtd);
3057 }
3058 #endif
3059
3060 static struct file_system_type yaffs2_fs_type = {
3061         .owner = THIS_MODULE,
3062         .name = "yaffs2",
3063 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39))
3064         .mount = yaffs2_mount,
3065 #else
3066         .get_sb = yaffs2_read_super,
3067 #endif
3068         .kill_sb = kill_block_super,
3069         .fs_flags = FS_REQUIRES_DEV,
3070 };
3071 #else
3072 static struct super_block *yaffs2_read_super(struct super_block *sb,
3073                                              void *data, int silent)
3074 {
3075         return yaffs_internal_read_super(2, sb, data, silent);
3076 }
3077
3078 static DECLARE_FSTYPE(yaffs2_fs_type, "yaffs2", yaffs2_read_super,
3079                       FS_REQUIRES_DEV);
3080 #endif
3081
3082
3083 static struct proc_dir_entry *my_proc_entry;
3084
3085 static char *yaffs_dump_dev_part0(char *buf, struct yaffs_dev *dev)
3086 {
3087         struct yaffs_param *param = &dev->param;
3088
3089         buf += sprintf(buf, "start_block.......... %d\n", param->start_block);
3090         buf += sprintf(buf, "end_block............ %d\n", param->end_block);
3091         buf += sprintf(buf, "total_bytes_per_chunk %d\n",
3092                                 param->total_bytes_per_chunk);
3093         buf += sprintf(buf, "use_nand_ecc......... %d\n", param->use_nand_ecc);
3094         buf += sprintf(buf, "no_tags_ecc.......... %d\n", param->no_tags_ecc);
3095         buf += sprintf(buf, "is_yaffs2............ %d\n", param->is_yaffs2);
3096         buf += sprintf(buf, "inband_tags.......... %d\n", param->inband_tags);
3097         buf += sprintf(buf, "empty_lost_n_found... %d\n",
3098                                 param->empty_lost_n_found);
3099         buf += sprintf(buf, "disable_lazy_load.... %d\n",
3100                                 param->disable_lazy_load);
3101         buf += sprintf(buf, "refresh_period....... %d\n",
3102                                 param->refresh_period);
3103         buf += sprintf(buf, "n_caches............. %d\n", param->n_caches);
3104         buf += sprintf(buf, "n_reserved_blocks.... %d\n",
3105                                 param->n_reserved_blocks);
3106         buf += sprintf(buf, "always_check_erased.. %d\n",
3107                                 param->always_check_erased);
3108         buf += sprintf(buf, "\n");
3109
3110         return buf;
3111 }
3112
3113 static char *yaffs_dump_dev_part1(char *buf, struct yaffs_dev *dev)
3114 {
3115         buf += sprintf(buf, "data_bytes_per_chunk. %d\n",
3116                                 dev->data_bytes_per_chunk);
3117         buf += sprintf(buf, "chunk_grp_bits....... %d\n", dev->chunk_grp_bits);
3118         buf += sprintf(buf, "chunk_grp_size....... %d\n", dev->chunk_grp_size);
3119         buf += sprintf(buf, "n_erased_blocks...... %d\n", dev->n_erased_blocks);
3120         buf += sprintf(buf, "blocks_in_checkpt.... %d\n",
3121                                 dev->blocks_in_checkpt);
3122         buf += sprintf(buf, "\n");
3123         buf += sprintf(buf, "n_tnodes............. %d\n", dev->n_tnodes);
3124         buf += sprintf(buf, "n_obj................ %d\n", dev->n_obj);
3125         buf += sprintf(buf, "n_free_chunks........ %d\n", dev->n_free_chunks);
3126         buf += sprintf(buf, "\n");
3127         buf += sprintf(buf, "n_page_writes........ %u\n", dev->n_page_writes);
3128         buf += sprintf(buf, "n_page_reads......... %u\n", dev->n_page_reads);
3129         buf += sprintf(buf, "n_erasures........... %u\n", dev->n_erasures);
3130         buf += sprintf(buf, "n_gc_copies.......... %u\n", dev->n_gc_copies);
3131         buf += sprintf(buf, "all_gcs.............. %u\n", dev->all_gcs);
3132         buf += sprintf(buf, "passive_gc_count..... %u\n",
3133                                 dev->passive_gc_count);
3134         buf += sprintf(buf, "oldest_dirty_gc_count %u\n",
3135                                 dev->oldest_dirty_gc_count);
3136         buf += sprintf(buf, "n_gc_blocks.......... %u\n", dev->n_gc_blocks);
3137         buf += sprintf(buf, "bg_gcs............... %u\n", dev->bg_gcs);
3138         buf += sprintf(buf, "n_retried_writes..... %u\n",
3139                                 dev->n_retried_writes);
3140         buf += sprintf(buf, "n_retired_blocks..... %u\n",
3141                                 dev->n_retired_blocks);
3142         buf += sprintf(buf, "n_ecc_fixed.......... %u\n", dev->n_ecc_fixed);
3143         buf += sprintf(buf, "n_ecc_unfixed........ %u\n", dev->n_ecc_unfixed);
3144         buf += sprintf(buf, "n_tags_ecc_fixed..... %u\n",
3145                                 dev->n_tags_ecc_fixed);
3146         buf += sprintf(buf, "n_tags_ecc_unfixed... %u\n",
3147                                 dev->n_tags_ecc_unfixed);
3148         buf += sprintf(buf, "cache_hits........... %u\n", dev->cache_hits);
3149         buf += sprintf(buf, "n_deleted_files...... %u\n", dev->n_deleted_files);
3150         buf += sprintf(buf, "n_unlinked_files..... %u\n",
3151                                 dev->n_unlinked_files);
3152         buf += sprintf(buf, "refresh_count........ %u\n", dev->refresh_count);
3153         buf += sprintf(buf, "n_bg_deletions....... %u\n", dev->n_bg_deletions);
3154         buf += sprintf(buf, "tags_used............ %u\n", dev->tags_used);
3155         buf += sprintf(buf, "summary_used......... %u\n", dev->summary_used);
3156
3157         return buf;
3158 }
3159
3160 static int yaffs_proc_read(char *page,
3161                            char **start,
3162                            off_t offset, int count, int *eof, void *data)
3163 {
3164         struct list_head *item;
3165         char *buf = page;
3166         int step = offset;
3167         int n = 0;
3168
3169         /* Get proc_file_read() to step 'offset' by one on each sucessive call.
3170          * We use 'offset' (*ppos) to indicate where we are in dev_list.
3171          * This also assumes the user has posted a read buffer large
3172          * enough to hold the complete output; but that's life in /proc.
3173          */
3174
3175         *(int *)start = 1;
3176
3177         /* Print header first */
3178         if (step == 0)
3179                 buf +=
3180                     sprintf(buf,
3181                             "Multi-version YAFFS built:" __DATE__ " " __TIME__
3182                             "\n");
3183         else if (step == 1)
3184                 buf += sprintf(buf, "\n");
3185         else {
3186                 step -= 2;
3187
3188                 mutex_lock(&yaffs_context_lock);
3189
3190                 /* Locate and print the Nth entry.  Order N-squared but N is small. */
3191                 list_for_each(item, &yaffs_context_list) {
3192                         struct yaffs_linux_context *dc =
3193                             list_entry(item, struct yaffs_linux_context,
3194                                        context_list);
3195                         struct yaffs_dev *dev = dc->dev;
3196
3197                         if (n < (step & ~1)) {
3198                                 n += 2;
3199                                 continue;
3200                         }
3201                         if ((step & 1) == 0) {
3202                                 buf +=
3203                                     sprintf(buf, "\nDevice %d \"%s\"\n", n,
3204                                             dev->param.name);
3205                                 buf = yaffs_dump_dev_part0(buf, dev);
3206                         } else {
3207                                 buf = yaffs_dump_dev_part1(buf, dev);
3208                         }
3209
3210                         break;
3211                 }
3212                 mutex_unlock(&yaffs_context_lock);
3213         }
3214
3215         return buf - page < count ? buf - page : count;
3216 }
3217
3218 /**
3219  * Set the verbosity of the warnings and error messages.
3220  *
3221  * Note that the names can only be a..z or _ with the current code.
3222  */
3223
3224 static struct {
3225         char *mask_name;
3226         unsigned mask_bitfield;
3227 } mask_flags[] = {
3228         {"allocate", YAFFS_TRACE_ALLOCATE},
3229         {"always", YAFFS_TRACE_ALWAYS},
3230         {"background", YAFFS_TRACE_BACKGROUND},
3231         {"bad_blocks", YAFFS_TRACE_BAD_BLOCKS},
3232         {"buffers", YAFFS_TRACE_BUFFERS},
3233         {"bug", YAFFS_TRACE_BUG},
3234         {"checkpt", YAFFS_TRACE_CHECKPOINT},
3235         {"deletion", YAFFS_TRACE_DELETION},
3236         {"erase", YAFFS_TRACE_ERASE},
3237         {"error", YAFFS_TRACE_ERROR},
3238         {"gc_detail", YAFFS_TRACE_GC_DETAIL},
3239         {"gc", YAFFS_TRACE_GC},
3240         {"lock", YAFFS_TRACE_LOCK},
3241         {"mtd", YAFFS_TRACE_MTD},
3242         {"nandaccess", YAFFS_TRACE_NANDACCESS},
3243         {"os", YAFFS_TRACE_OS},
3244         {"scan_debug", YAFFS_TRACE_SCAN_DEBUG},
3245         {"scan", YAFFS_TRACE_SCAN},
3246         {"mount", YAFFS_TRACE_MOUNT},
3247         {"tracing", YAFFS_TRACE_TRACING},
3248         {"sync", YAFFS_TRACE_SYNC},
3249         {"write", YAFFS_TRACE_WRITE},
3250         {"verify", YAFFS_TRACE_VERIFY},
3251         {"verify_nand", YAFFS_TRACE_VERIFY_NAND},
3252         {"verify_full", YAFFS_TRACE_VERIFY_FULL},
3253         {"verify_all", YAFFS_TRACE_VERIFY_ALL},
3254         {"all", 0xffffffff},
3255         {"none", 0},
3256         {NULL, 0},
3257 };
3258
3259 #define MAX_MASK_NAME_LENGTH 40
3260 static int yaffs_proc_write_trace_options(struct file *file, const char *buf,
3261                                           unsigned long count, void *data)
3262 {
3263         unsigned rg = 0, mask_bitfield;
3264         char *end;
3265         char *mask_name;
3266         const char *x;
3267         char substring[MAX_MASK_NAME_LENGTH + 1];
3268         int i;
3269         int done = 0;
3270         int add, len = 0;
3271         int pos = 0;
3272
3273         rg = yaffs_trace_mask;
3274
3275         while (!done && (pos < count)) {
3276                 done = 1;
3277                 while ((pos < count) && isspace(buf[pos]))
3278                         pos++;
3279
3280                 switch (buf[pos]) {
3281                 case '+':
3282                 case '-':
3283                 case '=':
3284                         add = buf[pos];
3285                         pos++;
3286                         break;
3287
3288                 default:
3289                         add = ' ';
3290                         break;
3291                 }
3292                 mask_name = NULL;
3293
3294                 mask_bitfield = simple_strtoul(buf + pos, &end, 0);
3295
3296                 if (end > buf + pos) {
3297                         mask_name = "numeral";
3298                         len = end - (buf + pos);
3299                         pos += len;
3300                         done = 0;
3301                 } else {
3302                         for (x = buf + pos, i = 0;
3303                              (*x == '_' || (*x >= 'a' && *x <= 'z')) &&
3304                              i < MAX_MASK_NAME_LENGTH; x++, i++, pos++)
3305                                 substring[i] = *x;
3306                         substring[i] = '\0';
3307
3308                         for (i = 0; mask_flags[i].mask_name != NULL; i++) {
3309                                 if (strcmp(substring, mask_flags[i].mask_name)
3310                                     == 0) {
3311                                         mask_name = mask_flags[i].mask_name;
3312                                         mask_bitfield =
3313                                             mask_flags[i].mask_bitfield;
3314                                         done = 0;
3315                                         break;
3316                                 }
3317                         }
3318                 }
3319
3320                 if (mask_name != NULL) {
3321                         done = 0;
3322                         switch (add) {
3323                         case '-':
3324                                 rg &= ~mask_bitfield;
3325                                 break;
3326                         case '+':
3327                                 rg |= mask_bitfield;
3328                                 break;
3329                         case '=':
3330                                 rg = mask_bitfield;
3331                                 break;
3332                         default:
3333                                 rg |= mask_bitfield;
3334                                 break;
3335                         }
3336                 }
3337         }
3338
3339         yaffs_trace_mask = rg | YAFFS_TRACE_ALWAYS;
3340
3341         printk(KERN_DEBUG "new trace = 0x%08X\n", yaffs_trace_mask);
3342
3343         if (rg & YAFFS_TRACE_ALWAYS) {
3344                 for (i = 0; mask_flags[i].mask_name != NULL; i++) {
3345                         char flag;
3346                         flag = ((rg & mask_flags[i].mask_bitfield) ==
3347                                 mask_flags[i].mask_bitfield) ? '+' : '-';
3348                         printk(KERN_DEBUG "%c%s\n", flag,
3349                                mask_flags[i].mask_name);
3350                 }
3351         }
3352
3353         return count;
3354 }
3355
3356 static int yaffs_proc_write(struct file *file, const char *buf,
3357                             unsigned long count, void *data)
3358 {
3359         return yaffs_proc_write_trace_options(file, buf, count, data);
3360 }
3361
3362 /* Stuff to handle installation of file systems */
3363 struct file_system_to_install {
3364         struct file_system_type *fst;
3365         int installed;
3366 };
3367
3368 static struct file_system_to_install fs_to_install[] = {
3369         {&yaffs_fs_type, 0},
3370         {&yaffs2_fs_type, 0},
3371         {NULL, 0}
3372 };
3373
3374 static int __init init_yaffs_fs(void)
3375 {
3376         int error = 0;
3377         struct file_system_to_install *fsinst;
3378
3379         yaffs_trace(YAFFS_TRACE_ALWAYS,
3380                 "yaffs built " __DATE__ " " __TIME__ " Installing.");
3381
3382         mutex_init(&yaffs_context_lock);
3383
3384         /* Install the proc_fs entries */
3385         my_proc_entry = create_proc_entry("yaffs",
3386                                           S_IRUGO | S_IFREG, YPROC_ROOT);
3387
3388         if (my_proc_entry) {
3389                 my_proc_entry->write_proc = yaffs_proc_write;
3390                 my_proc_entry->read_proc = yaffs_proc_read;
3391                 my_proc_entry->data = NULL;
3392         } else {
3393                 return -ENOMEM;
3394         }
3395
3396         /* Now add the file system entries */
3397
3398         fsinst = fs_to_install;
3399
3400         while (fsinst->fst && !error) {
3401                 error = register_filesystem(fsinst->fst);
3402                 if (!error)
3403                         fsinst->installed = 1;
3404                 fsinst++;
3405         }
3406
3407         /* Any errors? uninstall  */
3408         if (error) {
3409                 fsinst = fs_to_install;
3410
3411                 while (fsinst->fst) {
3412                         if (fsinst->installed) {
3413                                 unregister_filesystem(fsinst->fst);
3414                                 fsinst->installed = 0;
3415                         }
3416                         fsinst++;
3417                 }
3418         }
3419
3420         return error;
3421 }
3422
3423 static void __exit exit_yaffs_fs(void)
3424 {
3425
3426         struct file_system_to_install *fsinst;
3427
3428         yaffs_trace(YAFFS_TRACE_ALWAYS,
3429                 "yaffs built " __DATE__ " " __TIME__ " removing.");
3430
3431         remove_proc_entry("yaffs", YPROC_ROOT);
3432
3433         fsinst = fs_to_install;
3434
3435         while (fsinst->fst) {
3436                 if (fsinst->installed) {
3437                         unregister_filesystem(fsinst->fst);
3438                         fsinst->installed = 0;
3439                 }
3440                 fsinst++;
3441         }
3442 }
3443
3444 module_init(init_yaffs_fs)
3445     module_exit(exit_yaffs_fs)
3446
3447     MODULE_DESCRIPTION("YAFFS2 - a NAND specific flash file system");
3448 MODULE_AUTHOR("Charles Manning, Aleph One Ltd., 2002-2011");
3449 MODULE_LICENSE("GPL");