2 #include <linux/ceph/ceph_debug.h>
3 #include <linux/backing-dev.h>
4 #include <linux/ctype.h>
6 #include <linux/inet.h>
8 #include <linux/module.h>
9 #include <linux/mount.h>
10 #include <linux/parser.h>
11 #include <linux/sched.h>
12 #include <linux/seq_file.h>
13 #include <linux/slab.h>
14 #include <linux/statfs.h>
15 #include <linux/string.h>
18 #include <linux/ceph/libceph.h>
19 #include <linux/ceph/debugfs.h>
20 #include <linux/ceph/decode.h>
21 #include <linux/ceph/mon_client.h>
22 #include <linux/ceph/auth.h>
27 * find filename portion of a path (/foo/bar/baz -> baz)
29 const char *ceph_file_part(const char *s
, int len
)
31 const char *e
= s
+ len
;
33 while (e
!= s
&& *(e
-1) != '/')
37 EXPORT_SYMBOL(ceph_file_part
);
39 const char *ceph_msg_type_name(int type
)
42 case CEPH_MSG_SHUTDOWN
: return "shutdown";
43 case CEPH_MSG_PING
: return "ping";
44 case CEPH_MSG_AUTH
: return "auth";
45 case CEPH_MSG_AUTH_REPLY
: return "auth_reply";
46 case CEPH_MSG_MON_MAP
: return "mon_map";
47 case CEPH_MSG_MON_GET_MAP
: return "mon_get_map";
48 case CEPH_MSG_MON_SUBSCRIBE
: return "mon_subscribe";
49 case CEPH_MSG_MON_SUBSCRIBE_ACK
: return "mon_subscribe_ack";
50 case CEPH_MSG_STATFS
: return "statfs";
51 case CEPH_MSG_STATFS_REPLY
: return "statfs_reply";
52 case CEPH_MSG_MDS_MAP
: return "mds_map";
53 case CEPH_MSG_CLIENT_SESSION
: return "client_session";
54 case CEPH_MSG_CLIENT_RECONNECT
: return "client_reconnect";
55 case CEPH_MSG_CLIENT_REQUEST
: return "client_request";
56 case CEPH_MSG_CLIENT_REQUEST_FORWARD
: return "client_request_forward";
57 case CEPH_MSG_CLIENT_REPLY
: return "client_reply";
58 case CEPH_MSG_CLIENT_CAPS
: return "client_caps";
59 case CEPH_MSG_CLIENT_CAPRELEASE
: return "client_cap_release";
60 case CEPH_MSG_CLIENT_SNAP
: return "client_snap";
61 case CEPH_MSG_CLIENT_LEASE
: return "client_lease";
62 case CEPH_MSG_OSD_MAP
: return "osd_map";
63 case CEPH_MSG_OSD_OP
: return "osd_op";
64 case CEPH_MSG_OSD_OPREPLY
: return "osd_opreply";
65 case CEPH_MSG_WATCH_NOTIFY
: return "watch_notify";
66 default: return "unknown";
69 EXPORT_SYMBOL(ceph_msg_type_name
);
72 * Initially learn our fsid, or verify an fsid matches.
74 int ceph_check_fsid(struct ceph_client
*client
, struct ceph_fsid
*fsid
)
76 if (client
->have_fsid
) {
77 if (ceph_fsid_compare(&client
->fsid
, fsid
)) {
78 pr_err("bad fsid, had %pU got %pU",
83 pr_info("client%lld fsid %pU\n", ceph_client_id(client
), fsid
);
84 memcpy(&client
->fsid
, fsid
, sizeof(*fsid
));
85 ceph_debugfs_client_init(client
);
86 client
->have_fsid
= true;
90 EXPORT_SYMBOL(ceph_check_fsid
);
92 static int strcmp_null(const char *s1
, const char *s2
)
100 return strcmp(s1
, s2
);
103 int ceph_compare_options(struct ceph_options
*new_opt
,
104 struct ceph_client
*client
)
106 struct ceph_options
*opt1
= new_opt
;
107 struct ceph_options
*opt2
= client
->options
;
108 int ofs
= offsetof(struct ceph_options
, mon_addr
);
112 ret
= memcmp(opt1
, opt2
, ofs
);
116 ret
= strcmp_null(opt1
->name
, opt2
->name
);
120 ret
= strcmp_null(opt1
->secret
, opt2
->secret
);
124 /* any matching mon ip implies a match */
125 for (i
= 0; i
< opt1
->num_mon
; i
++) {
126 if (ceph_monmap_contains(client
->monc
.monmap
,
132 EXPORT_SYMBOL(ceph_compare_options
);
135 static int parse_fsid(const char *str
, struct ceph_fsid
*fsid
)
142 dout("parse_fsid '%s'\n", str
);
144 while (*str
&& i
< 16) {
149 if (!isxdigit(str
[0]) || !isxdigit(str
[1]))
153 if (sscanf(tmp
, "%x", &d
) < 1)
155 fsid
->fsid
[i
] = d
& 0xff;
162 dout("parse_fsid ret %d got fsid %pU", err
, fsid
);
171 Opt_osdkeepalivetimeout
,
181 /* string args above */
186 static match_table_t opt_tokens
= {
187 {Opt_osdtimeout
, "osdtimeout=%d"},
188 {Opt_osdkeepalivetimeout
, "osdkeepalive=%d"},
189 {Opt_mount_timeout
, "mount_timeout=%d"},
190 {Opt_osd_idle_ttl
, "osd_idle_ttl=%d"},
192 {Opt_fsid
, "fsid=%s"},
193 {Opt_name
, "name=%s"},
194 {Opt_secret
, "secret=%s"},
196 /* string args above */
197 {Opt_noshare
, "noshare"},
198 {Opt_nocrc
, "nocrc"},
202 void ceph_destroy_options(struct ceph_options
*opt
)
204 dout("destroy_options %p\n", opt
);
209 EXPORT_SYMBOL(ceph_destroy_options
);
211 int ceph_parse_options(struct ceph_options
**popt
, char *options
,
212 const char *dev_name
, const char *dev_name_end
,
213 int (*parse_extra_token
)(char *c
, void *private),
216 struct ceph_options
*opt
;
219 substring_t argstr
[MAX_OPT_ARGS
];
221 opt
= kzalloc(sizeof(*opt
), GFP_KERNEL
);
224 opt
->mon_addr
= kcalloc(CEPH_MAX_MON
, sizeof(*opt
->mon_addr
),
229 dout("parse_options %p options '%s' dev_name '%s'\n", opt
, options
,
232 /* start with defaults */
233 opt
->flags
= CEPH_OPT_DEFAULT
;
234 opt
->osd_timeout
= CEPH_OSD_TIMEOUT_DEFAULT
;
235 opt
->osd_keepalive_timeout
= CEPH_OSD_KEEPALIVE_DEFAULT
;
236 opt
->mount_timeout
= CEPH_MOUNT_TIMEOUT_DEFAULT
; /* seconds */
237 opt
->osd_idle_ttl
= CEPH_OSD_IDLE_TTL_DEFAULT
; /* seconds */
240 /* ip1[:port1][,ip2[:port2]...] */
241 err
= ceph_parse_ips(dev_name
, dev_name_end
, opt
->mon_addr
,
242 CEPH_MAX_MON
, &opt
->num_mon
);
246 /* parse mount options */
247 while ((c
= strsep(&options
, ",")) != NULL
) {
248 int token
, intval
, ret
;
252 token
= match_token((char *)c
, opt_tokens
, argstr
);
253 if (token
< 0 && parse_extra_token
) {
255 err
= parse_extra_token((char *)c
, private);
257 pr_err("bad option at '%s'\n", c
);
262 if (token
< Opt_last_int
) {
263 ret
= match_int(&argstr
[0], &intval
);
265 pr_err("bad mount option arg (not int) "
269 dout("got int token %d val %d\n", token
, intval
);
270 } else if (token
> Opt_last_int
&& token
< Opt_last_string
) {
271 dout("got string token %d val %s\n", token
,
274 dout("got token %d\n", token
);
278 err
= ceph_parse_ips(argstr
[0].from
,
284 opt
->flags
|= CEPH_OPT_MYIP
;
288 err
= parse_fsid(argstr
[0].from
, &opt
->fsid
);
290 opt
->flags
|= CEPH_OPT_FSID
;
293 opt
->name
= kstrndup(argstr
[0].from
,
294 argstr
[0].to
-argstr
[0].from
,
298 opt
->secret
= kstrndup(argstr
[0].from
,
299 argstr
[0].to
-argstr
[0].from
,
305 opt
->osd_timeout
= intval
;
307 case Opt_osdkeepalivetimeout
:
308 opt
->osd_keepalive_timeout
= intval
;
310 case Opt_osd_idle_ttl
:
311 opt
->osd_idle_ttl
= intval
;
313 case Opt_mount_timeout
:
314 opt
->mount_timeout
= intval
;
318 opt
->flags
|= CEPH_OPT_NOSHARE
;
322 opt
->flags
|= CEPH_OPT_NOCRC
;
335 ceph_destroy_options(opt
);
338 EXPORT_SYMBOL(ceph_parse_options
);
340 u64
ceph_client_id(struct ceph_client
*client
)
342 return client
->monc
.auth
->global_id
;
344 EXPORT_SYMBOL(ceph_client_id
);
347 * create a fresh client instance
349 struct ceph_client
*ceph_create_client(struct ceph_options
*opt
, void *private)
351 struct ceph_client
*client
;
354 client
= kzalloc(sizeof(*client
), GFP_KERNEL
);
356 return ERR_PTR(-ENOMEM
);
358 client
->private = private;
359 client
->options
= opt
;
361 mutex_init(&client
->mount_mutex
);
362 init_waitqueue_head(&client
->auth_wq
);
363 client
->auth_err
= 0;
365 client
->extra_mon_dispatch
= NULL
;
366 client
->supported_features
= CEPH_FEATURE_SUPPORTED_DEFAULT
;
367 client
->required_features
= CEPH_FEATURE_REQUIRED_DEFAULT
;
372 err
= ceph_monc_init(&client
->monc
, client
);
375 err
= ceph_osdc_init(&client
->osdc
, client
);
382 ceph_monc_stop(&client
->monc
);
387 EXPORT_SYMBOL(ceph_create_client
);
389 void ceph_destroy_client(struct ceph_client
*client
)
391 dout("destroy_client %p\n", client
);
394 ceph_osdc_stop(&client
->osdc
);
397 * make sure mds and osd connections close out before destroying
398 * the auth module, which is needed to free those connections'
403 ceph_monc_stop(&client
->monc
);
405 ceph_debugfs_client_cleanup(client
);
408 ceph_messenger_destroy(client
->msgr
);
410 ceph_destroy_options(client
->options
);
413 dout("destroy_client %p done\n", client
);
415 EXPORT_SYMBOL(ceph_destroy_client
);
418 * true if we have the mon map (and have thus joined the cluster)
420 static int have_mon_and_osd_map(struct ceph_client
*client
)
422 return client
->monc
.monmap
&& client
->monc
.monmap
->epoch
&&
423 client
->osdc
.osdmap
&& client
->osdc
.osdmap
->epoch
;
427 * mount: join the ceph cluster, and open root directory.
429 int __ceph_open_session(struct ceph_client
*client
, unsigned long started
)
431 struct ceph_entity_addr
*myaddr
= NULL
;
433 unsigned long timeout
= client
->options
->mount_timeout
* HZ
;
435 /* initialize the messenger */
436 if (client
->msgr
== NULL
) {
437 if (ceph_test_opt(client
, MYIP
))
438 myaddr
= &client
->options
->my_addr
;
439 client
->msgr
= ceph_messenger_create(myaddr
,
440 client
->supported_features
,
441 client
->required_features
);
442 if (IS_ERR(client
->msgr
)) {
444 return PTR_ERR(client
->msgr
);
446 client
->msgr
->nocrc
= ceph_test_opt(client
, NOCRC
);
449 /* open session, and wait for mon and osd maps */
450 err
= ceph_monc_open_session(&client
->monc
);
454 while (!have_mon_and_osd_map(client
)) {
456 if (timeout
&& time_after_eq(jiffies
, started
+ timeout
))
460 dout("mount waiting for mon_map\n");
461 err
= wait_event_interruptible_timeout(client
->auth_wq
,
462 have_mon_and_osd_map(client
) || (client
->auth_err
< 0),
464 if (err
== -EINTR
|| err
== -ERESTARTSYS
)
466 if (client
->auth_err
< 0)
467 return client
->auth_err
;
472 EXPORT_SYMBOL(__ceph_open_session
);
475 int ceph_open_session(struct ceph_client
*client
)
478 unsigned long started
= jiffies
; /* note the start time */
480 dout("open_session start\n");
481 mutex_lock(&client
->mount_mutex
);
483 ret
= __ceph_open_session(client
, started
);
485 mutex_unlock(&client
->mount_mutex
);
488 EXPORT_SYMBOL(ceph_open_session
);
491 static int __init
init_ceph_lib(void)
495 ret
= ceph_debugfs_init();
499 ret
= ceph_msgr_init();
503 pr_info("loaded (mon/osd proto %d/%d, osdmap %d/%d %d/%d)\n",
504 CEPH_MONC_PROTOCOL
, CEPH_OSDC_PROTOCOL
,
505 CEPH_OSDMAP_VERSION
, CEPH_OSDMAP_VERSION_EXT
,
506 CEPH_OSDMAP_INC_VERSION
, CEPH_OSDMAP_INC_VERSION_EXT
);
511 ceph_debugfs_cleanup();
516 static void __exit
exit_ceph_lib(void)
518 dout("exit_ceph_lib\n");
520 ceph_debugfs_cleanup();
523 module_init(init_ceph_lib
);
524 module_exit(exit_ceph_lib
);
526 MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
527 MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
528 MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
529 MODULE_DESCRIPTION("Ceph filesystem for Linux");
530 MODULE_LICENSE("GPL");