blob: 5f89a6a654cd1cc11647f12ae2fcedae51c8f576 [file] [log] [blame]
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001/*
2 * fs/f2fs/super.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/fs.h>
14#include <linux/statfs.h>
15#include <linux/buffer_head.h>
16#include <linux/backing-dev.h>
17#include <linux/kthread.h>
18#include <linux/parser.h>
19#include <linux/mount.h>
20#include <linux/seq_file.h>
21#include <linux/proc_fs.h>
22#include <linux/random.h>
23#include <linux/exportfs.h>
24#include <linux/blkdev.h>
25#include <linux/f2fs_fs.h>
26#include <linux/sysfs.h>
27
28#include "f2fs.h"
29#include "node.h"
30#include "segment.h"
31#include "xattr.h"
32#include "gc.h"
33
34#define CREATE_TRACE_POINTS
35#include <trace/events/f2fs.h>
36
37static struct proc_dir_entry *f2fs_proc_root;
38static struct kmem_cache *f2fs_inode_cachep;
39static struct kset *f2fs_kset;
40
41enum {
42 Opt_gc_background,
43 Opt_disable_roll_forward,
44 Opt_discard,
45 Opt_noheap,
46 Opt_user_xattr,
47 Opt_nouser_xattr,
48 Opt_acl,
49 Opt_noacl,
50 Opt_active_logs,
51 Opt_disable_ext_identify,
52 Opt_inline_xattr,
Changman Leeb1a94e82013-11-15 10:42:51 +090053 Opt_inline_data,
Linus Torvalds8005ecc2012-12-20 13:54:51 -080054 Opt_err,
55};
56
57static match_table_t f2fs_tokens = {
58 {Opt_gc_background, "background_gc=%s"},
59 {Opt_disable_roll_forward, "disable_roll_forward"},
60 {Opt_discard, "discard"},
61 {Opt_noheap, "no_heap"},
62 {Opt_user_xattr, "user_xattr"},
63 {Opt_nouser_xattr, "nouser_xattr"},
64 {Opt_acl, "acl"},
65 {Opt_noacl, "noacl"},
66 {Opt_active_logs, "active_logs=%u"},
67 {Opt_disable_ext_identify, "disable_ext_identify"},
68 {Opt_inline_xattr, "inline_xattr"},
Changman Leeb1a94e82013-11-15 10:42:51 +090069 {Opt_inline_data, "inline_data"},
Linus Torvalds8005ecc2012-12-20 13:54:51 -080070 {Opt_err, NULL},
71};
72
73/* Sysfs support for f2fs */
74enum {
75 GC_THREAD, /* struct f2fs_gc_thread */
76 SM_INFO, /* struct f2fs_sm_info */
Changman Leeb1a94e82013-11-15 10:42:51 +090077 F2FS_SBI, /* struct f2fs_sb_info */
Linus Torvalds8005ecc2012-12-20 13:54:51 -080078};
79
80struct f2fs_attr {
81 struct attribute attr;
82 ssize_t (*show)(struct f2fs_attr *, struct f2fs_sb_info *, char *);
83 ssize_t (*store)(struct f2fs_attr *, struct f2fs_sb_info *,
84 const char *, size_t);
85 int struct_type;
86 int offset;
87};
88
89static unsigned char *__struct_ptr(struct f2fs_sb_info *sbi, int struct_type)
90{
91 if (struct_type == GC_THREAD)
92 return (unsigned char *)sbi->gc_thread;
93 else if (struct_type == SM_INFO)
94 return (unsigned char *)SM_I(sbi);
Changman Leeb1a94e82013-11-15 10:42:51 +090095 else if (struct_type == F2FS_SBI)
96 return (unsigned char *)sbi;
Linus Torvalds8005ecc2012-12-20 13:54:51 -080097 return NULL;
98}
99
100static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
101 struct f2fs_sb_info *sbi, char *buf)
102{
103 unsigned char *ptr = NULL;
104 unsigned int *ui;
105
106 ptr = __struct_ptr(sbi, a->struct_type);
107 if (!ptr)
108 return -EINVAL;
109
110 ui = (unsigned int *)(ptr + a->offset);
111
112 return snprintf(buf, PAGE_SIZE, "%u\n", *ui);
113}
114
115static ssize_t f2fs_sbi_store(struct f2fs_attr *a,
116 struct f2fs_sb_info *sbi,
117 const char *buf, size_t count)
118{
119 unsigned char *ptr;
120 unsigned long t;
121 unsigned int *ui;
122 ssize_t ret;
123
124 ptr = __struct_ptr(sbi, a->struct_type);
125 if (!ptr)
126 return -EINVAL;
127
128 ui = (unsigned int *)(ptr + a->offset);
129
130 ret = kstrtoul(skip_spaces(buf), 0, &t);
131 if (ret < 0)
132 return ret;
133 *ui = t;
134 return count;
135}
136
137static ssize_t f2fs_attr_show(struct kobject *kobj,
138 struct attribute *attr, char *buf)
139{
140 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
141 s_kobj);
142 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
143
144 return a->show ? a->show(a, sbi, buf) : 0;
145}
146
147static ssize_t f2fs_attr_store(struct kobject *kobj, struct attribute *attr,
148 const char *buf, size_t len)
149{
150 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
151 s_kobj);
152 struct f2fs_attr *a = container_of(attr, struct f2fs_attr, attr);
153
154 return a->store ? a->store(a, sbi, buf, len) : 0;
155}
156
157static void f2fs_sb_release(struct kobject *kobj)
158{
159 struct f2fs_sb_info *sbi = container_of(kobj, struct f2fs_sb_info,
160 s_kobj);
161 complete(&sbi->s_kobj_unregister);
162}
163
164#define F2FS_ATTR_OFFSET(_struct_type, _name, _mode, _show, _store, _offset) \
165static struct f2fs_attr f2fs_attr_##_name = { \
166 .attr = {.name = __stringify(_name), .mode = _mode }, \
167 .show = _show, \
168 .store = _store, \
169 .struct_type = _struct_type, \
170 .offset = _offset \
171}
172
173#define F2FS_RW_ATTR(struct_type, struct_name, name, elname) \
174 F2FS_ATTR_OFFSET(struct_type, name, 0644, \
175 f2fs_sbi_show, f2fs_sbi_store, \
176 offsetof(struct struct_name, elname))
177
178F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_min_sleep_time, min_sleep_time);
179F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_max_sleep_time, max_sleep_time);
180F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_no_gc_sleep_time, no_gc_sleep_time);
181F2FS_RW_ATTR(GC_THREAD, f2fs_gc_kthread, gc_idle, gc_idle);
182F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, reclaim_segments, rec_prefree_segments);
Changman Leeb1a94e82013-11-15 10:42:51 +0900183F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, max_small_discards, max_discards);
184F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, ipu_policy, ipu_policy);
185F2FS_RW_ATTR(SM_INFO, f2fs_sm_info, min_ipu_util, min_ipu_util);
186F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, max_victim_search, max_victim_search);
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900187F2FS_RW_ATTR(F2FS_SBI, f2fs_sb_info, dir_level, dir_level);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800188
189#define ATTR_LIST(name) (&f2fs_attr_##name.attr)
190static struct attribute *f2fs_attrs[] = {
191 ATTR_LIST(gc_min_sleep_time),
192 ATTR_LIST(gc_max_sleep_time),
193 ATTR_LIST(gc_no_gc_sleep_time),
194 ATTR_LIST(gc_idle),
195 ATTR_LIST(reclaim_segments),
Changman Leeb1a94e82013-11-15 10:42:51 +0900196 ATTR_LIST(max_small_discards),
197 ATTR_LIST(ipu_policy),
198 ATTR_LIST(min_ipu_util),
199 ATTR_LIST(max_victim_search),
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900200 ATTR_LIST(dir_level),
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800201 NULL,
202};
203
204static const struct sysfs_ops f2fs_attr_ops = {
205 .show = f2fs_attr_show,
206 .store = f2fs_attr_store,
207};
208
209static struct kobj_type f2fs_ktype = {
210 .default_attrs = f2fs_attrs,
211 .sysfs_ops = &f2fs_attr_ops,
212 .release = f2fs_sb_release,
213};
214
215void f2fs_msg(struct super_block *sb, const char *level, const char *fmt, ...)
216{
217 struct va_format vaf;
218 va_list args;
219
220 va_start(args, fmt);
221 vaf.fmt = fmt;
222 vaf.va = &args;
223 printk("%sF2FS-fs (%s): %pV\n", level, sb->s_id, &vaf);
224 va_end(args);
225}
226
227static void init_once(void *foo)
228{
229 struct f2fs_inode_info *fi = (struct f2fs_inode_info *) foo;
230
231 inode_init_once(&fi->vfs_inode);
232}
233
234static int parse_options(struct super_block *sb, char *options)
235{
236 struct f2fs_sb_info *sbi = F2FS_SB(sb);
237 substring_t args[MAX_OPT_ARGS];
238 char *p, *name;
239 int arg = 0;
240
241 if (!options)
242 return 0;
243
244 while ((p = strsep(&options, ",")) != NULL) {
245 int token;
246 if (!*p)
247 continue;
248 /*
249 * Initialize args struct so we know whether arg was
250 * found; some options take optional arguments.
251 */
252 args[0].to = args[0].from = NULL;
253 token = match_token(p, f2fs_tokens, args);
254
255 switch (token) {
256 case Opt_gc_background:
257 name = match_strdup(&args[0]);
258
259 if (!name)
260 return -ENOMEM;
261 if (!strncmp(name, "on", 2))
262 set_opt(sbi, BG_GC);
263 else if (!strncmp(name, "off", 3))
264 clear_opt(sbi, BG_GC);
265 else {
266 kfree(name);
267 return -EINVAL;
268 }
269 kfree(name);
270 break;
271 case Opt_disable_roll_forward:
272 set_opt(sbi, DISABLE_ROLL_FORWARD);
273 break;
274 case Opt_discard:
275 set_opt(sbi, DISCARD);
276 break;
277 case Opt_noheap:
278 set_opt(sbi, NOHEAP);
279 break;
280#ifdef CONFIG_F2FS_FS_XATTR
281 case Opt_user_xattr:
282 set_opt(sbi, XATTR_USER);
283 break;
284 case Opt_nouser_xattr:
285 clear_opt(sbi, XATTR_USER);
286 break;
287 case Opt_inline_xattr:
288 set_opt(sbi, INLINE_XATTR);
289 break;
290#else
291 case Opt_user_xattr:
292 f2fs_msg(sb, KERN_INFO,
293 "user_xattr options not supported");
294 break;
295 case Opt_nouser_xattr:
296 f2fs_msg(sb, KERN_INFO,
297 "nouser_xattr options not supported");
298 break;
299 case Opt_inline_xattr:
300 f2fs_msg(sb, KERN_INFO,
301 "inline_xattr options not supported");
302 break;
303#endif
304#ifdef CONFIG_F2FS_FS_POSIX_ACL
305 case Opt_acl:
306 set_opt(sbi, POSIX_ACL);
307 break;
308 case Opt_noacl:
309 clear_opt(sbi, POSIX_ACL);
310 break;
311#else
312 case Opt_acl:
313 f2fs_msg(sb, KERN_INFO, "acl options not supported");
314 break;
315 case Opt_noacl:
316 f2fs_msg(sb, KERN_INFO, "noacl options not supported");
317 break;
318#endif
319 case Opt_active_logs:
320 if (args->from && match_int(args, &arg))
321 return -EINVAL;
322 if (arg != 2 && arg != 4 && arg != NR_CURSEG_TYPE)
323 return -EINVAL;
324 sbi->active_logs = arg;
325 break;
326 case Opt_disable_ext_identify:
327 set_opt(sbi, DISABLE_EXT_IDENTIFY);
328 break;
Changman Leeb1a94e82013-11-15 10:42:51 +0900329 case Opt_inline_data:
330 set_opt(sbi, INLINE_DATA);
331 break;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800332 default:
333 f2fs_msg(sb, KERN_ERR,
334 "Unrecognized mount option \"%s\" or missing value",
335 p);
336 return -EINVAL;
337 }
338 }
339 return 0;
340}
341
342static struct inode *f2fs_alloc_inode(struct super_block *sb)
343{
344 struct f2fs_inode_info *fi;
345
Changman Leeb1a94e82013-11-15 10:42:51 +0900346 fi = kmem_cache_alloc(f2fs_inode_cachep, GFP_F2FS_ZERO);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800347 if (!fi)
348 return NULL;
349
350 init_once((void *) fi);
351
352 /* Initilize f2fs-specific inode info */
353 fi->vfs_inode.i_version = 1;
354 atomic_set(&fi->dirty_dents, 0);
355 fi->i_current_depth = 1;
356 fi->i_advise = 0;
357 rwlock_init(&fi->ext.ext_lock);
358
359 set_inode_flag(fi, FI_NEW_INODE);
360
361 if (test_opt(F2FS_SB(sb), INLINE_XATTR))
362 set_inode_flag(fi, FI_INLINE_XATTR);
363
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900364 /* Will be used by directory only */
365 fi->i_dir_level = F2FS_SB(sb)->dir_level;
366
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800367 return &fi->vfs_inode;
368}
369
370static int f2fs_drop_inode(struct inode *inode)
371{
372 /*
373 * This is to avoid a deadlock condition like below.
374 * writeback_single_inode(inode)
375 * - f2fs_write_data_page
376 * - f2fs_gc -> iput -> evict
377 * - inode_wait_for_writeback(inode)
378 */
379 if (!inode_unhashed(inode) && inode->i_state & I_SYNC)
380 return 0;
381 return generic_drop_inode(inode);
382}
383
384/*
385 * f2fs_dirty_inode() is called from __mark_inode_dirty()
386 *
387 * We should call set_dirty_inode to write the dirty inode through write_inode.
388 */
389static void f2fs_dirty_inode(struct inode *inode, int flags)
390{
391 set_inode_flag(F2FS_I(inode), FI_DIRTY_INODE);
392}
393
394static void f2fs_i_callback(struct rcu_head *head)
395{
396 struct inode *inode = container_of(head, struct inode, i_rcu);
397 kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode));
398}
399
400static void f2fs_destroy_inode(struct inode *inode)
401{
402 call_rcu(&inode->i_rcu, f2fs_i_callback);
403}
404
405static void f2fs_put_super(struct super_block *sb)
406{
407 struct f2fs_sb_info *sbi = F2FS_SB(sb);
408
409 if (sbi->s_proc) {
410 remove_proc_entry("segment_info", sbi->s_proc);
411 remove_proc_entry(sb->s_id, f2fs_proc_root);
412 }
413 kobject_del(&sbi->s_kobj);
414
415 f2fs_destroy_stats(sbi);
416 stop_gc_thread(sbi);
417
418 /* We don't need to do checkpoint when it's clean */
419 if (sbi->s_dirty && get_pages(sbi, F2FS_DIRTY_NODES))
420 write_checkpoint(sbi, true);
421
422 iput(sbi->node_inode);
423 iput(sbi->meta_inode);
424
425 /* destroy f2fs internal modules */
426 destroy_node_manager(sbi);
427 destroy_segment_manager(sbi);
428
429 kfree(sbi->ckpt);
430 kobject_put(&sbi->s_kobj);
431 wait_for_completion(&sbi->s_kobj_unregister);
432
433 sb->s_fs_info = NULL;
434 brelse(sbi->raw_super_buf);
435 kfree(sbi);
436}
437
438int f2fs_sync_fs(struct super_block *sb, int sync)
439{
440 struct f2fs_sb_info *sbi = F2FS_SB(sb);
441
442 trace_f2fs_sync_fs(sb, sync);
443
444 if (!sbi->s_dirty && !get_pages(sbi, F2FS_DIRTY_NODES))
445 return 0;
446
447 if (sync) {
448 mutex_lock(&sbi->gc_mutex);
449 write_checkpoint(sbi, false);
450 mutex_unlock(&sbi->gc_mutex);
451 } else {
452 f2fs_balance_fs(sbi);
453 }
454
455 return 0;
456}
457
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800458static int f2fs_statfs(struct dentry *dentry, struct kstatfs *buf)
459{
460 struct super_block *sb = dentry->d_sb;
461 struct f2fs_sb_info *sbi = F2FS_SB(sb);
462 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
463 block_t total_count, user_block_count, start_count, ovp_count;
464
465 total_count = le64_to_cpu(sbi->raw_super->block_count);
466 user_block_count = sbi->user_block_count;
467 start_count = le32_to_cpu(sbi->raw_super->segment0_blkaddr);
468 ovp_count = SM_I(sbi)->ovp_segments << sbi->log_blocks_per_seg;
469 buf->f_type = F2FS_SUPER_MAGIC;
470 buf->f_bsize = sbi->blocksize;
471
472 buf->f_blocks = total_count - start_count;
473 buf->f_bfree = buf->f_blocks - valid_user_blocks(sbi) - ovp_count;
474 buf->f_bavail = user_block_count - valid_user_blocks(sbi);
475
476 buf->f_files = sbi->total_node_count;
477 buf->f_ffree = sbi->total_node_count - valid_inode_count(sbi);
478
479 buf->f_namelen = F2FS_NAME_LEN;
480 buf->f_fsid.val[0] = (u32)id;
481 buf->f_fsid.val[1] = (u32)(id >> 32);
482
483 return 0;
484}
485
486static int f2fs_show_options(struct seq_file *seq, struct dentry *root)
487{
488 struct f2fs_sb_info *sbi = F2FS_SB(root->d_sb);
489
490 if (!(root->d_sb->s_flags & MS_RDONLY) && test_opt(sbi, BG_GC))
491 seq_printf(seq, ",background_gc=%s", "on");
492 else
493 seq_printf(seq, ",background_gc=%s", "off");
494 if (test_opt(sbi, DISABLE_ROLL_FORWARD))
495 seq_puts(seq, ",disable_roll_forward");
496 if (test_opt(sbi, DISCARD))
497 seq_puts(seq, ",discard");
498 if (test_opt(sbi, NOHEAP))
499 seq_puts(seq, ",no_heap_alloc");
500#ifdef CONFIG_F2FS_FS_XATTR
501 if (test_opt(sbi, XATTR_USER))
502 seq_puts(seq, ",user_xattr");
503 else
504 seq_puts(seq, ",nouser_xattr");
505 if (test_opt(sbi, INLINE_XATTR))
506 seq_puts(seq, ",inline_xattr");
507#endif
508#ifdef CONFIG_F2FS_FS_POSIX_ACL
509 if (test_opt(sbi, POSIX_ACL))
510 seq_puts(seq, ",acl");
511 else
512 seq_puts(seq, ",noacl");
513#endif
514 if (test_opt(sbi, DISABLE_EXT_IDENTIFY))
515 seq_puts(seq, ",disable_ext_identify");
Changman Leeb1a94e82013-11-15 10:42:51 +0900516 if (test_opt(sbi, INLINE_DATA))
517 seq_puts(seq, ",inline_data");
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800518 seq_printf(seq, ",active_logs=%u", sbi->active_logs);
519
520 return 0;
521}
522
523static int segment_info_seq_show(struct seq_file *seq, void *offset)
524{
525 struct super_block *sb = seq->private;
526 struct f2fs_sb_info *sbi = F2FS_SB(sb);
Changman Leeb1a94e82013-11-15 10:42:51 +0900527 unsigned int total_segs =
528 le32_to_cpu(sbi->raw_super->segment_count_main);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800529 int i;
530
531 for (i = 0; i < total_segs; i++) {
532 seq_printf(seq, "%u", get_valid_blocks(sbi, i, 1));
Gu Zheng13039f62014-03-07 18:43:33 +0800533 if ((i % 10) == 9 || i == (total_segs - 1))
534 seq_putc(seq, '\n');
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800535 else
Gu Zheng13039f62014-03-07 18:43:33 +0800536 seq_putc(seq, ' ');
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800537 }
Gu Zheng13039f62014-03-07 18:43:33 +0800538
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800539 return 0;
540}
541
542static int segment_info_open_fs(struct inode *inode, struct file *file)
543{
Evan McClain1a808fb2014-03-20 09:12:16 -0400544 return single_open(file, segment_info_seq_show, PDE(inode)->data);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800545}
546
547static const struct file_operations f2fs_seq_segment_info_fops = {
548 .owner = THIS_MODULE,
549 .open = segment_info_open_fs,
550 .read = seq_read,
551 .llseek = seq_lseek,
552 .release = single_release,
553};
554
555static int f2fs_remount(struct super_block *sb, int *flags, char *data)
556{
557 struct f2fs_sb_info *sbi = F2FS_SB(sb);
558 struct f2fs_mount_info org_mount_opt;
559 int err, active_logs;
560
561 /*
562 * Save the old mount options in case we
563 * need to restore them.
564 */
565 org_mount_opt = sbi->mount_opt;
566 active_logs = sbi->active_logs;
567
568 /* parse mount options */
569 err = parse_options(sb, data);
570 if (err)
571 goto restore_opts;
572
573 /*
574 * Previous and new state of filesystem is RO,
575 * so no point in checking GC conditions.
576 */
577 if ((sb->s_flags & MS_RDONLY) && (*flags & MS_RDONLY))
578 goto skip;
579
580 /*
581 * We stop the GC thread if FS is mounted as RO
582 * or if background_gc = off is passed in mount
583 * option. Also sync the filesystem.
584 */
585 if ((*flags & MS_RDONLY) || !test_opt(sbi, BG_GC)) {
586 if (sbi->gc_thread) {
587 stop_gc_thread(sbi);
588 f2fs_sync_fs(sb, 1);
589 }
590 } else if (test_opt(sbi, BG_GC) && !sbi->gc_thread) {
591 err = start_gc_thread(sbi);
592 if (err)
593 goto restore_opts;
594 }
595skip:
596 /* Update the POSIXACL Flag */
597 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
598 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
599 return 0;
600
601restore_opts:
602 sbi->mount_opt = org_mount_opt;
603 sbi->active_logs = active_logs;
604 return err;
605}
606
607static struct super_operations f2fs_sops = {
608 .alloc_inode = f2fs_alloc_inode,
609 .drop_inode = f2fs_drop_inode,
610 .destroy_inode = f2fs_destroy_inode,
611 .write_inode = f2fs_write_inode,
612 .dirty_inode = f2fs_dirty_inode,
613 .show_options = f2fs_show_options,
614 .evict_inode = f2fs_evict_inode,
615 .put_super = f2fs_put_super,
616 .sync_fs = f2fs_sync_fs,
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800617 .statfs = f2fs_statfs,
618 .remount_fs = f2fs_remount,
619};
620
621static struct inode *f2fs_nfs_get_inode(struct super_block *sb,
622 u64 ino, u32 generation)
623{
624 struct f2fs_sb_info *sbi = F2FS_SB(sb);
625 struct inode *inode;
626
Changman Leeb1a94e82013-11-15 10:42:51 +0900627 if (unlikely(ino < F2FS_ROOT_INO(sbi)))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800628 return ERR_PTR(-ESTALE);
629
630 /*
631 * f2fs_iget isn't quite right if the inode is currently unallocated!
632 * However f2fs_iget currently does appropriate checks to handle stale
633 * inodes so everything is OK.
634 */
635 inode = f2fs_iget(sb, ino);
636 if (IS_ERR(inode))
637 return ERR_CAST(inode);
Changman Leeb1a94e82013-11-15 10:42:51 +0900638 if (unlikely(generation && inode->i_generation != generation)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800639 /* we didn't find the right inode.. */
640 iput(inode);
641 return ERR_PTR(-ESTALE);
642 }
643 return inode;
644}
645
646static struct dentry *f2fs_fh_to_dentry(struct super_block *sb, struct fid *fid,
647 int fh_len, int fh_type)
648{
649 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
650 f2fs_nfs_get_inode);
651}
652
653static struct dentry *f2fs_fh_to_parent(struct super_block *sb, struct fid *fid,
654 int fh_len, int fh_type)
655{
656 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
657 f2fs_nfs_get_inode);
658}
659
660static const struct export_operations f2fs_export_ops = {
661 .fh_to_dentry = f2fs_fh_to_dentry,
662 .fh_to_parent = f2fs_fh_to_parent,
663 .get_parent = f2fs_get_parent,
664};
665
666static loff_t max_file_size(unsigned bits)
667{
668 loff_t result = (DEF_ADDRS_PER_INODE - F2FS_INLINE_XATTR_ADDRS);
669 loff_t leaf_count = ADDRS_PER_BLOCK;
670
671 /* two direct node blocks */
672 result += (leaf_count * 2);
673
674 /* two indirect node blocks */
675 leaf_count *= NIDS_PER_BLOCK;
676 result += (leaf_count * 2);
677
678 /* one double indirect node block */
679 leaf_count *= NIDS_PER_BLOCK;
680 result += leaf_count;
681
682 result <<= bits;
683 return result;
684}
685
686static int sanity_check_raw_super(struct super_block *sb,
687 struct f2fs_super_block *raw_super)
688{
689 unsigned int blocksize;
690
691 if (F2FS_SUPER_MAGIC != le32_to_cpu(raw_super->magic)) {
692 f2fs_msg(sb, KERN_INFO,
693 "Magic Mismatch, valid(0x%x) - read(0x%x)",
694 F2FS_SUPER_MAGIC, le32_to_cpu(raw_super->magic));
695 return 1;
696 }
697
698 /* Currently, support only 4KB page cache size */
699 if (F2FS_BLKSIZE != PAGE_CACHE_SIZE) {
700 f2fs_msg(sb, KERN_INFO,
701 "Invalid page_cache_size (%lu), supports only 4KB\n",
702 PAGE_CACHE_SIZE);
703 return 1;
704 }
705
706 /* Currently, support only 4KB block size */
707 blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
708 if (blocksize != F2FS_BLKSIZE) {
709 f2fs_msg(sb, KERN_INFO,
710 "Invalid blocksize (%u), supports only 4KB\n",
711 blocksize);
712 return 1;
713 }
714
715 if (le32_to_cpu(raw_super->log_sectorsize) !=
716 F2FS_LOG_SECTOR_SIZE) {
717 f2fs_msg(sb, KERN_INFO, "Invalid log sectorsize");
718 return 1;
719 }
720 if (le32_to_cpu(raw_super->log_sectors_per_block) !=
721 F2FS_LOG_SECTORS_PER_BLOCK) {
722 f2fs_msg(sb, KERN_INFO, "Invalid log sectors per block");
723 return 1;
724 }
725 return 0;
726}
727
728static int sanity_check_ckpt(struct f2fs_sb_info *sbi)
729{
730 unsigned int total, fsmeta;
731 struct f2fs_super_block *raw_super = F2FS_RAW_SUPER(sbi);
732 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
733
734 total = le32_to_cpu(raw_super->segment_count);
735 fsmeta = le32_to_cpu(raw_super->segment_count_ckpt);
736 fsmeta += le32_to_cpu(raw_super->segment_count_sit);
737 fsmeta += le32_to_cpu(raw_super->segment_count_nat);
738 fsmeta += le32_to_cpu(ckpt->rsvd_segment_count);
739 fsmeta += le32_to_cpu(raw_super->segment_count_ssa);
740
Changman Leeb1a94e82013-11-15 10:42:51 +0900741 if (unlikely(fsmeta >= total))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800742 return 1;
743
Changman Leeb1a94e82013-11-15 10:42:51 +0900744 if (unlikely(is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800745 f2fs_msg(sbi->sb, KERN_ERR, "A bug case: need to run fsck");
746 return 1;
747 }
748 return 0;
749}
750
751static void init_sb_info(struct f2fs_sb_info *sbi)
752{
753 struct f2fs_super_block *raw_super = sbi->raw_super;
754 int i;
755
756 sbi->log_sectors_per_block =
757 le32_to_cpu(raw_super->log_sectors_per_block);
758 sbi->log_blocksize = le32_to_cpu(raw_super->log_blocksize);
759 sbi->blocksize = 1 << sbi->log_blocksize;
760 sbi->log_blocks_per_seg = le32_to_cpu(raw_super->log_blocks_per_seg);
761 sbi->blocks_per_seg = 1 << sbi->log_blocks_per_seg;
762 sbi->segs_per_sec = le32_to_cpu(raw_super->segs_per_sec);
763 sbi->secs_per_zone = le32_to_cpu(raw_super->secs_per_zone);
764 sbi->total_sections = le32_to_cpu(raw_super->section_count);
765 sbi->total_node_count =
766 (le32_to_cpu(raw_super->segment_count_nat) / 2)
767 * sbi->blocks_per_seg * NAT_ENTRY_PER_BLOCK;
768 sbi->root_ino_num = le32_to_cpu(raw_super->root_ino);
769 sbi->node_ino_num = le32_to_cpu(raw_super->node_ino);
770 sbi->meta_ino_num = le32_to_cpu(raw_super->meta_ino);
771 sbi->cur_victim_sec = NULL_SECNO;
Changman Leeb1a94e82013-11-15 10:42:51 +0900772 sbi->max_victim_search = DEF_MAX_VICTIM_SEARCH;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800773
774 for (i = 0; i < NR_COUNT_TYPE; i++)
775 atomic_set(&sbi->nr_pages[i], 0);
Jaegeuk Kima753aba2014-02-27 20:09:05 +0900776
777 sbi->dir_level = DEF_DIR_LEVEL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800778}
779
780/*
781 * Read f2fs raw super block.
782 * Because we have two copies of super block, so read the first one at first,
783 * if the first one is invalid, move to read the second one.
784 */
785static int read_raw_super_block(struct super_block *sb,
786 struct f2fs_super_block **raw_super,
787 struct buffer_head **raw_super_buf)
788{
789 int block = 0;
790
791retry:
792 *raw_super_buf = sb_bread(sb, block);
793 if (!*raw_super_buf) {
794 f2fs_msg(sb, KERN_ERR, "Unable to read %dth superblock",
795 block + 1);
796 if (block == 0) {
797 block++;
798 goto retry;
799 } else {
800 return -EIO;
801 }
802 }
803
804 *raw_super = (struct f2fs_super_block *)
805 ((char *)(*raw_super_buf)->b_data + F2FS_SUPER_OFFSET);
806
807 /* sanity checking of raw super */
808 if (sanity_check_raw_super(sb, *raw_super)) {
809 brelse(*raw_super_buf);
Changman Leeb1a94e82013-11-15 10:42:51 +0900810 f2fs_msg(sb, KERN_ERR,
811 "Can't find valid F2FS filesystem in %dth superblock",
812 block + 1);
813 if (block == 0) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800814 block++;
815 goto retry;
816 } else {
817 return -EINVAL;
818 }
819 }
820
821 return 0;
822}
823
824static int f2fs_fill_super(struct super_block *sb, void *data, int silent)
825{
826 struct f2fs_sb_info *sbi;
827 struct f2fs_super_block *raw_super;
828 struct buffer_head *raw_super_buf;
829 struct inode *root;
830 long err = -EINVAL;
Changman Leeb1a94e82013-11-15 10:42:51 +0900831 int i;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800832
833 /* allocate memory for f2fs-specific super block info */
834 sbi = kzalloc(sizeof(struct f2fs_sb_info), GFP_KERNEL);
835 if (!sbi)
836 return -ENOMEM;
837
838 /* set a block size */
Changman Leeb1a94e82013-11-15 10:42:51 +0900839 if (unlikely(!sb_set_blocksize(sb, F2FS_BLKSIZE))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800840 f2fs_msg(sb, KERN_ERR, "unable to set blocksize");
841 goto free_sbi;
842 }
843
844 err = read_raw_super_block(sb, &raw_super, &raw_super_buf);
845 if (err)
846 goto free_sbi;
847
848 sb->s_fs_info = sbi;
849 /* init some FS parameters */
850 sbi->active_logs = NR_CURSEG_TYPE;
851
852 set_opt(sbi, BG_GC);
853
854#ifdef CONFIG_F2FS_FS_XATTR
855 set_opt(sbi, XATTR_USER);
856#endif
857#ifdef CONFIG_F2FS_FS_POSIX_ACL
858 set_opt(sbi, POSIX_ACL);
859#endif
860 /* parse mount options */
861 err = parse_options(sb, (char *)data);
862 if (err)
863 goto free_sb_buf;
864
865 sb->s_maxbytes = max_file_size(le32_to_cpu(raw_super->log_blocksize));
866 sb->s_max_links = F2FS_LINK_MAX;
867 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
868
869 sb->s_op = &f2fs_sops;
870 sb->s_xattr = f2fs_xattr_handlers;
871 sb->s_export_op = &f2fs_export_ops;
872 sb->s_magic = F2FS_SUPER_MAGIC;
873 sb->s_time_gran = 1;
874 sb->s_flags = (sb->s_flags & ~MS_POSIXACL) |
875 (test_opt(sbi, POSIX_ACL) ? MS_POSIXACL : 0);
876 memcpy(sb->s_uuid, raw_super->uuid, sizeof(raw_super->uuid));
877
878 /* init f2fs-specific super block info */
879 sbi->sb = sb;
880 sbi->raw_super = raw_super;
881 sbi->raw_super_buf = raw_super_buf;
882 mutex_init(&sbi->gc_mutex);
883 mutex_init(&sbi->writepages);
884 mutex_init(&sbi->cp_mutex);
885 mutex_init(&sbi->node_write);
886 sbi->por_doing = false;
887 spin_lock_init(&sbi->stat_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900888
889 mutex_init(&sbi->read_io.io_mutex);
890 sbi->read_io.sbi = sbi;
891 sbi->read_io.bio = NULL;
892 for (i = 0; i < NR_PAGE_TYPE; i++) {
893 mutex_init(&sbi->write_io[i].io_mutex);
894 sbi->write_io[i].sbi = sbi;
895 sbi->write_io[i].bio = NULL;
896 }
897
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800898 init_rwsem(&sbi->cp_rwsem);
899 init_waitqueue_head(&sbi->cp_wait);
900 init_sb_info(sbi);
901
902 /* get an inode for meta space */
903 sbi->meta_inode = f2fs_iget(sb, F2FS_META_INO(sbi));
904 if (IS_ERR(sbi->meta_inode)) {
905 f2fs_msg(sb, KERN_ERR, "Failed to read F2FS meta data inode");
906 err = PTR_ERR(sbi->meta_inode);
907 goto free_sb_buf;
908 }
909
910 err = get_valid_checkpoint(sbi);
911 if (err) {
912 f2fs_msg(sb, KERN_ERR, "Failed to get valid F2FS checkpoint");
913 goto free_meta_inode;
914 }
915
916 /* sanity checking of checkpoint */
917 err = -EINVAL;
918 if (sanity_check_ckpt(sbi)) {
919 f2fs_msg(sb, KERN_ERR, "Invalid F2FS checkpoint");
920 goto free_cp;
921 }
922
923 sbi->total_valid_node_count =
924 le32_to_cpu(sbi->ckpt->valid_node_count);
925 sbi->total_valid_inode_count =
926 le32_to_cpu(sbi->ckpt->valid_inode_count);
927 sbi->user_block_count = le64_to_cpu(sbi->ckpt->user_block_count);
928 sbi->total_valid_block_count =
929 le64_to_cpu(sbi->ckpt->valid_block_count);
930 sbi->last_valid_block_count = sbi->total_valid_block_count;
931 sbi->alloc_valid_block_count = 0;
932 INIT_LIST_HEAD(&sbi->dir_inode_list);
933 spin_lock_init(&sbi->dir_inode_lock);
934
935 init_orphan_info(sbi);
936
937 /* setup f2fs internal modules */
938 err = build_segment_manager(sbi);
939 if (err) {
940 f2fs_msg(sb, KERN_ERR,
941 "Failed to initialize F2FS segment manager");
942 goto free_sm;
943 }
944 err = build_node_manager(sbi);
945 if (err) {
946 f2fs_msg(sb, KERN_ERR,
947 "Failed to initialize F2FS node manager");
948 goto free_nm;
949 }
950
951 build_gc_manager(sbi);
952
953 /* get an inode for node space */
954 sbi->node_inode = f2fs_iget(sb, F2FS_NODE_INO(sbi));
955 if (IS_ERR(sbi->node_inode)) {
956 f2fs_msg(sb, KERN_ERR, "Failed to read node inode");
957 err = PTR_ERR(sbi->node_inode);
958 goto free_nm;
959 }
960
961 /* if there are nt orphan nodes free them */
Changman Leeb1a94e82013-11-15 10:42:51 +0900962 recover_orphan_inodes(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800963
964 /* read root inode and dentry */
965 root = f2fs_iget(sb, F2FS_ROOT_INO(sbi));
966 if (IS_ERR(root)) {
967 f2fs_msg(sb, KERN_ERR, "Failed to read root inode");
968 err = PTR_ERR(root);
969 goto free_node_inode;
970 }
Changman Leeb1a94e82013-11-15 10:42:51 +0900971 if (!S_ISDIR(root->i_mode) || !root->i_blocks || !root->i_size) {
972 err = -EINVAL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800973 goto free_root_inode;
Changman Leeb1a94e82013-11-15 10:42:51 +0900974 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800975
976 sb->s_root = d_make_root(root); /* allocate root dentry */
977 if (!sb->s_root) {
978 err = -ENOMEM;
979 goto free_root_inode;
980 }
981
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800982 err = f2fs_build_stats(sbi);
983 if (err)
Jaegeuk Kim07264102014-02-19 18:23:32 +0900984 goto free_root_inode;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800985
986 if (f2fs_proc_root)
987 sbi->s_proc = proc_mkdir(sb->s_id, f2fs_proc_root);
988
989 if (sbi->s_proc)
990 proc_create_data("segment_info", S_IRUGO, sbi->s_proc,
991 &f2fs_seq_segment_info_fops, sb);
992
993 if (test_opt(sbi, DISCARD)) {
994 struct request_queue *q = bdev_get_queue(sb->s_bdev);
995 if (!blk_queue_discard(q))
996 f2fs_msg(sb, KERN_WARNING,
997 "mounting with \"discard\" option, but "
998 "the device does not support discard");
999 }
1000
1001 sbi->s_kobj.kset = f2fs_kset;
1002 init_completion(&sbi->s_kobj_unregister);
1003 err = kobject_init_and_add(&sbi->s_kobj, &f2fs_ktype, NULL,
1004 "%s", sb->s_id);
1005 if (err)
Jaegeuk Kim07264102014-02-19 18:23:32 +09001006 goto free_proc;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001007
Jaegeuk Kim07264102014-02-19 18:23:32 +09001008 /* recover fsynced data */
1009 if (!test_opt(sbi, DISABLE_ROLL_FORWARD)) {
1010 err = recover_fsync_data(sbi);
1011 if (err)
1012 f2fs_msg(sb, KERN_ERR,
1013 "Cannot recover all fsync data errno=%ld", err);
1014 }
1015
1016 /*
1017 * If filesystem is not mounted as read-only then
1018 * do start the gc_thread.
1019 */
1020 if (!(sb->s_flags & MS_RDONLY)) {
1021 /* After POR, we can run background GC thread.*/
1022 err = start_gc_thread(sbi);
1023 if (err)
1024 goto free_kobj;
1025 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001026 return 0;
Jaegeuk Kim07264102014-02-19 18:23:32 +09001027
1028free_kobj:
1029 kobject_del(&sbi->s_kobj);
1030free_proc:
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001031 if (sbi->s_proc) {
1032 remove_proc_entry("segment_info", sbi->s_proc);
1033 remove_proc_entry(sb->s_id, f2fs_proc_root);
1034 }
1035 f2fs_destroy_stats(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001036free_root_inode:
1037 dput(sb->s_root);
1038 sb->s_root = NULL;
1039free_node_inode:
1040 iput(sbi->node_inode);
1041free_nm:
1042 destroy_node_manager(sbi);
1043free_sm:
1044 destroy_segment_manager(sbi);
1045free_cp:
1046 kfree(sbi->ckpt);
1047free_meta_inode:
1048 make_bad_inode(sbi->meta_inode);
1049 iput(sbi->meta_inode);
1050free_sb_buf:
1051 brelse(raw_super_buf);
1052free_sbi:
1053 kfree(sbi);
1054 return err;
1055}
1056
1057static struct dentry *f2fs_mount(struct file_system_type *fs_type, int flags,
1058 const char *dev_name, void *data)
1059{
1060 return mount_bdev(fs_type, flags, dev_name, data, f2fs_fill_super);
1061}
1062
1063static struct file_system_type f2fs_fs_type = {
1064 .owner = THIS_MODULE,
1065 .name = "f2fs",
1066 .mount = f2fs_mount,
1067 .kill_sb = kill_block_super,
1068 .fs_flags = FS_REQUIRES_DEV,
1069};
1070
1071static int __init init_inodecache(void)
1072{
1073 f2fs_inode_cachep = f2fs_kmem_cache_create("f2fs_inode_cache",
Gu Zhenge33dcea2014-03-07 18:43:28 +08001074 sizeof(struct f2fs_inode_info));
Changman Leeb1a94e82013-11-15 10:42:51 +09001075 if (!f2fs_inode_cachep)
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001076 return -ENOMEM;
1077 return 0;
1078}
1079
1080static void destroy_inodecache(void)
1081{
1082 /*
1083 * Make sure all delayed rcu free inodes are flushed before we
1084 * destroy cache.
1085 */
1086 rcu_barrier();
1087 kmem_cache_destroy(f2fs_inode_cachep);
1088}
1089
1090static int __init init_f2fs_fs(void)
1091{
1092 int err;
1093
1094 err = init_inodecache();
1095 if (err)
1096 goto fail;
1097 err = create_node_manager_caches();
1098 if (err)
1099 goto free_inodecache;
Changman Leeb1a94e82013-11-15 10:42:51 +09001100 err = create_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001101 if (err)
1102 goto free_node_manager_caches;
Changman Leeb1a94e82013-11-15 10:42:51 +09001103 err = create_gc_caches();
1104 if (err)
1105 goto free_segment_manager_caches;
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001106 err = create_checkpoint_caches();
1107 if (err)
1108 goto free_gc_caches;
1109 f2fs_kset = kset_create_and_add("f2fs", NULL, fs_kobj);
1110 if (!f2fs_kset) {
1111 err = -ENOMEM;
1112 goto free_checkpoint_caches;
1113 }
1114 err = register_filesystem(&f2fs_fs_type);
1115 if (err)
1116 goto free_kset;
1117 f2fs_create_root_stats();
1118 f2fs_proc_root = proc_mkdir("fs/f2fs", NULL);
1119 return 0;
1120
1121free_kset:
1122 kset_unregister(f2fs_kset);
1123free_checkpoint_caches:
1124 destroy_checkpoint_caches();
1125free_gc_caches:
1126 destroy_gc_caches();
Changman Leeb1a94e82013-11-15 10:42:51 +09001127free_segment_manager_caches:
1128 destroy_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001129free_node_manager_caches:
1130 destroy_node_manager_caches();
1131free_inodecache:
1132 destroy_inodecache();
1133fail:
1134 return err;
1135}
1136
1137static void __exit exit_f2fs_fs(void)
1138{
1139 remove_proc_entry("fs/f2fs", NULL);
1140 f2fs_destroy_root_stats();
1141 unregister_filesystem(&f2fs_fs_type);
1142 destroy_checkpoint_caches();
1143 destroy_gc_caches();
Changman Leeb1a94e82013-11-15 10:42:51 +09001144 destroy_segment_manager_caches();
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001145 destroy_node_manager_caches();
1146 destroy_inodecache();
1147 kset_unregister(f2fs_kset);
1148}
1149
1150module_init(init_f2fs_fs)
1151module_exit(exit_f2fs_fs)
1152
1153MODULE_AUTHOR("Samsung Electronics's Praesto Team");
1154MODULE_DESCRIPTION("Flash Friendly File System");
1155MODULE_LICENSE("GPL");