blob: 9922628532b2c649dee6761710405adc552ca248 [file] [log] [blame]
Sage Weil16725b92009-10-06 11:31:07 -07001
2#include "ceph_debug.h"
3
4#include <linux/backing-dev.h>
Sage Weilc309f0a2010-06-30 21:34:01 -07005#include <linux/ctype.h>
Sage Weil16725b92009-10-06 11:31:07 -07006#include <linux/fs.h>
7#include <linux/inet.h>
8#include <linux/in6.h>
9#include <linux/module.h>
10#include <linux/mount.h>
11#include <linux/parser.h>
Sage Weil16725b92009-10-06 11:31:07 -070012#include <linux/sched.h>
13#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Sage Weil16725b92009-10-06 11:31:07 -070015#include <linux/statfs.h>
16#include <linux/string.h>
Sage Weil16725b92009-10-06 11:31:07 -070017
Sage Weil16725b92009-10-06 11:31:07 -070018#include "decode.h"
19#include "super.h"
20#include "mon_client.h"
Sage Weil07433042009-11-18 16:50:41 -080021#include "auth.h"
Sage Weil16725b92009-10-06 11:31:07 -070022
23/*
24 * Ceph superblock operations
25 *
26 * Handle the basics of mounting, unmounting.
27 */
28
29
30/*
31 * find filename portion of a path (/foo/bar/baz -> baz)
32 */
33const char *ceph_file_part(const char *s, int len)
34{
35 const char *e = s + len;
36
37 while (e != s && *(e-1) != '/')
38 e--;
39 return e;
40}
41
42
43/*
44 * super ops
45 */
46static void ceph_put_super(struct super_block *s)
47{
Sage Weil5dfc5892010-05-04 16:14:46 -070048 struct ceph_client *client = ceph_sb_to_client(s);
Sage Weil16725b92009-10-06 11:31:07 -070049
50 dout("put_super\n");
Sage Weil5dfc5892010-05-04 16:14:46 -070051 ceph_mdsc_close_sessions(&client->mdsc);
52
53 /*
54 * ensure we release the bdi before put_anon_super releases
55 * the device name.
56 */
57 if (s->s_bdi == &client->backing_dev_info) {
58 bdi_unregister(&client->backing_dev_info);
59 s->s_bdi = NULL;
60 }
61
Sage Weil16725b92009-10-06 11:31:07 -070062 return;
63}
64
65static int ceph_statfs(struct dentry *dentry, struct kstatfs *buf)
66{
67 struct ceph_client *client = ceph_inode_to_client(dentry->d_inode);
68 struct ceph_monmap *monmap = client->monc.monmap;
69 struct ceph_statfs st;
70 u64 fsid;
71 int err;
72
73 dout("statfs\n");
74 err = ceph_monc_do_statfs(&client->monc, &st);
75 if (err < 0)
76 return err;
77
78 /* fill in kstatfs */
79 buf->f_type = CEPH_SUPER_MAGIC; /* ?? */
80
81 /*
82 * express utilization in terms of large blocks to avoid
83 * overflow on 32-bit machines.
84 */
85 buf->f_bsize = 1 << CEPH_BLOCK_SHIFT;
86 buf->f_blocks = le64_to_cpu(st.kb) >> (CEPH_BLOCK_SHIFT-10);
87 buf->f_bfree = (le64_to_cpu(st.kb) - le64_to_cpu(st.kb_used)) >>
88 (CEPH_BLOCK_SHIFT-10);
89 buf->f_bavail = le64_to_cpu(st.kb_avail) >> (CEPH_BLOCK_SHIFT-10);
90
91 buf->f_files = le64_to_cpu(st.num_objects);
92 buf->f_ffree = -1;
Sage Weil558d3492010-06-01 12:51:12 -070093 buf->f_namelen = NAME_MAX;
Sage Weil16725b92009-10-06 11:31:07 -070094 buf->f_frsize = PAGE_CACHE_SIZE;
95
96 /* leave fsid little-endian, regardless of host endianness */
97 fsid = *(u64 *)(&monmap->fsid) ^ *((u64 *)&monmap->fsid + 1);
98 buf->f_fsid.val[0] = fsid & 0xffffffff;
99 buf->f_fsid.val[1] = fsid >> 32;
100
101 return 0;
102}
103
104
Sage Weil2d9c98a2010-07-30 09:38:13 -0700105static int ceph_sync_fs(struct super_block *sb, int wait)
Sage Weil16725b92009-10-06 11:31:07 -0700106{
Sage Weil2d9c98a2010-07-30 09:38:13 -0700107 struct ceph_client *client = ceph_sb_to_client(sb);
108
109 if (!wait) {
110 dout("sync_fs (non-blocking)\n");
111 ceph_flush_dirty_caps(&client->mdsc);
112 dout("sync_fs (non-blocking) done\n");
113 return 0;
114 }
115
116 dout("sync_fs (blocking)\n");
Cheng Renquan640ef792010-03-26 17:40:33 +0800117 ceph_osdc_sync(&ceph_sb_to_client(sb)->osdc);
118 ceph_mdsc_sync(&ceph_sb_to_client(sb)->mdsc);
Sage Weil2d9c98a2010-07-30 09:38:13 -0700119 dout("sync_fs (blocking) done\n");
Sage Weil16725b92009-10-06 11:31:07 -0700120 return 0;
121}
122
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800123static int default_congestion_kb(void)
124{
125 int congestion_kb;
126
127 /*
128 * Copied from NFS
129 *
130 * congestion size, scale with available memory.
131 *
132 * 64MB: 8192k
133 * 128MB: 11585k
134 * 256MB: 16384k
135 * 512MB: 23170k
136 * 1GB: 32768k
137 * 2GB: 46340k
138 * 4GB: 65536k
139 * 8GB: 92681k
140 * 16GB: 131072k
141 *
142 * This allows larger machines to have larger/more transfers.
143 * Limit the default to 256M
144 */
145 congestion_kb = (16*int_sqrt(totalram_pages)) << (PAGE_SHIFT-10);
146 if (congestion_kb > 256*1024)
147 congestion_kb = 256*1024;
148
149 return congestion_kb;
150}
151
Sage Weil6e19a162010-04-29 16:38:32 -0700152/**
153 * ceph_show_options - Show mount options in /proc/mounts
154 * @m: seq_file to write to
155 * @mnt: mount descriptor
156 */
157static int ceph_show_options(struct seq_file *m, struct vfsmount *mnt)
158{
159 struct ceph_client *client = ceph_sb_to_client(mnt->mnt_sb);
160 struct ceph_mount_args *args = client->mount_args;
161
162 if (args->flags & CEPH_OPT_FSID)
Sage Weila8b763a2010-07-08 13:00:18 -0700163 seq_printf(m, ",fsid=%pU", &args->fsid);
Sage Weil6e19a162010-04-29 16:38:32 -0700164 if (args->flags & CEPH_OPT_NOSHARE)
165 seq_puts(m, ",noshare");
166 if (args->flags & CEPH_OPT_DIRSTAT)
167 seq_puts(m, ",dirstat");
168 if ((args->flags & CEPH_OPT_RBYTES) == 0)
169 seq_puts(m, ",norbytes");
170 if (args->flags & CEPH_OPT_NOCRC)
171 seq_puts(m, ",nocrc");
172 if (args->flags & CEPH_OPT_NOASYNCREADDIR)
173 seq_puts(m, ",noasyncreaddir");
174
175 if (args->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
176 seq_printf(m, ",mount_timeout=%d", args->mount_timeout);
177 if (args->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
178 seq_printf(m, ",osd_idle_ttl=%d", args->osd_idle_ttl);
179 if (args->osd_timeout != CEPH_OSD_TIMEOUT_DEFAULT)
180 seq_printf(m, ",osdtimeout=%d", args->osd_timeout);
181 if (args->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
182 seq_printf(m, ",osdkeepalivetimeout=%d",
183 args->osd_keepalive_timeout);
184 if (args->wsize)
185 seq_printf(m, ",wsize=%d", args->wsize);
186 if (args->rsize != CEPH_MOUNT_RSIZE_DEFAULT)
187 seq_printf(m, ",rsize=%d", args->rsize);
188 if (args->congestion_kb != default_congestion_kb())
189 seq_printf(m, ",write_congestion_kb=%d", args->congestion_kb);
190 if (args->caps_wanted_delay_min != CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT)
191 seq_printf(m, ",caps_wanted_delay_min=%d",
192 args->caps_wanted_delay_min);
193 if (args->caps_wanted_delay_max != CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT)
194 seq_printf(m, ",caps_wanted_delay_max=%d",
195 args->caps_wanted_delay_max);
196 if (args->cap_release_safety != CEPH_CAP_RELEASE_SAFETY_DEFAULT)
197 seq_printf(m, ",cap_release_safety=%d",
198 args->cap_release_safety);
199 if (args->max_readdir != CEPH_MAX_READDIR_DEFAULT)
200 seq_printf(m, ",readdir_max_entries=%d", args->max_readdir);
Sage Weil23804d92010-05-14 13:06:30 -0700201 if (args->max_readdir_bytes != CEPH_MAX_READDIR_BYTES_DEFAULT)
202 seq_printf(m, ",readdir_max_bytes=%d", args->max_readdir_bytes);
Sage Weil6e19a162010-04-29 16:38:32 -0700203 if (strcmp(args->snapdir_name, CEPH_SNAPDIRNAME_DEFAULT))
204 seq_printf(m, ",snapdirname=%s", args->snapdir_name);
205 if (args->name)
206 seq_printf(m, ",name=%s", args->name);
207 if (args->secret)
208 seq_puts(m, ",secret=<hidden>");
209 return 0;
210}
211
212/*
213 * caches
214 */
215struct kmem_cache *ceph_inode_cachep;
216struct kmem_cache *ceph_cap_cachep;
217struct kmem_cache *ceph_dentry_cachep;
218struct kmem_cache *ceph_file_cachep;
219
220static void ceph_inode_init_once(void *foo)
221{
222 struct ceph_inode_info *ci = foo;
223 inode_init_once(&ci->vfs_inode);
224}
225
Sage Weil16725b92009-10-06 11:31:07 -0700226static int __init init_caches(void)
227{
228 ceph_inode_cachep = kmem_cache_create("ceph_inode_info",
229 sizeof(struct ceph_inode_info),
230 __alignof__(struct ceph_inode_info),
231 (SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD),
232 ceph_inode_init_once);
233 if (ceph_inode_cachep == NULL)
234 return -ENOMEM;
235
236 ceph_cap_cachep = KMEM_CACHE(ceph_cap,
237 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
238 if (ceph_cap_cachep == NULL)
239 goto bad_cap;
240
241 ceph_dentry_cachep = KMEM_CACHE(ceph_dentry_info,
242 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
243 if (ceph_dentry_cachep == NULL)
244 goto bad_dentry;
245
246 ceph_file_cachep = KMEM_CACHE(ceph_file_info,
247 SLAB_RECLAIM_ACCOUNT|SLAB_MEM_SPREAD);
248 if (ceph_file_cachep == NULL)
249 goto bad_file;
250
251 return 0;
252
253bad_file:
254 kmem_cache_destroy(ceph_dentry_cachep);
255bad_dentry:
256 kmem_cache_destroy(ceph_cap_cachep);
257bad_cap:
258 kmem_cache_destroy(ceph_inode_cachep);
259 return -ENOMEM;
260}
261
262static void destroy_caches(void)
263{
264 kmem_cache_destroy(ceph_inode_cachep);
265 kmem_cache_destroy(ceph_cap_cachep);
266 kmem_cache_destroy(ceph_dentry_cachep);
267 kmem_cache_destroy(ceph_file_cachep);
268}
269
270
271/*
272 * ceph_umount_begin - initiate forced umount. Tear down down the
273 * mount, skipping steps that may hang while waiting for server(s).
274 */
275static void ceph_umount_begin(struct super_block *sb)
276{
277 struct ceph_client *client = ceph_sb_to_client(sb);
278
279 dout("ceph_umount_begin - starting forced umount\n");
280 if (!client)
281 return;
282 client->mount_state = CEPH_MOUNT_SHUTDOWN;
283 return;
284}
285
286static const struct super_operations ceph_super_ops = {
287 .alloc_inode = ceph_alloc_inode,
288 .destroy_inode = ceph_destroy_inode,
289 .write_inode = ceph_write_inode,
Sage Weil2d9c98a2010-07-30 09:38:13 -0700290 .sync_fs = ceph_sync_fs,
Sage Weil16725b92009-10-06 11:31:07 -0700291 .put_super = ceph_put_super,
292 .show_options = ceph_show_options,
293 .statfs = ceph_statfs,
294 .umount_begin = ceph_umount_begin,
295};
296
297
298const char *ceph_msg_type_name(int type)
299{
300 switch (type) {
301 case CEPH_MSG_SHUTDOWN: return "shutdown";
302 case CEPH_MSG_PING: return "ping";
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800303 case CEPH_MSG_AUTH: return "auth";
304 case CEPH_MSG_AUTH_REPLY: return "auth_reply";
Sage Weil16725b92009-10-06 11:31:07 -0700305 case CEPH_MSG_MON_MAP: return "mon_map";
306 case CEPH_MSG_MON_GET_MAP: return "mon_get_map";
307 case CEPH_MSG_MON_SUBSCRIBE: return "mon_subscribe";
308 case CEPH_MSG_MON_SUBSCRIBE_ACK: return "mon_subscribe_ack";
Sage Weil16725b92009-10-06 11:31:07 -0700309 case CEPH_MSG_STATFS: return "statfs";
310 case CEPH_MSG_STATFS_REPLY: return "statfs_reply";
Sage Weil16725b92009-10-06 11:31:07 -0700311 case CEPH_MSG_MDS_MAP: return "mds_map";
312 case CEPH_MSG_CLIENT_SESSION: return "client_session";
313 case CEPH_MSG_CLIENT_RECONNECT: return "client_reconnect";
314 case CEPH_MSG_CLIENT_REQUEST: return "client_request";
315 case CEPH_MSG_CLIENT_REQUEST_FORWARD: return "client_request_forward";
316 case CEPH_MSG_CLIENT_REPLY: return "client_reply";
317 case CEPH_MSG_CLIENT_CAPS: return "client_caps";
318 case CEPH_MSG_CLIENT_CAPRELEASE: return "client_cap_release";
319 case CEPH_MSG_CLIENT_SNAP: return "client_snap";
320 case CEPH_MSG_CLIENT_LEASE: return "client_lease";
Sage Weil16725b92009-10-06 11:31:07 -0700321 case CEPH_MSG_OSD_MAP: return "osd_map";
322 case CEPH_MSG_OSD_OP: return "osd_op";
323 case CEPH_MSG_OSD_OPREPLY: return "osd_opreply";
324 default: return "unknown";
325 }
326}
327
328
329/*
330 * mount options
331 */
332enum {
Sage Weil16725b92009-10-06 11:31:07 -0700333 Opt_wsize,
334 Opt_rsize,
335 Opt_osdtimeout,
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -0800336 Opt_osdkeepalivetimeout,
Sage Weil16725b92009-10-06 11:31:07 -0700337 Opt_mount_timeout,
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800338 Opt_osd_idle_ttl,
Sage Weil16725b92009-10-06 11:31:07 -0700339 Opt_caps_wanted_delay_min,
340 Opt_caps_wanted_delay_max,
Sage Weil6e19a162010-04-29 16:38:32 -0700341 Opt_cap_release_safety,
Sage Weil16725b92009-10-06 11:31:07 -0700342 Opt_readdir_max_entries,
Sage Weil23804d92010-05-14 13:06:30 -0700343 Opt_readdir_max_bytes,
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800344 Opt_congestion_kb,
Sage Weile53c2fe2009-10-27 10:19:28 -0700345 Opt_last_int,
Sage Weil16725b92009-10-06 11:31:07 -0700346 /* int args above */
Sage Weilc309f0a2010-06-30 21:34:01 -0700347 Opt_fsid,
Sage Weil16725b92009-10-06 11:31:07 -0700348 Opt_snapdirname,
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800349 Opt_name,
Sage Weil16725b92009-10-06 11:31:07 -0700350 Opt_secret,
Sage Weile53c2fe2009-10-27 10:19:28 -0700351 Opt_last_string,
Sage Weil16725b92009-10-06 11:31:07 -0700352 /* string args above */
353 Opt_ip,
354 Opt_noshare,
355 Opt_dirstat,
356 Opt_nodirstat,
357 Opt_rbytes,
358 Opt_norbytes,
359 Opt_nocrc,
360 Opt_noasyncreaddir,
361};
362
363static match_table_t arg_tokens = {
Sage Weil16725b92009-10-06 11:31:07 -0700364 {Opt_wsize, "wsize=%d"},
365 {Opt_rsize, "rsize=%d"},
366 {Opt_osdtimeout, "osdtimeout=%d"},
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -0800367 {Opt_osdkeepalivetimeout, "osdkeepalive=%d"},
Sage Weil16725b92009-10-06 11:31:07 -0700368 {Opt_mount_timeout, "mount_timeout=%d"},
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800369 {Opt_osd_idle_ttl, "osd_idle_ttl=%d"},
Sage Weil16725b92009-10-06 11:31:07 -0700370 {Opt_caps_wanted_delay_min, "caps_wanted_delay_min=%d"},
371 {Opt_caps_wanted_delay_max, "caps_wanted_delay_max=%d"},
Sage Weil6e19a162010-04-29 16:38:32 -0700372 {Opt_cap_release_safety, "cap_release_safety=%d"},
Sage Weil16725b92009-10-06 11:31:07 -0700373 {Opt_readdir_max_entries, "readdir_max_entries=%d"},
Sage Weil23804d92010-05-14 13:06:30 -0700374 {Opt_readdir_max_bytes, "readdir_max_bytes=%d"},
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800375 {Opt_congestion_kb, "write_congestion_kb=%d"},
Sage Weil16725b92009-10-06 11:31:07 -0700376 /* int args above */
Sage Weilc309f0a2010-06-30 21:34:01 -0700377 {Opt_fsid, "fsid=%s"},
Sage Weil16725b92009-10-06 11:31:07 -0700378 {Opt_snapdirname, "snapdirname=%s"},
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800379 {Opt_name, "name=%s"},
Sage Weil16725b92009-10-06 11:31:07 -0700380 {Opt_secret, "secret=%s"},
381 /* string args above */
382 {Opt_ip, "ip=%s"},
383 {Opt_noshare, "noshare"},
384 {Opt_dirstat, "dirstat"},
385 {Opt_nodirstat, "nodirstat"},
386 {Opt_rbytes, "rbytes"},
387 {Opt_norbytes, "norbytes"},
388 {Opt_nocrc, "nocrc"},
389 {Opt_noasyncreaddir, "noasyncreaddir"},
390 {-1, NULL}
391};
392
Sage Weilc309f0a2010-06-30 21:34:01 -0700393static int parse_fsid(const char *str, struct ceph_fsid *fsid)
394{
395 int i = 0;
396 char tmp[3];
397 int err = -EINVAL;
398 int d;
399
400 dout("parse_fsid '%s'\n", str);
401 tmp[2] = 0;
402 while (*str && i < 16) {
403 if (ispunct(*str)) {
404 str++;
405 continue;
406 }
407 if (!isxdigit(str[0]) || !isxdigit(str[1]))
408 break;
409 tmp[0] = str[0];
410 tmp[1] = str[1];
411 if (sscanf(tmp, "%x", &d) < 1)
412 break;
413 fsid->fsid[i] = d & 0xff;
414 i++;
415 str += 2;
416 }
417
418 if (i == 16)
419 err = 0;
Sage Weila8b763a2010-07-08 13:00:18 -0700420 dout("parse_fsid ret %d got fsid %pU", err, fsid);
Sage Weilc309f0a2010-06-30 21:34:01 -0700421 return err;
422}
Sage Weil16725b92009-10-06 11:31:07 -0700423
Sage Weil6b805182009-10-27 11:50:50 -0700424static struct ceph_mount_args *parse_mount_args(int flags, char *options,
425 const char *dev_name,
426 const char **path)
Sage Weil16725b92009-10-06 11:31:07 -0700427{
Sage Weil6b805182009-10-27 11:50:50 -0700428 struct ceph_mount_args *args;
Sage Weil16725b92009-10-06 11:31:07 -0700429 const char *c;
Sage Weil6b805182009-10-27 11:50:50 -0700430 int err = -ENOMEM;
Sage Weil16725b92009-10-06 11:31:07 -0700431 substring_t argstr[MAX_OPT_ARGS];
Sage Weil16725b92009-10-06 11:31:07 -0700432
Sage Weil6b805182009-10-27 11:50:50 -0700433 args = kzalloc(sizeof(*args), GFP_KERNEL);
434 if (!args)
435 return ERR_PTR(-ENOMEM);
436 args->mon_addr = kcalloc(CEPH_MAX_MON, sizeof(*args->mon_addr),
437 GFP_KERNEL);
438 if (!args->mon_addr)
439 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700440
Sage Weil6b805182009-10-27 11:50:50 -0700441 dout("parse_mount_args %p, dev_name '%s'\n", args, dev_name);
Sage Weil7b813c462009-10-26 22:07:53 -0700442
Sage Weil16725b92009-10-06 11:31:07 -0700443 /* start with defaults */
444 args->sb_flags = flags;
445 args->flags = CEPH_OPT_DEFAULT;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -0800446 args->osd_timeout = CEPH_OSD_TIMEOUT_DEFAULT;
447 args->osd_keepalive_timeout = CEPH_OSD_KEEPALIVE_DEFAULT;
Sage Weil16725b92009-10-06 11:31:07 -0700448 args->mount_timeout = CEPH_MOUNT_TIMEOUT_DEFAULT; /* seconds */
Yehuda Sadehf5a20412010-02-03 11:00:26 -0800449 args->osd_idle_ttl = CEPH_OSD_IDLE_TTL_DEFAULT; /* seconds */
Sage Weil16725b92009-10-06 11:31:07 -0700450 args->caps_wanted_delay_min = CEPH_CAPS_WANTED_DELAY_MIN_DEFAULT;
451 args->caps_wanted_delay_max = CEPH_CAPS_WANTED_DELAY_MAX_DEFAULT;
Sage Weil8fa97652009-10-16 14:44:35 -0700452 args->rsize = CEPH_MOUNT_RSIZE_DEFAULT;
Sage Weil16725b92009-10-06 11:31:07 -0700453 args->snapdir_name = kstrdup(CEPH_SNAPDIRNAME_DEFAULT, GFP_KERNEL);
Sage Weil6e19a162010-04-29 16:38:32 -0700454 args->cap_release_safety = CEPH_CAP_RELEASE_SAFETY_DEFAULT;
455 args->max_readdir = CEPH_MAX_READDIR_DEFAULT;
Sage Weil23804d92010-05-14 13:06:30 -0700456 args->max_readdir_bytes = CEPH_MAX_READDIR_BYTES_DEFAULT;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800457 args->congestion_kb = default_congestion_kb();
Sage Weil16725b92009-10-06 11:31:07 -0700458
459 /* ip1[:port1][,ip2[:port2]...]:/subdir/in/fs */
Sage Weil7b813c462009-10-26 22:07:53 -0700460 err = -EINVAL;
Sage Weil16725b92009-10-06 11:31:07 -0700461 if (!dev_name)
Sage Weil7b813c462009-10-26 22:07:53 -0700462 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700463 *path = strstr(dev_name, ":/");
464 if (*path == NULL) {
465 pr_err("device name is missing path (no :/ in %s)\n",
466 dev_name);
Sage Weil7b813c462009-10-26 22:07:53 -0700467 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700468 }
469
470 /* get mon ip(s) */
Sage Weil6b805182009-10-27 11:50:50 -0700471 err = ceph_parse_ips(dev_name, *path, args->mon_addr,
472 CEPH_MAX_MON, &args->num_mon);
Sage Weil16725b92009-10-06 11:31:07 -0700473 if (err < 0)
Sage Weil7b813c462009-10-26 22:07:53 -0700474 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700475
Sage Weil16725b92009-10-06 11:31:07 -0700476 /* path on server */
477 *path += 2;
478 dout("server path '%s'\n", *path);
479
480 /* parse mount options */
481 while ((c = strsep(&options, ",")) != NULL) {
482 int token, intval, ret;
483 if (!*c)
484 continue;
Sage Weil7b813c462009-10-26 22:07:53 -0700485 err = -EINVAL;
Sage Weil16725b92009-10-06 11:31:07 -0700486 token = match_token((char *)c, arg_tokens, argstr);
487 if (token < 0) {
488 pr_err("bad mount option at '%s'\n", c);
Sage Weil7b813c462009-10-26 22:07:53 -0700489 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700490 }
Sage Weile53c2fe2009-10-27 10:19:28 -0700491 if (token < Opt_last_int) {
Sage Weil16725b92009-10-06 11:31:07 -0700492 ret = match_int(&argstr[0], &intval);
493 if (ret < 0) {
494 pr_err("bad mount option arg (not int) "
495 "at '%s'\n", c);
496 continue;
497 }
Sage Weile53c2fe2009-10-27 10:19:28 -0700498 dout("got int token %d val %d\n", token, intval);
499 } else if (token > Opt_last_int && token < Opt_last_string) {
500 dout("got string token %d val %s\n", token,
501 argstr[0].from);
502 } else {
503 dout("got token %d\n", token);
Sage Weil16725b92009-10-06 11:31:07 -0700504 }
505 switch (token) {
Sage Weil16725b92009-10-06 11:31:07 -0700506 case Opt_ip:
507 err = ceph_parse_ips(argstr[0].from,
508 argstr[0].to,
509 &args->my_addr,
510 1, NULL);
511 if (err < 0)
Sage Weil6b805182009-10-27 11:50:50 -0700512 goto out;
Sage Weil16725b92009-10-06 11:31:07 -0700513 args->flags |= CEPH_OPT_MYIP;
514 break;
515
Sage Weilc309f0a2010-06-30 21:34:01 -0700516 case Opt_fsid:
517 err = parse_fsid(argstr[0].from, &args->fsid);
518 if (err == 0)
519 args->flags |= CEPH_OPT_FSID;
520 break;
Sage Weil16725b92009-10-06 11:31:07 -0700521 case Opt_snapdirname:
522 kfree(args->snapdir_name);
523 args->snapdir_name = kstrndup(argstr[0].from,
524 argstr[0].to-argstr[0].from,
525 GFP_KERNEL);
526 break;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800527 case Opt_name:
528 args->name = kstrndup(argstr[0].from,
529 argstr[0].to-argstr[0].from,
530 GFP_KERNEL);
531 break;
Sage Weil16725b92009-10-06 11:31:07 -0700532 case Opt_secret:
533 args->secret = kstrndup(argstr[0].from,
534 argstr[0].to-argstr[0].from,
535 GFP_KERNEL);
536 break;
537
538 /* misc */
539 case Opt_wsize:
540 args->wsize = intval;
541 break;
542 case Opt_rsize:
543 args->rsize = intval;
544 break;
545 case Opt_osdtimeout:
546 args->osd_timeout = intval;
547 break;
Yehuda Sadeh422d2cb2010-02-26 15:32:31 -0800548 case Opt_osdkeepalivetimeout:
549 args->osd_keepalive_timeout = intval;
550 break;
Sage Weile9d17742010-08-02 16:23:49 -0700551 case Opt_osd_idle_ttl:
552 args->osd_idle_ttl = intval;
553 break;
Sage Weil16725b92009-10-06 11:31:07 -0700554 case Opt_mount_timeout:
555 args->mount_timeout = intval;
556 break;
557 case Opt_caps_wanted_delay_min:
558 args->caps_wanted_delay_min = intval;
559 break;
560 case Opt_caps_wanted_delay_max:
561 args->caps_wanted_delay_max = intval;
562 break;
563 case Opt_readdir_max_entries:
564 args->max_readdir = intval;
565 break;
Sage Weil23804d92010-05-14 13:06:30 -0700566 case Opt_readdir_max_bytes:
567 args->max_readdir_bytes = intval;
568 break;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800569 case Opt_congestion_kb:
570 args->congestion_kb = intval;
571 break;
Sage Weil16725b92009-10-06 11:31:07 -0700572
573 case Opt_noshare:
574 args->flags |= CEPH_OPT_NOSHARE;
575 break;
576
577 case Opt_dirstat:
578 args->flags |= CEPH_OPT_DIRSTAT;
579 break;
580 case Opt_nodirstat:
581 args->flags &= ~CEPH_OPT_DIRSTAT;
582 break;
583 case Opt_rbytes:
584 args->flags |= CEPH_OPT_RBYTES;
585 break;
586 case Opt_norbytes:
587 args->flags &= ~CEPH_OPT_RBYTES;
588 break;
589 case Opt_nocrc:
590 args->flags |= CEPH_OPT_NOCRC;
591 break;
592 case Opt_noasyncreaddir:
593 args->flags |= CEPH_OPT_NOASYNCREADDIR;
594 break;
595
596 default:
597 BUG_ON(token);
598 }
599 }
Sage Weil6b805182009-10-27 11:50:50 -0700600 return args;
Sage Weil16725b92009-10-06 11:31:07 -0700601
Sage Weil7b813c462009-10-26 22:07:53 -0700602out:
Sage Weil6b805182009-10-27 11:50:50 -0700603 kfree(args->mon_addr);
604 kfree(args);
605 return ERR_PTR(err);
Sage Weil16725b92009-10-06 11:31:07 -0700606}
607
Sage Weil6b805182009-10-27 11:50:50 -0700608static void destroy_mount_args(struct ceph_mount_args *args)
Sage Weil16725b92009-10-06 11:31:07 -0700609{
Sage Weil6b805182009-10-27 11:50:50 -0700610 dout("destroy_mount_args %p\n", args);
Sage Weil16725b92009-10-06 11:31:07 -0700611 kfree(args->snapdir_name);
612 args->snapdir_name = NULL;
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800613 kfree(args->name);
614 args->name = NULL;
Sage Weil16725b92009-10-06 11:31:07 -0700615 kfree(args->secret);
616 args->secret = NULL;
Sage Weil6b805182009-10-27 11:50:50 -0700617 kfree(args);
Sage Weil16725b92009-10-06 11:31:07 -0700618}
619
620/*
621 * create a fresh client instance
622 */
Sage Weil6b805182009-10-27 11:50:50 -0700623static struct ceph_client *ceph_create_client(struct ceph_mount_args *args)
Sage Weil16725b92009-10-06 11:31:07 -0700624{
625 struct ceph_client *client;
626 int err = -ENOMEM;
627
628 client = kzalloc(sizeof(*client), GFP_KERNEL);
629 if (client == NULL)
630 return ERR_PTR(-ENOMEM);
631
632 mutex_init(&client->mount_mutex);
633
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800634 init_waitqueue_head(&client->auth_wq);
Sage Weil16725b92009-10-06 11:31:07 -0700635
636 client->sb = NULL;
637 client->mount_state = CEPH_MOUNT_MOUNTING;
Sage Weil6b805182009-10-27 11:50:50 -0700638 client->mount_args = args;
Sage Weil16725b92009-10-06 11:31:07 -0700639
640 client->msgr = NULL;
641
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800642 client->auth_err = 0;
Yehuda Sadeh2baba252009-12-18 13:51:57 -0800643 atomic_long_set(&client->writeback_count, 0);
Sage Weil16725b92009-10-06 11:31:07 -0700644
Sage Weil859e7b12009-11-02 09:32:47 -0800645 err = bdi_init(&client->backing_dev_info);
646 if (err < 0)
647 goto fail;
648
Sage Weil16725b92009-10-06 11:31:07 -0700649 err = -ENOMEM;
650 client->wb_wq = create_workqueue("ceph-writeback");
651 if (client->wb_wq == NULL)
Sage Weil859e7b12009-11-02 09:32:47 -0800652 goto fail_bdi;
Sage Weil16725b92009-10-06 11:31:07 -0700653 client->pg_inv_wq = create_singlethread_workqueue("ceph-pg-invalid");
654 if (client->pg_inv_wq == NULL)
655 goto fail_wb_wq;
656 client->trunc_wq = create_singlethread_workqueue("ceph-trunc");
657 if (client->trunc_wq == NULL)
658 goto fail_pg_inv_wq;
659
Sage Weilb9bfb932009-11-18 15:08:44 -0800660 /* set up mempools */
661 err = -ENOMEM;
662 client->wb_pagevec_pool = mempool_create_kmalloc_pool(10,
663 client->mount_args->wsize >> PAGE_CACHE_SHIFT);
664 if (!client->wb_pagevec_pool)
665 goto fail_trunc_wq;
666
Sage Weil85ccce42010-02-17 10:02:43 -0800667 /* caps */
668 client->min_caps = args->max_readdir;
Sage Weilb9bfb932009-11-18 15:08:44 -0800669
Sage Weil16725b92009-10-06 11:31:07 -0700670 /* subsystems */
671 err = ceph_monc_init(&client->monc, client);
672 if (err < 0)
Sage Weilb9bfb932009-11-18 15:08:44 -0800673 goto fail_mempool;
Sage Weil16725b92009-10-06 11:31:07 -0700674 err = ceph_osdc_init(&client->osdc, client);
675 if (err < 0)
676 goto fail_monc;
Sage Weil5f44f142009-11-18 14:52:18 -0800677 err = ceph_mdsc_init(&client->mdsc, client);
678 if (err < 0)
679 goto fail_osdc;
Sage Weil16725b92009-10-06 11:31:07 -0700680 return client;
681
Sage Weil5f44f142009-11-18 14:52:18 -0800682fail_osdc:
683 ceph_osdc_stop(&client->osdc);
Sage Weil16725b92009-10-06 11:31:07 -0700684fail_monc:
685 ceph_monc_stop(&client->monc);
Sage Weilb9bfb932009-11-18 15:08:44 -0800686fail_mempool:
687 mempool_destroy(client->wb_pagevec_pool);
Sage Weil16725b92009-10-06 11:31:07 -0700688fail_trunc_wq:
689 destroy_workqueue(client->trunc_wq);
690fail_pg_inv_wq:
691 destroy_workqueue(client->pg_inv_wq);
692fail_wb_wq:
693 destroy_workqueue(client->wb_wq);
Sage Weil859e7b12009-11-02 09:32:47 -0800694fail_bdi:
695 bdi_destroy(&client->backing_dev_info);
Sage Weil16725b92009-10-06 11:31:07 -0700696fail:
697 kfree(client);
698 return ERR_PTR(err);
699}
700
701static void ceph_destroy_client(struct ceph_client *client)
702{
703 dout("destroy_client %p\n", client);
704
705 /* unmount */
706 ceph_mdsc_stop(&client->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -0700707 ceph_osdc_stop(&client->osdc);
708
Sage Weila922d382010-05-29 09:41:23 -0700709 /*
710 * make sure mds and osd connections close out before destroying
711 * the auth module, which is needed to free those connections'
712 * ceph_authorizers.
713 */
714 ceph_msgr_flush();
715
716 ceph_monc_stop(&client->monc);
717
Sage Weil16725b92009-10-06 11:31:07 -0700718 ceph_debugfs_client_cleanup(client);
719 destroy_workqueue(client->wb_wq);
720 destroy_workqueue(client->pg_inv_wq);
721 destroy_workqueue(client->trunc_wq);
722
Sage Weil5dfc5892010-05-04 16:14:46 -0700723 bdi_destroy(&client->backing_dev_info);
724
Sage Weil16725b92009-10-06 11:31:07 -0700725 if (client->msgr)
726 ceph_messenger_destroy(client->msgr);
Sage Weilb9bfb932009-11-18 15:08:44 -0800727 mempool_destroy(client->wb_pagevec_pool);
Sage Weil16725b92009-10-06 11:31:07 -0700728
Sage Weil6b805182009-10-27 11:50:50 -0700729 destroy_mount_args(client->mount_args);
Sage Weil16725b92009-10-06 11:31:07 -0700730
731 kfree(client);
732 dout("destroy_client %p done\n", client);
733}
734
735/*
Sage Weil07433042009-11-18 16:50:41 -0800736 * Initially learn our fsid, or verify an fsid matches.
737 */
738int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid)
739{
740 if (client->have_fsid) {
741 if (ceph_fsid_compare(&client->fsid, fsid)) {
Sage Weila8b763a2010-07-08 13:00:18 -0700742 pr_err("bad fsid, had %pU got %pU",
743 &client->fsid, fsid);
Sage Weil07433042009-11-18 16:50:41 -0800744 return -1;
745 }
746 } else {
Sage Weila8b763a2010-07-08 13:00:18 -0700747 pr_info("client%lld fsid %pU\n", client->monc.auth->global_id,
748 fsid);
Sage Weil07433042009-11-18 16:50:41 -0800749 memcpy(&client->fsid, fsid, sizeof(*fsid));
750 ceph_debugfs_client_init(client);
751 client->have_fsid = true;
752 }
753 return 0;
754}
755
756/*
Sage Weil16725b92009-10-06 11:31:07 -0700757 * true if we have the mon map (and have thus joined the cluster)
758 */
Sage Weil6822d002010-04-07 11:23:20 -0700759static int have_mon_and_osd_map(struct ceph_client *client)
Sage Weil16725b92009-10-06 11:31:07 -0700760{
Sage Weil6822d002010-04-07 11:23:20 -0700761 return client->monc.monmap && client->monc.monmap->epoch &&
762 client->osdc.osdmap && client->osdc.osdmap->epoch;
Sage Weil16725b92009-10-06 11:31:07 -0700763}
764
765/*
766 * Bootstrap mount by opening the root directory. Note the mount
767 * @started time from caller, and time out if this takes too long.
768 */
769static struct dentry *open_root_dentry(struct ceph_client *client,
770 const char *path,
771 unsigned long started)
772{
773 struct ceph_mds_client *mdsc = &client->mdsc;
774 struct ceph_mds_request *req = NULL;
775 int err;
776 struct dentry *root;
777
778 /* open dir */
779 dout("open_root_inode opening '%s'\n", path);
780 req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS);
781 if (IS_ERR(req))
Julia Lawall7e34bc52010-05-22 12:01:14 +0200782 return ERR_CAST(req);
Sage Weil16725b92009-10-06 11:31:07 -0700783 req->r_path1 = kstrdup(path, GFP_NOFS);
784 req->r_ino1.ino = CEPH_INO_ROOT;
785 req->r_ino1.snap = CEPH_NOSNAP;
786 req->r_started = started;
Sage Weil6b805182009-10-27 11:50:50 -0700787 req->r_timeout = client->mount_args->mount_timeout * HZ;
Sage Weil16725b92009-10-06 11:31:07 -0700788 req->r_args.getattr.mask = cpu_to_le32(CEPH_STAT_CAP_INODE);
789 req->r_num_caps = 2;
790 err = ceph_mdsc_do_request(mdsc, NULL, req);
791 if (err == 0) {
792 dout("open_root_inode success\n");
793 if (ceph_ino(req->r_target_inode) == CEPH_INO_ROOT &&
794 client->sb->s_root == NULL)
795 root = d_alloc_root(req->r_target_inode);
796 else
797 root = d_obtain_alias(req->r_target_inode);
798 req->r_target_inode = NULL;
799 dout("open_root_inode success, root dentry is %p\n", root);
800 } else {
801 root = ERR_PTR(err);
802 }
803 ceph_mdsc_put_request(req);
804 return root;
805}
806
807/*
808 * mount: join the ceph cluster, and open root directory.
809 */
810static int ceph_mount(struct ceph_client *client, struct vfsmount *mnt,
811 const char *path)
812{
813 struct ceph_entity_addr *myaddr = NULL;
814 int err;
Sage Weil6b805182009-10-27 11:50:50 -0700815 unsigned long timeout = client->mount_args->mount_timeout * HZ;
Sage Weil16725b92009-10-06 11:31:07 -0700816 unsigned long started = jiffies; /* note the start time */
817 struct dentry *root;
818
819 dout("mount start\n");
820 mutex_lock(&client->mount_mutex);
821
822 /* initialize the messenger */
823 if (client->msgr == NULL) {
824 if (ceph_test_opt(client, MYIP))
Sage Weil6b805182009-10-27 11:50:50 -0700825 myaddr = &client->mount_args->my_addr;
Sage Weil16725b92009-10-06 11:31:07 -0700826 client->msgr = ceph_messenger_create(myaddr);
827 if (IS_ERR(client->msgr)) {
828 err = PTR_ERR(client->msgr);
829 client->msgr = NULL;
830 goto out;
831 }
832 client->msgr->nocrc = ceph_test_opt(client, NOCRC);
833 }
834
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800835 /* open session, and wait for mon, mds, and osd maps */
836 err = ceph_monc_open_session(&client->monc);
Sage Weil16725b92009-10-06 11:31:07 -0700837 if (err < 0)
838 goto out;
839
Sage Weil6822d002010-04-07 11:23:20 -0700840 while (!have_mon_and_osd_map(client)) {
Sage Weil16725b92009-10-06 11:31:07 -0700841 err = -EIO;
842 if (timeout && time_after_eq(jiffies, started + timeout))
843 goto out;
844
845 /* wait */
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800846 dout("mount waiting for mon_map\n");
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800847 err = wait_event_interruptible_timeout(client->auth_wq,
Sage Weil6822d002010-04-07 11:23:20 -0700848 have_mon_and_osd_map(client) || (client->auth_err < 0),
849 timeout);
Sage Weil16725b92009-10-06 11:31:07 -0700850 if (err == -EINTR || err == -ERESTARTSYS)
851 goto out;
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800852 if (client->auth_err < 0) {
853 err = client->auth_err;
Yehuda Sadehdc146572009-11-20 13:59:13 -0800854 goto out;
855 }
Sage Weil16725b92009-10-06 11:31:07 -0700856 }
857
858 dout("mount opening root\n");
859 root = open_root_dentry(client, "", started);
860 if (IS_ERR(root)) {
861 err = PTR_ERR(root);
862 goto out;
863 }
864 if (client->sb->s_root)
865 dput(root);
866 else
867 client->sb->s_root = root;
868
869 if (path[0] == 0) {
870 dget(root);
871 } else {
872 dout("mount opening base mountpoint\n");
873 root = open_root_dentry(client, path, started);
874 if (IS_ERR(root)) {
875 err = PTR_ERR(root);
876 dput(client->sb->s_root);
877 client->sb->s_root = NULL;
878 goto out;
879 }
880 }
881
882 mnt->mnt_root = root;
883 mnt->mnt_sb = client->sb;
884
885 client->mount_state = CEPH_MOUNT_MOUNTED;
886 dout("mount success\n");
887 err = 0;
888
889out:
890 mutex_unlock(&client->mount_mutex);
891 return err;
892}
893
894static int ceph_set_super(struct super_block *s, void *data)
895{
896 struct ceph_client *client = data;
897 int ret;
898
899 dout("set_super %p data %p\n", s, data);
900
Sage Weil6b805182009-10-27 11:50:50 -0700901 s->s_flags = client->mount_args->sb_flags;
Sage Weil16725b92009-10-06 11:31:07 -0700902 s->s_maxbytes = 1ULL << 40; /* temp value until we get mdsmap */
903
904 s->s_fs_info = client;
905 client->sb = s;
906
907 s->s_op = &ceph_super_ops;
908 s->s_export_op = &ceph_export_ops;
909
910 s->s_time_gran = 1000; /* 1000 ns == 1 us */
911
912 ret = set_anon_super(s, NULL); /* what is that second arg for? */
913 if (ret != 0)
914 goto fail;
915
916 return ret;
917
918fail:
919 s->s_fs_info = NULL;
920 client->sb = NULL;
921 return ret;
922}
923
924/*
925 * share superblock if same fs AND options
926 */
927static int ceph_compare_super(struct super_block *sb, void *data)
928{
929 struct ceph_client *new = data;
Sage Weil6b805182009-10-27 11:50:50 -0700930 struct ceph_mount_args *args = new->mount_args;
Sage Weil16725b92009-10-06 11:31:07 -0700931 struct ceph_client *other = ceph_sb_to_client(sb);
932 int i;
933
934 dout("ceph_compare_super %p\n", sb);
935 if (args->flags & CEPH_OPT_FSID) {
936 if (ceph_fsid_compare(&args->fsid, &other->fsid)) {
937 dout("fsid doesn't match\n");
938 return 0;
939 }
940 } else {
941 /* do we share (a) monitor? */
942 for (i = 0; i < new->monc.monmap->num_mon; i++)
943 if (ceph_monmap_contains(other->monc.monmap,
944 &new->monc.monmap->mon_inst[i].addr))
945 break;
946 if (i == new->monc.monmap->num_mon) {
947 dout("mon ip not part of monmap\n");
948 return 0;
949 }
950 dout("mon ip matches existing sb %p\n", sb);
951 }
Sage Weil6b805182009-10-27 11:50:50 -0700952 if (args->sb_flags != other->mount_args->sb_flags) {
Sage Weil16725b92009-10-06 11:31:07 -0700953 dout("flags differ\n");
954 return 0;
955 }
956 return 1;
957}
958
959/*
960 * construct our own bdi so we can control readahead, etc.
961 */
Jeff Mahoney00d56432010-06-10 11:13:58 -0400962static atomic_long_t bdi_seq = ATOMIC_LONG_INIT(0);
Sage Weil31e0cf82010-05-04 16:39:35 -0700963
Sage Weil859e7b12009-11-02 09:32:47 -0800964static int ceph_register_bdi(struct super_block *sb, struct ceph_client *client)
Sage Weil16725b92009-10-06 11:31:07 -0700965{
966 int err;
967
Sage Weil16725b92009-10-06 11:31:07 -0700968 /* set ra_pages based on rsize mount option? */
Sage Weil6b805182009-10-27 11:50:50 -0700969 if (client->mount_args->rsize >= PAGE_CACHE_SIZE)
Sage Weil16725b92009-10-06 11:31:07 -0700970 client->backing_dev_info.ra_pages =
Sage Weil6b805182009-10-27 11:50:50 -0700971 (client->mount_args->rsize + PAGE_CACHE_SIZE - 1)
Sage Weil16725b92009-10-06 11:31:07 -0700972 >> PAGE_SHIFT;
Sage Weil31e0cf82010-05-04 16:39:35 -0700973 err = bdi_register(&client->backing_dev_info, NULL, "ceph-%d",
974 atomic_long_inc_return(&bdi_seq));
Sage Weil5dfc5892010-05-04 16:14:46 -0700975 if (!err)
976 sb->s_bdi = &client->backing_dev_info;
Sage Weil16725b92009-10-06 11:31:07 -0700977 return err;
978}
979
980static int ceph_get_sb(struct file_system_type *fs_type,
981 int flags, const char *dev_name, void *data,
982 struct vfsmount *mnt)
983{
984 struct super_block *sb;
985 struct ceph_client *client;
986 int err;
987 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
Sage Weil6a18be12009-11-04 11:40:05 -0800988 const char *path = NULL;
Sage Weil6b805182009-10-27 11:50:50 -0700989 struct ceph_mount_args *args;
Sage Weil16725b92009-10-06 11:31:07 -0700990
991 dout("ceph_get_sb\n");
Sage Weil6b805182009-10-27 11:50:50 -0700992 args = parse_mount_args(flags, data, dev_name, &path);
993 if (IS_ERR(args)) {
994 err = PTR_ERR(args);
995 goto out_final;
996 }
Sage Weil16725b92009-10-06 11:31:07 -0700997
998 /* create client (which we may/may not use) */
Sage Weil6b805182009-10-27 11:50:50 -0700999 client = ceph_create_client(args);
1000 if (IS_ERR(client)) {
1001 err = PTR_ERR(client);
1002 goto out_final;
1003 }
Sage Weil16725b92009-10-06 11:31:07 -07001004
Sage Weil6b805182009-10-27 11:50:50 -07001005 if (client->mount_args->flags & CEPH_OPT_NOSHARE)
Sage Weil16725b92009-10-06 11:31:07 -07001006 compare_super = NULL;
1007 sb = sget(fs_type, compare_super, ceph_set_super, client);
1008 if (IS_ERR(sb)) {
1009 err = PTR_ERR(sb);
1010 goto out;
1011 }
1012
Cheng Renquan640ef792010-03-26 17:40:33 +08001013 if (ceph_sb_to_client(sb) != client) {
Sage Weil16725b92009-10-06 11:31:07 -07001014 ceph_destroy_client(client);
Cheng Renquan640ef792010-03-26 17:40:33 +08001015 client = ceph_sb_to_client(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001016 dout("get_sb got existing client %p\n", client);
1017 } else {
1018 dout("get_sb using new client %p\n", client);
Sage Weil859e7b12009-11-02 09:32:47 -08001019 err = ceph_register_bdi(sb, client);
Sage Weil16725b92009-10-06 11:31:07 -07001020 if (err < 0)
1021 goto out_splat;
1022 }
1023
1024 err = ceph_mount(client, mnt, path);
1025 if (err < 0)
1026 goto out_splat;
1027 dout("root %p inode %p ino %llx.%llx\n", mnt->mnt_root,
1028 mnt->mnt_root->d_inode, ceph_vinop(mnt->mnt_root->d_inode));
1029 return 0;
1030
1031out_splat:
1032 ceph_mdsc_close_sessions(&client->mdsc);
Al Viro3981f2e2010-03-21 19:22:29 -04001033 deactivate_locked_super(sb);
Sage Weil16725b92009-10-06 11:31:07 -07001034 goto out_final;
1035
1036out:
1037 ceph_destroy_client(client);
1038out_final:
1039 dout("ceph_get_sb fail %d\n", err);
1040 return err;
1041}
1042
1043static void ceph_kill_sb(struct super_block *s)
1044{
1045 struct ceph_client *client = ceph_sb_to_client(s);
1046 dout("kill_sb %p\n", s);
1047 ceph_mdsc_pre_umount(&client->mdsc);
Sage Weil16725b92009-10-06 11:31:07 -07001048 kill_anon_super(s); /* will call put_super after sb is r/o */
Sage Weil16725b92009-10-06 11:31:07 -07001049 ceph_destroy_client(client);
1050}
1051
1052static struct file_system_type ceph_fs_type = {
1053 .owner = THIS_MODULE,
1054 .name = "ceph",
1055 .get_sb = ceph_get_sb,
1056 .kill_sb = ceph_kill_sb,
1057 .fs_flags = FS_RENAME_DOES_D_MOVE,
1058};
1059
1060#define _STRINGIFY(x) #x
1061#define STRINGIFY(x) _STRINGIFY(x)
1062
1063static int __init init_ceph(void)
1064{
1065 int ret = 0;
1066
1067 ret = ceph_debugfs_init();
1068 if (ret < 0)
1069 goto out;
1070
1071 ret = ceph_msgr_init();
1072 if (ret < 0)
1073 goto out_debugfs;
1074
1075 ret = init_caches();
1076 if (ret)
1077 goto out_msgr;
1078
Sage Weil16725b92009-10-06 11:31:07 -07001079 ret = register_filesystem(&ceph_fs_type);
1080 if (ret)
1081 goto out_icache;
1082
Sage Weilc8f16582010-04-19 13:50:26 -07001083 pr_info("loaded (mon/mds/osd proto %d/%d/%d, osdmap %d/%d %d/%d)\n",
1084 CEPH_MONC_PROTOCOL, CEPH_MDSC_PROTOCOL, CEPH_OSDC_PROTOCOL,
1085 CEPH_OSDMAP_VERSION, CEPH_OSDMAP_VERSION_EXT,
1086 CEPH_OSDMAP_INC_VERSION, CEPH_OSDMAP_INC_VERSION_EXT);
Sage Weil16725b92009-10-06 11:31:07 -07001087 return 0;
1088
1089out_icache:
1090 destroy_caches();
1091out_msgr:
1092 ceph_msgr_exit();
1093out_debugfs:
1094 ceph_debugfs_cleanup();
1095out:
1096 return ret;
1097}
1098
1099static void __exit exit_ceph(void)
1100{
1101 dout("exit_ceph\n");
1102 unregister_filesystem(&ceph_fs_type);
Sage Weil16725b92009-10-06 11:31:07 -07001103 destroy_caches();
1104 ceph_msgr_exit();
1105 ceph_debugfs_cleanup();
1106}
1107
1108module_init(init_ceph);
1109module_exit(exit_ceph);
1110
1111MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
1112MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
1113MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
1114MODULE_DESCRIPTION("Ceph filesystem for Linux");
1115MODULE_LICENSE("GPL");