blob: a747c871d3134e554be967913c2446a325eb900c [file] [log] [blame]
Boaz Harroshba9e5e92008-10-28 16:11:41 +02001/*
2 * Copyright (C) 2005, 2006
Boaz Harrosh27d2e142009-06-14 17:23:09 +03003 * Avishay Traeger (avishay@gmail.com)
Boaz Harroshba9e5e92008-10-28 16:11:41 +02004 * 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>
Boaz Harrosh8cf74b32009-03-22 12:47:26 +020038#include <linux/exportfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090039#include <linux/slab.h>
Boaz Harroshba9e5e92008-10-28 16:11:41 +020040
41#include "exofs.h"
42
43/******************************************************************************
44 * MOUNT OPTIONS
45 *****************************************************************************/
46
47/*
48 * struct to hold what we get from mount options
49 */
50struct exofs_mountopt {
Boaz Harrosh9ed96482011-01-31 14:32:14 +020051 bool is_osdname;
Boaz Harroshba9e5e92008-10-28 16:11:41 +020052 const char *dev_name;
53 uint64_t pid;
54 int timeout;
55};
56
57/*
58 * exofs-specific mount-time options.
59 */
Boaz Harrosh9ed96482011-01-31 14:32:14 +020060enum { Opt_name, Opt_pid, Opt_to, Opt_err };
Boaz Harroshba9e5e92008-10-28 16:11:41 +020061
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 */
67static match_table_t tokens = {
Boaz Harrosh9ed96482011-01-31 14:32:14 +020068 {Opt_name, "osdname=%s"},
Boaz Harroshba9e5e92008-10-28 16:11:41 +020069 {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 */
78static 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) {
Boaz Harrosh9ed96482011-01-31 14:32:14 +020099 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;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200107 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 */
146static struct kmem_cache *exofs_inode_cachep;
147
148/*
149 * Allocate an inode in the cache
150 */
151static 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
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100163static 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
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200170/*
171 * Remove an inode from the cache
172 */
173static void exofs_destroy_inode(struct inode *inode)
174{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100175 call_rcu(&inode->i_rcu, exofs_i_callback);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200176}
177
178/*
179 * Initialize the inode
180 */
181static 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 */
191static 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 */
205static void destroy_inodecache(void)
206{
207 kmem_cache_destroy(exofs_inode_cachep);
208}
209
210/******************************************************************************
211 * SUPERBLOCK FUNCTIONS
212 *****************************************************************************/
213static const struct super_operations exofs_sops;
Boaz Harrosh8cf74b32009-03-22 12:47:26 +0200214static const struct export_operations exofs_export_ops;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200215
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200216static 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
221static 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
266out:
267 exofs_put_io_state(ios);
268 return ret;
269}
270
271static 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 */
278int 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
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200311/*
312 * Write the superblock to the OSD
313 */
Boaz Harroshbaaf94c2009-06-14 16:52:10 +0300314int exofs_sync_fs(struct super_block *sb, int wait)
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200315{
316 struct exofs_sb_info *sbi;
317 struct exofs_fscb *fscb;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200318 struct exofs_io_state *ios;
Christoph Hellwig80e09fb2009-06-08 10:03:58 +0200319 int ret = -ENOMEM;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200320
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200321 fscb = kmalloc(sizeof(*fscb), GFP_KERNEL);
322 if (unlikely(!fscb))
323 return -ENOMEM;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200324
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200325 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 */
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200334 ret = exofs_get_io_state(&sbi->layout, &ios);
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200335 if (unlikely(ret))
Boaz Harrosh06886a52009-11-08 14:54:08 +0200336 goto out;
337
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200338 lock_super(sb);
339
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200340 ios->length = offsetof(struct exofs_fscb, s_dev_table_oid);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200341 memset(fscb, 0, ios->length);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200342 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;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200346 fscb->s_version = EXOFS_FSCB_VER;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200347
Boaz Harrosh06886a52009-11-08 14:54:08 +0200348 ios->obj.id = EXOFS_SUPER_ID;
349 ios->offset = 0;
350 ios->kern_buff = fscb;
351 ios->cred = sbi->s_cred;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200352
Boaz Harrosh06886a52009-11-08 14:54:08 +0200353 ret = exofs_sbi_write(ios);
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200354 if (unlikely(ret))
Boaz Harrosh06886a52009-11-08 14:54:08 +0200355 EXOFS_ERR("%s: exofs_sbi_write failed.\n", __func__);
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200356 else
357 sb->s_dirt = 0;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200358
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200359
360 unlock_super(sb);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200361out:
Boaz Harrosh06886a52009-11-08 14:54:08 +0200362 EXOFS_DBGMSG("s_nextid=0x%llx ret=%d\n", _LLU(sbi->s_nextid), ret);
363 exofs_put_io_state(ios);
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200364 kfree(fscb);
Christoph Hellwig80e09fb2009-06-08 10:03:58 +0200365 return ret;
366}
367
368static 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;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200374}
375
Boaz Harrosh19fe2942009-09-03 20:38:02 +0300376static 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
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200385void exofs_free_sbi(struct exofs_sb_info *sbi)
386{
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200387 while (sbi->layout.s_numdevs) {
388 int i = --sbi->layout.s_numdevs;
389 struct osd_dev *od = sbi->layout.s_ods[i];
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200390
391 if (od) {
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200392 sbi->layout.s_ods[i] = NULL;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200393 osduld_put_device(od);
394 }
395 }
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700396 if (sbi->layout.s_ods != sbi->_min_one_dev)
397 kfree(sbi->layout.s_ods);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200398 kfree(sbi);
399}
400
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200401/*
402 * This function is called when the vfs is freeing the superblock. We just
403 * need to free our own part.
404 */
405static void exofs_put_super(struct super_block *sb)
406{
407 int num_pend;
408 struct exofs_sb_info *sbi = sb->s_fs_info;
409
410 /* make sure there are no pending commands */
411 for (num_pend = atomic_read(&sbi->s_curr_pending); num_pend > 0;
412 num_pend = atomic_read(&sbi->s_curr_pending)) {
413 wait_queue_head_t wq;
Boaz Harrosha49fb4c2011-02-07 18:12:15 +0200414
415 printk(KERN_NOTICE "%s: !!Pending operations in flight. "
416 "This is a BUG. please report to osd-dev@open-osd.org\n",
417 __func__);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200418 init_waitqueue_head(&wq);
419 wait_event_timeout(wq,
420 (atomic_read(&sbi->s_curr_pending) == 0),
421 msecs_to_jiffies(100));
422 }
423
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200424 _exofs_print_device("Unmounting", NULL, sbi->layout.s_ods[0],
425 sbi->layout.s_pid);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200426
Jens Axboeb3d0ab72010-04-22 12:26:04 +0200427 bdi_destroy(&sbi->bdi);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200428 exofs_free_sbi(sbi);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200429 sb->s_fs_info = NULL;
430}
431
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200432static int _read_and_match_data_map(struct exofs_sb_info *sbi, unsigned numdevs,
433 struct exofs_device_table *dt)
434{
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200435 u64 stripe_length;
436
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200437 sbi->data_map.odm_num_comps =
438 le32_to_cpu(dt->dt_data_map.cb_num_comps);
439 sbi->data_map.odm_stripe_unit =
440 le64_to_cpu(dt->dt_data_map.cb_stripe_unit);
441 sbi->data_map.odm_group_width =
442 le32_to_cpu(dt->dt_data_map.cb_group_width);
443 sbi->data_map.odm_group_depth =
444 le32_to_cpu(dt->dt_data_map.cb_group_depth);
445 sbi->data_map.odm_mirror_cnt =
446 le32_to_cpu(dt->dt_data_map.cb_mirror_cnt);
447 sbi->data_map.odm_raid_algorithm =
448 le32_to_cpu(dt->dt_data_map.cb_raid_algorithm);
449
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200450/* FIXME: Only raid0 for now. if not so, do not mount */
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200451 if (sbi->data_map.odm_num_comps != numdevs) {
452 EXOFS_ERR("odm_num_comps(%u) != numdevs(%u)\n",
453 sbi->data_map.odm_num_comps, numdevs);
454 return -EINVAL;
455 }
456 if (sbi->data_map.odm_raid_algorithm != PNFS_OSD_RAID_0) {
457 EXOFS_ERR("Only RAID_0 for now\n");
458 return -EINVAL;
459 }
460 if (0 != (numdevs % (sbi->data_map.odm_mirror_cnt + 1))) {
461 EXOFS_ERR("Data Map wrong, numdevs=%d mirrors=%d\n",
462 numdevs, sbi->data_map.odm_mirror_cnt);
463 return -EINVAL;
464 }
465
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200466 if (0 != (sbi->data_map.odm_stripe_unit & ~PAGE_MASK)) {
467 EXOFS_ERR("Stripe Unit(0x%llx)"
468 " must be Multples of PAGE_SIZE(0x%lx)\n",
469 _LLU(sbi->data_map.odm_stripe_unit), PAGE_SIZE);
470 return -EINVAL;
471 }
472
473 sbi->layout.stripe_unit = sbi->data_map.odm_stripe_unit;
474 sbi->layout.mirrors_p1 = sbi->data_map.odm_mirror_cnt + 1;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200475
476 if (sbi->data_map.odm_group_width) {
477 sbi->layout.group_width = sbi->data_map.odm_group_width;
478 sbi->layout.group_depth = sbi->data_map.odm_group_depth;
479 if (!sbi->layout.group_depth) {
480 EXOFS_ERR("group_depth == 0 && group_width != 0\n");
481 return -EINVAL;
482 }
483 sbi->layout.group_count = sbi->data_map.odm_num_comps /
484 sbi->layout.mirrors_p1 /
485 sbi->data_map.odm_group_width;
486 } else {
487 if (sbi->data_map.odm_group_depth) {
488 printk(KERN_NOTICE "Warning: group_depth ignored "
489 "group_width == 0 && group_depth == %d\n",
490 sbi->data_map.odm_group_depth);
491 sbi->data_map.odm_group_depth = 0;
492 }
493 sbi->layout.group_width = sbi->data_map.odm_num_comps /
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200494 sbi->layout.mirrors_p1;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200495 sbi->layout.group_depth = -1;
496 sbi->layout.group_count = 1;
497 }
498
499 stripe_length = (u64)sbi->layout.group_width * sbi->layout.stripe_unit;
500 if (stripe_length >= (1ULL << 32)) {
501 EXOFS_ERR("Total Stripe length(0x%llx)"
502 " >= 32bit is not supported\n", _LLU(stripe_length));
503 return -EINVAL;
504 }
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200505
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700506 EXOFS_DBGMSG("exofs: layout: "
507 "num_comps=%u stripe_unit=0x%x group_width=%u "
508 "group_depth=0x%llx mirrors_p1=%u raid_algorithm=%u\n",
509 numdevs,
510 sbi->layout.stripe_unit,
511 sbi->layout.group_width,
512 _LLU(sbi->layout.group_depth),
513 sbi->layout.mirrors_p1,
514 sbi->data_map.odm_raid_algorithm);
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200515 return 0;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200516}
517
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -0400518static unsigned __ra_pages(struct exofs_layout *layout)
519{
520 const unsigned _MIN_RA = 32; /* min 128K read-ahead */
521 unsigned ra_pages = layout->group_width * layout->stripe_unit /
522 PAGE_SIZE;
523 unsigned max_io_pages = exofs_max_io_pages(layout, ~0);
524
525 ra_pages *= 2; /* two stripes */
526 if (ra_pages < _MIN_RA)
527 ra_pages = roundup(_MIN_RA, ra_pages / 2);
528
529 if (ra_pages > max_io_pages)
530 ra_pages = max_io_pages;
531
532 return ra_pages;
533}
534
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200535/* @odi is valid only as long as @fscb_dev is valid */
536static int exofs_devs_2_odi(struct exofs_dt_device_info *dt_dev,
537 struct osd_dev_info *odi)
538{
539 odi->systemid_len = le32_to_cpu(dt_dev->systemid_len);
540 memcpy(odi->systemid, dt_dev->systemid, odi->systemid_len);
541
542 odi->osdname_len = le32_to_cpu(dt_dev->osdname_len);
543 odi->osdname = dt_dev->osdname;
544
545 /* FIXME support long names. Will need a _put function */
546 if (dt_dev->long_name_offset)
547 return -EINVAL;
548
549 /* Make sure osdname is printable!
550 * mkexofs should give us space for a null-terminator else the
551 * device-table is invalid.
552 */
553 if (unlikely(odi->osdname_len >= sizeof(dt_dev->osdname)))
554 odi->osdname_len = sizeof(dt_dev->osdname) - 1;
555 dt_dev->osdname[odi->osdname_len] = 0;
556
557 /* If it's all zeros something is bad we read past end-of-obj */
558 return !(odi->systemid_len || odi->osdname_len);
559}
560
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700561static int exofs_read_lookup_dev_table(struct exofs_sb_info *sbi,
562 struct osd_dev *fscb_od,
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200563 unsigned table_count)
564{
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200565 struct osd_obj_id obj = {.partition = sbi->layout.s_pid,
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200566 .id = EXOFS_DEVTABLE_ID};
567 struct exofs_device_table *dt;
568 unsigned table_bytes = table_count * sizeof(dt->dt_dev_table[0]) +
569 sizeof(*dt);
570 unsigned numdevs, i;
571 int ret;
572
573 dt = kmalloc(table_bytes, GFP_KERNEL);
574 if (unlikely(!dt)) {
575 EXOFS_ERR("ERROR: allocating %x bytes for device table\n",
576 table_bytes);
577 return -ENOMEM;
578 }
579
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200580 sbi->layout.s_numdevs = 0;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200581 ret = exofs_read_kern(fscb_od, sbi->s_cred, &obj, 0, dt, table_bytes);
582 if (unlikely(ret)) {
583 EXOFS_ERR("ERROR: reading device table\n");
584 goto out;
585 }
586
587 numdevs = le64_to_cpu(dt->dt_num_devices);
588 if (unlikely(!numdevs)) {
589 ret = -EINVAL;
590 goto out;
591 }
592 WARN_ON(table_count != numdevs);
593
594 ret = _read_and_match_data_map(sbi, numdevs, dt);
595 if (unlikely(ret))
596 goto out;
597
598 if (likely(numdevs > 1)) {
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200599 unsigned size = numdevs * sizeof(sbi->layout.s_ods[0]);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200600
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700601 sbi->layout.s_ods = kzalloc(size, GFP_KERNEL);
602 if (unlikely(!sbi->layout.s_ods)) {
603 EXOFS_ERR("ERROR: faild allocating Device array[%d]\n",
604 numdevs);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200605 ret = -ENOMEM;
606 goto out;
607 }
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200608 }
609
610 for (i = 0; i < numdevs; i++) {
611 struct exofs_fscb fscb;
612 struct osd_dev_info odi;
613 struct osd_dev *od;
614
615 if (exofs_devs_2_odi(&dt->dt_dev_table[i], &odi)) {
616 EXOFS_ERR("ERROR: Read all-zeros device entry\n");
617 ret = -EINVAL;
618 goto out;
619 }
620
621 printk(KERN_NOTICE "Add device[%d]: osd_name-%s\n",
622 i, odi.osdname);
623
624 /* On all devices the device table is identical. The user can
625 * specify any one of the participating devices on the command
626 * line. We always keep them in device-table order.
627 */
628 if (fscb_od && osduld_device_same(fscb_od, &odi)) {
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200629 sbi->layout.s_ods[i] = fscb_od;
630 ++sbi->layout.s_numdevs;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200631 fscb_od = NULL;
632 continue;
633 }
634
635 od = osduld_info_lookup(&odi);
Tobias Klauser2c722c92010-12-09 15:55:21 +0100636 if (IS_ERR(od)) {
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200637 ret = PTR_ERR(od);
638 EXOFS_ERR("ERROR: device requested is not found "
639 "osd_name-%s =>%d\n", odi.osdname, ret);
640 goto out;
641 }
642
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200643 sbi->layout.s_ods[i] = od;
644 ++sbi->layout.s_numdevs;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200645
646 /* Read the fscb of the other devices to make sure the FS
647 * partition is there.
648 */
649 ret = exofs_read_kern(od, sbi->s_cred, &obj, 0, &fscb,
650 sizeof(fscb));
651 if (unlikely(ret)) {
652 EXOFS_ERR("ERROR: Malformed participating device "
653 "error reading fscb osd_name-%s\n",
654 odi.osdname);
655 goto out;
656 }
657
658 /* TODO: verify other information is correct and FS-uuid
659 * matches. Benny what did you say about device table
660 * generation and old devices?
661 */
662 }
663
664out:
665 kfree(dt);
666 if (unlikely(!ret && fscb_od)) {
667 EXOFS_ERR(
668 "ERROR: Bad device-table container device not present\n");
669 osduld_put_device(fscb_od);
670 ret = -EINVAL;
671 }
672
673 return ret;
674}
675
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200676/*
677 * Read the superblock from the OSD and fill in the fields
678 */
679static int exofs_fill_super(struct super_block *sb, void *data, int silent)
680{
681 struct inode *root;
682 struct exofs_mountopt *opts = data;
683 struct exofs_sb_info *sbi; /*extended info */
Boaz Harrosh06886a52009-11-08 14:54:08 +0200684 struct osd_dev *od; /* Master device */
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200685 struct exofs_fscb fscb; /*on-disk superblock info */
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200686 struct osd_obj_id obj;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200687 unsigned table_count;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200688 int ret;
689
690 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
691 if (!sbi)
692 return -ENOMEM;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200693
694 /* use mount options to fill superblock */
Boaz Harrosh9ed96482011-01-31 14:32:14 +0200695 if (opts->is_osdname) {
696 struct osd_dev_info odi = {.systemid_len = 0};
697
698 odi.osdname_len = strlen(opts->dev_name);
699 odi.osdname = (u8 *)opts->dev_name;
700 od = osduld_info_lookup(&odi);
701 } else {
702 od = osduld_path_lookup(opts->dev_name);
703 }
Boaz Harrosh06886a52009-11-08 14:54:08 +0200704 if (IS_ERR(od)) {
Boaz Harrosh9ed96482011-01-31 14:32:14 +0200705 ret = -EINVAL;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200706 goto free_sbi;
707 }
708
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200709 /* Default layout in case we do not have a device-table */
Boaz Harrosh5d952b82010-02-01 13:35:51 +0200710 sbi->layout.stripe_unit = PAGE_SIZE;
711 sbi->layout.mirrors_p1 = 1;
712 sbi->layout.group_width = 1;
Boaz Harrosh50a76fd2010-02-11 13:01:39 +0200713 sbi->layout.group_depth = -1;
714 sbi->layout.group_count = 1;
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700715 sbi->layout.s_ods = sbi->_min_one_dev;
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200716 sbi->layout.s_numdevs = 1;
717 sbi->layout.s_pid = opts->pid;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200718 sbi->s_timeout = opts->timeout;
719
720 /* fill in some other data by hand */
721 memset(sb->s_id, 0, sizeof(sb->s_id));
722 strcpy(sb->s_id, "exofs");
723 sb->s_blocksize = EXOFS_BLKSIZE;
724 sb->s_blocksize_bits = EXOFS_BLKSHIFT;
725 sb->s_maxbytes = MAX_LFS_FILESIZE;
726 atomic_set(&sbi->s_curr_pending, 0);
727 sb->s_bdev = NULL;
728 sb->s_dev = 0;
729
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200730 obj.partition = sbi->layout.s_pid;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200731 obj.id = EXOFS_SUPER_ID;
732 exofs_make_credential(sbi->s_cred, &obj);
733
Boaz Harrosh06886a52009-11-08 14:54:08 +0200734 ret = exofs_read_kern(od, sbi->s_cred, &obj, 0, &fscb, sizeof(fscb));
735 if (unlikely(ret))
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200736 goto free_sbi;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200737
738 sb->s_magic = le16_to_cpu(fscb.s_magic);
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200739 /* NOTE: we read below to be backward compatible with old versions */
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200740 sbi->s_nextid = le64_to_cpu(fscb.s_nextid);
741 sbi->s_numfiles = le32_to_cpu(fscb.s_numfiles);
742
743 /* make sure what we read from the object store is correct */
744 if (sb->s_magic != EXOFS_SUPER_MAGIC) {
745 if (!silent)
746 EXOFS_ERR("ERROR: Bad magic value\n");
747 ret = -EINVAL;
748 goto free_sbi;
749 }
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200750 if (le32_to_cpu(fscb.s_version) > EXOFS_FSCB_VER) {
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200751 EXOFS_ERR("ERROR: Bad FSCB version expected-%d got-%d\n",
752 EXOFS_FSCB_VER, le32_to_cpu(fscb.s_version));
753 ret = -EINVAL;
754 goto free_sbi;
755 }
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200756
757 /* start generation numbers from a random point */
758 get_random_bytes(&sbi->s_next_generation, sizeof(u32));
759 spin_lock_init(&sbi->s_next_gen_lock);
760
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200761 table_count = le64_to_cpu(fscb.s_dev_table_count);
762 if (table_count) {
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700763 ret = exofs_read_lookup_dev_table(sbi, od, table_count);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200764 if (unlikely(ret))
765 goto free_sbi;
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700766 } else {
767 sbi->layout.s_ods[0] = od;
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200768 }
769
Boaz Harrosh1cea3122011-02-03 17:53:25 +0200770 __sbi_read_stats(sbi);
771
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200772 /* set up operation vectors */
bharrosh@panasas.com66cd6ca2010-10-07 14:28:18 -0400773 sbi->bdi.ra_pages = __ra_pages(&sbi->layout);
Jens Axboeb3d0ab72010-04-22 12:26:04 +0200774 sb->s_bdi = &sbi->bdi;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200775 sb->s_fs_info = sbi;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200776 sb->s_op = &exofs_sops;
Boaz Harrosh8cf74b32009-03-22 12:47:26 +0200777 sb->s_export_op = &exofs_export_ops;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200778 root = exofs_iget(sb, EXOFS_ROOT_ID - EXOFS_OBJ_OFF);
779 if (IS_ERR(root)) {
780 EXOFS_ERR("ERROR: exofs_iget failed\n");
781 ret = PTR_ERR(root);
782 goto free_sbi;
783 }
784 sb->s_root = d_alloc_root(root);
785 if (!sb->s_root) {
786 iput(root);
787 EXOFS_ERR("ERROR: get root inode failed\n");
788 ret = -ENOMEM;
789 goto free_sbi;
790 }
791
792 if (!S_ISDIR(root->i_mode)) {
793 dput(sb->s_root);
794 sb->s_root = NULL;
795 EXOFS_ERR("ERROR: corrupt root inode (mode = %hd)\n",
796 root->i_mode);
797 ret = -EINVAL;
798 goto free_sbi;
799 }
800
Boaz Harrosh6d4073e2011-07-27 17:51:53 -0700801 ret = bdi_setup_and_register(&sbi->bdi, "exofs", BDI_CAP_MAP_COPY);
802 if (ret) {
803 EXOFS_DBGMSG("Failed to bdi_setup_and_register\n");
804 goto free_sbi;
805 }
806
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200807 _exofs_print_device("Mounting", opts->dev_name, sbi->layout.s_ods[0],
808 sbi->layout.s_pid);
Boaz Harrosh9ed96482011-01-31 14:32:14 +0200809 if (opts->is_osdname)
810 kfree(opts->dev_name);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200811 return 0;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200812
813free_sbi:
Boaz Harrosh06886a52009-11-08 14:54:08 +0200814 EXOFS_ERR("Unable to mount exofs on %s pid=0x%llx err=%d\n",
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200815 opts->dev_name, sbi->layout.s_pid, ret);
Boaz Harrosh04dc1e82009-11-16 16:03:05 +0200816 exofs_free_sbi(sbi);
Boaz Harrosh9ed96482011-01-31 14:32:14 +0200817 if (opts->is_osdname)
818 kfree(opts->dev_name);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200819 return ret;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200820}
821
822/*
823 * Set up the superblock (calls exofs_fill_super eventually)
824 */
Al Viro3c26ff62010-07-25 11:46:36 +0400825static struct dentry *exofs_mount(struct file_system_type *type,
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200826 int flags, const char *dev_name,
Al Viro3c26ff62010-07-25 11:46:36 +0400827 void *data)
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200828{
829 struct exofs_mountopt opts;
830 int ret;
831
832 ret = parse_options(data, &opts);
833 if (ret)
Al Viro3c26ff62010-07-25 11:46:36 +0400834 return ERR_PTR(ret);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200835
Boaz Harrosh9ed96482011-01-31 14:32:14 +0200836 if (!opts.dev_name)
837 opts.dev_name = dev_name;
Al Viro3c26ff62010-07-25 11:46:36 +0400838 return mount_nodev(type, flags, &opts, exofs_fill_super);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200839}
840
841/*
842 * Return information about the file system state in the buffer. This is used
843 * by the 'df' command, for example.
844 */
845static int exofs_statfs(struct dentry *dentry, struct kstatfs *buf)
846{
847 struct super_block *sb = dentry->d_sb;
848 struct exofs_sb_info *sbi = sb->s_fs_info;
Boaz Harrosh06886a52009-11-08 14:54:08 +0200849 struct exofs_io_state *ios;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200850 struct osd_attr attrs[] = {
851 ATTR_DEF(OSD_APAGE_PARTITION_QUOTAS,
852 OSD_ATTR_PQ_CAPACITY_QUOTA, sizeof(__be64)),
853 ATTR_DEF(OSD_APAGE_PARTITION_INFORMATION,
854 OSD_ATTR_PI_USED_CAPACITY, sizeof(__be64)),
855 };
856 uint64_t capacity = ULLONG_MAX;
857 uint64_t used = ULLONG_MAX;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200858 uint8_t cred_a[OSD_CAP_LEN];
859 int ret;
860
Boaz Harrosh45d3abc2010-01-28 11:46:16 +0200861 ret = exofs_get_io_state(&sbi->layout, &ios);
Boaz Harrosh06886a52009-11-08 14:54:08 +0200862 if (ret) {
863 EXOFS_DBGMSG("exofs_get_io_state failed.\n");
864 return ret;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200865 }
866
Boaz Harrosh06886a52009-11-08 14:54:08 +0200867 exofs_make_credential(cred_a, &ios->obj);
868 ios->cred = sbi->s_cred;
869 ios->in_attr = attrs;
870 ios->in_attr_len = ARRAY_SIZE(attrs);
871
872 ret = exofs_sbi_read(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200873 if (unlikely(ret))
874 goto out;
875
Boaz Harrosh06886a52009-11-08 14:54:08 +0200876 ret = extract_attr_from_ios(ios, &attrs[0]);
Boaz Harroshcae012d2009-11-02 18:19:24 +0200877 if (likely(!ret)) {
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200878 capacity = get_unaligned_be64(attrs[0].val_ptr);
Boaz Harroshcae012d2009-11-02 18:19:24 +0200879 if (unlikely(!capacity))
880 capacity = ULLONG_MAX;
881 } else
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200882 EXOFS_DBGMSG("exofs_statfs: get capacity failed.\n");
883
Boaz Harrosh06886a52009-11-08 14:54:08 +0200884 ret = extract_attr_from_ios(ios, &attrs[1]);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200885 if (likely(!ret))
886 used = get_unaligned_be64(attrs[1].val_ptr);
887 else
888 EXOFS_DBGMSG("exofs_statfs: get used-space failed.\n");
889
890 /* fill in the stats buffer */
891 buf->f_type = EXOFS_SUPER_MAGIC;
892 buf->f_bsize = EXOFS_BLKSIZE;
Boaz Harroshcae012d2009-11-02 18:19:24 +0200893 buf->f_blocks = capacity >> 9;
894 buf->f_bfree = (capacity - used) >> 9;
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200895 buf->f_bavail = buf->f_bfree;
896 buf->f_files = sbi->s_numfiles;
897 buf->f_ffree = EXOFS_MAX_ID - sbi->s_numfiles;
898 buf->f_namelen = EXOFS_NAME_LEN;
899
900out:
Boaz Harrosh06886a52009-11-08 14:54:08 +0200901 exofs_put_io_state(ios);
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200902 return ret;
903}
904
905static const struct super_operations exofs_sops = {
906 .alloc_inode = exofs_alloc_inode,
907 .destroy_inode = exofs_destroy_inode,
908 .write_inode = exofs_write_inode,
Al Viro4ec70c92010-06-07 11:42:26 -0400909 .evict_inode = exofs_evict_inode,
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200910 .put_super = exofs_put_super,
911 .write_super = exofs_write_super,
Christoph Hellwig80e09fb2009-06-08 10:03:58 +0200912 .sync_fs = exofs_sync_fs,
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200913 .statfs = exofs_statfs,
914};
915
916/******************************************************************************
Boaz Harrosh8cf74b32009-03-22 12:47:26 +0200917 * EXPORT OPERATIONS
918 *****************************************************************************/
919
920struct dentry *exofs_get_parent(struct dentry *child)
921{
922 unsigned long ino = exofs_parent_ino(child);
923
924 if (!ino)
Al Viroa803b802011-07-08 20:56:55 -0400925 return ERR_PTR(-ESTALE);
Boaz Harrosh8cf74b32009-03-22 12:47:26 +0200926
927 return d_obtain_alias(exofs_iget(child->d_inode->i_sb, ino));
928}
929
930static struct inode *exofs_nfs_get_inode(struct super_block *sb,
931 u64 ino, u32 generation)
932{
933 struct inode *inode;
934
935 inode = exofs_iget(sb, ino);
936 if (IS_ERR(inode))
937 return ERR_CAST(inode);
938 if (generation && inode->i_generation != generation) {
939 /* we didn't find the right inode.. */
940 iput(inode);
941 return ERR_PTR(-ESTALE);
942 }
943 return inode;
944}
945
946static struct dentry *exofs_fh_to_dentry(struct super_block *sb,
947 struct fid *fid, int fh_len, int fh_type)
948{
949 return generic_fh_to_dentry(sb, fid, fh_len, fh_type,
950 exofs_nfs_get_inode);
951}
952
953static struct dentry *exofs_fh_to_parent(struct super_block *sb,
954 struct fid *fid, int fh_len, int fh_type)
955{
956 return generic_fh_to_parent(sb, fid, fh_len, fh_type,
957 exofs_nfs_get_inode);
958}
959
960static const struct export_operations exofs_export_ops = {
961 .fh_to_dentry = exofs_fh_to_dentry,
962 .fh_to_parent = exofs_fh_to_parent,
963 .get_parent = exofs_get_parent,
964};
965
966/******************************************************************************
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200967 * INSMOD/RMMOD
968 *****************************************************************************/
969
970/*
971 * struct that describes this file system
972 */
973static struct file_system_type exofs_type = {
974 .owner = THIS_MODULE,
975 .name = "exofs",
Al Viro3c26ff62010-07-25 11:46:36 +0400976 .mount = exofs_mount,
Boaz Harroshba9e5e92008-10-28 16:11:41 +0200977 .kill_sb = generic_shutdown_super,
978};
979
980static int __init init_exofs(void)
981{
982 int err;
983
984 err = init_inodecache();
985 if (err)
986 goto out;
987
988 err = register_filesystem(&exofs_type);
989 if (err)
990 goto out_d;
991
992 return 0;
993out_d:
994 destroy_inodecache();
995out:
996 return err;
997}
998
999static void __exit exit_exofs(void)
1000{
1001 unregister_filesystem(&exofs_type);
1002 destroy_inodecache();
1003}
1004
1005MODULE_AUTHOR("Avishay Traeger <avishay@gmail.com>");
1006MODULE_DESCRIPTION("exofs");
1007MODULE_LICENSE("GPL");
1008
1009module_init(init_exofs)
1010module_exit(exit_exofs)