5eb0851e548105955a3c81404b5cc94702a09775
[firefly-linux-kernel-4.4.55.git] / fs / exofs / super.c
1 /*
2  * Copyright (C) 2005, 2006
3  * Avishay Traeger (avishay@gmail.com)
4  * Copyright (C) 2008, 2009
5  * Boaz Harrosh <bharrosh@panasas.com>
6  *
7  * Copyrights for code taken from ext2:
8  *     Copyright (C) 1992, 1993, 1994, 1995
9  *     Remy Card (card@masi.ibp.fr)
10  *     Laboratoire MASI - Institut Blaise Pascal
11  *     Universite Pierre et Marie Curie (Paris VI)
12  *     from
13  *     linux/fs/minix/inode.c
14  *     Copyright (C) 1991, 1992  Linus Torvalds
15  *
16  * This file is part of exofs.
17  *
18  * exofs is free software; you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation.  Since it is based on ext2, and the only
21  * valid version of GPL for the Linux kernel is version 2, the only valid
22  * version of GPL for exofs is version 2.
23  *
24  * exofs is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with exofs; if not, write to the Free Software
31  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
32  */
33
34 #include <linux/string.h>
35 #include <linux/parser.h>
36 #include <linux/vfs.h>
37 #include <linux/random.h>
38 #include <linux/exportfs.h>
39 #include <linux/slab.h>
40
41 #include "exofs.h"
42
43 /******************************************************************************
44  * MOUNT OPTIONS
45  *****************************************************************************/
46
47 /*
48  * struct to hold what we get from mount options
49  */
50 struct exofs_mountopt {
51         bool is_osdname;
52         const char *dev_name;
53         uint64_t pid;
54         int timeout;
55 };
56
57 /*
58  * exofs-specific mount-time options.
59  */
60 enum { Opt_name, Opt_pid, Opt_to, Opt_err };
61
62 /*
63  * Our mount-time options.  These should ideally be 64-bit unsigned, but the
64  * kernel's parsing functions do not currently support that.  32-bit should be
65  * sufficient for most applications now.
66  */
67 static match_table_t tokens = {
68         {Opt_name, "osdname=%s"},
69         {Opt_pid, "pid=%u"},
70         {Opt_to, "to=%u"},
71         {Opt_err, NULL}
72 };
73
74 /*
75  * The main option parsing method.  Also makes sure that all of the mandatory
76  * mount options were set.
77  */
78 static int parse_options(char *options, struct exofs_mountopt *opts)
79 {
80         char *p;
81         substring_t args[MAX_OPT_ARGS];
82         int option;
83         bool s_pid = false;
84
85         EXOFS_DBGMSG("parse_options %s\n", options);
86         /* defaults */
87         memset(opts, 0, sizeof(*opts));
88         opts->timeout = BLK_DEFAULT_SG_TIMEOUT;
89
90         while ((p = strsep(&options, ",")) != NULL) {
91                 int token;
92                 char str[32];
93
94                 if (!*p)
95                         continue;
96
97                 token = match_token(p, tokens, args);
98                 switch (token) {
99                 case Opt_name:
100                         opts->dev_name = match_strdup(&args[0]);
101                         if (unlikely(!opts->dev_name)) {
102                                 EXOFS_ERR("Error allocating dev_name");
103                                 return -ENOMEM;
104                         }
105                         opts->is_osdname = true;
106                         break;
107                 case Opt_pid:
108                         if (0 == match_strlcpy(str, &args[0], sizeof(str)))
109                                 return -EINVAL;
110                         opts->pid = simple_strtoull(str, NULL, 0);
111                         if (opts->pid < EXOFS_MIN_PID) {
112                                 EXOFS_ERR("Partition ID must be >= %u",
113                                           EXOFS_MIN_PID);
114                                 return -EINVAL;
115                         }
116                         s_pid = 1;
117                         break;
118                 case Opt_to:
119                         if (match_int(&args[0], &option))
120                                 return -EINVAL;
121                         if (option <= 0) {
122                                 EXOFS_ERR("Timout must be > 0");
123                                 return -EINVAL;
124                         }
125                         opts->timeout = option * HZ;
126                         break;
127                 }
128         }
129
130         if (!s_pid) {
131                 EXOFS_ERR("Need to specify the following options:\n");
132                 EXOFS_ERR("    -o pid=pid_no_to_use\n");
133                 return -EINVAL;
134         }
135
136         return 0;
137 }
138
139 /******************************************************************************
140  * INODE CACHE
141  *****************************************************************************/
142
143 /*
144  * Our inode cache.  Isn't it pretty?
145  */
146 static struct kmem_cache *exofs_inode_cachep;
147
148 /*
149  * Allocate an inode in the cache
150  */
151 static struct inode *exofs_alloc_inode(struct super_block *sb)
152 {
153         struct exofs_i_info *oi;
154
155         oi = kmem_cache_alloc(exofs_inode_cachep, GFP_KERNEL);
156         if (!oi)
157                 return NULL;
158
159         oi->vfs_inode.i_version = 1;
160         return &oi->vfs_inode;
161 }
162
163 static void exofs_i_callback(struct rcu_head *head)
164 {
165         struct inode *inode = container_of(head, struct inode, i_rcu);
166         INIT_LIST_HEAD(&inode->i_dentry);
167         kmem_cache_free(exofs_inode_cachep, exofs_i(inode));
168 }
169
170 /*
171  * Remove an inode from the cache
172  */
173 static void exofs_destroy_inode(struct inode *inode)
174 {
175         call_rcu(&inode->i_rcu, exofs_i_callback);
176 }
177
178 /*
179  * Initialize the inode
180  */
181 static void exofs_init_once(void *foo)
182 {
183         struct exofs_i_info *oi = foo;
184
185         inode_init_once(&oi->vfs_inode);
186 }
187
188 /*
189  * Create and initialize the inode cache
190  */
191 static int init_inodecache(void)
192 {
193         exofs_inode_cachep = kmem_cache_create("exofs_inode_cache",
194                                 sizeof(struct exofs_i_info), 0,
195                                 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
196                                 exofs_init_once);
197         if (exofs_inode_cachep == NULL)
198                 return -ENOMEM;
199         return 0;
200 }
201
202 /*
203  * Destroy the inode cache
204  */
205 static void destroy_inodecache(void)
206 {
207         kmem_cache_destroy(exofs_inode_cachep);
208 }
209
210 /******************************************************************************
211  * SUPERBLOCK FUNCTIONS
212  *****************************************************************************/
213 static const struct super_operations exofs_sops;
214 static const struct export_operations exofs_export_ops;
215
216 static const struct osd_attr g_attr_sb_stats = ATTR_DEF(
217         EXOFS_APAGE_SB_DATA,
218         EXOFS_ATTR_SB_STATS,
219         sizeof(struct exofs_sb_stats));
220
221 static int __sbi_read_stats(struct exofs_sb_info *sbi)
222 {
223         struct osd_attr attrs[] = {
224                 [0] = g_attr_sb_stats,
225         };
226         struct exofs_io_state *ios;
227         int ret;
228
229         ret = exofs_get_io_state(&sbi->layout, &ios);
230         if (unlikely(ret)) {
231                 EXOFS_ERR("%s: exofs_get_io_state failed.\n", __func__);
232                 return ret;
233         }
234
235         ios->cred = sbi->s_cred;
236
237         ios->in_attr = attrs;
238         ios->in_attr_len = ARRAY_SIZE(attrs);
239
240         ret = exofs_sbi_read(ios);
241         if (unlikely(ret)) {
242                 EXOFS_ERR("Error reading super_block stats => %d\n", ret);
243                 goto out;
244         }
245
246         ret = extract_attr_from_ios(ios, &attrs[0]);
247         if (ret) {
248                 EXOFS_ERR("%s: extract_attr of sb_stats failed\n", __func__);
249                 goto out;
250         }
251         if (attrs[0].len) {
252                 struct exofs_sb_stats *ess;
253
254                 if (unlikely(attrs[0].len != sizeof(*ess))) {
255                         EXOFS_ERR("%s: Wrong version of exofs_sb_stats "
256                                   "size(%d) != expected(%zd)\n",
257                                   __func__, attrs[0].len, sizeof(*ess));
258                         goto out;
259                 }
260
261                 ess = attrs[0].val_ptr;
262                 sbi->s_nextid = le64_to_cpu(ess->s_nextid);
263                 sbi->s_numfiles = le32_to_cpu(ess->s_numfiles);
264         }
265
266 out:
267         exofs_put_io_state(ios);
268         return ret;
269 }
270
271 static void stats_done(struct exofs_io_state *ios, void *p)
272 {
273         exofs_put_io_state(ios);
274         /* Good thanks nothing to do anymore */
275 }
276
277 /* Asynchronously write the stats attribute */
278 int exofs_sbi_write_stats(struct exofs_sb_info *sbi)
279 {
280         struct osd_attr attrs[] = {
281                 [0] = g_attr_sb_stats,
282         };
283         struct exofs_io_state *ios;
284         int ret;
285
286         ret = exofs_get_io_state(&sbi->layout, &ios);
287         if (unlikely(ret)) {
288                 EXOFS_ERR("%s: exofs_get_io_state failed.\n", __func__);
289                 return ret;
290         }
291
292         sbi->s_ess.s_nextid   = cpu_to_le64(sbi->s_nextid);
293         sbi->s_ess.s_numfiles = cpu_to_le64(sbi->s_numfiles);
294         attrs[0].val_ptr = &sbi->s_ess;
295
296         ios->cred = sbi->s_cred;
297         ios->done = stats_done;
298         ios->private = sbi;
299         ios->out_attr = attrs;
300         ios->out_attr_len = ARRAY_SIZE(attrs);
301
302         ret = exofs_sbi_write(ios);
303         if (unlikely(ret)) {
304                 EXOFS_ERR("%s: exofs_sbi_write failed.\n", __func__);
305                 exofs_put_io_state(ios);
306         }
307
308         return ret;
309 }
310
311 /*
312  * Write the superblock to the OSD
313  */
314 int exofs_sync_fs(struct super_block *sb, int wait)
315 {
316         struct exofs_sb_info *sbi;
317         struct exofs_fscb *fscb;
318         struct exofs_io_state *ios;
319         int ret = -ENOMEM;
320
321         fscb = kmalloc(sizeof(*fscb), GFP_KERNEL);
322         if (unlikely(!fscb))
323                 return -ENOMEM;
324
325         sbi = sb->s_fs_info;
326
327         /* NOTE: We no longer dirty the super_block anywhere in exofs. The
328          * reason we write the fscb here on unmount is so we can stay backwards
329          * compatible with fscb->s_version == 1. (What we are not compatible
330          * with is if a new version FS crashed and then we try to mount an old
331          * version). Otherwise the exofs_fscb is read-only from mkfs time. All
332          * the writeable info is set in exofs_sbi_write_stats() above.
333          */
334         ret = exofs_get_io_state(&sbi->layout, &ios);
335         if (unlikely(ret))
336                 goto out;
337
338         lock_super(sb);
339
340         ios->length = offsetof(struct exofs_fscb, s_dev_table_oid);
341         memset(fscb, 0, ios->length);
342         fscb->s_nextid = cpu_to_le64(sbi->s_nextid);
343         fscb->s_numfiles = cpu_to_le32(sbi->s_numfiles);
344         fscb->s_magic = cpu_to_le16(sb->s_magic);
345         fscb->s_newfs = 0;
346         fscb->s_version = EXOFS_FSCB_VER;
347
348         ios->obj.id = EXOFS_SUPER_ID;
349         ios->offset = 0;
350         ios->kern_buff = fscb;
351         ios->cred = sbi->s_cred;
352
353         ret = exofs_sbi_write(ios);
354         if (unlikely(ret))
355                 EXOFS_ERR("%s: exofs_sbi_write failed.\n", __func__);
356         else
357                 sb->s_dirt = 0;
358
359
360         unlock_super(sb);
361 out:
362         EXOFS_DBGMSG("s_nextid=0x%llx ret=%d\n", _LLU(sbi->s_nextid), ret);
363         exofs_put_io_state(ios);
364         kfree(fscb);
365         return ret;
366 }
367
368 static void exofs_write_super(struct super_block *sb)
369 {
370         if (!(sb->s_flags & MS_RDONLY))
371                 exofs_sync_fs(sb, 1);
372         else
373                 sb->s_dirt = 0;
374 }
375
376 static void _exofs_print_device(const char *msg, const char *dev_path,
377                                 struct osd_dev *od, u64 pid)
378 {
379         const struct osd_dev_info *odi = osduld_device_info(od);
380
381         printk(KERN_NOTICE "exofs: %s %s osd_name-%s pid-0x%llx\n",
382                 msg, dev_path ?: "", odi->osdname, _LLU(pid));
383 }
384
385 void exofs_free_sbi(struct exofs_sb_info *sbi)
386 {
387         while (sbi->layout.s_numdevs) {
388                 int i = --sbi->layout.s_numdevs;
389                 struct osd_dev *od = sbi->layout.s_ods[i];
390
391                 if (od) {
392                         sbi->layout.s_ods[i] = NULL;
393                         osduld_put_device(od);
394                 }
395         }
396         kfree(sbi);
397 }
398
399 /*
400  * This function is called when the vfs is freeing the superblock.  We just
401  * need to free our own part.
402  */
403 static void exofs_put_super(struct super_block *sb)
404 {
405         int num_pend;
406         struct exofs_sb_info *sbi = sb->s_fs_info;
407
408         /* make sure there are no pending commands */
409         for (num_pend = atomic_read(&sbi->s_curr_pending); num_pend > 0;
410              num_pend = atomic_read(&sbi->s_curr_pending)) {
411                 wait_queue_head_t wq;
412                 init_waitqueue_head(&wq);
413                 wait_event_timeout(wq,
414                                   (atomic_read(&sbi->s_curr_pending) == 0),
415                                   msecs_to_jiffies(100));
416         }
417
418         _exofs_print_device("Unmounting", NULL, sbi->layout.s_ods[0],
419                             sbi->layout.s_pid);
420
421         bdi_destroy(&sbi->bdi);
422         exofs_free_sbi(sbi);
423         sb->s_fs_info = NULL;
424 }
425
426 static int _read_and_match_data_map(struct exofs_sb_info *sbi, unsigned numdevs,
427                                     struct exofs_device_table *dt)
428 {
429         u64 stripe_length;
430
431         sbi->data_map.odm_num_comps   =
432                                 le32_to_cpu(dt->dt_data_map.cb_num_comps);
433         sbi->data_map.odm_stripe_unit =
434                                 le64_to_cpu(dt->dt_data_map.cb_stripe_unit);
435         sbi->data_map.odm_group_width =
436                                 le32_to_cpu(dt->dt_data_map.cb_group_width);
437         sbi->data_map.odm_group_depth =
438                                 le32_to_cpu(dt->dt_data_map.cb_group_depth);
439         sbi->data_map.odm_mirror_cnt  =
440                                 le32_to_cpu(dt->dt_data_map.cb_mirror_cnt);
441         sbi->data_map.odm_raid_algorithm  =
442                                 le32_to_cpu(dt->dt_data_map.cb_raid_algorithm);
443
444 /* FIXME: Only raid0 for now. if not so, do not mount */
445         if (sbi->data_map.odm_num_comps != numdevs) {
446                 EXOFS_ERR("odm_num_comps(%u) != numdevs(%u)\n",
447                           sbi->data_map.odm_num_comps, numdevs);
448                 return -EINVAL;
449         }
450         if (sbi->data_map.odm_raid_algorithm != PNFS_OSD_RAID_0) {
451                 EXOFS_ERR("Only RAID_0 for now\n");
452                 return -EINVAL;
453         }
454         if (0 != (numdevs % (sbi->data_map.odm_mirror_cnt + 1))) {
455                 EXOFS_ERR("Data Map wrong, numdevs=%d mirrors=%d\n",
456                           numdevs, sbi->data_map.odm_mirror_cnt);
457                 return -EINVAL;
458         }
459
460         if (0 != (sbi->data_map.odm_stripe_unit & ~PAGE_MASK)) {
461                 EXOFS_ERR("Stripe Unit(0x%llx)"
462                           " must be Multples of PAGE_SIZE(0x%lx)\n",
463                           _LLU(sbi->data_map.odm_stripe_unit), PAGE_SIZE);
464                 return -EINVAL;
465         }
466
467         sbi->layout.stripe_unit = sbi->data_map.odm_stripe_unit;
468         sbi->layout.mirrors_p1 = sbi->data_map.odm_mirror_cnt + 1;
469
470         if (sbi->data_map.odm_group_width) {
471                 sbi->layout.group_width = sbi->data_map.odm_group_width;
472                 sbi->layout.group_depth = sbi->data_map.odm_group_depth;
473                 if (!sbi->layout.group_depth) {
474                         EXOFS_ERR("group_depth == 0 && group_width != 0\n");
475                         return -EINVAL;
476                 }
477                 sbi->layout.group_count = sbi->data_map.odm_num_comps /
478                                                 sbi->layout.mirrors_p1 /
479                                                 sbi->data_map.odm_group_width;
480         } else {
481                 if (sbi->data_map.odm_group_depth) {
482                         printk(KERN_NOTICE "Warning: group_depth ignored "
483                                 "group_width == 0 && group_depth == %d\n",
484                                 sbi->data_map.odm_group_depth);
485                         sbi->data_map.odm_group_depth = 0;
486                 }
487                 sbi->layout.group_width = sbi->data_map.odm_num_comps /
488                                                         sbi->layout.mirrors_p1;
489                 sbi->layout.group_depth = -1;
490                 sbi->layout.group_count = 1;
491         }
492
493         stripe_length = (u64)sbi->layout.group_width * sbi->layout.stripe_unit;
494         if (stripe_length >= (1ULL << 32)) {
495                 EXOFS_ERR("Total Stripe length(0x%llx)"
496                           " >= 32bit is not supported\n", _LLU(stripe_length));
497                 return -EINVAL;
498         }
499
500         return 0;
501 }
502
503 static unsigned __ra_pages(struct exofs_layout *layout)
504 {
505         const unsigned _MIN_RA = 32; /* min 128K read-ahead */
506         unsigned ra_pages = layout->group_width * layout->stripe_unit /
507                                 PAGE_SIZE;
508         unsigned max_io_pages = exofs_max_io_pages(layout, ~0);
509
510         ra_pages *= 2; /* two stripes */
511         if (ra_pages < _MIN_RA)
512                 ra_pages = roundup(_MIN_RA, ra_pages / 2);
513
514         if (ra_pages > max_io_pages)
515                 ra_pages = max_io_pages;
516
517         return ra_pages;
518 }
519
520 /* @odi is valid only as long as @fscb_dev is valid */
521 static int exofs_devs_2_odi(struct exofs_dt_device_info *dt_dev,
522                              struct osd_dev_info *odi)
523 {
524         odi->systemid_len = le32_to_cpu(dt_dev->systemid_len);
525         memcpy(odi->systemid, dt_dev->systemid, odi->systemid_len);
526
527         odi->osdname_len = le32_to_cpu(dt_dev->osdname_len);
528         odi->osdname = dt_dev->osdname;
529
530         /* FIXME support long names. Will need a _put function */
531         if (dt_dev->long_name_offset)
532                 return -EINVAL;
533
534         /* Make sure osdname is printable!
535          * mkexofs should give us space for a null-terminator else the
536          * device-table is invalid.
537          */
538         if (unlikely(odi->osdname_len >= sizeof(dt_dev->osdname)))
539                 odi->osdname_len = sizeof(dt_dev->osdname) - 1;
540         dt_dev->osdname[odi->osdname_len] = 0;
541
542         /* If it's all zeros something is bad we read past end-of-obj */
543         return !(odi->systemid_len || odi->osdname_len);
544 }
545
546 static int exofs_read_lookup_dev_table(struct exofs_sb_info **psbi,
547                                        unsigned table_count)
548 {
549         struct exofs_sb_info *sbi = *psbi;
550         struct osd_dev *fscb_od;
551         struct osd_obj_id obj = {.partition = sbi->layout.s_pid,
552                                  .id = EXOFS_DEVTABLE_ID};
553         struct exofs_device_table *dt;
554         unsigned table_bytes = table_count * sizeof(dt->dt_dev_table[0]) +
555                                              sizeof(*dt);
556         unsigned numdevs, i;
557         int ret;
558
559         dt = kmalloc(table_bytes, GFP_KERNEL);
560         if (unlikely(!dt)) {
561                 EXOFS_ERR("ERROR: allocating %x bytes for device table\n",
562                           table_bytes);
563                 return -ENOMEM;
564         }
565
566         fscb_od = sbi->layout.s_ods[0];
567         sbi->layout.s_ods[0] = NULL;
568         sbi->layout.s_numdevs = 0;
569         ret = exofs_read_kern(fscb_od, sbi->s_cred, &obj, 0, dt, table_bytes);
570         if (unlikely(ret)) {
571                 EXOFS_ERR("ERROR: reading device table\n");
572                 goto out;
573         }
574
575         numdevs = le64_to_cpu(dt->dt_num_devices);
576         if (unlikely(!numdevs)) {
577                 ret = -EINVAL;
578                 goto out;
579         }
580         WARN_ON(table_count != numdevs);
581
582         ret = _read_and_match_data_map(sbi, numdevs, dt);
583         if (unlikely(ret))
584                 goto out;
585
586         if (likely(numdevs > 1)) {
587                 unsigned size = numdevs * sizeof(sbi->layout.s_ods[0]);
588
589                 sbi = krealloc(sbi, sizeof(*sbi) + size, GFP_KERNEL);
590                 if (unlikely(!sbi)) {
591                         ret = -ENOMEM;
592                         goto out;
593                 }
594                 memset(&sbi->layout.s_ods[1], 0,
595                        size - sizeof(sbi->layout.s_ods[0]));
596                 *psbi = sbi;
597         }
598
599         for (i = 0; i < numdevs; i++) {
600                 struct exofs_fscb fscb;
601                 struct osd_dev_info odi;
602                 struct osd_dev *od;
603
604                 if (exofs_devs_2_odi(&dt->dt_dev_table[i], &odi)) {
605                         EXOFS_ERR("ERROR: Read all-zeros device entry\n");
606                         ret = -EINVAL;
607                         goto out;
608                 }
609
610                 printk(KERN_NOTICE "Add device[%d]: osd_name-%s\n",
611                        i, odi.osdname);
612
613                 /* On all devices the device table is identical. The user can
614                  * specify any one of the participating devices on the command
615                  * line. We always keep them in device-table order.
616                  */
617                 if (fscb_od && osduld_device_same(fscb_od, &odi)) {
618                         sbi->layout.s_ods[i] = fscb_od;
619                         ++sbi->layout.s_numdevs;
620                         fscb_od = NULL;
621                         continue;
622                 }
623
624                 od = osduld_info_lookup(&odi);
625                 if (IS_ERR(od)) {
626                         ret = PTR_ERR(od);
627                         EXOFS_ERR("ERROR: device requested is not found "
628                                   "osd_name-%s =>%d\n", odi.osdname, ret);
629                         goto out;
630                 }
631
632                 sbi->layout.s_ods[i] = od;
633                 ++sbi->layout.s_numdevs;
634
635                 /* Read the fscb of the other devices to make sure the FS
636                  * partition is there.
637                  */
638                 ret = exofs_read_kern(od, sbi->s_cred, &obj, 0, &fscb,
639                                       sizeof(fscb));
640                 if (unlikely(ret)) {
641                         EXOFS_ERR("ERROR: Malformed participating device "
642                                   "error reading fscb osd_name-%s\n",
643                                   odi.osdname);
644                         goto out;
645                 }
646
647                 /* TODO: verify other information is correct and FS-uuid
648                  *       matches. Benny what did you say about device table
649                  *       generation and old devices?
650                  */
651         }
652
653 out:
654         kfree(dt);
655         if (unlikely(!ret && fscb_od)) {
656                 EXOFS_ERR(
657                       "ERROR: Bad device-table container device not present\n");
658                 osduld_put_device(fscb_od);
659                 ret = -EINVAL;
660         }
661
662         return ret;
663 }
664
665 /*
666  * Read the superblock from the OSD and fill in the fields
667  */
668 static int exofs_fill_super(struct super_block *sb, void *data, int silent)
669 {
670         struct inode *root;
671         struct exofs_mountopt *opts = data;
672         struct exofs_sb_info *sbi;      /*extended info                  */
673         struct osd_dev *od;             /* Master device                 */
674         struct exofs_fscb fscb;         /*on-disk superblock info        */
675         struct osd_obj_id obj;
676         unsigned table_count;
677         int ret;
678
679         sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
680         if (!sbi)
681                 return -ENOMEM;
682
683         ret = bdi_setup_and_register(&sbi->bdi, "exofs", BDI_CAP_MAP_COPY);
684         if (ret)
685                 goto free_bdi;
686
687         /* use mount options to fill superblock */
688         if (opts->is_osdname) {
689                 struct osd_dev_info odi = {.systemid_len = 0};
690
691                 odi.osdname_len = strlen(opts->dev_name);
692                 odi.osdname = (u8 *)opts->dev_name;
693                 od = osduld_info_lookup(&odi);
694         } else {
695                 od = osduld_path_lookup(opts->dev_name);
696         }
697         if (IS_ERR(od)) {
698                 ret = -EINVAL;
699                 goto free_sbi;
700         }
701
702         /* Default layout in case we do not have a device-table */
703         sbi->layout.stripe_unit = PAGE_SIZE;
704         sbi->layout.mirrors_p1 = 1;
705         sbi->layout.group_width = 1;
706         sbi->layout.group_depth = -1;
707         sbi->layout.group_count = 1;
708         sbi->layout.s_ods[0] = od;
709         sbi->layout.s_numdevs = 1;
710         sbi->layout.s_pid = opts->pid;
711         sbi->s_timeout = opts->timeout;
712
713         /* fill in some other data by hand */
714         memset(sb->s_id, 0, sizeof(sb->s_id));
715         strcpy(sb->s_id, "exofs");
716         sb->s_blocksize = EXOFS_BLKSIZE;
717         sb->s_blocksize_bits = EXOFS_BLKSHIFT;
718         sb->s_maxbytes = MAX_LFS_FILESIZE;
719         atomic_set(&sbi->s_curr_pending, 0);
720         sb->s_bdev = NULL;
721         sb->s_dev = 0;
722
723         obj.partition = sbi->layout.s_pid;
724         obj.id = EXOFS_SUPER_ID;
725         exofs_make_credential(sbi->s_cred, &obj);
726
727         ret = exofs_read_kern(od, sbi->s_cred, &obj, 0, &fscb, sizeof(fscb));
728         if (unlikely(ret))
729                 goto free_sbi;
730
731         sb->s_magic = le16_to_cpu(fscb.s_magic);
732         /* NOTE: we read below to be backward compatible with old versions */
733         sbi->s_nextid = le64_to_cpu(fscb.s_nextid);
734         sbi->s_numfiles = le32_to_cpu(fscb.s_numfiles);
735
736         /* make sure what we read from the object store is correct */
737         if (sb->s_magic != EXOFS_SUPER_MAGIC) {
738                 if (!silent)
739                         EXOFS_ERR("ERROR: Bad magic value\n");
740                 ret = -EINVAL;
741                 goto free_sbi;
742         }
743         if (le32_to_cpu(fscb.s_version) > EXOFS_FSCB_VER) {
744                 EXOFS_ERR("ERROR: Bad FSCB version expected-%d got-%d\n",
745                           EXOFS_FSCB_VER, le32_to_cpu(fscb.s_version));
746                 ret = -EINVAL;
747                 goto free_sbi;
748         }
749
750         /* start generation numbers from a random point */
751         get_random_bytes(&sbi->s_next_generation, sizeof(u32));
752         spin_lock_init(&sbi->s_next_gen_lock);
753
754         table_count = le64_to_cpu(fscb.s_dev_table_count);
755         if (table_count) {
756                 ret = exofs_read_lookup_dev_table(&sbi, table_count);
757                 if (unlikely(ret))
758                         goto free_sbi;
759         }
760
761         __sbi_read_stats(sbi);
762
763         /* set up operation vectors */
764         sbi->bdi.ra_pages = __ra_pages(&sbi->layout);
765         sb->s_bdi = &sbi->bdi;
766         sb->s_fs_info = sbi;
767         sb->s_op = &exofs_sops;
768         sb->s_export_op = &exofs_export_ops;
769         root = exofs_iget(sb, EXOFS_ROOT_ID - EXOFS_OBJ_OFF);
770         if (IS_ERR(root)) {
771                 EXOFS_ERR("ERROR: exofs_iget failed\n");
772                 ret = PTR_ERR(root);
773                 goto free_sbi;
774         }
775         sb->s_root = d_alloc_root(root);
776         if (!sb->s_root) {
777                 iput(root);
778                 EXOFS_ERR("ERROR: get root inode failed\n");
779                 ret = -ENOMEM;
780                 goto free_sbi;
781         }
782
783         if (!S_ISDIR(root->i_mode)) {
784                 dput(sb->s_root);
785                 sb->s_root = NULL;
786                 EXOFS_ERR("ERROR: corrupt root inode (mode = %hd)\n",
787                        root->i_mode);
788                 ret = -EINVAL;
789                 goto free_sbi;
790         }
791
792         _exofs_print_device("Mounting", opts->dev_name, sbi->layout.s_ods[0],
793                             sbi->layout.s_pid);
794         if (opts->is_osdname)
795                 kfree(opts->dev_name);
796         return 0;
797
798 free_sbi:
799         bdi_destroy(&sbi->bdi);
800 free_bdi:
801         EXOFS_ERR("Unable to mount exofs on %s pid=0x%llx err=%d\n",
802                   opts->dev_name, sbi->layout.s_pid, ret);
803         exofs_free_sbi(sbi);
804         if (opts->is_osdname)
805                 kfree(opts->dev_name);
806         return ret;
807 }
808
809 /*
810  * Set up the superblock (calls exofs_fill_super eventually)
811  */
812 static struct dentry *exofs_mount(struct file_system_type *type,
813                           int flags, const char *dev_name,
814                           void *data)
815 {
816         struct exofs_mountopt opts;
817         int ret;
818
819         ret = parse_options(data, &opts);
820         if (ret)
821                 return ERR_PTR(ret);
822
823         if (!opts.dev_name)
824                 opts.dev_name = dev_name;
825         return mount_nodev(type, flags, &opts, exofs_fill_super);
826 }
827
828 /*
829  * Return information about the file system state in the buffer.  This is used
830  * by the 'df' command, for example.
831  */
832 static int exofs_statfs(struct dentry *dentry, struct kstatfs *buf)
833 {
834         struct super_block *sb = dentry->d_sb;
835         struct exofs_sb_info *sbi = sb->s_fs_info;
836         struct exofs_io_state *ios;
837         struct osd_attr attrs[] = {
838                 ATTR_DEF(OSD_APAGE_PARTITION_QUOTAS,
839                         OSD_ATTR_PQ_CAPACITY_QUOTA, sizeof(__be64)),
840                 ATTR_DEF(OSD_APAGE_PARTITION_INFORMATION,
841                         OSD_ATTR_PI_USED_CAPACITY, sizeof(__be64)),
842         };
843         uint64_t capacity = ULLONG_MAX;
844         uint64_t used = ULLONG_MAX;
845         uint8_t cred_a[OSD_CAP_LEN];
846         int ret;
847
848         ret = exofs_get_io_state(&sbi->layout, &ios);
849         if (ret) {
850                 EXOFS_DBGMSG("exofs_get_io_state failed.\n");
851                 return ret;
852         }
853
854         exofs_make_credential(cred_a, &ios->obj);
855         ios->cred = sbi->s_cred;
856         ios->in_attr = attrs;
857         ios->in_attr_len = ARRAY_SIZE(attrs);
858
859         ret = exofs_sbi_read(ios);
860         if (unlikely(ret))
861                 goto out;
862
863         ret = extract_attr_from_ios(ios, &attrs[0]);
864         if (likely(!ret)) {
865                 capacity = get_unaligned_be64(attrs[0].val_ptr);
866                 if (unlikely(!capacity))
867                         capacity = ULLONG_MAX;
868         } else
869                 EXOFS_DBGMSG("exofs_statfs: get capacity failed.\n");
870
871         ret = extract_attr_from_ios(ios, &attrs[1]);
872         if (likely(!ret))
873                 used = get_unaligned_be64(attrs[1].val_ptr);
874         else
875                 EXOFS_DBGMSG("exofs_statfs: get used-space failed.\n");
876
877         /* fill in the stats buffer */
878         buf->f_type = EXOFS_SUPER_MAGIC;
879         buf->f_bsize = EXOFS_BLKSIZE;
880         buf->f_blocks = capacity >> 9;
881         buf->f_bfree = (capacity - used) >> 9;
882         buf->f_bavail = buf->f_bfree;
883         buf->f_files = sbi->s_numfiles;
884         buf->f_ffree = EXOFS_MAX_ID - sbi->s_numfiles;
885         buf->f_namelen = EXOFS_NAME_LEN;
886
887 out:
888         exofs_put_io_state(ios);
889         return ret;
890 }
891
892 static const struct super_operations exofs_sops = {
893         .alloc_inode    = exofs_alloc_inode,
894         .destroy_inode  = exofs_destroy_inode,
895         .write_inode    = exofs_write_inode,
896         .evict_inode    = exofs_evict_inode,
897         .put_super      = exofs_put_super,
898         .write_super    = exofs_write_super,
899         .sync_fs        = exofs_sync_fs,
900         .statfs         = exofs_statfs,
901 };
902
903 /******************************************************************************
904  * EXPORT OPERATIONS
905  *****************************************************************************/
906
907 struct dentry *exofs_get_parent(struct dentry *child)
908 {
909         unsigned long ino = exofs_parent_ino(child);
910
911         if (!ino)
912                 return NULL;
913
914         return d_obtain_alias(exofs_iget(child->d_inode->i_sb, ino));
915 }
916
917 static struct inode *exofs_nfs_get_inode(struct super_block *sb,
918                 u64 ino, u32 generation)
919 {
920         struct inode *inode;
921
922         inode = exofs_iget(sb, ino);
923         if (IS_ERR(inode))
924                 return ERR_CAST(inode);
925         if (generation && inode->i_generation != generation) {
926                 /* we didn't find the right inode.. */
927                 iput(inode);
928                 return ERR_PTR(-ESTALE);
929         }
930         return inode;
931 }
932
933 static struct dentry *exofs_fh_to_dentry(struct super_block *sb,
934                                 struct fid *fid, int fh_len, int fh_type)
935 {
936         return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
937                                     exofs_nfs_get_inode);
938 }
939
940 static struct dentry *exofs_fh_to_parent(struct super_block *sb,
941                                 struct fid *fid, int fh_len, int fh_type)
942 {
943         return generic_fh_to_parent(sb, fid, fh_len, fh_type,
944                                     exofs_nfs_get_inode);
945 }
946
947 static const struct export_operations exofs_export_ops = {
948         .fh_to_dentry = exofs_fh_to_dentry,
949         .fh_to_parent = exofs_fh_to_parent,
950         .get_parent = exofs_get_parent,
951 };
952
953 /******************************************************************************
954  * INSMOD/RMMOD
955  *****************************************************************************/
956
957 /*
958  * struct that describes this file system
959  */
960 static struct file_system_type exofs_type = {
961         .owner          = THIS_MODULE,
962         .name           = "exofs",
963         .mount          = exofs_mount,
964         .kill_sb        = generic_shutdown_super,
965 };
966
967 static int __init init_exofs(void)
968 {
969         int err;
970
971         err = init_inodecache();
972         if (err)
973                 goto out;
974
975         err = register_filesystem(&exofs_type);
976         if (err)
977                 goto out_d;
978
979         return 0;
980 out_d:
981         destroy_inodecache();
982 out:
983         return err;
984 }
985
986 static void __exit exit_exofs(void)
987 {
988         unregister_filesystem(&exofs_type);
989         destroy_inodecache();
990 }
991
992 MODULE_AUTHOR("Avishay Traeger <avishay@gmail.com>");
993 MODULE_DESCRIPTION("exofs");
994 MODULE_LICENSE("GPL");
995
996 module_init(init_exofs)
997 module_exit(exit_exofs)