blob: 43865aa66ed90ef9d267f0fec60fabc924160f47 [file] [log] [blame]
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001/*
2 * This file is part of UBIFS.
3 *
4 * Copyright (C) 2006-2008 Nokia Corporation
5 *
6 * (C) Copyright 2008-2009
7 * Stefan Roese, DENX Software Engineering, sr@denx.de.
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published by
11 * the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but WITHOUT
14 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * this program; if not, write to the Free Software Foundation, Inc., 51
20 * Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 *
22 * Authors: Artem Bityutskiy (Битюцкий Артём)
23 * Adrian Hunter
24 */
25
26#ifndef __UBIFS_H__
27#define __UBIFS_H__
28
29#if 0 /* Enable for debugging output */
30#define CONFIG_UBIFS_FS_DEBUG
31#define CONFIG_UBIFS_FS_DEBUG_MSG_LVL 3
32#endif
33
34#include <ubi_uboot.h>
35#include <linux/ctype.h>
36#include <linux/time.h>
37#include <linux/math64.h>
38#include "ubifs-media.h"
39
40struct dentry;
41struct file;
42struct iattr;
43struct kstat;
44struct vfsmount;
45
46extern struct super_block *ubifs_sb;
47
48extern unsigned int ubifs_msg_flags;
49extern unsigned int ubifs_chk_flags;
50extern unsigned int ubifs_tst_flags;
51
52#define pgoff_t unsigned long
53
54/*
55 * We "simulate" the Linux page struct much simpler here
56 */
57struct page {
58 pgoff_t index;
59 void *addr;
60 struct inode *inode;
61};
62
63void iput(struct inode *inode);
64
65/*
66 * The atomic operations are used for budgeting etc which is not
67 * needed for the read-only U-Boot implementation:
68 */
69#define atomic_long_inc(a)
70#define atomic_long_dec(a)
71#define atomic_long_sub(a, b)
72
73/* linux/include/time.h */
74
75struct timespec {
76 time_t tv_sec; /* seconds */
77 long tv_nsec; /* nanoseconds */
78};
79
80/* linux/include/dcache.h */
81
82/*
83 * "quick string" -- eases parameter passing, but more importantly
84 * saves "metadata" about the string (ie length and the hash).
85 *
86 * hash comes first so it snuggles against d_parent in the
87 * dentry.
88 */
89struct qstr {
90 unsigned int hash;
91 unsigned int len;
92 const char *name;
93};
94
95struct inode {
96 struct hlist_node i_hash;
97 struct list_head i_list;
98 struct list_head i_sb_list;
99 struct list_head i_dentry;
100 unsigned long i_ino;
101 unsigned int i_nlink;
102 uid_t i_uid;
103 gid_t i_gid;
104 dev_t i_rdev;
105 u64 i_version;
106 loff_t i_size;
107#ifdef __NEED_I_SIZE_ORDERED
108 seqcount_t i_size_seqcount;
109#endif
110 struct timespec i_atime;
111 struct timespec i_mtime;
112 struct timespec i_ctime;
113 unsigned int i_blkbits;
114 unsigned short i_bytes;
115 umode_t i_mode;
116 spinlock_t i_lock; /* i_blocks, i_bytes, maybe i_size */
117 struct mutex i_mutex;
118 struct rw_semaphore i_alloc_sem;
119 const struct inode_operations *i_op;
120 const struct file_operations *i_fop; /* former ->i_op->default_file_ops */
121 struct super_block *i_sb;
122 struct file_lock *i_flock;
123#ifdef CONFIG_QUOTA
124 struct dquot *i_dquot[MAXQUOTAS];
125#endif
126 struct list_head i_devices;
127 int i_cindex;
128
129 __u32 i_generation;
130
131#ifdef CONFIG_DNOTIFY
132 unsigned long i_dnotify_mask; /* Directory notify events */
133 struct dnotify_struct *i_dnotify; /* for directory notifications */
134#endif
135
136#ifdef CONFIG_INOTIFY
137 struct list_head inotify_watches; /* watches on this inode */
138 struct mutex inotify_mutex; /* protects the watches list */
139#endif
140
141 unsigned long i_state;
142 unsigned long dirtied_when; /* jiffies of first dirtying */
143
144 unsigned int i_flags;
145
146#ifdef CONFIG_SECURITY
147 void *i_security;
148#endif
149 void *i_private; /* fs or device private pointer */
150};
151
152struct super_block {
153 struct list_head s_list; /* Keep this first */
154 dev_t s_dev; /* search index; _not_ kdev_t */
155 unsigned long s_blocksize;
156 unsigned char s_blocksize_bits;
157 unsigned char s_dirt;
158 unsigned long long s_maxbytes; /* Max file size */
159 struct file_system_type *s_type;
160 const struct super_operations *s_op;
161 struct dquot_operations *dq_op;
162 struct quotactl_ops *s_qcop;
163 const struct export_operations *s_export_op;
164 unsigned long s_flags;
165 unsigned long s_magic;
166 struct dentry *s_root;
167 struct rw_semaphore s_umount;
168 struct mutex s_lock;
169 int s_count;
170 int s_syncing;
171 int s_need_sync_fs;
172#ifdef CONFIG_SECURITY
173 void *s_security;
174#endif
175 struct xattr_handler **s_xattr;
176
177 struct list_head s_inodes; /* all inodes */
178 struct list_head s_dirty; /* dirty inodes */
179 struct list_head s_io; /* parked for writeback */
180 struct list_head s_more_io; /* parked for more writeback */
181 struct hlist_head s_anon; /* anonymous dentries for (nfs) exporting */
182 struct list_head s_files;
183 /* s_dentry_lru and s_nr_dentry_unused are protected by dcache_lock */
184 struct list_head s_dentry_lru; /* unused dentry lru */
185 int s_nr_dentry_unused; /* # of dentry on lru */
186
187 struct block_device *s_bdev;
188 struct mtd_info *s_mtd;
189 struct list_head s_instances;
190
191 int s_frozen;
192 wait_queue_head_t s_wait_unfrozen;
193
194 char s_id[32]; /* Informational name */
195
196 void *s_fs_info; /* Filesystem private info */
197
198 /*
199 * The next field is for VFS *only*. No filesystems have any business
200 * even looking at it. You had been warned.
201 */
202 struct mutex s_vfs_rename_mutex; /* Kludge */
203
204 /* Granularity of c/m/atime in ns.
205 Cannot be worse than a second */
206 u32 s_time_gran;
207
208 /*
209 * Filesystem subtype. If non-empty the filesystem type field
210 * in /proc/mounts will be "type.subtype"
211 */
212 char *s_subtype;
213
214 /*
215 * Saved mount options for lazy filesystems using
216 * generic_show_options()
217 */
218 char *s_options;
219};
220
221struct file_system_type {
222 const char *name;
223 int fs_flags;
224 int (*get_sb) (struct file_system_type *, int,
225 const char *, void *, struct vfsmount *);
226 void (*kill_sb) (struct super_block *);
227 struct module *owner;
228 struct file_system_type * next;
229 struct list_head fs_supers;
230};
231
232struct vfsmount {
233 struct list_head mnt_hash;
234 struct vfsmount *mnt_parent; /* fs we are mounted on */
235 struct dentry *mnt_mountpoint; /* dentry of mountpoint */
236 struct dentry *mnt_root; /* root of the mounted tree */
237 struct super_block *mnt_sb; /* pointer to superblock */
238 struct list_head mnt_mounts; /* list of children, anchored here */
239 struct list_head mnt_child; /* and going through their mnt_child */
240 int mnt_flags;
241 /* 4 bytes hole on 64bits arches */
242 const char *mnt_devname; /* Name of device e.g. /dev/dsk/hda1 */
243 struct list_head mnt_list;
244 struct list_head mnt_expire; /* link in fs-specific expiry list */
245 struct list_head mnt_share; /* circular list of shared mounts */
246 struct list_head mnt_slave_list;/* list of slave mounts */
247 struct list_head mnt_slave; /* slave list entry */
248 struct vfsmount *mnt_master; /* slave is on master->mnt_slave_list */
249 struct mnt_namespace *mnt_ns; /* containing namespace */
250 int mnt_id; /* mount identifier */
251 int mnt_group_id; /* peer group identifier */
252 /*
253 * We put mnt_count & mnt_expiry_mark at the end of struct vfsmount
254 * to let these frequently modified fields in a separate cache line
255 * (so that reads of mnt_flags wont ping-pong on SMP machines)
256 */
257 int mnt_expiry_mark; /* true if marked for expiry */
258 int mnt_pinned;
259 int mnt_ghosts;
260 /*
261 * This value is not stable unless all of the mnt_writers[] spinlocks
262 * are held, and all mnt_writer[]s on this mount have 0 as their ->count
263 */
264};
265
266struct path {
267 struct vfsmount *mnt;
268 struct dentry *dentry;
269};
270
271struct file {
272 struct path f_path;
273#define f_dentry f_path.dentry
274#define f_vfsmnt f_path.mnt
275 const struct file_operations *f_op;
276 unsigned int f_flags;
277 loff_t f_pos;
278 unsigned int f_uid, f_gid;
279
280 u64 f_version;
281#ifdef CONFIG_SECURITY
282 void *f_security;
283#endif
284 /* needed for tty driver, and maybe others */
285 void *private_data;
286
287#ifdef CONFIG_EPOLL
288 /* Used by fs/eventpoll.c to link all the hooks to this file */
289 struct list_head f_ep_links;
290 spinlock_t f_ep_lock;
291#endif /* #ifdef CONFIG_EPOLL */
292#ifdef CONFIG_DEBUG_WRITECOUNT
293 unsigned long f_mnt_write_state;
294#endif
295};
296
297/*
298 * get_seconds() not really needed in the read-only implmentation
299 */
300#define get_seconds() 0
301
302/* 4k page size */
303#define PAGE_CACHE_SHIFT 12
304#define PAGE_CACHE_SIZE (1 << PAGE_CACHE_SHIFT)
305
306/* Page cache limit. The filesystems should put that into their s_maxbytes
307 limits, otherwise bad things can happen in VM. */
308#if BITS_PER_LONG==32
309#define MAX_LFS_FILESIZE (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
310#elif BITS_PER_LONG==64
311#define MAX_LFS_FILESIZE 0x7fffffffffffffffUL
312#endif
313
314#define INT_MAX ((int)(~0U>>1))
315#define INT_MIN (-INT_MAX - 1)
316#define LLONG_MAX ((long long)(~0ULL>>1))
317
318/*
319 * These are the fs-independent mount-flags: up to 32 flags are supported
320 */
321#define MS_RDONLY 1 /* Mount read-only */
322#define MS_NOSUID 2 /* Ignore suid and sgid bits */
323#define MS_NODEV 4 /* Disallow access to device special files */
324#define MS_NOEXEC 8 /* Disallow program execution */
325#define MS_SYNCHRONOUS 16 /* Writes are synced at once */
326#define MS_REMOUNT 32 /* Alter flags of a mounted FS */
327#define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
328#define MS_DIRSYNC 128 /* Directory modifications are synchronous */
329#define MS_NOATIME 1024 /* Do not update access times. */
330#define MS_NODIRATIME 2048 /* Do not update directory access times */
331#define MS_BIND 4096
332#define MS_MOVE 8192
333#define MS_REC 16384
334#define MS_VERBOSE 32768 /* War is peace. Verbosity is silence.
335 MS_VERBOSE is deprecated. */
336#define MS_SILENT 32768
337#define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
338#define MS_UNBINDABLE (1<<17) /* change to unbindable */
339#define MS_PRIVATE (1<<18) /* change to private */
340#define MS_SLAVE (1<<19) /* change to slave */
341#define MS_SHARED (1<<20) /* change to shared */
342#define MS_RELATIME (1<<21) /* Update atime relative to mtime/ctime. */
343#define MS_KERNMOUNT (1<<22) /* this is a kern_mount call */
344#define MS_I_VERSION (1<<23) /* Update inode I_version field */
345#define MS_ACTIVE (1<<30)
346#define MS_NOUSER (1<<31)
347
348#define I_NEW 8
349
350/* Inode flags - they have nothing to superblock flags now */
351
352#define S_SYNC 1 /* Writes are synced at once */
353#define S_NOATIME 2 /* Do not update access times */
354#define S_APPEND 4 /* Append-only file */
355#define S_IMMUTABLE 8 /* Immutable file */
356#define S_DEAD 16 /* removed, but still open directory */
357#define S_NOQUOTA 32 /* Inode is not counted to quota */
358#define S_DIRSYNC 64 /* Directory modifications are synchronous */
359#define S_NOCMTIME 128 /* Do not update file c/mtime */
360#define S_SWAPFILE 256 /* Do not truncate: swapon got its bmaps */
361#define S_PRIVATE 512 /* Inode is fs-internal */
362
363/* include/linux/stat.h */
364
365#define S_IFMT 00170000
366#define S_IFSOCK 0140000
367#define S_IFLNK 0120000
368#define S_IFREG 0100000
369#define S_IFBLK 0060000
370#define S_IFDIR 0040000
371#define S_IFCHR 0020000
372#define S_IFIFO 0010000
373#define S_ISUID 0004000
374#define S_ISGID 0002000
375#define S_ISVTX 0001000
376
377/* include/linux/fs.h */
378
379/*
380 * File types
381 *
382 * NOTE! These match bits 12..15 of stat.st_mode
383 * (ie "(i_mode >> 12) & 15").
384 */
385#define DT_UNKNOWN 0
386#define DT_FIFO 1
387#define DT_CHR 2
388#define DT_DIR 4
389#define DT_BLK 6
390#define DT_REG 8
391#define DT_LNK 10
392#define DT_SOCK 12
393#define DT_WHT 14
394
395#define I_DIRTY_SYNC 1
396#define I_DIRTY_DATASYNC 2
397#define I_DIRTY_PAGES 4
398#define I_NEW 8
399#define I_WILL_FREE 16
400#define I_FREEING 32
401#define I_CLEAR 64
402#define __I_LOCK 7
403#define I_LOCK (1 << __I_LOCK)
404#define __I_SYNC 8
405#define I_SYNC (1 << __I_SYNC)
406
407#define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES)
408
409/* linux/include/dcache.h */
410
411#define DNAME_INLINE_LEN_MIN 36
412
413struct dentry {
414 unsigned int d_flags; /* protected by d_lock */
415 spinlock_t d_lock; /* per dentry lock */
416 struct inode *d_inode; /* Where the name belongs to - NULL is
417 * negative */
418 /*
419 * The next three fields are touched by __d_lookup. Place them here
420 * so they all fit in a cache line.
421 */
422 struct hlist_node d_hash; /* lookup hash list */
423 struct dentry *d_parent; /* parent directory */
424 struct qstr d_name;
425
426 struct list_head d_lru; /* LRU list */
427 /*
428 * d_child and d_rcu can share memory
429 */
430 struct list_head d_subdirs; /* our children */
431 struct list_head d_alias; /* inode alias list */
432 unsigned long d_time; /* used by d_revalidate */
433 struct super_block *d_sb; /* The root of the dentry tree */
434 void *d_fsdata; /* fs-specific data */
435#ifdef CONFIG_PROFILING
436 struct dcookie_struct *d_cookie; /* cookie, if any */
437#endif
438 int d_mounted;
439 unsigned char d_iname[DNAME_INLINE_LEN_MIN]; /* small names */
440};
441
442static inline ino_t parent_ino(struct dentry *dentry)
443{
444 ino_t res;
445
446 spin_lock(&dentry->d_lock);
447 res = dentry->d_parent->d_inode->i_ino;
448 spin_unlock(&dentry->d_lock);
449 return res;
450}
451
452/* linux/include/linux/bitops.h */
453
454#define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG))
455#define BIT_WORD(nr) ((nr) / BITS_PER_LONG)
456
457/* linux/include/asm-generic/bitops/non-atomic.h */
458
459/**
460 * __set_bit - Set a bit in memory
461 * @nr: the bit to set
462 * @addr: the address to start counting from
463 *
464 * Unlike set_bit(), this function is non-atomic and may be reordered.
465 * If it's called on the same region of memory simultaneously, the effect
466 * may be that only one operation succeeds.
467 */
468static inline void __set_bit(int nr, volatile unsigned long *addr)
469{
470 unsigned long mask = BIT_MASK(nr);
471 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
472
473 *p |= mask;
474}
475
476static inline void __clear_bit(int nr, volatile unsigned long *addr)
477{
478 unsigned long mask = BIT_MASK(nr);
479 unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
480
481 *p &= ~mask;
482}
483
484/* debug.c */
485
486#define DEFINE_SPINLOCK(...)
487#define module_param_named(...)
488
489/* misc.h */
490#define mutex_lock_nested(...)
491#define mutex_unlock_nested(...)
492#define mutex_is_locked(...) 0
493
494/* Version of this UBIFS implementation */
495#define UBIFS_VERSION 1
496
497/* Normal UBIFS messages */
498#define ubifs_msg(fmt, ...) \
499 printk(KERN_NOTICE "UBIFS: " fmt "\n", ##__VA_ARGS__)
500/* UBIFS error messages */
501#define ubifs_err(fmt, ...) \
502 printk(KERN_ERR "UBIFS error (pid %d): %s: " fmt "\n", 0, \
503 __func__, ##__VA_ARGS__)
504/* UBIFS warning messages */
505#define ubifs_warn(fmt, ...) \
506 printk(KERN_WARNING "UBIFS warning (pid %d): %s: " fmt "\n", \
507 0, __func__, ##__VA_ARGS__)
508
509/* UBIFS file system VFS magic number */
510#define UBIFS_SUPER_MAGIC 0x24051905
511
512/* Number of UBIFS blocks per VFS page */
513#define UBIFS_BLOCKS_PER_PAGE (PAGE_CACHE_SIZE / UBIFS_BLOCK_SIZE)
514#define UBIFS_BLOCKS_PER_PAGE_SHIFT (PAGE_CACHE_SHIFT - UBIFS_BLOCK_SHIFT)
515
516/* "File system end of life" sequence number watermark */
517#define SQNUM_WARN_WATERMARK 0xFFFFFFFF00000000ULL
518#define SQNUM_WATERMARK 0xFFFFFFFFFF000000ULL
519
520/*
521 * Minimum amount of LEBs reserved for the index. At present the index needs at
522 * least 2 LEBs: one for the index head and one for in-the-gaps method (which
523 * currently does not cater for the index head and so excludes it from
524 * consideration).
525 */
526#define MIN_INDEX_LEBS 2
527
528/* Minimum amount of data UBIFS writes to the flash */
529#define MIN_WRITE_SZ (UBIFS_DATA_NODE_SZ + 8)
530
531/*
532 * Currently we do not support inode number overlapping and re-using, so this
533 * watermark defines dangerous inode number level. This should be fixed later,
534 * although it is difficult to exceed current limit. Another option is to use
535 * 64-bit inode numbers, but this means more overhead.
536 */
537#define INUM_WARN_WATERMARK 0xFFF00000
538#define INUM_WATERMARK 0xFFFFFF00
539
540/* Largest key size supported in this implementation */
541#define CUR_MAX_KEY_LEN UBIFS_SK_LEN
542
543/* Maximum number of entries in each LPT (LEB category) heap */
544#define LPT_HEAP_SZ 256
545
546/*
547 * Background thread name pattern. The numbers are UBI device and volume
548 * numbers.
549 */
550#define BGT_NAME_PATTERN "ubifs_bgt%d_%d"
551
552/* Default write-buffer synchronization timeout (5 secs) */
553#define DEFAULT_WBUF_TIMEOUT (5 * HZ)
554
555/* Maximum possible inode number (only 32-bit inodes are supported now) */
556#define MAX_INUM 0xFFFFFFFF
557
558/* Number of non-data journal heads */
559#define NONDATA_JHEADS_CNT 2
560
561/* Garbage collector head */
562#define GCHD 0
563/* Base journal head number */
564#define BASEHD 1
565/* First "general purpose" journal head */
566#define DATAHD 2
567
568/* 'No change' value for 'ubifs_change_lp()' */
569#define LPROPS_NC 0x80000001
570
571/*
572 * There is no notion of truncation key because truncation nodes do not exist
573 * in TNC. However, when replaying, it is handy to introduce fake "truncation"
574 * keys for truncation nodes because the code becomes simpler. So we define
575 * %UBIFS_TRUN_KEY type.
576 */
577#define UBIFS_TRUN_KEY UBIFS_KEY_TYPES_CNT
578
579/*
580 * How much a directory entry/extended attribute entry adds to the parent/host
581 * inode.
582 */
583#define CALC_DENT_SIZE(name_len) ALIGN(UBIFS_DENT_NODE_SZ + (name_len) + 1, 8)
584
585/* How much an extended attribute adds to the host inode */
586#define CALC_XATTR_BYTES(data_len) ALIGN(UBIFS_INO_NODE_SZ + (data_len) + 1, 8)
587
588/*
589 * Znodes which were not touched for 'OLD_ZNODE_AGE' seconds are considered
590 * "old", and znode which were touched last 'YOUNG_ZNODE_AGE' seconds ago are
591 * considered "young". This is used by shrinker when selecting znode to trim
592 * off.
593 */
594#define OLD_ZNODE_AGE 20
595#define YOUNG_ZNODE_AGE 5
596
597/*
598 * Some compressors, like LZO, may end up with more data then the input buffer.
599 * So UBIFS always allocates larger output buffer, to be sure the compressor
600 * will not corrupt memory in case of worst case compression.
601 */
602#define WORST_COMPR_FACTOR 2
603
604/* Maximum expected tree height for use by bottom_up_buf */
605#define BOTTOM_UP_HEIGHT 64
606
607/* Maximum number of data nodes to bulk-read */
608#define UBIFS_MAX_BULK_READ 32
609
610/*
611 * Lockdep classes for UBIFS inode @ui_mutex.
612 */
613enum {
614 WB_MUTEX_1 = 0,
615 WB_MUTEX_2 = 1,
616 WB_MUTEX_3 = 2,
617};
618
619/*
620 * Znode flags (actually, bit numbers which store the flags).
621 *
622 * DIRTY_ZNODE: znode is dirty
623 * COW_ZNODE: znode is being committed and a new instance of this znode has to
624 * be created before changing this znode
625 * OBSOLETE_ZNODE: znode is obsolete, which means it was deleted, but it is
626 * still in the commit list and the ongoing commit operation
627 * will commit it, and delete this znode after it is done
628 */
629enum {
630 DIRTY_ZNODE = 0,
631 COW_ZNODE = 1,
632 OBSOLETE_ZNODE = 2,
633};
634
635/*
636 * Commit states.
637 *
638 * COMMIT_RESTING: commit is not wanted
639 * COMMIT_BACKGROUND: background commit has been requested
640 * COMMIT_REQUIRED: commit is required
641 * COMMIT_RUNNING_BACKGROUND: background commit is running
642 * COMMIT_RUNNING_REQUIRED: commit is running and it is required
643 * COMMIT_BROKEN: commit failed
644 */
645enum {
646 COMMIT_RESTING = 0,
647 COMMIT_BACKGROUND,
648 COMMIT_REQUIRED,
649 COMMIT_RUNNING_BACKGROUND,
650 COMMIT_RUNNING_REQUIRED,
651 COMMIT_BROKEN,
652};
653
654/*
655 * 'ubifs_scan_a_node()' return values.
656 *
657 * SCANNED_GARBAGE: scanned garbage
658 * SCANNED_EMPTY_SPACE: scanned empty space
659 * SCANNED_A_NODE: scanned a valid node
660 * SCANNED_A_CORRUPT_NODE: scanned a corrupted node
661 * SCANNED_A_BAD_PAD_NODE: scanned a padding node with invalid pad length
662 *
663 * Greater than zero means: 'scanned that number of padding bytes'
664 */
665enum {
666 SCANNED_GARBAGE = 0,
667 SCANNED_EMPTY_SPACE = -1,
668 SCANNED_A_NODE = -2,
669 SCANNED_A_CORRUPT_NODE = -3,
670 SCANNED_A_BAD_PAD_NODE = -4,
671};
672
673/*
674 * LPT cnode flag bits.
675 *
676 * DIRTY_CNODE: cnode is dirty
677 * COW_CNODE: cnode is being committed and must be copied before writing
678 * OBSOLETE_CNODE: cnode is being committed and has been copied (or deleted),
679 * so it can (and must) be freed when the commit is finished
680 */
681enum {
682 DIRTY_CNODE = 0,
683 COW_CNODE = 1,
684 OBSOLETE_CNODE = 2,
685};
686
687/*
688 * Dirty flag bits (lpt_drty_flgs) for LPT special nodes.
689 *
690 * LTAB_DIRTY: ltab node is dirty
691 * LSAVE_DIRTY: lsave node is dirty
692 */
693enum {
694 LTAB_DIRTY = 1,
695 LSAVE_DIRTY = 2,
696};
697
698/*
699 * Return codes used by the garbage collector.
700 * @LEB_FREED: the logical eraseblock was freed and is ready to use
701 * @LEB_FREED_IDX: indexing LEB was freed and can be used only after the commit
702 * @LEB_RETAINED: the logical eraseblock was freed and retained for GC purposes
703 */
704enum {
705 LEB_FREED,
706 LEB_FREED_IDX,
707 LEB_RETAINED,
708};
709
710/**
711 * struct ubifs_old_idx - index node obsoleted since last commit start.
712 * @rb: rb-tree node
713 * @lnum: LEB number of obsoleted index node
714 * @offs: offset of obsoleted index node
715 */
716struct ubifs_old_idx {
717 struct rb_node rb;
718 int lnum;
719 int offs;
720};
721
722/* The below union makes it easier to deal with keys */
723union ubifs_key {
724 uint8_t u8[CUR_MAX_KEY_LEN];
725 uint32_t u32[CUR_MAX_KEY_LEN/4];
726 uint64_t u64[CUR_MAX_KEY_LEN/8];
727 __le32 j32[CUR_MAX_KEY_LEN/4];
728};
729
730/**
731 * struct ubifs_scan_node - UBIFS scanned node information.
732 * @list: list of scanned nodes
733 * @key: key of node scanned (if it has one)
734 * @sqnum: sequence number
735 * @type: type of node scanned
736 * @offs: offset with LEB of node scanned
737 * @len: length of node scanned
738 * @node: raw node
739 */
740struct ubifs_scan_node {
741 struct list_head list;
742 union ubifs_key key;
743 unsigned long long sqnum;
744 int type;
745 int offs;
746 int len;
747 void *node;
748};
749
750/**
751 * struct ubifs_scan_leb - UBIFS scanned LEB information.
752 * @lnum: logical eraseblock number
753 * @nodes_cnt: number of nodes scanned
754 * @nodes: list of struct ubifs_scan_node
755 * @endpt: end point (and therefore the start of empty space)
756 * @ecc: read returned -EBADMSG
757 * @buf: buffer containing entire LEB scanned
758 */
759struct ubifs_scan_leb {
760 int lnum;
761 int nodes_cnt;
762 struct list_head nodes;
763 int endpt;
764 int ecc;
765 void *buf;
766};
767
768/**
769 * struct ubifs_gced_idx_leb - garbage-collected indexing LEB.
770 * @list: list
771 * @lnum: LEB number
772 * @unmap: OK to unmap this LEB
773 *
774 * This data structure is used to temporary store garbage-collected indexing
775 * LEBs - they are not released immediately, but only after the next commit.
776 * This is needed to guarantee recoverability.
777 */
778struct ubifs_gced_idx_leb {
779 struct list_head list;
780 int lnum;
781 int unmap;
782};
783
784/**
785 * struct ubifs_inode - UBIFS in-memory inode description.
786 * @vfs_inode: VFS inode description object
787 * @creat_sqnum: sequence number at time of creation
788 * @del_cmtno: commit number corresponding to the time the inode was deleted,
789 * protected by @c->commit_sem;
790 * @xattr_size: summarized size of all extended attributes in bytes
791 * @xattr_cnt: count of extended attributes this inode has
792 * @xattr_names: sum of lengths of all extended attribute names belonging to
793 * this inode
794 * @dirty: non-zero if the inode is dirty
795 * @xattr: non-zero if this is an extended attribute inode
796 * @bulk_read: non-zero if bulk-read should be used
797 * @ui_mutex: serializes inode write-back with the rest of VFS operations,
798 * serializes "clean <-> dirty" state changes, serializes bulk-read,
799 * protects @dirty, @bulk_read, @ui_size, and @xattr_size
800 * @ui_lock: protects @synced_i_size
801 * @synced_i_size: synchronized size of inode, i.e. the value of inode size
802 * currently stored on the flash; used only for regular file
803 * inodes
804 * @ui_size: inode size used by UBIFS when writing to flash
805 * @flags: inode flags (@UBIFS_COMPR_FL, etc)
806 * @compr_type: default compression type used for this inode
807 * @last_page_read: page number of last page read (for bulk read)
808 * @read_in_a_row: number of consecutive pages read in a row (for bulk read)
809 * @data_len: length of the data attached to the inode
810 * @data: inode's data
811 *
812 * @ui_mutex exists for two main reasons. At first it prevents inodes from
813 * being written back while UBIFS changing them, being in the middle of an VFS
814 * operation. This way UBIFS makes sure the inode fields are consistent. For
815 * example, in 'ubifs_rename()' we change 3 inodes simultaneously, and
816 * write-back must not write any of them before we have finished.
817 *
818 * The second reason is budgeting - UBIFS has to budget all operations. If an
819 * operation is going to mark an inode dirty, it has to allocate budget for
820 * this. It cannot just mark it dirty because there is no guarantee there will
821 * be enough flash space to write the inode back later. This means UBIFS has
822 * to have full control over inode "clean <-> dirty" transitions (and pages
823 * actually). But unfortunately, VFS marks inodes dirty in many places, and it
824 * does not ask the file-system if it is allowed to do so (there is a notifier,
825 * but it is not enough), i.e., there is no mechanism to synchronize with this.
826 * So UBIFS has its own inode dirty flag and its own mutex to serialize
827 * "clean <-> dirty" transitions.
828 *
829 * The @synced_i_size field is used to make sure we never write pages which are
830 * beyond last synchronized inode size. See 'ubifs_writepage()' for more
831 * information.
832 *
833 * The @ui_size is a "shadow" variable for @inode->i_size and UBIFS uses
834 * @ui_size instead of @inode->i_size. The reason for this is that UBIFS cannot
835 * make sure @inode->i_size is always changed under @ui_mutex, because it
836 * cannot call 'vmtruncate()' with @ui_mutex locked, because it would deadlock
837 * with 'ubifs_writepage()' (see file.c). All the other inode fields are
838 * changed under @ui_mutex, so they do not need "shadow" fields. Note, one
839 * could consider to rework locking and base it on "shadow" fields.
840 */
841struct ubifs_inode {
842 struct inode vfs_inode;
843 unsigned long long creat_sqnum;
844 unsigned long long del_cmtno;
845 unsigned int xattr_size;
846 unsigned int xattr_cnt;
847 unsigned int xattr_names;
848 unsigned int dirty:1;
849 unsigned int xattr:1;
850 unsigned int bulk_read:1;
851 unsigned int compr_type:2;
852 struct mutex ui_mutex;
853 spinlock_t ui_lock;
854 loff_t synced_i_size;
855 loff_t ui_size;
856 int flags;
857 pgoff_t last_page_read;
858 pgoff_t read_in_a_row;
859 int data_len;
860 void *data;
861};
862
863/**
864 * struct ubifs_unclean_leb - records a LEB recovered under read-only mode.
865 * @list: list
866 * @lnum: LEB number of recovered LEB
867 * @endpt: offset where recovery ended
868 *
869 * This structure records a LEB identified during recovery that needs to be
870 * cleaned but was not because UBIFS was mounted read-only. The information
871 * is used to clean the LEB when remounting to read-write mode.
872 */
873struct ubifs_unclean_leb {
874 struct list_head list;
875 int lnum;
876 int endpt;
877};
878
879/*
880 * LEB properties flags.
881 *
882 * LPROPS_UNCAT: not categorized
883 * LPROPS_DIRTY: dirty > free, dirty >= @c->dead_wm, not index
884 * LPROPS_DIRTY_IDX: dirty + free > @c->min_idx_node_sze and index
885 * LPROPS_FREE: free > 0, dirty < @c->dead_wm, not empty, not index
886 * LPROPS_HEAP_CNT: number of heaps used for storing categorized LEBs
887 * LPROPS_EMPTY: LEB is empty, not taken
888 * LPROPS_FREEABLE: free + dirty == leb_size, not index, not taken
889 * LPROPS_FRDI_IDX: free + dirty == leb_size and index, may be taken
890 * LPROPS_CAT_MASK: mask for the LEB categories above
891 * LPROPS_TAKEN: LEB was taken (this flag is not saved on the media)
892 * LPROPS_INDEX: LEB contains indexing nodes (this flag also exists on flash)
893 */
894enum {
895 LPROPS_UNCAT = 0,
896 LPROPS_DIRTY = 1,
897 LPROPS_DIRTY_IDX = 2,
898 LPROPS_FREE = 3,
899 LPROPS_HEAP_CNT = 3,
900 LPROPS_EMPTY = 4,
901 LPROPS_FREEABLE = 5,
902 LPROPS_FRDI_IDX = 6,
903 LPROPS_CAT_MASK = 15,
904 LPROPS_TAKEN = 16,
905 LPROPS_INDEX = 32,
906};
907
908/**
909 * struct ubifs_lprops - logical eraseblock properties.
910 * @free: amount of free space in bytes
911 * @dirty: amount of dirty space in bytes
912 * @flags: LEB properties flags (see above)
913 * @lnum: LEB number
914 * @list: list of same-category lprops (for LPROPS_EMPTY and LPROPS_FREEABLE)
915 * @hpos: heap position in heap of same-category lprops (other categories)
916 */
917struct ubifs_lprops {
918 int free;
919 int dirty;
920 int flags;
921 int lnum;
922 union {
923 struct list_head list;
924 int hpos;
925 };
926};
927
928/**
929 * struct ubifs_lpt_lprops - LPT logical eraseblock properties.
930 * @free: amount of free space in bytes
931 * @dirty: amount of dirty space in bytes
932 * @tgc: trivial GC flag (1 => unmap after commit end)
933 * @cmt: commit flag (1 => reserved for commit)
934 */
935struct ubifs_lpt_lprops {
936 int free;
937 int dirty;
938 unsigned tgc:1;
939 unsigned cmt:1;
940};
941
942/**
943 * struct ubifs_lp_stats - statistics of eraseblocks in the main area.
944 * @empty_lebs: number of empty LEBs
945 * @taken_empty_lebs: number of taken LEBs
946 * @idx_lebs: number of indexing LEBs
947 * @total_free: total free space in bytes (includes all LEBs)
948 * @total_dirty: total dirty space in bytes (includes all LEBs)
949 * @total_used: total used space in bytes (does not include index LEBs)
950 * @total_dead: total dead space in bytes (does not include index LEBs)
951 * @total_dark: total dark space in bytes (does not include index LEBs)
952 *
953 * The @taken_empty_lebs field counts the LEBs that are in the transient state
954 * of having been "taken" for use but not yet written to. @taken_empty_lebs is
955 * needed to account correctly for @gc_lnum, otherwise @empty_lebs could be
956 * used by itself (in which case 'unused_lebs' would be a better name). In the
957 * case of @gc_lnum, it is "taken" at mount time or whenever a LEB is retained
958 * by GC, but unlike other empty LEBs that are "taken", it may not be written
959 * straight away (i.e. before the next commit start or unmount), so either
960 * @gc_lnum must be specially accounted for, or the current approach followed
961 * i.e. count it under @taken_empty_lebs.
962 *
963 * @empty_lebs includes @taken_empty_lebs.
964 *
965 * @total_used, @total_dead and @total_dark fields do not account indexing
966 * LEBs.
967 */
968struct ubifs_lp_stats {
969 int empty_lebs;
970 int taken_empty_lebs;
971 int idx_lebs;
972 long long total_free;
973 long long total_dirty;
974 long long total_used;
975 long long total_dead;
976 long long total_dark;
977};
978
979struct ubifs_nnode;
980
981/**
982 * struct ubifs_cnode - LEB Properties Tree common node.
983 * @parent: parent nnode
984 * @cnext: next cnode to commit
985 * @flags: flags (%DIRTY_LPT_NODE or %OBSOLETE_LPT_NODE)
986 * @iip: index in parent
987 * @level: level in the tree (zero for pnodes, greater than zero for nnodes)
988 * @num: node number
989 */
990struct ubifs_cnode {
991 struct ubifs_nnode *parent;
992 struct ubifs_cnode *cnext;
993 unsigned long flags;
994 int iip;
995 int level;
996 int num;
997};
998
999/**
1000 * struct ubifs_pnode - LEB Properties Tree leaf node.
1001 * @parent: parent nnode
1002 * @cnext: next cnode to commit
1003 * @flags: flags (%DIRTY_LPT_NODE or %OBSOLETE_LPT_NODE)
1004 * @iip: index in parent
1005 * @level: level in the tree (always zero for pnodes)
1006 * @num: node number
1007 * @lprops: LEB properties array
1008 */
1009struct ubifs_pnode {
1010 struct ubifs_nnode *parent;
1011 struct ubifs_cnode *cnext;
1012 unsigned long flags;
1013 int iip;
1014 int level;
1015 int num;
1016 struct ubifs_lprops lprops[UBIFS_LPT_FANOUT];
1017};
1018
1019/**
1020 * struct ubifs_nbranch - LEB Properties Tree internal node branch.
1021 * @lnum: LEB number of child
1022 * @offs: offset of child
1023 * @nnode: nnode child
1024 * @pnode: pnode child
1025 * @cnode: cnode child
1026 */
1027struct ubifs_nbranch {
1028 int lnum;
1029 int offs;
1030 union {
1031 struct ubifs_nnode *nnode;
1032 struct ubifs_pnode *pnode;
1033 struct ubifs_cnode *cnode;
1034 };
1035};
1036
1037/**
1038 * struct ubifs_nnode - LEB Properties Tree internal node.
1039 * @parent: parent nnode
1040 * @cnext: next cnode to commit
1041 * @flags: flags (%DIRTY_LPT_NODE or %OBSOLETE_LPT_NODE)
1042 * @iip: index in parent
1043 * @level: level in the tree (always greater than zero for nnodes)
1044 * @num: node number
1045 * @nbranch: branches to child nodes
1046 */
1047struct ubifs_nnode {
1048 struct ubifs_nnode *parent;
1049 struct ubifs_cnode *cnext;
1050 unsigned long flags;
1051 int iip;
1052 int level;
1053 int num;
1054 struct ubifs_nbranch nbranch[UBIFS_LPT_FANOUT];
1055};
1056
1057/**
1058 * struct ubifs_lpt_heap - heap of categorized lprops.
1059 * @arr: heap array
1060 * @cnt: number in heap
1061 * @max_cnt: maximum number allowed in heap
1062 *
1063 * There are %LPROPS_HEAP_CNT heaps.
1064 */
1065struct ubifs_lpt_heap {
1066 struct ubifs_lprops **arr;
1067 int cnt;
1068 int max_cnt;
1069};
1070
1071/*
1072 * Return codes for LPT scan callback function.
1073 *
1074 * LPT_SCAN_CONTINUE: continue scanning
1075 * LPT_SCAN_ADD: add the LEB properties scanned to the tree in memory
1076 * LPT_SCAN_STOP: stop scanning
1077 */
1078enum {
1079 LPT_SCAN_CONTINUE = 0,
1080 LPT_SCAN_ADD = 1,
1081 LPT_SCAN_STOP = 2,
1082};
1083
1084struct ubifs_info;
1085
1086/* Callback used by the 'ubifs_lpt_scan_nolock()' function */
1087typedef int (*ubifs_lpt_scan_callback)(struct ubifs_info *c,
1088 const struct ubifs_lprops *lprops,
1089 int in_tree, void *data);
1090
1091/**
1092 * struct ubifs_wbuf - UBIFS write-buffer.
1093 * @c: UBIFS file-system description object
1094 * @buf: write-buffer (of min. flash I/O unit size)
1095 * @lnum: logical eraseblock number the write-buffer points to
1096 * @offs: write-buffer offset in this logical eraseblock
1097 * @avail: number of bytes available in the write-buffer
1098 * @used: number of used bytes in the write-buffer
1099 * @dtype: type of data stored in this LEB (%UBI_LONGTERM, %UBI_SHORTTERM,
1100 * %UBI_UNKNOWN)
1101 * @jhead: journal head the mutex belongs to (note, needed only to shut lockdep
1102 * up by 'mutex_lock_nested()).
1103 * @sync_callback: write-buffer synchronization callback
1104 * @io_mutex: serializes write-buffer I/O
1105 * @lock: serializes @buf, @lnum, @offs, @avail, @used, @next_ino and @inodes
1106 * fields
1107 * @timer: write-buffer timer
1108 * @timeout: timer expire interval in jiffies
1109 * @need_sync: it is set if its timer expired and needs sync
1110 * @next_ino: points to the next position of the following inode number
1111 * @inodes: stores the inode numbers of the nodes which are in wbuf
1112 *
1113 * The write-buffer synchronization callback is called when the write-buffer is
1114 * synchronized in order to notify how much space was wasted due to
1115 * write-buffer padding and how much free space is left in the LEB.
1116 *
1117 * Note: the fields @buf, @lnum, @offs, @avail and @used can be read under
1118 * spin-lock or mutex because they are written under both mutex and spin-lock.
1119 * @buf is appended to under mutex but overwritten under both mutex and
1120 * spin-lock. Thus the data between @buf and @buf + @used can be read under
1121 * spinlock.
1122 */
1123struct ubifs_wbuf {
1124 struct ubifs_info *c;
1125 void *buf;
1126 int lnum;
1127 int offs;
1128 int avail;
1129 int used;
1130 int dtype;
1131 int jhead;
1132 int (*sync_callback)(struct ubifs_info *c, int lnum, int free, int pad);
1133 struct mutex io_mutex;
1134 spinlock_t lock;
1135 int timeout;
1136 int need_sync;
1137 int next_ino;
1138 ino_t *inodes;
1139};
1140
1141/**
1142 * struct ubifs_bud - bud logical eraseblock.
1143 * @lnum: logical eraseblock number
1144 * @start: where the (uncommitted) bud data starts
1145 * @jhead: journal head number this bud belongs to
1146 * @list: link in the list buds belonging to the same journal head
1147 * @rb: link in the tree of all buds
1148 */
1149struct ubifs_bud {
1150 int lnum;
1151 int start;
1152 int jhead;
1153 struct list_head list;
1154 struct rb_node rb;
1155};
1156
1157/**
1158 * struct ubifs_jhead - journal head.
1159 * @wbuf: head's write-buffer
1160 * @buds_list: list of bud LEBs belonging to this journal head
1161 *
1162 * Note, the @buds list is protected by the @c->buds_lock.
1163 */
1164struct ubifs_jhead {
1165 struct ubifs_wbuf wbuf;
1166 struct list_head buds_list;
1167};
1168
1169/**
1170 * struct ubifs_zbranch - key/coordinate/length branch stored in znodes.
1171 * @key: key
1172 * @znode: znode address in memory
1173 * @lnum: LEB number of the target node (indexing node or data node)
1174 * @offs: target node offset within @lnum
1175 * @len: target node length
1176 */
1177struct ubifs_zbranch {
1178 union ubifs_key key;
1179 union {
1180 struct ubifs_znode *znode;
1181 void *leaf;
1182 };
1183 int lnum;
1184 int offs;
1185 int len;
1186};
1187
1188/**
1189 * struct ubifs_znode - in-memory representation of an indexing node.
1190 * @parent: parent znode or NULL if it is the root
1191 * @cnext: next znode to commit
1192 * @flags: znode flags (%DIRTY_ZNODE, %COW_ZNODE or %OBSOLETE_ZNODE)
1193 * @time: last access time (seconds)
1194 * @level: level of the entry in the TNC tree
1195 * @child_cnt: count of child znodes
1196 * @iip: index in parent's zbranch array
1197 * @alt: lower bound of key range has altered i.e. child inserted at slot 0
1198 * @lnum: LEB number of the corresponding indexing node
1199 * @offs: offset of the corresponding indexing node
1200 * @len: length of the corresponding indexing node
1201 * @zbranch: array of znode branches (@c->fanout elements)
1202 */
1203struct ubifs_znode {
1204 struct ubifs_znode *parent;
1205 struct ubifs_znode *cnext;
1206 unsigned long flags;
1207 unsigned long time;
1208 int level;
1209 int child_cnt;
1210 int iip;
1211 int alt;
1212#ifdef CONFIG_UBIFS_FS_DEBUG
1213 int lnum, offs, len;
1214#endif
1215 struct ubifs_zbranch zbranch[];
1216};
1217
1218/**
1219 * struct bu_info - bulk-read information.
1220 * @key: first data node key
1221 * @zbranch: zbranches of data nodes to bulk read
1222 * @buf: buffer to read into
1223 * @buf_len: buffer length
1224 * @gc_seq: GC sequence number to detect races with GC
1225 * @cnt: number of data nodes for bulk read
1226 * @blk_cnt: number of data blocks including holes
1227 * @oef: end of file reached
1228 */
1229struct bu_info {
1230 union ubifs_key key;
1231 struct ubifs_zbranch zbranch[UBIFS_MAX_BULK_READ];
1232 void *buf;
1233 int buf_len;
1234 int gc_seq;
1235 int cnt;
1236 int blk_cnt;
1237 int eof;
1238};
1239
1240/**
1241 * struct ubifs_node_range - node length range description data structure.
1242 * @len: fixed node length
1243 * @min_len: minimum possible node length
1244 * @max_len: maximum possible node length
1245 *
1246 * If @max_len is %0, the node has fixed length @len.
1247 */
1248struct ubifs_node_range {
1249 union {
1250 int len;
1251 int min_len;
1252 };
1253 int max_len;
1254};
1255
1256/**
1257 * struct ubifs_compressor - UBIFS compressor description structure.
1258 * @compr_type: compressor type (%UBIFS_COMPR_LZO, etc)
1259 * @cc: cryptoapi compressor handle
1260 * @comp_mutex: mutex used during compression
1261 * @decomp_mutex: mutex used during decompression
1262 * @name: compressor name
1263 * @capi_name: cryptoapi compressor name
1264 */
1265struct ubifs_compressor {
1266 int compr_type;
1267 char *name;
1268 char *capi_name;
1269 int (*decompress)(const unsigned char *in, size_t in_len,
1270 unsigned char *out, size_t *out_len);
1271};
1272
1273/**
1274 * struct ubifs_budget_req - budget requirements of an operation.
1275 *
1276 * @fast: non-zero if the budgeting should try to acquire budget quickly and
1277 * should not try to call write-back
1278 * @recalculate: non-zero if @idx_growth, @data_growth, and @dd_growth fields
1279 * have to be re-calculated
1280 * @new_page: non-zero if the operation adds a new page
1281 * @dirtied_page: non-zero if the operation makes a page dirty
1282 * @new_dent: non-zero if the operation adds a new directory entry
1283 * @mod_dent: non-zero if the operation removes or modifies an existing
1284 * directory entry
1285 * @new_ino: non-zero if the operation adds a new inode
1286 * @new_ino_d: now much data newly created inode contains
1287 * @dirtied_ino: how many inodes the operation makes dirty
1288 * @dirtied_ino_d: now much data dirtied inode contains
1289 * @idx_growth: how much the index will supposedly grow
1290 * @data_growth: how much new data the operation will supposedly add
1291 * @dd_growth: how much data that makes other data dirty the operation will
1292 * supposedly add
1293 *
1294 * @idx_growth, @data_growth and @dd_growth are not used in budget request. The
1295 * budgeting subsystem caches index and data growth values there to avoid
1296 * re-calculating them when the budget is released. However, if @idx_growth is
1297 * %-1, it is calculated by the release function using other fields.
1298 *
1299 * An inode may contain 4KiB of data at max., thus the widths of @new_ino_d
1300 * is 13 bits, and @dirtied_ino_d - 15, because up to 4 inodes may be made
1301 * dirty by the re-name operation.
1302 *
1303 * Note, UBIFS aligns node lengths to 8-bytes boundary, so the requester has to
1304 * make sure the amount of inode data which contribute to @new_ino_d and
1305 * @dirtied_ino_d fields are aligned.
1306 */
1307struct ubifs_budget_req {
1308 unsigned int fast:1;
1309 unsigned int recalculate:1;
1310#ifndef UBIFS_DEBUG
1311 unsigned int new_page:1;
1312 unsigned int dirtied_page:1;
1313 unsigned int new_dent:1;
1314 unsigned int mod_dent:1;
1315 unsigned int new_ino:1;
1316 unsigned int new_ino_d:13;
1317 unsigned int dirtied_ino:4;
1318 unsigned int dirtied_ino_d:15;
1319#else
1320 /* Not bit-fields to check for overflows */
1321 unsigned int new_page;
1322 unsigned int dirtied_page;
1323 unsigned int new_dent;
1324 unsigned int mod_dent;
1325 unsigned int new_ino;
1326 unsigned int new_ino_d;
1327 unsigned int dirtied_ino;
1328 unsigned int dirtied_ino_d;
1329#endif
1330 int idx_growth;
1331 int data_growth;
1332 int dd_growth;
1333};
1334
1335/**
1336 * struct ubifs_orphan - stores the inode number of an orphan.
1337 * @rb: rb-tree node of rb-tree of orphans sorted by inode number
1338 * @list: list head of list of orphans in order added
1339 * @new_list: list head of list of orphans added since the last commit
1340 * @cnext: next orphan to commit
1341 * @dnext: next orphan to delete
1342 * @inum: inode number
1343 * @new: %1 => added since the last commit, otherwise %0
1344 */
1345struct ubifs_orphan {
1346 struct rb_node rb;
1347 struct list_head list;
1348 struct list_head new_list;
1349 struct ubifs_orphan *cnext;
1350 struct ubifs_orphan *dnext;
1351 ino_t inum;
1352 int new;
1353};
1354
1355/**
1356 * struct ubifs_mount_opts - UBIFS-specific mount options information.
1357 * @unmount_mode: selected unmount mode (%0 default, %1 normal, %2 fast)
1358 * @bulk_read: enable/disable bulk-reads (%0 default, %1 disabe, %2 enable)
1359 * @chk_data_crc: enable/disable CRC data checking when reading data nodes
1360 * (%0 default, %1 disabe, %2 enable)
1361 * @override_compr: override default compressor (%0 - do not override and use
1362 * superblock compressor, %1 - override and use compressor
1363 * specified in @compr_type)
1364 * @compr_type: compressor type to override the superblock compressor with
1365 * (%UBIFS_COMPR_NONE, etc)
1366 */
1367struct ubifs_mount_opts {
1368 unsigned int unmount_mode:2;
1369 unsigned int bulk_read:2;
1370 unsigned int chk_data_crc:2;
1371 unsigned int override_compr:1;
1372 unsigned int compr_type:2;
1373};
1374
1375struct ubifs_debug_info;
1376
1377/**
1378 * struct ubifs_info - UBIFS file-system description data structure
1379 * (per-superblock).
1380 * @vfs_sb: VFS @struct super_block object
1381 * @bdi: backing device info object to make VFS happy and disable read-ahead
1382 *
1383 * @highest_inum: highest used inode number
1384 * @max_sqnum: current global sequence number
1385 * @cmt_no: commit number of the last successfully completed commit, protected
1386 * by @commit_sem
1387 * @cnt_lock: protects @highest_inum and @max_sqnum counters
1388 * @fmt_version: UBIFS on-flash format version
Artem Bityutskiyfebd7e42009-03-27 10:21:14 +01001389 * @ro_compat_version: R/O compatibility version
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001390 * @uuid: UUID from super block
1391 *
1392 * @lhead_lnum: log head logical eraseblock number
1393 * @lhead_offs: log head offset
1394 * @ltail_lnum: log tail logical eraseblock number (offset is always 0)
1395 * @log_mutex: protects the log, @lhead_lnum, @lhead_offs, @ltail_lnum, and
1396 * @bud_bytes
1397 * @min_log_bytes: minimum required number of bytes in the log
1398 * @cmt_bud_bytes: used during commit to temporarily amount of bytes in
1399 * committed buds
1400 *
1401 * @buds: tree of all buds indexed by bud LEB number
1402 * @bud_bytes: how many bytes of flash is used by buds
1403 * @buds_lock: protects the @buds tree, @bud_bytes, and per-journal head bud
1404 * lists
1405 * @jhead_cnt: count of journal heads
1406 * @jheads: journal heads (head zero is base head)
1407 * @max_bud_bytes: maximum number of bytes allowed in buds
1408 * @bg_bud_bytes: number of bud bytes when background commit is initiated
1409 * @old_buds: buds to be released after commit ends
1410 * @max_bud_cnt: maximum number of buds
1411 *
1412 * @commit_sem: synchronizes committer with other processes
1413 * @cmt_state: commit state
1414 * @cs_lock: commit state lock
1415 * @cmt_wq: wait queue to sleep on if the log is full and a commit is running
1416 *
1417 * @big_lpt: flag that LPT is too big to write whole during commit
1418 * @no_chk_data_crc: do not check CRCs when reading data nodes (except during
1419 * recovery)
1420 * @bulk_read: enable bulk-reads
1421 * @default_compr: default compression algorithm (%UBIFS_COMPR_LZO, etc)
Artem Bityutskiyfebd7e42009-03-27 10:21:14 +01001422 * @rw_incompat: the media is not R/W compatible
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001423 *
1424 * @tnc_mutex: protects the Tree Node Cache (TNC), @zroot, @cnext, @enext, and
1425 * @calc_idx_sz
1426 * @zroot: zbranch which points to the root index node and znode
1427 * @cnext: next znode to commit
1428 * @enext: next znode to commit to empty space
1429 * @gap_lebs: array of LEBs used by the in-gaps commit method
1430 * @cbuf: commit buffer
1431 * @ileb_buf: buffer for commit in-the-gaps method
1432 * @ileb_len: length of data in ileb_buf
1433 * @ihead_lnum: LEB number of index head
1434 * @ihead_offs: offset of index head
1435 * @ilebs: pre-allocated index LEBs
1436 * @ileb_cnt: number of pre-allocated index LEBs
1437 * @ileb_nxt: next pre-allocated index LEBs
1438 * @old_idx: tree of index nodes obsoleted since the last commit start
1439 * @bottom_up_buf: a buffer which is used by 'dirty_cow_bottom_up()' in tnc.c
1440 *
1441 * @mst_node: master node
1442 * @mst_offs: offset of valid master node
1443 * @mst_mutex: protects the master node area, @mst_node, and @mst_offs
1444 *
1445 * @max_bu_buf_len: maximum bulk-read buffer length
1446 * @bu_mutex: protects the pre-allocated bulk-read buffer and @c->bu
1447 * @bu: pre-allocated bulk-read information
1448 *
1449 * @log_lebs: number of logical eraseblocks in the log
1450 * @log_bytes: log size in bytes
1451 * @log_last: last LEB of the log
1452 * @lpt_lebs: number of LEBs used for lprops table
1453 * @lpt_first: first LEB of the lprops table area
1454 * @lpt_last: last LEB of the lprops table area
1455 * @orph_lebs: number of LEBs used for the orphan area
1456 * @orph_first: first LEB of the orphan area
1457 * @orph_last: last LEB of the orphan area
1458 * @main_lebs: count of LEBs in the main area
1459 * @main_first: first LEB of the main area
1460 * @main_bytes: main area size in bytes
1461 *
1462 * @key_hash_type: type of the key hash
1463 * @key_hash: direntry key hash function
1464 * @key_fmt: key format
1465 * @key_len: key length
1466 * @fanout: fanout of the index tree (number of links per indexing node)
1467 *
1468 * @min_io_size: minimal input/output unit size
1469 * @min_io_shift: number of bits in @min_io_size minus one
1470 * @leb_size: logical eraseblock size in bytes
1471 * @half_leb_size: half LEB size
1472 * @leb_cnt: count of logical eraseblocks
1473 * @max_leb_cnt: maximum count of logical eraseblocks
1474 * @old_leb_cnt: count of logical eraseblocks before re-size
1475 * @ro_media: the underlying UBI volume is read-only
1476 *
1477 * @dirty_pg_cnt: number of dirty pages (not used)
1478 * @dirty_zn_cnt: number of dirty znodes
1479 * @clean_zn_cnt: number of clean znodes
1480 *
1481 * @budg_idx_growth: amount of bytes budgeted for index growth
1482 * @budg_data_growth: amount of bytes budgeted for cached data
1483 * @budg_dd_growth: amount of bytes budgeted for cached data that will make
1484 * other data dirty
1485 * @budg_uncommitted_idx: amount of bytes were budgeted for growth of the index,
1486 * but which still have to be taken into account because
1487 * the index has not been committed so far
1488 * @space_lock: protects @budg_idx_growth, @budg_data_growth, @budg_dd_growth,
1489 * @budg_uncommited_idx, @min_idx_lebs, @old_idx_sz, @lst,
1490 * @nospace, and @nospace_rp;
1491 * @min_idx_lebs: minimum number of LEBs required for the index
1492 * @old_idx_sz: size of index on flash
1493 * @calc_idx_sz: temporary variable which is used to calculate new index size
1494 * (contains accurate new index size at end of TNC commit start)
1495 * @lst: lprops statistics
1496 * @nospace: non-zero if the file-system does not have flash space (used as
1497 * optimization)
1498 * @nospace_rp: the same as @nospace, but additionally means that even reserved
1499 * pool is full
1500 *
1501 * @page_budget: budget for a page
1502 * @inode_budget: budget for an inode
1503 * @dent_budget: budget for a directory entry
1504 *
1505 * @ref_node_alsz: size of the LEB reference node aligned to the min. flash
1506 * I/O unit
1507 * @mst_node_alsz: master node aligned size
1508 * @min_idx_node_sz: minimum indexing node aligned on 8-bytes boundary
1509 * @max_idx_node_sz: maximum indexing node aligned on 8-bytes boundary
1510 * @max_inode_sz: maximum possible inode size in bytes
1511 * @max_znode_sz: size of znode in bytes
1512 *
1513 * @leb_overhead: how many bytes are wasted in an LEB when it is filled with
1514 * data nodes of maximum size - used in free space reporting
1515 * @dead_wm: LEB dead space watermark
1516 * @dark_wm: LEB dark space watermark
1517 * @block_cnt: count of 4KiB blocks on the FS
1518 *
1519 * @ranges: UBIFS node length ranges
1520 * @ubi: UBI volume descriptor
1521 * @di: UBI device information
1522 * @vi: UBI volume information
1523 *
1524 * @orph_tree: rb-tree of orphan inode numbers
1525 * @orph_list: list of orphan inode numbers in order added
1526 * @orph_new: list of orphan inode numbers added since last commit
1527 * @orph_cnext: next orphan to commit
1528 * @orph_dnext: next orphan to delete
1529 * @orphan_lock: lock for orph_tree and orph_new
1530 * @orph_buf: buffer for orphan nodes
1531 * @new_orphans: number of orphans since last commit
1532 * @cmt_orphans: number of orphans being committed
1533 * @tot_orphans: number of orphans in the rb_tree
1534 * @max_orphans: maximum number of orphans allowed
1535 * @ohead_lnum: orphan head LEB number
1536 * @ohead_offs: orphan head offset
1537 * @no_orphs: non-zero if there are no orphans
1538 *
1539 * @bgt: UBIFS background thread
1540 * @bgt_name: background thread name
1541 * @need_bgt: if background thread should run
1542 * @need_wbuf_sync: if write-buffers have to be synchronized
1543 *
1544 * @gc_lnum: LEB number used for garbage collection
1545 * @sbuf: a buffer of LEB size used by GC and replay for scanning
1546 * @idx_gc: list of index LEBs that have been garbage collected
1547 * @idx_gc_cnt: number of elements on the idx_gc list
1548 * @gc_seq: incremented for every non-index LEB garbage collected
1549 * @gced_lnum: last non-index LEB that was garbage collected
1550 *
1551 * @infos_list: links all 'ubifs_info' objects
1552 * @umount_mutex: serializes shrinker and un-mount
1553 * @shrinker_run_no: shrinker run number
1554 *
1555 * @space_bits: number of bits needed to record free or dirty space
1556 * @lpt_lnum_bits: number of bits needed to record a LEB number in the LPT
1557 * @lpt_offs_bits: number of bits needed to record an offset in the LPT
1558 * @lpt_spc_bits: number of bits needed to space in the LPT
1559 * @pcnt_bits: number of bits needed to record pnode or nnode number
1560 * @lnum_bits: number of bits needed to record LEB number
1561 * @nnode_sz: size of on-flash nnode
1562 * @pnode_sz: size of on-flash pnode
1563 * @ltab_sz: size of on-flash LPT lprops table
1564 * @lsave_sz: size of on-flash LPT save table
1565 * @pnode_cnt: number of pnodes
1566 * @nnode_cnt: number of nnodes
1567 * @lpt_hght: height of the LPT
1568 * @pnodes_have: number of pnodes in memory
1569 *
1570 * @lp_mutex: protects lprops table and all the other lprops-related fields
1571 * @lpt_lnum: LEB number of the root nnode of the LPT
1572 * @lpt_offs: offset of the root nnode of the LPT
1573 * @nhead_lnum: LEB number of LPT head
1574 * @nhead_offs: offset of LPT head
1575 * @lpt_drty_flgs: dirty flags for LPT special nodes e.g. ltab
1576 * @dirty_nn_cnt: number of dirty nnodes
1577 * @dirty_pn_cnt: number of dirty pnodes
1578 * @check_lpt_free: flag that indicates LPT GC may be needed
1579 * @lpt_sz: LPT size
1580 * @lpt_nod_buf: buffer for an on-flash nnode or pnode
1581 * @lpt_buf: buffer of LEB size used by LPT
1582 * @nroot: address in memory of the root nnode of the LPT
1583 * @lpt_cnext: next LPT node to commit
1584 * @lpt_heap: array of heaps of categorized lprops
1585 * @dirty_idx: a (reverse sorted) copy of the LPROPS_DIRTY_IDX heap as at
1586 * previous commit start
1587 * @uncat_list: list of un-categorized LEBs
1588 * @empty_list: list of empty LEBs
1589 * @freeable_list: list of freeable non-index LEBs (free + dirty == leb_size)
1590 * @frdi_idx_list: list of freeable index LEBs (free + dirty == leb_size)
1591 * @freeable_cnt: number of freeable LEBs in @freeable_list
1592 *
1593 * @ltab_lnum: LEB number of LPT's own lprops table
1594 * @ltab_offs: offset of LPT's own lprops table
1595 * @ltab: LPT's own lprops table
1596 * @ltab_cmt: LPT's own lprops table (commit copy)
1597 * @lsave_cnt: number of LEB numbers in LPT's save table
1598 * @lsave_lnum: LEB number of LPT's save table
1599 * @lsave_offs: offset of LPT's save table
1600 * @lsave: LPT's save table
1601 * @lscan_lnum: LEB number of last LPT scan
1602 *
1603 * @rp_size: size of the reserved pool in bytes
1604 * @report_rp_size: size of the reserved pool reported to user-space
1605 * @rp_uid: reserved pool user ID
1606 * @rp_gid: reserved pool group ID
1607 *
1608 * @empty: if the UBI device is empty
1609 * @replay_tree: temporary tree used during journal replay
1610 * @replay_list: temporary list used during journal replay
1611 * @replay_buds: list of buds to replay
1612 * @cs_sqnum: sequence number of first node in the log (commit start node)
1613 * @replay_sqnum: sequence number of node currently being replayed
1614 * @need_recovery: file-system needs recovery
1615 * @replaying: set to %1 during journal replay
1616 * @unclean_leb_list: LEBs to recover when mounting ro to rw
1617 * @rcvrd_mst_node: recovered master node to write when mounting ro to rw
1618 * @size_tree: inode size information for recovery
1619 * @remounting_rw: set while remounting from ro to rw (sb flags have MS_RDONLY)
1620 * @always_chk_crc: always check CRCs (while mounting and remounting rw)
1621 * @mount_opts: UBIFS-specific mount options
1622 *
1623 * @dbg: debugging-related information
1624 */
1625struct ubifs_info {
1626 struct super_block *vfs_sb;
1627
1628 ino_t highest_inum;
1629 unsigned long long max_sqnum;
1630 unsigned long long cmt_no;
1631 spinlock_t cnt_lock;
1632 int fmt_version;
Artem Bityutskiyfebd7e42009-03-27 10:21:14 +01001633 int ro_compat_version;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001634 unsigned char uuid[16];
1635
1636 int lhead_lnum;
1637 int lhead_offs;
1638 int ltail_lnum;
1639 struct mutex log_mutex;
1640 int min_log_bytes;
1641 long long cmt_bud_bytes;
1642
1643 struct rb_root buds;
1644 long long bud_bytes;
1645 spinlock_t buds_lock;
1646 int jhead_cnt;
1647 struct ubifs_jhead *jheads;
1648 long long max_bud_bytes;
1649 long long bg_bud_bytes;
1650 struct list_head old_buds;
1651 int max_bud_cnt;
1652
1653 struct rw_semaphore commit_sem;
1654 int cmt_state;
1655 spinlock_t cs_lock;
1656 wait_queue_head_t cmt_wq;
1657
1658 unsigned int big_lpt:1;
1659 unsigned int no_chk_data_crc:1;
1660 unsigned int bulk_read:1;
1661 unsigned int default_compr:2;
Artem Bityutskiyfebd7e42009-03-27 10:21:14 +01001662 unsigned int rw_incompat:1;
Stefan Roese9eefe2a2009-03-19 15:35:05 +01001663
1664 struct mutex tnc_mutex;
1665 struct ubifs_zbranch zroot;
1666 struct ubifs_znode *cnext;
1667 struct ubifs_znode *enext;
1668 int *gap_lebs;
1669 void *cbuf;
1670 void *ileb_buf;
1671 int ileb_len;
1672 int ihead_lnum;
1673 int ihead_offs;
1674 int *ilebs;
1675 int ileb_cnt;
1676 int ileb_nxt;
1677 struct rb_root old_idx;
1678 int *bottom_up_buf;
1679
1680 struct ubifs_mst_node *mst_node;
1681 int mst_offs;
1682 struct mutex mst_mutex;
1683
1684 int max_bu_buf_len;
1685 struct mutex bu_mutex;
1686 struct bu_info bu;
1687
1688 int log_lebs;
1689 long long log_bytes;
1690 int log_last;
1691 int lpt_lebs;
1692 int lpt_first;
1693 int lpt_last;
1694 int orph_lebs;
1695 int orph_first;
1696 int orph_last;
1697 int main_lebs;
1698 int main_first;
1699 long long main_bytes;
1700
1701 uint8_t key_hash_type;
1702 uint32_t (*key_hash)(const char *str, int len);
1703 int key_fmt;
1704 int key_len;
1705 int fanout;
1706
1707 int min_io_size;
1708 int min_io_shift;
1709 int leb_size;
1710 int half_leb_size;
1711 int leb_cnt;
1712 int max_leb_cnt;
1713 int old_leb_cnt;
1714 int ro_media;
1715
1716 long long budg_idx_growth;
1717 long long budg_data_growth;
1718 long long budg_dd_growth;
1719 long long budg_uncommitted_idx;
1720 spinlock_t space_lock;
1721 int min_idx_lebs;
1722 unsigned long long old_idx_sz;
1723 unsigned long long calc_idx_sz;
1724 struct ubifs_lp_stats lst;
1725 unsigned int nospace:1;
1726 unsigned int nospace_rp:1;
1727
1728 int page_budget;
1729 int inode_budget;
1730 int dent_budget;
1731
1732 int ref_node_alsz;
1733 int mst_node_alsz;
1734 int min_idx_node_sz;
1735 int max_idx_node_sz;
1736 long long max_inode_sz;
1737 int max_znode_sz;
1738
1739 int leb_overhead;
1740 int dead_wm;
1741 int dark_wm;
1742 int block_cnt;
1743
1744 struct ubifs_node_range ranges[UBIFS_NODE_TYPES_CNT];
1745 struct ubi_volume_desc *ubi;
1746 struct ubi_device_info di;
1747 struct ubi_volume_info vi;
1748
1749 struct rb_root orph_tree;
1750 struct list_head orph_list;
1751 struct list_head orph_new;
1752 struct ubifs_orphan *orph_cnext;
1753 struct ubifs_orphan *orph_dnext;
1754 spinlock_t orphan_lock;
1755 void *orph_buf;
1756 int new_orphans;
1757 int cmt_orphans;
1758 int tot_orphans;
1759 int max_orphans;
1760 int ohead_lnum;
1761 int ohead_offs;
1762 int no_orphs;
1763
1764 struct task_struct *bgt;
1765 char bgt_name[sizeof(BGT_NAME_PATTERN) + 9];
1766 int need_bgt;
1767 int need_wbuf_sync;
1768
1769 int gc_lnum;
1770 void *sbuf;
1771 struct list_head idx_gc;
1772 int idx_gc_cnt;
1773 int gc_seq;
1774 int gced_lnum;
1775
1776 struct list_head infos_list;
1777 struct mutex umount_mutex;
1778 unsigned int shrinker_run_no;
1779
1780 int space_bits;
1781 int lpt_lnum_bits;
1782 int lpt_offs_bits;
1783 int lpt_spc_bits;
1784 int pcnt_bits;
1785 int lnum_bits;
1786 int nnode_sz;
1787 int pnode_sz;
1788 int ltab_sz;
1789 int lsave_sz;
1790 int pnode_cnt;
1791 int nnode_cnt;
1792 int lpt_hght;
1793 int pnodes_have;
1794
1795 struct mutex lp_mutex;
1796 int lpt_lnum;
1797 int lpt_offs;
1798 int nhead_lnum;
1799 int nhead_offs;
1800 int lpt_drty_flgs;
1801 int dirty_nn_cnt;
1802 int dirty_pn_cnt;
1803 int check_lpt_free;
1804 long long lpt_sz;
1805 void *lpt_nod_buf;
1806 void *lpt_buf;
1807 struct ubifs_nnode *nroot;
1808 struct ubifs_cnode *lpt_cnext;
1809 struct ubifs_lpt_heap lpt_heap[LPROPS_HEAP_CNT];
1810 struct ubifs_lpt_heap dirty_idx;
1811 struct list_head uncat_list;
1812 struct list_head empty_list;
1813 struct list_head freeable_list;
1814 struct list_head frdi_idx_list;
1815 int freeable_cnt;
1816
1817 int ltab_lnum;
1818 int ltab_offs;
1819 struct ubifs_lpt_lprops *ltab;
1820 struct ubifs_lpt_lprops *ltab_cmt;
1821 int lsave_cnt;
1822 int lsave_lnum;
1823 int lsave_offs;
1824 int *lsave;
1825 int lscan_lnum;
1826
1827 long long rp_size;
1828 long long report_rp_size;
1829 uid_t rp_uid;
1830 gid_t rp_gid;
1831
1832 /* The below fields are used only during mounting and re-mounting */
1833 int empty;
1834 struct rb_root replay_tree;
1835 struct list_head replay_list;
1836 struct list_head replay_buds;
1837 unsigned long long cs_sqnum;
1838 unsigned long long replay_sqnum;
1839 int need_recovery;
1840 int replaying;
1841 struct list_head unclean_leb_list;
1842 struct ubifs_mst_node *rcvrd_mst_node;
1843 struct rb_root size_tree;
1844 int remounting_rw;
1845 int always_chk_crc;
1846 struct ubifs_mount_opts mount_opts;
1847
1848#ifdef CONFIG_UBIFS_FS_DEBUG
1849 struct ubifs_debug_info *dbg;
1850#endif
1851};
1852
1853extern spinlock_t ubifs_infos_lock;
1854extern struct kmem_cache *ubifs_inode_slab;
1855extern const struct super_operations ubifs_super_operations;
1856extern const struct address_space_operations ubifs_file_address_operations;
1857extern const struct file_operations ubifs_file_operations;
1858extern const struct inode_operations ubifs_file_inode_operations;
1859extern const struct file_operations ubifs_dir_operations;
1860extern const struct inode_operations ubifs_dir_inode_operations;
1861extern const struct inode_operations ubifs_symlink_inode_operations;
1862extern struct backing_dev_info ubifs_backing_dev_info;
1863extern struct ubifs_compressor *ubifs_compressors[UBIFS_COMPR_TYPES_CNT];
1864
1865/* io.c */
1866void ubifs_ro_mode(struct ubifs_info *c, int err);
1867int ubifs_wbuf_write_nolock(struct ubifs_wbuf *wbuf, void *buf, int len);
1868int ubifs_wbuf_seek_nolock(struct ubifs_wbuf *wbuf, int lnum, int offs,
1869 int dtype);
1870int ubifs_wbuf_init(struct ubifs_info *c, struct ubifs_wbuf *wbuf);
1871int ubifs_read_node(const struct ubifs_info *c, void *buf, int type, int len,
1872 int lnum, int offs);
1873int ubifs_read_node_wbuf(struct ubifs_wbuf *wbuf, void *buf, int type, int len,
1874 int lnum, int offs);
1875int ubifs_write_node(struct ubifs_info *c, void *node, int len, int lnum,
1876 int offs, int dtype);
1877int ubifs_check_node(const struct ubifs_info *c, const void *buf, int lnum,
1878 int offs, int quiet, int must_chk_crc);
1879void ubifs_prepare_node(struct ubifs_info *c, void *buf, int len, int pad);
1880void ubifs_prep_grp_node(struct ubifs_info *c, void *node, int len, int last);
1881int ubifs_io_init(struct ubifs_info *c);
1882void ubifs_pad(const struct ubifs_info *c, void *buf, int pad);
1883int ubifs_wbuf_sync_nolock(struct ubifs_wbuf *wbuf);
1884int ubifs_bg_wbufs_sync(struct ubifs_info *c);
1885void ubifs_wbuf_add_ino_nolock(struct ubifs_wbuf *wbuf, ino_t inum);
1886int ubifs_sync_wbufs_by_inode(struct ubifs_info *c, struct inode *inode);
1887
1888/* scan.c */
1889struct ubifs_scan_leb *ubifs_scan(const struct ubifs_info *c, int lnum,
1890 int offs, void *sbuf);
1891void ubifs_scan_destroy(struct ubifs_scan_leb *sleb);
1892int ubifs_scan_a_node(const struct ubifs_info *c, void *buf, int len, int lnum,
1893 int offs, int quiet);
1894struct ubifs_scan_leb *ubifs_start_scan(const struct ubifs_info *c, int lnum,
1895 int offs, void *sbuf);
1896void ubifs_end_scan(const struct ubifs_info *c, struct ubifs_scan_leb *sleb,
1897 int lnum, int offs);
1898int ubifs_add_snod(const struct ubifs_info *c, struct ubifs_scan_leb *sleb,
1899 void *buf, int offs);
1900void ubifs_scanned_corruption(const struct ubifs_info *c, int lnum, int offs,
1901 void *buf);
1902
1903/* log.c */
1904void ubifs_add_bud(struct ubifs_info *c, struct ubifs_bud *bud);
1905void ubifs_create_buds_lists(struct ubifs_info *c);
1906int ubifs_add_bud_to_log(struct ubifs_info *c, int jhead, int lnum, int offs);
1907struct ubifs_bud *ubifs_search_bud(struct ubifs_info *c, int lnum);
1908struct ubifs_wbuf *ubifs_get_wbuf(struct ubifs_info *c, int lnum);
1909int ubifs_log_start_commit(struct ubifs_info *c, int *ltail_lnum);
1910int ubifs_log_end_commit(struct ubifs_info *c, int new_ltail_lnum);
1911int ubifs_log_post_commit(struct ubifs_info *c, int old_ltail_lnum);
1912int ubifs_consolidate_log(struct ubifs_info *c);
1913
1914/* journal.c */
1915int ubifs_jnl_update(struct ubifs_info *c, const struct inode *dir,
1916 const struct qstr *nm, const struct inode *inode,
1917 int deletion, int xent);
1918int ubifs_jnl_write_data(struct ubifs_info *c, const struct inode *inode,
1919 const union ubifs_key *key, const void *buf, int len);
1920int ubifs_jnl_write_inode(struct ubifs_info *c, const struct inode *inode);
1921int ubifs_jnl_delete_inode(struct ubifs_info *c, const struct inode *inode);
1922int ubifs_jnl_rename(struct ubifs_info *c, const struct inode *old_dir,
1923 const struct dentry *old_dentry,
1924 const struct inode *new_dir,
1925 const struct dentry *new_dentry, int sync);
1926int ubifs_jnl_truncate(struct ubifs_info *c, const struct inode *inode,
1927 loff_t old_size, loff_t new_size);
1928int ubifs_jnl_delete_xattr(struct ubifs_info *c, const struct inode *host,
1929 const struct inode *inode, const struct qstr *nm);
1930int ubifs_jnl_change_xattr(struct ubifs_info *c, const struct inode *inode1,
1931 const struct inode *inode2);
1932
1933/* budget.c */
1934int ubifs_budget_space(struct ubifs_info *c, struct ubifs_budget_req *req);
1935void ubifs_release_budget(struct ubifs_info *c, struct ubifs_budget_req *req);
1936void ubifs_release_dirty_inode_budget(struct ubifs_info *c,
1937 struct ubifs_inode *ui);
1938int ubifs_budget_inode_op(struct ubifs_info *c, struct inode *inode,
1939 struct ubifs_budget_req *req);
1940void ubifs_release_ino_dirty(struct ubifs_info *c, struct inode *inode,
1941 struct ubifs_budget_req *req);
1942void ubifs_cancel_ino_op(struct ubifs_info *c, struct inode *inode,
1943 struct ubifs_budget_req *req);
1944long long ubifs_get_free_space(struct ubifs_info *c);
1945long long ubifs_get_free_space_nolock(struct ubifs_info *c);
1946int ubifs_calc_min_idx_lebs(struct ubifs_info *c);
1947void ubifs_convert_page_budget(struct ubifs_info *c);
1948long long ubifs_reported_space(const struct ubifs_info *c, long long free);
1949long long ubifs_calc_available(const struct ubifs_info *c, int min_idx_lebs);
1950
1951/* find.c */
1952int ubifs_find_free_space(struct ubifs_info *c, int min_space, int *free,
1953 int squeeze);
1954int ubifs_find_free_leb_for_idx(struct ubifs_info *c);
1955int ubifs_find_dirty_leb(struct ubifs_info *c, struct ubifs_lprops *ret_lp,
1956 int min_space, int pick_free);
1957int ubifs_find_dirty_idx_leb(struct ubifs_info *c);
1958int ubifs_save_dirty_idx_lnums(struct ubifs_info *c);
1959
1960/* tnc.c */
1961int ubifs_lookup_level0(struct ubifs_info *c, const union ubifs_key *key,
1962 struct ubifs_znode **zn, int *n);
1963int ubifs_tnc_lookup_nm(struct ubifs_info *c, const union ubifs_key *key,
1964 void *node, const struct qstr *nm);
1965int ubifs_tnc_locate(struct ubifs_info *c, const union ubifs_key *key,
1966 void *node, int *lnum, int *offs);
1967int ubifs_tnc_add(struct ubifs_info *c, const union ubifs_key *key, int lnum,
1968 int offs, int len);
1969int ubifs_tnc_replace(struct ubifs_info *c, const union ubifs_key *key,
1970 int old_lnum, int old_offs, int lnum, int offs, int len);
1971int ubifs_tnc_add_nm(struct ubifs_info *c, const union ubifs_key *key,
1972 int lnum, int offs, int len, const struct qstr *nm);
1973int ubifs_tnc_remove(struct ubifs_info *c, const union ubifs_key *key);
1974int ubifs_tnc_remove_nm(struct ubifs_info *c, const union ubifs_key *key,
1975 const struct qstr *nm);
1976int ubifs_tnc_remove_range(struct ubifs_info *c, union ubifs_key *from_key,
1977 union ubifs_key *to_key);
1978int ubifs_tnc_remove_ino(struct ubifs_info *c, ino_t inum);
1979struct ubifs_dent_node *ubifs_tnc_next_ent(struct ubifs_info *c,
1980 union ubifs_key *key,
1981 const struct qstr *nm);
1982void ubifs_tnc_close(struct ubifs_info *c);
1983int ubifs_tnc_has_node(struct ubifs_info *c, union ubifs_key *key, int level,
1984 int lnum, int offs, int is_idx);
1985int ubifs_dirty_idx_node(struct ubifs_info *c, union ubifs_key *key, int level,
1986 int lnum, int offs);
1987/* Shared by tnc.c for tnc_commit.c */
1988void destroy_old_idx(struct ubifs_info *c);
1989int is_idx_node_in_tnc(struct ubifs_info *c, union ubifs_key *key, int level,
1990 int lnum, int offs);
1991int insert_old_idx_znode(struct ubifs_info *c, struct ubifs_znode *znode);
1992int ubifs_tnc_get_bu_keys(struct ubifs_info *c, struct bu_info *bu);
1993int ubifs_tnc_bulk_read(struct ubifs_info *c, struct bu_info *bu);
1994
1995/* tnc_misc.c */
1996struct ubifs_znode *ubifs_tnc_levelorder_next(struct ubifs_znode *zr,
1997 struct ubifs_znode *znode);
1998int ubifs_search_zbranch(const struct ubifs_info *c,
1999 const struct ubifs_znode *znode,
2000 const union ubifs_key *key, int *n);
2001struct ubifs_znode *ubifs_tnc_postorder_first(struct ubifs_znode *znode);
2002struct ubifs_znode *ubifs_tnc_postorder_next(struct ubifs_znode *znode);
2003long ubifs_destroy_tnc_subtree(struct ubifs_znode *zr);
2004struct ubifs_znode *ubifs_load_znode(struct ubifs_info *c,
2005 struct ubifs_zbranch *zbr,
2006 struct ubifs_znode *parent, int iip);
2007int ubifs_tnc_read_node(struct ubifs_info *c, struct ubifs_zbranch *zbr,
2008 void *node);
2009
2010/* tnc_commit.c */
2011int ubifs_tnc_start_commit(struct ubifs_info *c, struct ubifs_zbranch *zroot);
2012int ubifs_tnc_end_commit(struct ubifs_info *c);
2013
2014/* shrinker.c */
2015int ubifs_shrinker(int nr_to_scan, gfp_t gfp_mask);
2016
2017/* commit.c */
2018int ubifs_bg_thread(void *info);
2019void ubifs_commit_required(struct ubifs_info *c);
2020void ubifs_request_bg_commit(struct ubifs_info *c);
2021int ubifs_run_commit(struct ubifs_info *c);
2022void ubifs_recovery_commit(struct ubifs_info *c);
2023int ubifs_gc_should_commit(struct ubifs_info *c);
2024void ubifs_wait_for_commit(struct ubifs_info *c);
2025
2026/* master.c */
2027int ubifs_read_master(struct ubifs_info *c);
2028int ubifs_write_master(struct ubifs_info *c);
2029
2030/* sb.c */
2031int ubifs_read_superblock(struct ubifs_info *c);
2032struct ubifs_sb_node *ubifs_read_sb_node(struct ubifs_info *c);
2033int ubifs_write_sb_node(struct ubifs_info *c, struct ubifs_sb_node *sup);
2034
2035/* replay.c */
2036int ubifs_validate_entry(struct ubifs_info *c,
2037 const struct ubifs_dent_node *dent);
2038int ubifs_replay_journal(struct ubifs_info *c);
2039
2040/* gc.c */
2041int ubifs_garbage_collect(struct ubifs_info *c, int anyway);
2042int ubifs_gc_start_commit(struct ubifs_info *c);
2043int ubifs_gc_end_commit(struct ubifs_info *c);
2044void ubifs_destroy_idx_gc(struct ubifs_info *c);
2045int ubifs_get_idx_gc_leb(struct ubifs_info *c);
2046int ubifs_garbage_collect_leb(struct ubifs_info *c, struct ubifs_lprops *lp);
2047
2048/* orphan.c */
2049int ubifs_add_orphan(struct ubifs_info *c, ino_t inum);
2050void ubifs_delete_orphan(struct ubifs_info *c, ino_t inum);
2051int ubifs_orphan_start_commit(struct ubifs_info *c);
2052int ubifs_orphan_end_commit(struct ubifs_info *c);
2053int ubifs_mount_orphans(struct ubifs_info *c, int unclean, int read_only);
2054int ubifs_clear_orphans(struct ubifs_info *c);
2055
2056/* lpt.c */
2057int ubifs_calc_lpt_geom(struct ubifs_info *c);
2058int ubifs_create_dflt_lpt(struct ubifs_info *c, int *main_lebs, int lpt_first,
2059 int *lpt_lebs, int *big_lpt);
2060int ubifs_lpt_init(struct ubifs_info *c, int rd, int wr);
2061struct ubifs_lprops *ubifs_lpt_lookup(struct ubifs_info *c, int lnum);
2062struct ubifs_lprops *ubifs_lpt_lookup_dirty(struct ubifs_info *c, int lnum);
2063int ubifs_lpt_scan_nolock(struct ubifs_info *c, int start_lnum, int end_lnum,
2064 ubifs_lpt_scan_callback scan_cb, void *data);
2065
2066/* Shared by lpt.c for lpt_commit.c */
2067void ubifs_pack_lsave(struct ubifs_info *c, void *buf, int *lsave);
2068void ubifs_pack_ltab(struct ubifs_info *c, void *buf,
2069 struct ubifs_lpt_lprops *ltab);
2070void ubifs_pack_pnode(struct ubifs_info *c, void *buf,
2071 struct ubifs_pnode *pnode);
2072void ubifs_pack_nnode(struct ubifs_info *c, void *buf,
2073 struct ubifs_nnode *nnode);
2074struct ubifs_pnode *ubifs_get_pnode(struct ubifs_info *c,
2075 struct ubifs_nnode *parent, int iip);
2076struct ubifs_nnode *ubifs_get_nnode(struct ubifs_info *c,
2077 struct ubifs_nnode *parent, int iip);
2078int ubifs_read_nnode(struct ubifs_info *c, struct ubifs_nnode *parent, int iip);
2079void ubifs_add_lpt_dirt(struct ubifs_info *c, int lnum, int dirty);
2080void ubifs_add_nnode_dirt(struct ubifs_info *c, struct ubifs_nnode *nnode);
2081uint32_t ubifs_unpack_bits(uint8_t **addr, int *pos, int nrbits);
2082struct ubifs_nnode *ubifs_first_nnode(struct ubifs_info *c, int *hght);
2083/* Needed only in debugging code in lpt_commit.c */
2084int ubifs_unpack_nnode(const struct ubifs_info *c, void *buf,
2085 struct ubifs_nnode *nnode);
2086
2087/* lpt_commit.c */
2088int ubifs_lpt_start_commit(struct ubifs_info *c);
2089int ubifs_lpt_end_commit(struct ubifs_info *c);
2090int ubifs_lpt_post_commit(struct ubifs_info *c);
2091void ubifs_lpt_free(struct ubifs_info *c, int wr_only);
2092
2093/* lprops.c */
2094const struct ubifs_lprops *ubifs_change_lp(struct ubifs_info *c,
2095 const struct ubifs_lprops *lp,
2096 int free, int dirty, int flags,
2097 int idx_gc_cnt);
2098void ubifs_get_lp_stats(struct ubifs_info *c, struct ubifs_lp_stats *lst);
2099void ubifs_add_to_cat(struct ubifs_info *c, struct ubifs_lprops *lprops,
2100 int cat);
2101void ubifs_replace_cat(struct ubifs_info *c, struct ubifs_lprops *old_lprops,
2102 struct ubifs_lprops *new_lprops);
2103void ubifs_ensure_cat(struct ubifs_info *c, struct ubifs_lprops *lprops);
2104int ubifs_categorize_lprops(const struct ubifs_info *c,
2105 const struct ubifs_lprops *lprops);
2106int ubifs_change_one_lp(struct ubifs_info *c, int lnum, int free, int dirty,
2107 int flags_set, int flags_clean, int idx_gc_cnt);
2108int ubifs_update_one_lp(struct ubifs_info *c, int lnum, int free, int dirty,
2109 int flags_set, int flags_clean);
2110int ubifs_read_one_lp(struct ubifs_info *c, int lnum, struct ubifs_lprops *lp);
2111const struct ubifs_lprops *ubifs_fast_find_free(struct ubifs_info *c);
2112const struct ubifs_lprops *ubifs_fast_find_empty(struct ubifs_info *c);
2113const struct ubifs_lprops *ubifs_fast_find_freeable(struct ubifs_info *c);
2114const struct ubifs_lprops *ubifs_fast_find_frdi_idx(struct ubifs_info *c);
2115
2116/* file.c */
2117int ubifs_fsync(struct file *file, struct dentry *dentry, int datasync);
2118int ubifs_setattr(struct dentry *dentry, struct iattr *attr);
2119
2120/* dir.c */
2121struct inode *ubifs_new_inode(struct ubifs_info *c, const struct inode *dir,
2122 int mode);
2123int ubifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
2124 struct kstat *stat);
2125
2126/* xattr.c */
2127int ubifs_setxattr(struct dentry *dentry, const char *name,
2128 const void *value, size_t size, int flags);
2129ssize_t ubifs_getxattr(struct dentry *dentry, const char *name, void *buf,
2130 size_t size);
2131ssize_t ubifs_listxattr(struct dentry *dentry, char *buffer, size_t size);
2132int ubifs_removexattr(struct dentry *dentry, const char *name);
2133
2134/* super.c */
2135struct inode *ubifs_iget(struct super_block *sb, unsigned long inum);
2136int ubifs_iput(struct inode *inode);
2137
2138/* recovery.c */
2139int ubifs_recover_master_node(struct ubifs_info *c);
2140int ubifs_write_rcvrd_mst_node(struct ubifs_info *c);
2141struct ubifs_scan_leb *ubifs_recover_leb(struct ubifs_info *c, int lnum,
2142 int offs, void *sbuf, int grouped);
2143struct ubifs_scan_leb *ubifs_recover_log_leb(struct ubifs_info *c, int lnum,
2144 int offs, void *sbuf);
2145int ubifs_recover_inl_heads(const struct ubifs_info *c, void *sbuf);
2146int ubifs_clean_lebs(const struct ubifs_info *c, void *sbuf);
2147int ubifs_rcvry_gc_commit(struct ubifs_info *c);
2148int ubifs_recover_size_accum(struct ubifs_info *c, union ubifs_key *key,
2149 int deletion, loff_t new_size);
2150int ubifs_recover_size(struct ubifs_info *c);
2151void ubifs_destroy_size_tree(struct ubifs_info *c);
2152
2153/* ioctl.c */
2154long ubifs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
2155void ubifs_set_inode_flags(struct inode *inode);
2156#ifdef CONFIG_COMPAT
2157long ubifs_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
2158#endif
2159
2160/* compressor.c */
2161int __init ubifs_compressors_init(void);
2162void __exit ubifs_compressors_exit(void);
2163void ubifs_compress(const void *in_buf, int in_len, void *out_buf, int *out_len,
2164 int *compr_type);
2165int ubifs_decompress(const void *buf, int len, void *out, int *out_len,
2166 int compr_type);
2167
2168#include "debug.h"
2169#include "misc.h"
2170#include "key.h"
2171
2172/* todo: Move these to a common U-Boot header */
2173int lzo1x_decompress_safe(const unsigned char *in, size_t in_len,
2174 unsigned char *out, size_t *out_len);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002175
Ricardo Ribalda Delgadoc1a0fd52009-04-27 18:33:33 +02002176int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,
2177 int stoponerr, int offset);
Stefan Roese9eefe2a2009-03-19 15:35:05 +01002178#endif /* !__UBIFS_H__ */