f639e04d9c63073cc728ca0fd45c307577ea398c
[linux-2.6-block.git] / net / ceph / ceph_common.c
1 // SPDX-License-Identifier: GPL-2.0-only
2
3 #include <linux/ceph/ceph_debug.h>
4 #include <linux/backing-dev.h>
5 #include <linux/ctype.h>
6 #include <linux/fs.h>
7 #include <linux/inet.h>
8 #include <linux/in6.h>
9 #include <linux/key.h>
10 #include <keys/ceph-type.h>
11 #include <linux/module.h>
12 #include <linux/mount.h>
13 #include <linux/nsproxy.h>
14 #include <linux/fs_parser.h>
15 #include <linux/sched.h>
16 #include <linux/sched/mm.h>
17 #include <linux/seq_file.h>
18 #include <linux/slab.h>
19 #include <linux/statfs.h>
20 #include <linux/string.h>
21 #include <linux/vmalloc.h>
22
23
24 #include <linux/ceph/ceph_features.h>
25 #include <linux/ceph/libceph.h>
26 #include <linux/ceph/debugfs.h>
27 #include <linux/ceph/decode.h>
28 #include <linux/ceph/mon_client.h>
29 #include <linux/ceph/auth.h>
30 #include "crypto.h"
31
32
33 /*
34  * Module compatibility interface.  For now it doesn't do anything,
35  * but its existence signals a certain level of functionality.
36  *
37  * The data buffer is used to pass information both to and from
38  * libceph.  The return value indicates whether libceph determines
39  * it is compatible with the caller (from another kernel module),
40  * given the provided data.
41  *
42  * The data pointer can be null.
43  */
44 bool libceph_compatible(void *data)
45 {
46         return true;
47 }
48 EXPORT_SYMBOL(libceph_compatible);
49
50 static int param_get_supported_features(char *buffer,
51                                         const struct kernel_param *kp)
52 {
53         return sprintf(buffer, "0x%llx", CEPH_FEATURES_SUPPORTED_DEFAULT);
54 }
55 static const struct kernel_param_ops param_ops_supported_features = {
56         .get = param_get_supported_features,
57 };
58 module_param_cb(supported_features, &param_ops_supported_features, NULL,
59                 0444);
60
61 const char *ceph_msg_type_name(int type)
62 {
63         switch (type) {
64         case CEPH_MSG_SHUTDOWN: return "shutdown";
65         case CEPH_MSG_PING: return "ping";
66         case CEPH_MSG_AUTH: return "auth";
67         case CEPH_MSG_AUTH_REPLY: return "auth_reply";
68         case CEPH_MSG_MON_MAP: return "mon_map";
69         case CEPH_MSG_MON_GET_MAP: return "mon_get_map";
70         case CEPH_MSG_MON_SUBSCRIBE: return "mon_subscribe";
71         case CEPH_MSG_MON_SUBSCRIBE_ACK: return "mon_subscribe_ack";
72         case CEPH_MSG_STATFS: return "statfs";
73         case CEPH_MSG_STATFS_REPLY: return "statfs_reply";
74         case CEPH_MSG_MON_GET_VERSION: return "mon_get_version";
75         case CEPH_MSG_MON_GET_VERSION_REPLY: return "mon_get_version_reply";
76         case CEPH_MSG_MDS_MAP: return "mds_map";
77         case CEPH_MSG_FS_MAP_USER: return "fs_map_user";
78         case CEPH_MSG_CLIENT_SESSION: return "client_session";
79         case CEPH_MSG_CLIENT_RECONNECT: return "client_reconnect";
80         case CEPH_MSG_CLIENT_REQUEST: return "client_request";
81         case CEPH_MSG_CLIENT_REQUEST_FORWARD: return "client_request_forward";
82         case CEPH_MSG_CLIENT_REPLY: return "client_reply";
83         case CEPH_MSG_CLIENT_CAPS: return "client_caps";
84         case CEPH_MSG_CLIENT_CAPRELEASE: return "client_cap_release";
85         case CEPH_MSG_CLIENT_QUOTA: return "client_quota";
86         case CEPH_MSG_CLIENT_SNAP: return "client_snap";
87         case CEPH_MSG_CLIENT_LEASE: return "client_lease";
88         case CEPH_MSG_POOLOP_REPLY: return "poolop_reply";
89         case CEPH_MSG_POOLOP: return "poolop";
90         case CEPH_MSG_MON_COMMAND: return "mon_command";
91         case CEPH_MSG_MON_COMMAND_ACK: return "mon_command_ack";
92         case CEPH_MSG_OSD_MAP: return "osd_map";
93         case CEPH_MSG_OSD_OP: return "osd_op";
94         case CEPH_MSG_OSD_OPREPLY: return "osd_opreply";
95         case CEPH_MSG_WATCH_NOTIFY: return "watch_notify";
96         case CEPH_MSG_OSD_BACKOFF: return "osd_backoff";
97         default: return "unknown";
98         }
99 }
100 EXPORT_SYMBOL(ceph_msg_type_name);
101
102 /*
103  * Initially learn our fsid, or verify an fsid matches.
104  */
105 int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid)
106 {
107         if (client->have_fsid) {
108                 if (ceph_fsid_compare(&client->fsid, fsid)) {
109                         pr_err("bad fsid, had %pU got %pU",
110                                &client->fsid, fsid);
111                         return -1;
112                 }
113         } else {
114                 memcpy(&client->fsid, fsid, sizeof(*fsid));
115         }
116         return 0;
117 }
118 EXPORT_SYMBOL(ceph_check_fsid);
119
120 static int strcmp_null(const char *s1, const char *s2)
121 {
122         if (!s1 && !s2)
123                 return 0;
124         if (s1 && !s2)
125                 return -1;
126         if (!s1 && s2)
127                 return 1;
128         return strcmp(s1, s2);
129 }
130
131 int ceph_compare_options(struct ceph_options *new_opt,
132                          struct ceph_client *client)
133 {
134         struct ceph_options *opt1 = new_opt;
135         struct ceph_options *opt2 = client->options;
136         int ofs = offsetof(struct ceph_options, mon_addr);
137         int i;
138         int ret;
139
140         /*
141          * Don't bother comparing options if network namespaces don't
142          * match.
143          */
144         if (!net_eq(current->nsproxy->net_ns, read_pnet(&client->msgr.net)))
145                 return -1;
146
147         ret = memcmp(opt1, opt2, ofs);
148         if (ret)
149                 return ret;
150
151         ret = strcmp_null(opt1->name, opt2->name);
152         if (ret)
153                 return ret;
154
155         if (opt1->key && !opt2->key)
156                 return -1;
157         if (!opt1->key && opt2->key)
158                 return 1;
159         if (opt1->key && opt2->key) {
160                 if (opt1->key->type != opt2->key->type)
161                         return -1;
162                 if (opt1->key->created.tv_sec != opt2->key->created.tv_sec)
163                         return -1;
164                 if (opt1->key->created.tv_nsec != opt2->key->created.tv_nsec)
165                         return -1;
166                 if (opt1->key->len != opt2->key->len)
167                         return -1;
168                 if (opt1->key->key && !opt2->key->key)
169                         return -1;
170                 if (!opt1->key->key && opt2->key->key)
171                         return 1;
172                 if (opt1->key->key && opt2->key->key) {
173                         ret = memcmp(opt1->key->key, opt2->key->key, opt1->key->len);
174                         if (ret)
175                                 return ret;
176                 }
177         }
178
179         /* any matching mon ip implies a match */
180         for (i = 0; i < opt1->num_mon; i++) {
181                 if (ceph_monmap_contains(client->monc.monmap,
182                                  &opt1->mon_addr[i]))
183                         return 0;
184         }
185         return -1;
186 }
187 EXPORT_SYMBOL(ceph_compare_options);
188
189 /*
190  * kvmalloc() doesn't fall back to the vmalloc allocator unless flags are
191  * compatible with (a superset of) GFP_KERNEL.  This is because while the
192  * actual pages are allocated with the specified flags, the page table pages
193  * are always allocated with GFP_KERNEL.  map_vm_area() doesn't even take
194  * flags because GFP_KERNEL is hard-coded in {p4d,pud,pmd,pte}_alloc().
195  *
196  * ceph_kvmalloc() may be called with GFP_KERNEL, GFP_NOFS or GFP_NOIO.
197  */
198 void *ceph_kvmalloc(size_t size, gfp_t flags)
199 {
200         void *p;
201
202         if ((flags & (__GFP_IO | __GFP_FS)) == (__GFP_IO | __GFP_FS)) {
203                 p = kvmalloc(size, flags);
204         } else if ((flags & (__GFP_IO | __GFP_FS)) == __GFP_IO) {
205                 unsigned int nofs_flag = memalloc_nofs_save();
206                 p = kvmalloc(size, GFP_KERNEL);
207                 memalloc_nofs_restore(nofs_flag);
208         } else {
209                 unsigned int noio_flag = memalloc_noio_save();
210                 p = kvmalloc(size, GFP_KERNEL);
211                 memalloc_noio_restore(noio_flag);
212         }
213
214         return p;
215 }
216
217 static int parse_fsid(const char *str, struct ceph_fsid *fsid)
218 {
219         int i = 0;
220         char tmp[3];
221         int err = -EINVAL;
222         int d;
223
224         dout("parse_fsid '%s'\n", str);
225         tmp[2] = 0;
226         while (*str && i < 16) {
227                 if (ispunct(*str)) {
228                         str++;
229                         continue;
230                 }
231                 if (!isxdigit(str[0]) || !isxdigit(str[1]))
232                         break;
233                 tmp[0] = str[0];
234                 tmp[1] = str[1];
235                 if (sscanf(tmp, "%x", &d) < 1)
236                         break;
237                 fsid->fsid[i] = d & 0xff;
238                 i++;
239                 str += 2;
240         }
241
242         if (i == 16)
243                 err = 0;
244         dout("parse_fsid ret %d got fsid %pU\n", err, fsid);
245         return err;
246 }
247
248 /*
249  * ceph options
250  */
251 enum {
252         Opt_osdtimeout,
253         Opt_osdkeepalivetimeout,
254         Opt_mount_timeout,
255         Opt_osd_idle_ttl,
256         Opt_osd_request_timeout,
257         /* int args above */
258         Opt_fsid,
259         Opt_name,
260         Opt_secret,
261         Opt_key,
262         Opt_ip,
263         /* string args above */
264         Opt_share,
265         Opt_crc,
266         Opt_cephx_require_signatures,
267         Opt_cephx_sign_messages,
268         Opt_tcp_nodelay,
269         Opt_abort_on_full,
270 };
271
272 static const struct fs_parameter_spec ceph_param_specs[] = {
273         fsparam_flag    ("abort_on_full",               Opt_abort_on_full),
274         fsparam_flag_no ("cephx_require_signatures",    Opt_cephx_require_signatures),
275         fsparam_flag_no ("cephx_sign_messages",         Opt_cephx_sign_messages),
276         fsparam_flag_no ("crc",                         Opt_crc),
277         fsparam_string  ("fsid",                        Opt_fsid),
278         fsparam_string  ("ip",                          Opt_ip),
279         fsparam_string  ("key",                         Opt_key),
280         fsparam_u32     ("mount_timeout",               Opt_mount_timeout),
281         fsparam_string  ("name",                        Opt_name),
282         fsparam_u32     ("osd_idle_ttl",                Opt_osd_idle_ttl),
283         fsparam_u32     ("osd_request_timeout",         Opt_osd_request_timeout),
284         fsparam_u32     ("osdkeepalive",                Opt_osdkeepalivetimeout),
285         __fsparam       (fs_param_is_s32, "osdtimeout", Opt_osdtimeout,
286                          fs_param_deprecated, NULL),
287         fsparam_string  ("secret",                      Opt_secret),
288         fsparam_flag_no ("share",                       Opt_share),
289         fsparam_flag_no ("tcp_nodelay",                 Opt_tcp_nodelay),
290         {}
291 };
292
293 static const struct fs_parameter_description ceph_parameters = {
294         .specs          = ceph_param_specs,
295 };
296
297 struct ceph_options *ceph_alloc_options(void)
298 {
299         struct ceph_options *opt;
300
301         opt = kzalloc(sizeof(*opt), GFP_KERNEL);
302         if (!opt)
303                 return NULL;
304
305         opt->mon_addr = kcalloc(CEPH_MAX_MON, sizeof(*opt->mon_addr),
306                                 GFP_KERNEL);
307         if (!opt->mon_addr) {
308                 kfree(opt);
309                 return NULL;
310         }
311
312         opt->flags = CEPH_OPT_DEFAULT;
313         opt->osd_keepalive_timeout = CEPH_OSD_KEEPALIVE_DEFAULT;
314         opt->mount_timeout = CEPH_MOUNT_TIMEOUT_DEFAULT;
315         opt->osd_idle_ttl = CEPH_OSD_IDLE_TTL_DEFAULT;
316         opt->osd_request_timeout = CEPH_OSD_REQUEST_TIMEOUT_DEFAULT;
317         return opt;
318 }
319 EXPORT_SYMBOL(ceph_alloc_options);
320
321 void ceph_destroy_options(struct ceph_options *opt)
322 {
323         dout("destroy_options %p\n", opt);
324         if (!opt)
325                 return;
326
327         kfree(opt->name);
328         if (opt->key) {
329                 ceph_crypto_key_destroy(opt->key);
330                 kfree(opt->key);
331         }
332         kfree(opt->mon_addr);
333         kfree(opt);
334 }
335 EXPORT_SYMBOL(ceph_destroy_options);
336
337 /* get secret from key store */
338 static int get_secret(struct ceph_crypto_key *dst, const char *name,
339                       struct p_log *log)
340 {
341         struct key *ukey;
342         int key_err;
343         int err = 0;
344         struct ceph_crypto_key *ckey;
345
346         ukey = request_key(&key_type_ceph, name, NULL);
347         if (IS_ERR(ukey)) {
348                 /* request_key errors don't map nicely to mount(2)
349                    errors; don't even try, but still printk */
350                 key_err = PTR_ERR(ukey);
351                 switch (key_err) {
352                 case -ENOKEY:
353                         error_plog(log, "Failed due to key not found: %s",
354                                name);
355                         break;
356                 case -EKEYEXPIRED:
357                         error_plog(log, "Failed due to expired key: %s",
358                                name);
359                         break;
360                 case -EKEYREVOKED:
361                         error_plog(log, "Failed due to revoked key: %s",
362                                name);
363                         break;
364                 default:
365                         error_plog(log, "Failed due to key error %d: %s",
366                                key_err, name);
367                 }
368                 err = -EPERM;
369                 goto out;
370         }
371
372         ckey = ukey->payload.data[0];
373         err = ceph_crypto_key_clone(dst, ckey);
374         if (err)
375                 goto out_key;
376         /* pass through, err is 0 */
377
378 out_key:
379         key_put(ukey);
380 out:
381         return err;
382 }
383
384 int ceph_parse_mon_ips(const char *buf, size_t len, struct ceph_options *opt,
385                        struct fc_log *l)
386 {
387         struct p_log log = {.prefix = "libceph", .log = l};
388         int ret;
389
390         /* ip1[:port1][,ip2[:port2]...] */
391         ret = ceph_parse_ips(buf, buf + len, opt->mon_addr, CEPH_MAX_MON,
392                              &opt->num_mon);
393         if (ret) {
394                 error_plog(&log, "Failed to parse monitor IPs: %d", ret);
395                 return ret;
396         }
397
398         return 0;
399 }
400 EXPORT_SYMBOL(ceph_parse_mon_ips);
401
402 int ceph_parse_param(struct fs_parameter *param, struct ceph_options *opt,
403                      struct fc_log *l)
404 {
405         struct fs_parse_result result;
406         int token, err;
407         struct p_log log = {.prefix = "libceph", .log = l};
408
409         token = __fs_parse(&log, &ceph_parameters, param, &result);
410         dout("%s fs_parse '%s' token %d\n", __func__, param->key, token);
411         if (token < 0)
412                 return token;
413
414         switch (token) {
415         case Opt_ip:
416                 err = ceph_parse_ips(param->string,
417                                      param->string + param->size,
418                                      &opt->my_addr,
419                                      1, NULL);
420                 if (err) {
421                         error_plog(&log, "Failed to parse ip: %d", err);
422                         return err;
423                 }
424                 opt->flags |= CEPH_OPT_MYIP;
425                 break;
426
427         case Opt_fsid:
428                 err = parse_fsid(param->string, &opt->fsid);
429                 if (err) {
430                         error_plog(&log, "Failed to parse fsid: %d", err);
431                         return err;
432                 }
433                 opt->flags |= CEPH_OPT_FSID;
434                 break;
435         case Opt_name:
436                 kfree(opt->name);
437                 opt->name = param->string;
438                 param->string = NULL;
439                 break;
440         case Opt_secret:
441                 ceph_crypto_key_destroy(opt->key);
442                 kfree(opt->key);
443
444                 opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL);
445                 if (!opt->key)
446                         return -ENOMEM;
447                 err = ceph_crypto_key_unarmor(opt->key, param->string);
448                 if (err) {
449                         error_plog(&log, "Failed to parse secret: %d", err);
450                         return err;
451                 }
452                 break;
453         case Opt_key:
454                 ceph_crypto_key_destroy(opt->key);
455                 kfree(opt->key);
456
457                 opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL);
458                 if (!opt->key)
459                         return -ENOMEM;
460                 return get_secret(opt->key, param->string, &log);
461
462         case Opt_osdtimeout:
463                 warn_plog(&log, "Ignoring osdtimeout");
464                 break;
465         case Opt_osdkeepalivetimeout:
466                 /* 0 isn't well defined right now, reject it */
467                 if (result.uint_32 < 1 || result.uint_32 > INT_MAX / 1000)
468                         goto out_of_range;
469                 opt->osd_keepalive_timeout =
470                     msecs_to_jiffies(result.uint_32 * 1000);
471                 break;
472         case Opt_osd_idle_ttl:
473                 /* 0 isn't well defined right now, reject it */
474                 if (result.uint_32 < 1 || result.uint_32 > INT_MAX / 1000)
475                         goto out_of_range;
476                 opt->osd_idle_ttl = msecs_to_jiffies(result.uint_32 * 1000);
477                 break;
478         case Opt_mount_timeout:
479                 /* 0 is "wait forever" (i.e. infinite timeout) */
480                 if (result.uint_32 > INT_MAX / 1000)
481                         goto out_of_range;
482                 opt->mount_timeout = msecs_to_jiffies(result.uint_32 * 1000);
483                 break;
484         case Opt_osd_request_timeout:
485                 /* 0 is "wait forever" (i.e. infinite timeout) */
486                 if (result.uint_32 > INT_MAX / 1000)
487                         goto out_of_range;
488                 opt->osd_request_timeout =
489                     msecs_to_jiffies(result.uint_32 * 1000);
490                 break;
491
492         case Opt_share:
493                 if (!result.negated)
494                         opt->flags &= ~CEPH_OPT_NOSHARE;
495                 else
496                         opt->flags |= CEPH_OPT_NOSHARE;
497                 break;
498         case Opt_crc:
499                 if (!result.negated)
500                         opt->flags &= ~CEPH_OPT_NOCRC;
501                 else
502                         opt->flags |= CEPH_OPT_NOCRC;
503                 break;
504         case Opt_cephx_require_signatures:
505                 if (!result.negated)
506                         opt->flags &= ~CEPH_OPT_NOMSGAUTH;
507                 else
508                         opt->flags |= CEPH_OPT_NOMSGAUTH;
509                 break;
510         case Opt_cephx_sign_messages:
511                 if (!result.negated)
512                         opt->flags &= ~CEPH_OPT_NOMSGSIGN;
513                 else
514                         opt->flags |= CEPH_OPT_NOMSGSIGN;
515                 break;
516         case Opt_tcp_nodelay:
517                 if (!result.negated)
518                         opt->flags |= CEPH_OPT_TCP_NODELAY;
519                 else
520                         opt->flags &= ~CEPH_OPT_TCP_NODELAY;
521                 break;
522
523         case Opt_abort_on_full:
524                 opt->flags |= CEPH_OPT_ABORT_ON_FULL;
525                 break;
526
527         default:
528                 BUG();
529         }
530
531         return 0;
532
533 out_of_range:
534         return inval_plog(&log, "%s out of range", param->key);
535 }
536 EXPORT_SYMBOL(ceph_parse_param);
537
538 int ceph_print_client_options(struct seq_file *m, struct ceph_client *client,
539                               bool show_all)
540 {
541         struct ceph_options *opt = client->options;
542         size_t pos = m->count;
543
544         if (opt->name) {
545                 seq_puts(m, "name=");
546                 seq_escape(m, opt->name, ", \t\n\\");
547                 seq_putc(m, ',');
548         }
549         if (opt->key)
550                 seq_puts(m, "secret=<hidden>,");
551
552         if (opt->flags & CEPH_OPT_FSID)
553                 seq_printf(m, "fsid=%pU,", &opt->fsid);
554         if (opt->flags & CEPH_OPT_NOSHARE)
555                 seq_puts(m, "noshare,");
556         if (opt->flags & CEPH_OPT_NOCRC)
557                 seq_puts(m, "nocrc,");
558         if (opt->flags & CEPH_OPT_NOMSGAUTH)
559                 seq_puts(m, "nocephx_require_signatures,");
560         if (opt->flags & CEPH_OPT_NOMSGSIGN)
561                 seq_puts(m, "nocephx_sign_messages,");
562         if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0)
563                 seq_puts(m, "notcp_nodelay,");
564         if (show_all && (opt->flags & CEPH_OPT_ABORT_ON_FULL))
565                 seq_puts(m, "abort_on_full,");
566
567         if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
568                 seq_printf(m, "mount_timeout=%d,",
569                            jiffies_to_msecs(opt->mount_timeout) / 1000);
570         if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
571                 seq_printf(m, "osd_idle_ttl=%d,",
572                            jiffies_to_msecs(opt->osd_idle_ttl) / 1000);
573         if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
574                 seq_printf(m, "osdkeepalivetimeout=%d,",
575                     jiffies_to_msecs(opt->osd_keepalive_timeout) / 1000);
576         if (opt->osd_request_timeout != CEPH_OSD_REQUEST_TIMEOUT_DEFAULT)
577                 seq_printf(m, "osd_request_timeout=%d,",
578                            jiffies_to_msecs(opt->osd_request_timeout) / 1000);
579
580         /* drop redundant comma */
581         if (m->count != pos)
582                 m->count--;
583
584         return 0;
585 }
586 EXPORT_SYMBOL(ceph_print_client_options);
587
588 struct ceph_entity_addr *ceph_client_addr(struct ceph_client *client)
589 {
590         return &client->msgr.inst.addr;
591 }
592 EXPORT_SYMBOL(ceph_client_addr);
593
594 u64 ceph_client_gid(struct ceph_client *client)
595 {
596         return client->monc.auth->global_id;
597 }
598 EXPORT_SYMBOL(ceph_client_gid);
599
600 /*
601  * create a fresh client instance
602  */
603 struct ceph_client *ceph_create_client(struct ceph_options *opt, void *private)
604 {
605         struct ceph_client *client;
606         struct ceph_entity_addr *myaddr = NULL;
607         int err;
608
609         err = wait_for_random_bytes();
610         if (err < 0)
611                 return ERR_PTR(err);
612
613         client = kzalloc(sizeof(*client), GFP_KERNEL);
614         if (client == NULL)
615                 return ERR_PTR(-ENOMEM);
616
617         client->private = private;
618         client->options = opt;
619
620         mutex_init(&client->mount_mutex);
621         init_waitqueue_head(&client->auth_wq);
622         client->auth_err = 0;
623
624         client->extra_mon_dispatch = NULL;
625         client->supported_features = CEPH_FEATURES_SUPPORTED_DEFAULT;
626         client->required_features = CEPH_FEATURES_REQUIRED_DEFAULT;
627
628         if (!ceph_test_opt(client, NOMSGAUTH))
629                 client->required_features |= CEPH_FEATURE_MSG_AUTH;
630
631         /* msgr */
632         if (ceph_test_opt(client, MYIP))
633                 myaddr = &client->options->my_addr;
634
635         ceph_messenger_init(&client->msgr, myaddr);
636
637         /* subsystems */
638         err = ceph_monc_init(&client->monc, client);
639         if (err < 0)
640                 goto fail;
641         err = ceph_osdc_init(&client->osdc, client);
642         if (err < 0)
643                 goto fail_monc;
644
645         return client;
646
647 fail_monc:
648         ceph_monc_stop(&client->monc);
649 fail:
650         ceph_messenger_fini(&client->msgr);
651         kfree(client);
652         return ERR_PTR(err);
653 }
654 EXPORT_SYMBOL(ceph_create_client);
655
656 void ceph_destroy_client(struct ceph_client *client)
657 {
658         dout("destroy_client %p\n", client);
659
660         atomic_set(&client->msgr.stopping, 1);
661
662         /* unmount */
663         ceph_osdc_stop(&client->osdc);
664         ceph_monc_stop(&client->monc);
665         ceph_messenger_fini(&client->msgr);
666
667         ceph_debugfs_client_cleanup(client);
668
669         ceph_destroy_options(client->options);
670
671         kfree(client);
672         dout("destroy_client %p done\n", client);
673 }
674 EXPORT_SYMBOL(ceph_destroy_client);
675
676 void ceph_reset_client_addr(struct ceph_client *client)
677 {
678         ceph_messenger_reset_nonce(&client->msgr);
679         ceph_monc_reopen_session(&client->monc);
680         ceph_osdc_reopen_osds(&client->osdc);
681 }
682 EXPORT_SYMBOL(ceph_reset_client_addr);
683
684 /*
685  * true if we have the mon map (and have thus joined the cluster)
686  */
687 static bool have_mon_and_osd_map(struct ceph_client *client)
688 {
689         return client->monc.monmap && client->monc.monmap->epoch &&
690                client->osdc.osdmap && client->osdc.osdmap->epoch;
691 }
692
693 /*
694  * mount: join the ceph cluster, and open root directory.
695  */
696 int __ceph_open_session(struct ceph_client *client, unsigned long started)
697 {
698         unsigned long timeout = client->options->mount_timeout;
699         long err;
700
701         /* open session, and wait for mon and osd maps */
702         err = ceph_monc_open_session(&client->monc);
703         if (err < 0)
704                 return err;
705
706         while (!have_mon_and_osd_map(client)) {
707                 if (timeout && time_after_eq(jiffies, started + timeout))
708                         return -ETIMEDOUT;
709
710                 /* wait */
711                 dout("mount waiting for mon_map\n");
712                 err = wait_event_interruptible_timeout(client->auth_wq,
713                         have_mon_and_osd_map(client) || (client->auth_err < 0),
714                         ceph_timeout_jiffies(timeout));
715                 if (err < 0)
716                         return err;
717                 if (client->auth_err < 0)
718                         return client->auth_err;
719         }
720
721         pr_info("client%llu fsid %pU\n", ceph_client_gid(client),
722                 &client->fsid);
723         ceph_debugfs_client_init(client);
724
725         return 0;
726 }
727 EXPORT_SYMBOL(__ceph_open_session);
728
729 int ceph_open_session(struct ceph_client *client)
730 {
731         int ret;
732         unsigned long started = jiffies;  /* note the start time */
733
734         dout("open_session start\n");
735         mutex_lock(&client->mount_mutex);
736
737         ret = __ceph_open_session(client, started);
738
739         mutex_unlock(&client->mount_mutex);
740         return ret;
741 }
742 EXPORT_SYMBOL(ceph_open_session);
743
744 int ceph_wait_for_latest_osdmap(struct ceph_client *client,
745                                 unsigned long timeout)
746 {
747         u64 newest_epoch;
748         int ret;
749
750         ret = ceph_monc_get_version(&client->monc, "osdmap", &newest_epoch);
751         if (ret)
752                 return ret;
753
754         if (client->osdc.osdmap->epoch >= newest_epoch)
755                 return 0;
756
757         ceph_osdc_maybe_request_map(&client->osdc);
758         return ceph_monc_wait_osdmap(&client->monc, newest_epoch, timeout);
759 }
760 EXPORT_SYMBOL(ceph_wait_for_latest_osdmap);
761
762 static int __init init_ceph_lib(void)
763 {
764         int ret = 0;
765
766         ceph_debugfs_init();
767
768         ret = ceph_crypto_init();
769         if (ret < 0)
770                 goto out_debugfs;
771
772         ret = ceph_msgr_init();
773         if (ret < 0)
774                 goto out_crypto;
775
776         ret = ceph_osdc_setup();
777         if (ret < 0)
778                 goto out_msgr;
779
780         pr_info("loaded (mon/osd proto %d/%d)\n",
781                 CEPH_MONC_PROTOCOL, CEPH_OSDC_PROTOCOL);
782
783         return 0;
784
785 out_msgr:
786         ceph_msgr_exit();
787 out_crypto:
788         ceph_crypto_shutdown();
789 out_debugfs:
790         ceph_debugfs_cleanup();
791         return ret;
792 }
793
794 static void __exit exit_ceph_lib(void)
795 {
796         dout("exit_ceph_lib\n");
797         WARN_ON(!ceph_strings_empty());
798
799         ceph_osdc_cleanup();
800         ceph_msgr_exit();
801         ceph_crypto_shutdown();
802         ceph_debugfs_cleanup();
803 }
804
805 module_init(init_ceph_lib);
806 module_exit(exit_ceph_lib);
807
808 MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
809 MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
810 MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
811 MODULE_DESCRIPTION("Ceph core library");
812 MODULE_LICENSE("GPL");