blob: 18c4b34bd6e04c76cd037a9aaabcbfe1c3d0d490 [file] [log] [blame]
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -07001
2#include <linux/ceph/ceph_debug.h>
3#include <linux/backing-dev.h>
4#include <linux/ctype.h>
5#include <linux/fs.h>
6#include <linux/inet.h>
7#include <linux/in6.h>
Tommi Virtanene2c3d292011-03-25 16:40:48 -07008#include <linux/key.h>
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -07009#include <keys/ceph-type.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070010#include <linux/module.h>
11#include <linux/mount.h>
Ilya Dryomov757856d2015-06-25 17:47:45 +030012#include <linux/nsproxy.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070013#include <linux/parser.h>
14#include <linux/sched.h>
15#include <linux/seq_file.h>
16#include <linux/slab.h>
17#include <linux/statfs.h>
18#include <linux/string.h>
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +020019#include <linux/vmalloc.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070020
21
Sage Weil1fe60e52012-07-30 16:23:22 -070022#include <linux/ceph/ceph_features.h>
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070023#include <linux/ceph/libceph.h>
24#include <linux/ceph/debugfs.h>
25#include <linux/ceph/decode.h>
26#include <linux/ceph/mon_client.h>
27#include <linux/ceph/auth.h>
Tommi Virtanen8323c3a2011-03-25 16:32:57 -070028#include "crypto.h"
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070029
30
Alex Elder72fe25e2013-01-30 11:13:33 -060031/*
32 * Module compatibility interface. For now it doesn't do anything,
33 * but its existence signals a certain level of functionality.
34 *
35 * The data buffer is used to pass information both to and from
36 * libceph. The return value indicates whether libceph determines
37 * it is compatible with the caller (from another kernel module),
38 * given the provided data.
39 *
40 * The data pointer can be null.
41 */
42bool libceph_compatible(void *data)
43{
Alex Elder1e32d342013-01-30 11:13:33 -060044 return true;
Alex Elder72fe25e2013-01-30 11:13:33 -060045}
46EXPORT_SYMBOL(libceph_compatible);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070047
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070048const char *ceph_msg_type_name(int type)
49{
50 switch (type) {
51 case CEPH_MSG_SHUTDOWN: return "shutdown";
52 case CEPH_MSG_PING: return "ping";
53 case CEPH_MSG_AUTH: return "auth";
54 case CEPH_MSG_AUTH_REPLY: return "auth_reply";
55 case CEPH_MSG_MON_MAP: return "mon_map";
56 case CEPH_MSG_MON_GET_MAP: return "mon_get_map";
57 case CEPH_MSG_MON_SUBSCRIBE: return "mon_subscribe";
58 case CEPH_MSG_MON_SUBSCRIBE_ACK: return "mon_subscribe_ack";
59 case CEPH_MSG_STATFS: return "statfs";
60 case CEPH_MSG_STATFS_REPLY: return "statfs_reply";
Ilya Dryomov513a8242014-05-13 11:19:26 +040061 case CEPH_MSG_MON_GET_VERSION: return "mon_get_version";
62 case CEPH_MSG_MON_GET_VERSION_REPLY: return "mon_get_version_reply";
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070063 case CEPH_MSG_MDS_MAP: return "mds_map";
64 case CEPH_MSG_CLIENT_SESSION: return "client_session";
65 case CEPH_MSG_CLIENT_RECONNECT: return "client_reconnect";
66 case CEPH_MSG_CLIENT_REQUEST: return "client_request";
67 case CEPH_MSG_CLIENT_REQUEST_FORWARD: return "client_request_forward";
68 case CEPH_MSG_CLIENT_REPLY: return "client_reply";
69 case CEPH_MSG_CLIENT_CAPS: return "client_caps";
70 case CEPH_MSG_CLIENT_CAPRELEASE: return "client_cap_release";
71 case CEPH_MSG_CLIENT_SNAP: return "client_snap";
72 case CEPH_MSG_CLIENT_LEASE: return "client_lease";
73 case CEPH_MSG_OSD_MAP: return "osd_map";
74 case CEPH_MSG_OSD_OP: return "osd_op";
75 case CEPH_MSG_OSD_OPREPLY: return "osd_opreply";
Yehuda Sadeha40c4f12011-03-21 15:07:16 -070076 case CEPH_MSG_WATCH_NOTIFY: return "watch_notify";
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070077 default: return "unknown";
78 }
79}
80EXPORT_SYMBOL(ceph_msg_type_name);
81
82/*
83 * Initially learn our fsid, or verify an fsid matches.
84 */
85int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid)
86{
87 if (client->have_fsid) {
88 if (ceph_fsid_compare(&client->fsid, fsid)) {
89 pr_err("bad fsid, had %pU got %pU",
90 &client->fsid, fsid);
91 return -1;
92 }
93 } else {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070094 memcpy(&client->fsid, fsid, sizeof(*fsid));
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -070095 }
96 return 0;
97}
98EXPORT_SYMBOL(ceph_check_fsid);
99
100static int strcmp_null(const char *s1, const char *s2)
101{
102 if (!s1 && !s2)
103 return 0;
104 if (s1 && !s2)
105 return -1;
106 if (!s1 && s2)
107 return 1;
108 return strcmp(s1, s2);
109}
110
111int ceph_compare_options(struct ceph_options *new_opt,
112 struct ceph_client *client)
113{
114 struct ceph_options *opt1 = new_opt;
115 struct ceph_options *opt2 = client->options;
116 int ofs = offsetof(struct ceph_options, mon_addr);
117 int i;
118 int ret;
119
Ilya Dryomov757856d2015-06-25 17:47:45 +0300120 /*
121 * Don't bother comparing options if network namespaces don't
122 * match.
123 */
124 if (!net_eq(current->nsproxy->net_ns, read_pnet(&client->msgr.net)))
125 return -1;
126
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700127 ret = memcmp(opt1, opt2, ofs);
128 if (ret)
129 return ret;
130
131 ret = strcmp_null(opt1->name, opt2->name);
132 if (ret)
133 return ret;
134
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700135 if (opt1->key && !opt2->key)
136 return -1;
137 if (!opt1->key && opt2->key)
138 return 1;
139 if (opt1->key && opt2->key) {
140 if (opt1->key->type != opt2->key->type)
141 return -1;
142 if (opt1->key->created.tv_sec != opt2->key->created.tv_sec)
143 return -1;
144 if (opt1->key->created.tv_nsec != opt2->key->created.tv_nsec)
145 return -1;
146 if (opt1->key->len != opt2->key->len)
147 return -1;
148 if (opt1->key->key && !opt2->key->key)
149 return -1;
150 if (!opt1->key->key && opt2->key->key)
151 return 1;
152 if (opt1->key->key && opt2->key->key) {
153 ret = memcmp(opt1->key->key, opt2->key->key, opt1->key->len);
154 if (ret)
155 return ret;
156 }
157 }
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700158
159 /* any matching mon ip implies a match */
160 for (i = 0; i < opt1->num_mon; i++) {
161 if (ceph_monmap_contains(client->monc.monmap,
162 &opt1->mon_addr[i]))
163 return 0;
164 }
165 return -1;
166}
167EXPORT_SYMBOL(ceph_compare_options);
168
Ilya Dryomoveeb0bed2014-01-09 20:08:21 +0200169void *ceph_kvmalloc(size_t size, gfp_t flags)
170{
171 if (size <= (PAGE_SIZE << PAGE_ALLOC_COSTLY_ORDER)) {
172 void *ptr = kmalloc(size, flags | __GFP_NOWARN);
173 if (ptr)
174 return ptr;
175 }
176
177 return __vmalloc(size, flags | __GFP_HIGHMEM, PAGE_KERNEL);
178}
179
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700180
181static int parse_fsid(const char *str, struct ceph_fsid *fsid)
182{
183 int i = 0;
184 char tmp[3];
185 int err = -EINVAL;
186 int d;
187
188 dout("parse_fsid '%s'\n", str);
189 tmp[2] = 0;
190 while (*str && i < 16) {
191 if (ispunct(*str)) {
192 str++;
193 continue;
194 }
195 if (!isxdigit(str[0]) || !isxdigit(str[1]))
196 break;
197 tmp[0] = str[0];
198 tmp[1] = str[1];
199 if (sscanf(tmp, "%x", &d) < 1)
200 break;
201 fsid->fsid[i] = d & 0xff;
202 i++;
203 str += 2;
204 }
205
206 if (i == 16)
207 err = 0;
208 dout("parse_fsid ret %d got fsid %pU", err, fsid);
209 return err;
210}
211
212/*
213 * ceph options
214 */
215enum {
216 Opt_osdtimeout,
217 Opt_osdkeepalivetimeout,
218 Opt_mount_timeout,
219 Opt_osd_idle_ttl,
220 Opt_last_int,
221 /* int args above */
222 Opt_fsid,
223 Opt_name,
224 Opt_secret,
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700225 Opt_key,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700226 Opt_ip,
227 Opt_last_string,
228 /* string args above */
Alex Eldercffaba12012-02-15 07:43:54 -0600229 Opt_share,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700230 Opt_noshare,
Alex Eldercffaba12012-02-15 07:43:54 -0600231 Opt_crc,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700232 Opt_nocrc,
Yan, Zhenga3fc9802014-11-11 16:30:55 +0800233 Opt_cephx_require_signatures,
234 Opt_nocephx_require_signatures,
Ilya Dryomova51983e2015-10-28 23:52:06 +0100235 Opt_cephx_sign_messages,
236 Opt_nocephx_sign_messages,
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530237 Opt_tcp_nodelay,
238 Opt_notcp_nodelay,
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700239};
240
241static match_table_t opt_tokens = {
242 {Opt_osdtimeout, "osdtimeout=%d"},
243 {Opt_osdkeepalivetimeout, "osdkeepalive=%d"},
244 {Opt_mount_timeout, "mount_timeout=%d"},
245 {Opt_osd_idle_ttl, "osd_idle_ttl=%d"},
246 /* int args above */
247 {Opt_fsid, "fsid=%s"},
248 {Opt_name, "name=%s"},
249 {Opt_secret, "secret=%s"},
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700250 {Opt_key, "key=%s"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700251 {Opt_ip, "ip=%s"},
252 /* string args above */
Alex Eldercffaba12012-02-15 07:43:54 -0600253 {Opt_share, "share"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700254 {Opt_noshare, "noshare"},
Alex Eldercffaba12012-02-15 07:43:54 -0600255 {Opt_crc, "crc"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700256 {Opt_nocrc, "nocrc"},
Yan, Zhenga3fc9802014-11-11 16:30:55 +0800257 {Opt_cephx_require_signatures, "cephx_require_signatures"},
258 {Opt_nocephx_require_signatures, "nocephx_require_signatures"},
Ilya Dryomova51983e2015-10-28 23:52:06 +0100259 {Opt_cephx_sign_messages, "cephx_sign_messages"},
260 {Opt_nocephx_sign_messages, "nocephx_sign_messages"},
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530261 {Opt_tcp_nodelay, "tcp_nodelay"},
262 {Opt_notcp_nodelay, "notcp_nodelay"},
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700263 {-1, NULL}
264};
265
266void ceph_destroy_options(struct ceph_options *opt)
267{
268 dout("destroy_options %p\n", opt);
269 kfree(opt->name);
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700270 if (opt->key) {
271 ceph_crypto_key_destroy(opt->key);
272 kfree(opt->key);
273 }
Noah Watkins1cad7892011-09-12 14:51:53 -0700274 kfree(opt->mon_addr);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700275 kfree(opt);
276}
277EXPORT_SYMBOL(ceph_destroy_options);
278
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700279/* get secret from key store */
280static int get_secret(struct ceph_crypto_key *dst, const char *name) {
281 struct key *ukey;
282 int key_err;
283 int err = 0;
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700284 struct ceph_crypto_key *ckey;
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700285
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700286 ukey = request_key(&key_type_ceph, name, NULL);
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700287 if (!ukey || IS_ERR(ukey)) {
288 /* request_key errors don't map nicely to mount(2)
289 errors; don't even try, but still printk */
290 key_err = PTR_ERR(ukey);
291 switch (key_err) {
292 case -ENOKEY:
Joe Perchesb9a67892014-09-09 21:17:29 -0700293 pr_warn("ceph: Mount failed due to key not found: %s\n",
294 name);
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700295 break;
296 case -EKEYEXPIRED:
Joe Perchesb9a67892014-09-09 21:17:29 -0700297 pr_warn("ceph: Mount failed due to expired key: %s\n",
298 name);
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700299 break;
300 case -EKEYREVOKED:
Joe Perchesb9a67892014-09-09 21:17:29 -0700301 pr_warn("ceph: Mount failed due to revoked key: %s\n",
302 name);
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700303 break;
304 default:
Joe Perchesb9a67892014-09-09 21:17:29 -0700305 pr_warn("ceph: Mount failed due to unknown key error %d: %s\n",
306 key_err, name);
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700307 }
308 err = -EPERM;
309 goto out;
310 }
311
David Howells146aa8b2015-10-21 14:04:48 +0100312 ckey = ukey->payload.data[0];
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700313 err = ceph_crypto_key_clone(dst, ckey);
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700314 if (err)
315 goto out_key;
316 /* pass through, err is 0 */
317
318out_key:
319 key_put(ukey);
320out:
321 return err;
322}
323
Alex Elderee577412012-01-24 10:08:36 -0600324struct ceph_options *
325ceph_parse_options(char *options, const char *dev_name,
326 const char *dev_name_end,
327 int (*parse_extra_token)(char *c, void *private),
328 void *private)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700329{
330 struct ceph_options *opt;
331 const char *c;
332 int err = -ENOMEM;
333 substring_t argstr[MAX_OPT_ARGS];
334
335 opt = kzalloc(sizeof(*opt), GFP_KERNEL);
336 if (!opt)
Alex Elderee577412012-01-24 10:08:36 -0600337 return ERR_PTR(-ENOMEM);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700338 opt->mon_addr = kcalloc(CEPH_MAX_MON, sizeof(*opt->mon_addr),
339 GFP_KERNEL);
340 if (!opt->mon_addr)
341 goto out;
342
343 dout("parse_options %p options '%s' dev_name '%s'\n", opt, options,
344 dev_name);
345
346 /* start with defaults */
347 opt->flags = CEPH_OPT_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700348 opt->osd_keepalive_timeout = CEPH_OSD_KEEPALIVE_DEFAULT;
Ilya Dryomova319bf52015-05-15 12:02:17 +0300349 opt->mount_timeout = CEPH_MOUNT_TIMEOUT_DEFAULT;
350 opt->osd_idle_ttl = CEPH_OSD_IDLE_TTL_DEFAULT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700351
352 /* get mon ip(s) */
353 /* ip1[:port1][,ip2[:port2]...] */
354 err = ceph_parse_ips(dev_name, dev_name_end, opt->mon_addr,
355 CEPH_MAX_MON, &opt->num_mon);
356 if (err < 0)
357 goto out;
358
359 /* parse mount options */
360 while ((c = strsep(&options, ",")) != NULL) {
361 int token, intval, ret;
362 if (!*c)
363 continue;
364 err = -EINVAL;
365 token = match_token((char *)c, opt_tokens, argstr);
Yehuda Sadeh010e3b42010-09-30 11:58:31 -0700366 if (token < 0 && parse_extra_token) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700367 /* extra? */
368 err = parse_extra_token((char *)c, private);
369 if (err < 0) {
370 pr_err("bad option at '%s'\n", c);
371 goto out;
372 }
373 continue;
374 }
375 if (token < Opt_last_int) {
376 ret = match_int(&argstr[0], &intval);
377 if (ret < 0) {
378 pr_err("bad mount option arg (not int) "
379 "at '%s'\n", c);
380 continue;
381 }
382 dout("got int token %d val %d\n", token, intval);
383 } else if (token > Opt_last_int && token < Opt_last_string) {
384 dout("got string token %d val %s\n", token,
385 argstr[0].from);
386 } else {
387 dout("got token %d\n", token);
388 }
389 switch (token) {
390 case Opt_ip:
391 err = ceph_parse_ips(argstr[0].from,
392 argstr[0].to,
393 &opt->my_addr,
394 1, NULL);
395 if (err < 0)
396 goto out;
397 opt->flags |= CEPH_OPT_MYIP;
398 break;
399
400 case Opt_fsid:
401 err = parse_fsid(argstr[0].from, &opt->fsid);
402 if (err == 0)
403 opt->flags |= CEPH_OPT_FSID;
404 break;
405 case Opt_name:
406 opt->name = kstrndup(argstr[0].from,
407 argstr[0].to-argstr[0].from,
408 GFP_KERNEL);
409 break;
410 case Opt_secret:
Tommi Virtanen8323c3a2011-03-25 16:32:57 -0700411 opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL);
412 if (!opt->key) {
413 err = -ENOMEM;
414 goto out;
415 }
416 err = ceph_crypto_key_unarmor(opt->key, argstr[0].from);
417 if (err < 0)
418 goto out;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700419 break;
Tommi Virtanene2c3d292011-03-25 16:40:48 -0700420 case Opt_key:
421 opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL);
422 if (!opt->key) {
423 err = -ENOMEM;
424 goto out;
425 }
426 err = get_secret(opt->key, argstr[0].from);
427 if (err < 0)
428 goto out;
429 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700430
431 /* misc */
432 case Opt_osdtimeout:
Joe Perchesb9a67892014-09-09 21:17:29 -0700433 pr_warn("ignoring deprecated osdtimeout option\n");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700434 break;
435 case Opt_osdkeepalivetimeout:
Ilya Dryomova319bf52015-05-15 12:02:17 +0300436 /* 0 isn't well defined right now, reject it */
437 if (intval < 1 || intval > INT_MAX / 1000) {
438 pr_err("osdkeepalive out of range\n");
439 err = -EINVAL;
440 goto out;
441 }
442 opt->osd_keepalive_timeout =
443 msecs_to_jiffies(intval * 1000);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700444 break;
445 case Opt_osd_idle_ttl:
Ilya Dryomova319bf52015-05-15 12:02:17 +0300446 /* 0 isn't well defined right now, reject it */
447 if (intval < 1 || intval > INT_MAX / 1000) {
448 pr_err("osd_idle_ttl out of range\n");
449 err = -EINVAL;
450 goto out;
451 }
452 opt->osd_idle_ttl = msecs_to_jiffies(intval * 1000);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700453 break;
454 case Opt_mount_timeout:
Ilya Dryomova319bf52015-05-15 12:02:17 +0300455 /* 0 is "wait forever" (i.e. infinite timeout) */
456 if (intval < 0 || intval > INT_MAX / 1000) {
457 pr_err("mount_timeout out of range\n");
458 err = -EINVAL;
459 goto out;
460 }
461 opt->mount_timeout = msecs_to_jiffies(intval * 1000);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700462 break;
463
Alex Eldercffaba12012-02-15 07:43:54 -0600464 case Opt_share:
465 opt->flags &= ~CEPH_OPT_NOSHARE;
466 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700467 case Opt_noshare:
468 opt->flags |= CEPH_OPT_NOSHARE;
469 break;
470
Alex Eldercffaba12012-02-15 07:43:54 -0600471 case Opt_crc:
472 opt->flags &= ~CEPH_OPT_NOCRC;
473 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700474 case Opt_nocrc:
475 opt->flags |= CEPH_OPT_NOCRC;
476 break;
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530477
Yan, Zhenga3fc9802014-11-11 16:30:55 +0800478 case Opt_cephx_require_signatures:
479 opt->flags &= ~CEPH_OPT_NOMSGAUTH;
480 break;
481 case Opt_nocephx_require_signatures:
482 opt->flags |= CEPH_OPT_NOMSGAUTH;
483 break;
Ilya Dryomova51983e2015-10-28 23:52:06 +0100484 case Opt_cephx_sign_messages:
485 opt->flags &= ~CEPH_OPT_NOMSGSIGN;
486 break;
487 case Opt_nocephx_sign_messages:
488 opt->flags |= CEPH_OPT_NOMSGSIGN;
489 break;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700490
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530491 case Opt_tcp_nodelay:
492 opt->flags |= CEPH_OPT_TCP_NODELAY;
493 break;
494 case Opt_notcp_nodelay:
495 opt->flags &= ~CEPH_OPT_TCP_NODELAY;
496 break;
497
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700498 default:
499 BUG_ON(token);
500 }
501 }
502
503 /* success */
Alex Elderee577412012-01-24 10:08:36 -0600504 return opt;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700505
506out:
507 ceph_destroy_options(opt);
Alex Elderee577412012-01-24 10:08:36 -0600508 return ERR_PTR(err);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700509}
510EXPORT_SYMBOL(ceph_parse_options);
511
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300512int ceph_print_client_options(struct seq_file *m, struct ceph_client *client)
513{
514 struct ceph_options *opt = client->options;
515 size_t pos = m->count;
516
Kees Cooka068acf2015-09-04 15:44:57 -0700517 if (opt->name) {
518 seq_puts(m, "name=");
519 seq_escape(m, opt->name, ", \t\n\\");
520 seq_putc(m, ',');
521 }
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300522 if (opt->key)
523 seq_puts(m, "secret=<hidden>,");
524
525 if (opt->flags & CEPH_OPT_FSID)
526 seq_printf(m, "fsid=%pU,", &opt->fsid);
527 if (opt->flags & CEPH_OPT_NOSHARE)
528 seq_puts(m, "noshare,");
529 if (opt->flags & CEPH_OPT_NOCRC)
530 seq_puts(m, "nocrc,");
531 if (opt->flags & CEPH_OPT_NOMSGAUTH)
532 seq_puts(m, "nocephx_require_signatures,");
Ilya Dryomova51983e2015-10-28 23:52:06 +0100533 if (opt->flags & CEPH_OPT_NOMSGSIGN)
534 seq_puts(m, "nocephx_sign_messages,");
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300535 if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0)
536 seq_puts(m, "notcp_nodelay,");
537
538 if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT)
Ilya Dryomova319bf52015-05-15 12:02:17 +0300539 seq_printf(m, "mount_timeout=%d,",
540 jiffies_to_msecs(opt->mount_timeout) / 1000);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300541 if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT)
Ilya Dryomova319bf52015-05-15 12:02:17 +0300542 seq_printf(m, "osd_idle_ttl=%d,",
543 jiffies_to_msecs(opt->osd_idle_ttl) / 1000);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300544 if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT)
545 seq_printf(m, "osdkeepalivetimeout=%d,",
Ilya Dryomova319bf52015-05-15 12:02:17 +0300546 jiffies_to_msecs(opt->osd_keepalive_timeout) / 1000);
Ilya Dryomovff40f9a2015-03-25 21:02:16 +0300547
548 /* drop redundant comma */
549 if (m->count != pos)
550 m->count--;
551
552 return 0;
553}
554EXPORT_SYMBOL(ceph_print_client_options);
555
Ilya Dryomov005a07bf2016-08-18 18:38:43 +0200556struct ceph_entity_addr *ceph_client_addr(struct ceph_client *client)
557{
558 return &client->msgr.inst.addr;
559}
560EXPORT_SYMBOL(ceph_client_addr);
561
Ilya Dryomov033268a2016-08-12 14:59:58 +0200562u64 ceph_client_gid(struct ceph_client *client)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700563{
564 return client->monc.auth->global_id;
565}
Ilya Dryomov033268a2016-08-12 14:59:58 +0200566EXPORT_SYMBOL(ceph_client_gid);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700567
568/*
569 * create a fresh client instance
570 */
Sage Weil6ab00d42011-08-09 09:41:59 -0700571struct ceph_client *ceph_create_client(struct ceph_options *opt, void *private,
Ilya Dryomov12b46292013-12-24 21:19:23 +0200572 u64 supported_features,
573 u64 required_features)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700574{
575 struct ceph_client *client;
Sage Weil6ab00d42011-08-09 09:41:59 -0700576 struct ceph_entity_addr *myaddr = NULL;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700577 int err = -ENOMEM;
578
579 client = kzalloc(sizeof(*client), GFP_KERNEL);
580 if (client == NULL)
581 return ERR_PTR(-ENOMEM);
582
583 client->private = private;
584 client->options = opt;
585
586 mutex_init(&client->mount_mutex);
587 init_waitqueue_head(&client->auth_wq);
588 client->auth_err = 0;
589
Yan, Zhenga3fc9802014-11-11 16:30:55 +0800590 if (!ceph_test_opt(client, NOMSGAUTH))
591 required_features |= CEPH_FEATURE_MSG_AUTH;
592
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700593 client->extra_mon_dispatch = NULL;
Sage Weil1fe60e52012-07-30 16:23:22 -0700594 client->supported_features = CEPH_FEATURES_SUPPORTED_DEFAULT |
Sage Weil6ab00d42011-08-09 09:41:59 -0700595 supported_features;
Sage Weil1fe60e52012-07-30 16:23:22 -0700596 client->required_features = CEPH_FEATURES_REQUIRED_DEFAULT |
Sage Weil6ab00d42011-08-09 09:41:59 -0700597 required_features;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700598
Sage Weil6ab00d42011-08-09 09:41:59 -0700599 /* msgr */
600 if (ceph_test_opt(client, MYIP))
601 myaddr = &client->options->my_addr;
Chaitanya Huilgolba988f82015-01-23 16:41:25 +0530602
Ilya Dryomov859bff52015-10-28 23:50:58 +0100603 ceph_messenger_init(&client->msgr, myaddr);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700604
605 /* subsystems */
606 err = ceph_monc_init(&client->monc, client);
607 if (err < 0)
Alex Elder15d98822012-05-26 23:26:43 -0500608 goto fail;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700609 err = ceph_osdc_init(&client->osdc, client);
610 if (err < 0)
611 goto fail_monc;
612
613 return client;
614
615fail_monc:
616 ceph_monc_stop(&client->monc);
617fail:
Ilya Dryomov757856d2015-06-25 17:47:45 +0300618 ceph_messenger_fini(&client->msgr);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700619 kfree(client);
620 return ERR_PTR(err);
621}
622EXPORT_SYMBOL(ceph_create_client);
623
624void ceph_destroy_client(struct ceph_client *client)
625{
626 dout("destroy_client %p\n", client);
627
Guanjun Hea2a32582012-07-08 19:50:33 -0700628 atomic_set(&client->msgr.stopping, 1);
629
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700630 /* unmount */
631 ceph_osdc_stop(&client->osdc);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700632 ceph_monc_stop(&client->monc);
Ilya Dryomov757856d2015-06-25 17:47:45 +0300633 ceph_messenger_fini(&client->msgr);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700634
635 ceph_debugfs_client_cleanup(client);
636
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700637 ceph_destroy_options(client->options);
638
639 kfree(client);
640 dout("destroy_client %p done\n", client);
641}
642EXPORT_SYMBOL(ceph_destroy_client);
643
644/*
645 * true if we have the mon map (and have thus joined the cluster)
646 */
Zhang Zhuoyu3b33f692016-03-25 05:18:39 -0400647static bool have_mon_and_osd_map(struct ceph_client *client)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700648{
649 return client->monc.monmap && client->monc.monmap->epoch &&
650 client->osdc.osdmap && client->osdc.osdmap->epoch;
651}
652
653/*
654 * mount: join the ceph cluster, and open root directory.
655 */
656int __ceph_open_session(struct ceph_client *client, unsigned long started)
657{
Ilya Dryomova319bf52015-05-15 12:02:17 +0300658 unsigned long timeout = client->options->mount_timeout;
Ilya Dryomov216639d2015-05-19 12:03:33 +0300659 long err;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700660
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700661 /* open session, and wait for mon and osd maps */
662 err = ceph_monc_open_session(&client->monc);
663 if (err < 0)
664 return err;
665
666 while (!have_mon_and_osd_map(client)) {
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700667 if (timeout && time_after_eq(jiffies, started + timeout))
Ilya Dryomov216639d2015-05-19 12:03:33 +0300668 return -ETIMEDOUT;
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700669
670 /* wait */
671 dout("mount waiting for mon_map\n");
672 err = wait_event_interruptible_timeout(client->auth_wq,
673 have_mon_and_osd_map(client) || (client->auth_err < 0),
Ilya Dryomova319bf52015-05-15 12:02:17 +0300674 ceph_timeout_jiffies(timeout));
Ilya Dryomov216639d2015-05-19 12:03:33 +0300675 if (err < 0)
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700676 return err;
677 if (client->auth_err < 0)
678 return client->auth_err;
679 }
680
Ilya Dryomov033268a2016-08-12 14:59:58 +0200681 pr_info("client%llu fsid %pU\n", ceph_client_gid(client),
682 &client->fsid);
Ilya Dryomov02ac9562016-01-06 12:56:21 +0300683 ceph_debugfs_client_init(client);
684
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700685 return 0;
686}
687EXPORT_SYMBOL(__ceph_open_session);
688
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700689int ceph_open_session(struct ceph_client *client)
690{
691 int ret;
692 unsigned long started = jiffies; /* note the start time */
693
694 dout("open_session start\n");
695 mutex_lock(&client->mount_mutex);
696
697 ret = __ceph_open_session(client, started);
698
699 mutex_unlock(&client->mount_mutex);
700 return ret;
701}
702EXPORT_SYMBOL(ceph_open_session);
703
Ilya Dryomov9c32ada2019-03-20 09:46:58 +0100704int ceph_wait_for_latest_osdmap(struct ceph_client *client,
705 unsigned long timeout)
706{
707 u64 newest_epoch;
708 int ret;
709
710 ret = ceph_monc_get_version(&client->monc, "osdmap", &newest_epoch);
711 if (ret)
712 return ret;
713
714 if (client->osdc.osdmap->epoch >= newest_epoch)
715 return 0;
716
717 ceph_osdc_maybe_request_map(&client->osdc);
718 return ceph_monc_wait_osdmap(&client->monc, newest_epoch, timeout);
719}
720EXPORT_SYMBOL(ceph_wait_for_latest_osdmap);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700721
722static int __init init_ceph_lib(void)
723{
724 int ret = 0;
725
726 ret = ceph_debugfs_init();
727 if (ret < 0)
728 goto out;
729
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700730 ret = ceph_crypto_init();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700731 if (ret < 0)
732 goto out_debugfs;
733
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700734 ret = ceph_msgr_init();
735 if (ret < 0)
736 goto out_crypto;
737
Alex Elder5522ae02013-05-01 12:43:04 -0500738 ret = ceph_osdc_setup();
739 if (ret < 0)
740 goto out_msgr;
741
Sage Weil4f6a7e52013-02-23 10:41:09 -0800742 pr_info("loaded (mon/osd proto %d/%d)\n",
743 CEPH_MONC_PROTOCOL, CEPH_OSDC_PROTOCOL);
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700744
745 return 0;
746
Alex Elder5522ae02013-05-01 12:43:04 -0500747out_msgr:
748 ceph_msgr_exit();
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700749out_crypto:
750 ceph_crypto_shutdown();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700751out_debugfs:
752 ceph_debugfs_cleanup();
753out:
754 return ret;
755}
756
757static void __exit exit_ceph_lib(void)
758{
759 dout("exit_ceph_lib\n");
Yan, Zheng51e92732016-02-05 15:36:22 +0800760 WARN_ON(!ceph_strings_empty());
761
Alex Elder5522ae02013-05-01 12:43:04 -0500762 ceph_osdc_cleanup();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700763 ceph_msgr_exit();
Tommi Virtanen4b2a58a2011-03-28 14:59:38 -0700764 ceph_crypto_shutdown();
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700765 ceph_debugfs_cleanup();
766}
767
768module_init(init_ceph_lib);
769module_exit(exit_ceph_lib);
770
771MODULE_AUTHOR("Sage Weil <sage@newdream.net>");
772MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>");
773MODULE_AUTHOR("Patience Warnick <patience@newdream.net>");
Hong Zhiguo6c13a6b2015-06-10 21:13:25 +0800774MODULE_DESCRIPTION("Ceph core library");
Yehuda Sadeh3d14c5d2010-04-06 15:14:15 -0700775MODULE_LICENSE("GPL");