109c434b8SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only 23d14c5d2SYehuda Sadeh 33d14c5d2SYehuda Sadeh #include <linux/ceph/ceph_debug.h> 43d14c5d2SYehuda Sadeh #include <linux/backing-dev.h> 53d14c5d2SYehuda Sadeh #include <linux/ctype.h> 63d14c5d2SYehuda Sadeh #include <linux/fs.h> 73d14c5d2SYehuda Sadeh #include <linux/inet.h> 83d14c5d2SYehuda Sadeh #include <linux/in6.h> 9e2c3d29bSTommi Virtanen #include <linux/key.h> 104b2a58abSTommi Virtanen #include <keys/ceph-type.h> 113d14c5d2SYehuda Sadeh #include <linux/module.h> 123d14c5d2SYehuda Sadeh #include <linux/mount.h> 13757856d2SIlya Dryomov #include <linux/nsproxy.h> 14*82995cc6SDavid Howells #include <linux/fs_parser.h> 153d14c5d2SYehuda Sadeh #include <linux/sched.h> 1610c12851SIlya Dryomov #include <linux/sched/mm.h> 173d14c5d2SYehuda Sadeh #include <linux/seq_file.h> 183d14c5d2SYehuda Sadeh #include <linux/slab.h> 193d14c5d2SYehuda Sadeh #include <linux/statfs.h> 203d14c5d2SYehuda Sadeh #include <linux/string.h> 21eeb0bed5SIlya Dryomov #include <linux/vmalloc.h> 223d14c5d2SYehuda Sadeh 233d14c5d2SYehuda Sadeh 241fe60e51SSage Weil #include <linux/ceph/ceph_features.h> 253d14c5d2SYehuda Sadeh #include <linux/ceph/libceph.h> 263d14c5d2SYehuda Sadeh #include <linux/ceph/debugfs.h> 273d14c5d2SYehuda Sadeh #include <linux/ceph/decode.h> 283d14c5d2SYehuda Sadeh #include <linux/ceph/mon_client.h> 293d14c5d2SYehuda Sadeh #include <linux/ceph/auth.h> 308323c3aaSTommi Virtanen #include "crypto.h" 313d14c5d2SYehuda Sadeh 323d14c5d2SYehuda Sadeh 3372fe25e3SAlex Elder /* 3472fe25e3SAlex Elder * Module compatibility interface. For now it doesn't do anything, 3572fe25e3SAlex Elder * but its existence signals a certain level of functionality. 3672fe25e3SAlex Elder * 3772fe25e3SAlex Elder * The data buffer is used to pass information both to and from 3872fe25e3SAlex Elder * libceph. The return value indicates whether libceph determines 3972fe25e3SAlex Elder * it is compatible with the caller (from another kernel module), 4072fe25e3SAlex Elder * given the provided data. 4172fe25e3SAlex Elder * 4272fe25e3SAlex Elder * The data pointer can be null. 4372fe25e3SAlex Elder */ 4472fe25e3SAlex Elder bool libceph_compatible(void *data) 4572fe25e3SAlex Elder { 461e32d34cSAlex Elder return true; 4772fe25e3SAlex Elder } 4872fe25e3SAlex Elder EXPORT_SYMBOL(libceph_compatible); 493d14c5d2SYehuda Sadeh 50d6a3408aSIlya Dryomov static int param_get_supported_features(char *buffer, 51d6a3408aSIlya Dryomov const struct kernel_param *kp) 52d6a3408aSIlya Dryomov { 53d6a3408aSIlya Dryomov return sprintf(buffer, "0x%llx", CEPH_FEATURES_SUPPORTED_DEFAULT); 54d6a3408aSIlya Dryomov } 55d6a3408aSIlya Dryomov static const struct kernel_param_ops param_ops_supported_features = { 56d6a3408aSIlya Dryomov .get = param_get_supported_features, 57d6a3408aSIlya Dryomov }; 58d6a3408aSIlya Dryomov module_param_cb(supported_features, ¶m_ops_supported_features, NULL, 59d6444062SJoe Perches 0444); 60d6a3408aSIlya Dryomov 613d14c5d2SYehuda Sadeh const char *ceph_msg_type_name(int type) 623d14c5d2SYehuda Sadeh { 633d14c5d2SYehuda Sadeh switch (type) { 643d14c5d2SYehuda Sadeh case CEPH_MSG_SHUTDOWN: return "shutdown"; 653d14c5d2SYehuda Sadeh case CEPH_MSG_PING: return "ping"; 663d14c5d2SYehuda Sadeh case CEPH_MSG_AUTH: return "auth"; 673d14c5d2SYehuda Sadeh case CEPH_MSG_AUTH_REPLY: return "auth_reply"; 683d14c5d2SYehuda Sadeh case CEPH_MSG_MON_MAP: return "mon_map"; 693d14c5d2SYehuda Sadeh case CEPH_MSG_MON_GET_MAP: return "mon_get_map"; 703d14c5d2SYehuda Sadeh case CEPH_MSG_MON_SUBSCRIBE: return "mon_subscribe"; 713d14c5d2SYehuda Sadeh case CEPH_MSG_MON_SUBSCRIBE_ACK: return "mon_subscribe_ack"; 723d14c5d2SYehuda Sadeh case CEPH_MSG_STATFS: return "statfs"; 733d14c5d2SYehuda Sadeh case CEPH_MSG_STATFS_REPLY: return "statfs_reply"; 74513a8243SIlya Dryomov case CEPH_MSG_MON_GET_VERSION: return "mon_get_version"; 75513a8243SIlya Dryomov case CEPH_MSG_MON_GET_VERSION_REPLY: return "mon_get_version_reply"; 763d14c5d2SYehuda Sadeh case CEPH_MSG_MDS_MAP: return "mds_map"; 77f2f87877SChengguang Xu case CEPH_MSG_FS_MAP_USER: return "fs_map_user"; 783d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_SESSION: return "client_session"; 793d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_RECONNECT: return "client_reconnect"; 803d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_REQUEST: return "client_request"; 813d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_REQUEST_FORWARD: return "client_request_forward"; 823d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_REPLY: return "client_reply"; 833d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_CAPS: return "client_caps"; 843d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_CAPRELEASE: return "client_cap_release"; 85fb18a575SLuis Henriques case CEPH_MSG_CLIENT_QUOTA: return "client_quota"; 863d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_SNAP: return "client_snap"; 873d14c5d2SYehuda Sadeh case CEPH_MSG_CLIENT_LEASE: return "client_lease"; 88f2f87877SChengguang Xu case CEPH_MSG_POOLOP_REPLY: return "poolop_reply"; 89f2f87877SChengguang Xu case CEPH_MSG_POOLOP: return "poolop"; 90f2f87877SChengguang Xu case CEPH_MSG_MON_COMMAND: return "mon_command"; 91f2f87877SChengguang Xu case CEPH_MSG_MON_COMMAND_ACK: return "mon_command_ack"; 923d14c5d2SYehuda Sadeh case CEPH_MSG_OSD_MAP: return "osd_map"; 933d14c5d2SYehuda Sadeh case CEPH_MSG_OSD_OP: return "osd_op"; 943d14c5d2SYehuda Sadeh case CEPH_MSG_OSD_OPREPLY: return "osd_opreply"; 95a40c4f10SYehuda Sadeh case CEPH_MSG_WATCH_NOTIFY: return "watch_notify"; 96a02a946dSIlya Dryomov case CEPH_MSG_OSD_BACKOFF: return "osd_backoff"; 973d14c5d2SYehuda Sadeh default: return "unknown"; 983d14c5d2SYehuda Sadeh } 993d14c5d2SYehuda Sadeh } 1003d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_msg_type_name); 1013d14c5d2SYehuda Sadeh 1023d14c5d2SYehuda Sadeh /* 1033d14c5d2SYehuda Sadeh * Initially learn our fsid, or verify an fsid matches. 1043d14c5d2SYehuda Sadeh */ 1053d14c5d2SYehuda Sadeh int ceph_check_fsid(struct ceph_client *client, struct ceph_fsid *fsid) 1063d14c5d2SYehuda Sadeh { 1073d14c5d2SYehuda Sadeh if (client->have_fsid) { 1083d14c5d2SYehuda Sadeh if (ceph_fsid_compare(&client->fsid, fsid)) { 1093d14c5d2SYehuda Sadeh pr_err("bad fsid, had %pU got %pU", 1103d14c5d2SYehuda Sadeh &client->fsid, fsid); 1113d14c5d2SYehuda Sadeh return -1; 1123d14c5d2SYehuda Sadeh } 1133d14c5d2SYehuda Sadeh } else { 1143d14c5d2SYehuda Sadeh memcpy(&client->fsid, fsid, sizeof(*fsid)); 1153d14c5d2SYehuda Sadeh } 1163d14c5d2SYehuda Sadeh return 0; 1173d14c5d2SYehuda Sadeh } 1183d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_check_fsid); 1193d14c5d2SYehuda Sadeh 1203d14c5d2SYehuda Sadeh static int strcmp_null(const char *s1, const char *s2) 1213d14c5d2SYehuda Sadeh { 1223d14c5d2SYehuda Sadeh if (!s1 && !s2) 1233d14c5d2SYehuda Sadeh return 0; 1243d14c5d2SYehuda Sadeh if (s1 && !s2) 1253d14c5d2SYehuda Sadeh return -1; 1263d14c5d2SYehuda Sadeh if (!s1 && s2) 1273d14c5d2SYehuda Sadeh return 1; 1283d14c5d2SYehuda Sadeh return strcmp(s1, s2); 1293d14c5d2SYehuda Sadeh } 1303d14c5d2SYehuda Sadeh 1313d14c5d2SYehuda Sadeh int ceph_compare_options(struct ceph_options *new_opt, 1323d14c5d2SYehuda Sadeh struct ceph_client *client) 1333d14c5d2SYehuda Sadeh { 1343d14c5d2SYehuda Sadeh struct ceph_options *opt1 = new_opt; 1353d14c5d2SYehuda Sadeh struct ceph_options *opt2 = client->options; 1363d14c5d2SYehuda Sadeh int ofs = offsetof(struct ceph_options, mon_addr); 1373d14c5d2SYehuda Sadeh int i; 1383d14c5d2SYehuda Sadeh int ret; 1393d14c5d2SYehuda Sadeh 140757856d2SIlya Dryomov /* 141757856d2SIlya Dryomov * Don't bother comparing options if network namespaces don't 142757856d2SIlya Dryomov * match. 143757856d2SIlya Dryomov */ 144757856d2SIlya Dryomov if (!net_eq(current->nsproxy->net_ns, read_pnet(&client->msgr.net))) 145757856d2SIlya Dryomov return -1; 146757856d2SIlya Dryomov 1473d14c5d2SYehuda Sadeh ret = memcmp(opt1, opt2, ofs); 1483d14c5d2SYehuda Sadeh if (ret) 1493d14c5d2SYehuda Sadeh return ret; 1503d14c5d2SYehuda Sadeh 1513d14c5d2SYehuda Sadeh ret = strcmp_null(opt1->name, opt2->name); 1523d14c5d2SYehuda Sadeh if (ret) 1533d14c5d2SYehuda Sadeh return ret; 1543d14c5d2SYehuda Sadeh 1558323c3aaSTommi Virtanen if (opt1->key && !opt2->key) 1568323c3aaSTommi Virtanen return -1; 1578323c3aaSTommi Virtanen if (!opt1->key && opt2->key) 1588323c3aaSTommi Virtanen return 1; 1598323c3aaSTommi Virtanen if (opt1->key && opt2->key) { 1608323c3aaSTommi Virtanen if (opt1->key->type != opt2->key->type) 1618323c3aaSTommi Virtanen return -1; 1628323c3aaSTommi Virtanen if (opt1->key->created.tv_sec != opt2->key->created.tv_sec) 1638323c3aaSTommi Virtanen return -1; 1648323c3aaSTommi Virtanen if (opt1->key->created.tv_nsec != opt2->key->created.tv_nsec) 1658323c3aaSTommi Virtanen return -1; 1668323c3aaSTommi Virtanen if (opt1->key->len != opt2->key->len) 1678323c3aaSTommi Virtanen return -1; 1688323c3aaSTommi Virtanen if (opt1->key->key && !opt2->key->key) 1698323c3aaSTommi Virtanen return -1; 1708323c3aaSTommi Virtanen if (!opt1->key->key && opt2->key->key) 1718323c3aaSTommi Virtanen return 1; 1728323c3aaSTommi Virtanen if (opt1->key->key && opt2->key->key) { 1738323c3aaSTommi Virtanen ret = memcmp(opt1->key->key, opt2->key->key, opt1->key->len); 1743d14c5d2SYehuda Sadeh if (ret) 1753d14c5d2SYehuda Sadeh return ret; 1768323c3aaSTommi Virtanen } 1778323c3aaSTommi Virtanen } 1783d14c5d2SYehuda Sadeh 1793d14c5d2SYehuda Sadeh /* any matching mon ip implies a match */ 1803d14c5d2SYehuda Sadeh for (i = 0; i < opt1->num_mon; i++) { 1813d14c5d2SYehuda Sadeh if (ceph_monmap_contains(client->monc.monmap, 1823d14c5d2SYehuda Sadeh &opt1->mon_addr[i])) 1833d14c5d2SYehuda Sadeh return 0; 1843d14c5d2SYehuda Sadeh } 1853d14c5d2SYehuda Sadeh return -1; 1863d14c5d2SYehuda Sadeh } 1873d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_compare_options); 1883d14c5d2SYehuda Sadeh 18910c12851SIlya Dryomov /* 19010c12851SIlya Dryomov * kvmalloc() doesn't fall back to the vmalloc allocator unless flags are 19110c12851SIlya Dryomov * compatible with (a superset of) GFP_KERNEL. This is because while the 19210c12851SIlya Dryomov * actual pages are allocated with the specified flags, the page table pages 19310c12851SIlya Dryomov * are always allocated with GFP_KERNEL. map_vm_area() doesn't even take 19410c12851SIlya Dryomov * flags because GFP_KERNEL is hard-coded in {p4d,pud,pmd,pte}_alloc(). 19510c12851SIlya Dryomov * 19610c12851SIlya Dryomov * ceph_kvmalloc() may be called with GFP_KERNEL, GFP_NOFS or GFP_NOIO. 19710c12851SIlya Dryomov */ 198eeb0bed5SIlya Dryomov void *ceph_kvmalloc(size_t size, gfp_t flags) 199eeb0bed5SIlya Dryomov { 20010c12851SIlya Dryomov void *p; 20110c12851SIlya Dryomov 20210c12851SIlya Dryomov if ((flags & (__GFP_IO | __GFP_FS)) == (__GFP_IO | __GFP_FS)) { 20310c12851SIlya Dryomov p = kvmalloc(size, flags); 20410c12851SIlya Dryomov } else if ((flags & (__GFP_IO | __GFP_FS)) == __GFP_IO) { 20510c12851SIlya Dryomov unsigned int nofs_flag = memalloc_nofs_save(); 20610c12851SIlya Dryomov p = kvmalloc(size, GFP_KERNEL); 20710c12851SIlya Dryomov memalloc_nofs_restore(nofs_flag); 20810c12851SIlya Dryomov } else { 20910c12851SIlya Dryomov unsigned int noio_flag = memalloc_noio_save(); 21010c12851SIlya Dryomov p = kvmalloc(size, GFP_KERNEL); 21110c12851SIlya Dryomov memalloc_noio_restore(noio_flag); 212eeb0bed5SIlya Dryomov } 213eeb0bed5SIlya Dryomov 21410c12851SIlya Dryomov return p; 215eeb0bed5SIlya Dryomov } 216eeb0bed5SIlya Dryomov 2173d14c5d2SYehuda Sadeh static int parse_fsid(const char *str, struct ceph_fsid *fsid) 2183d14c5d2SYehuda Sadeh { 2193d14c5d2SYehuda Sadeh int i = 0; 2203d14c5d2SYehuda Sadeh char tmp[3]; 2213d14c5d2SYehuda Sadeh int err = -EINVAL; 2223d14c5d2SYehuda Sadeh int d; 2233d14c5d2SYehuda Sadeh 2243d14c5d2SYehuda Sadeh dout("parse_fsid '%s'\n", str); 2253d14c5d2SYehuda Sadeh tmp[2] = 0; 2263d14c5d2SYehuda Sadeh while (*str && i < 16) { 2273d14c5d2SYehuda Sadeh if (ispunct(*str)) { 2283d14c5d2SYehuda Sadeh str++; 2293d14c5d2SYehuda Sadeh continue; 2303d14c5d2SYehuda Sadeh } 2313d14c5d2SYehuda Sadeh if (!isxdigit(str[0]) || !isxdigit(str[1])) 2323d14c5d2SYehuda Sadeh break; 2333d14c5d2SYehuda Sadeh tmp[0] = str[0]; 2343d14c5d2SYehuda Sadeh tmp[1] = str[1]; 2353d14c5d2SYehuda Sadeh if (sscanf(tmp, "%x", &d) < 1) 2363d14c5d2SYehuda Sadeh break; 2373d14c5d2SYehuda Sadeh fsid->fsid[i] = d & 0xff; 2383d14c5d2SYehuda Sadeh i++; 2393d14c5d2SYehuda Sadeh str += 2; 2403d14c5d2SYehuda Sadeh } 2413d14c5d2SYehuda Sadeh 2423d14c5d2SYehuda Sadeh if (i == 16) 2433d14c5d2SYehuda Sadeh err = 0; 2444c069a58SChengguang Xu dout("parse_fsid ret %d got fsid %pU\n", err, fsid); 2453d14c5d2SYehuda Sadeh return err; 2463d14c5d2SYehuda Sadeh } 2473d14c5d2SYehuda Sadeh 2483d14c5d2SYehuda Sadeh /* 2493d14c5d2SYehuda Sadeh * ceph options 2503d14c5d2SYehuda Sadeh */ 2513d14c5d2SYehuda Sadeh enum { 2523d14c5d2SYehuda Sadeh Opt_osdtimeout, 2533d14c5d2SYehuda Sadeh Opt_osdkeepalivetimeout, 2543d14c5d2SYehuda Sadeh Opt_mount_timeout, 2553d14c5d2SYehuda Sadeh Opt_osd_idle_ttl, 2567cc5e38fSIlya Dryomov Opt_osd_request_timeout, 2573d14c5d2SYehuda Sadeh /* int args above */ 2583d14c5d2SYehuda Sadeh Opt_fsid, 2593d14c5d2SYehuda Sadeh Opt_name, 2603d14c5d2SYehuda Sadeh Opt_secret, 261e2c3d29bSTommi Virtanen Opt_key, 2623d14c5d2SYehuda Sadeh Opt_ip, 2633d14c5d2SYehuda Sadeh /* string args above */ 264cffaba15SAlex Elder Opt_share, 265cffaba15SAlex Elder Opt_crc, 266a3fc9800SYan, Zheng Opt_cephx_require_signatures, 267a51983e4SIlya Dryomov Opt_cephx_sign_messages, 268ba988f87SChaitanya Huilgol Opt_tcp_nodelay, 26902b2f549SDongsheng Yang Opt_abort_on_full, 2703d14c5d2SYehuda Sadeh }; 2713d14c5d2SYehuda Sadeh 272*82995cc6SDavid Howells static const struct fs_parameter_spec ceph_param_specs[] = { 273*82995cc6SDavid Howells fsparam_flag ("abort_on_full", Opt_abort_on_full), 274*82995cc6SDavid Howells fsparam_flag_no ("cephx_require_signatures", Opt_cephx_require_signatures), 275*82995cc6SDavid Howells fsparam_flag_no ("cephx_sign_messages", Opt_cephx_sign_messages), 276*82995cc6SDavid Howells fsparam_flag_no ("crc", Opt_crc), 277*82995cc6SDavid Howells fsparam_string ("fsid", Opt_fsid), 278*82995cc6SDavid Howells fsparam_string ("ip", Opt_ip), 279*82995cc6SDavid Howells fsparam_string ("key", Opt_key), 280*82995cc6SDavid Howells fsparam_u32 ("mount_timeout", Opt_mount_timeout), 281*82995cc6SDavid Howells fsparam_string ("name", Opt_name), 282*82995cc6SDavid Howells fsparam_u32 ("osd_idle_ttl", Opt_osd_idle_ttl), 283*82995cc6SDavid Howells fsparam_u32 ("osd_request_timeout", Opt_osd_request_timeout), 284*82995cc6SDavid Howells fsparam_u32 ("osdkeepalive", Opt_osdkeepalivetimeout), 285*82995cc6SDavid Howells __fsparam (fs_param_is_s32, "osdtimeout", Opt_osdtimeout, 286*82995cc6SDavid Howells fs_param_deprecated), 287*82995cc6SDavid Howells fsparam_string ("secret", Opt_secret), 288*82995cc6SDavid Howells fsparam_flag_no ("share", Opt_share), 289*82995cc6SDavid Howells fsparam_flag_no ("tcp_nodelay", Opt_tcp_nodelay), 290*82995cc6SDavid Howells {} 2913d14c5d2SYehuda Sadeh }; 2923d14c5d2SYehuda Sadeh 293*82995cc6SDavid Howells static const struct fs_parameter_description ceph_parameters = { 294*82995cc6SDavid Howells .name = "libceph", 295*82995cc6SDavid Howells .specs = ceph_param_specs, 296*82995cc6SDavid Howells }; 297*82995cc6SDavid Howells 298*82995cc6SDavid Howells struct ceph_options *ceph_alloc_options(void) 299*82995cc6SDavid Howells { 300*82995cc6SDavid Howells struct ceph_options *opt; 301*82995cc6SDavid Howells 302*82995cc6SDavid Howells opt = kzalloc(sizeof(*opt), GFP_KERNEL); 303*82995cc6SDavid Howells if (!opt) 304*82995cc6SDavid Howells return NULL; 305*82995cc6SDavid Howells 306*82995cc6SDavid Howells opt->mon_addr = kcalloc(CEPH_MAX_MON, sizeof(*opt->mon_addr), 307*82995cc6SDavid Howells GFP_KERNEL); 308*82995cc6SDavid Howells if (!opt->mon_addr) { 309*82995cc6SDavid Howells kfree(opt); 310*82995cc6SDavid Howells return NULL; 311*82995cc6SDavid Howells } 312*82995cc6SDavid Howells 313*82995cc6SDavid Howells opt->flags = CEPH_OPT_DEFAULT; 314*82995cc6SDavid Howells opt->osd_keepalive_timeout = CEPH_OSD_KEEPALIVE_DEFAULT; 315*82995cc6SDavid Howells opt->mount_timeout = CEPH_MOUNT_TIMEOUT_DEFAULT; 316*82995cc6SDavid Howells opt->osd_idle_ttl = CEPH_OSD_IDLE_TTL_DEFAULT; 317*82995cc6SDavid Howells opt->osd_request_timeout = CEPH_OSD_REQUEST_TIMEOUT_DEFAULT; 318*82995cc6SDavid Howells return opt; 319*82995cc6SDavid Howells } 320*82995cc6SDavid Howells EXPORT_SYMBOL(ceph_alloc_options); 321*82995cc6SDavid Howells 3223d14c5d2SYehuda Sadeh void ceph_destroy_options(struct ceph_options *opt) 3233d14c5d2SYehuda Sadeh { 3243d14c5d2SYehuda Sadeh dout("destroy_options %p\n", opt); 325*82995cc6SDavid Howells if (!opt) 326*82995cc6SDavid Howells return; 327*82995cc6SDavid Howells 3283d14c5d2SYehuda Sadeh kfree(opt->name); 3298323c3aaSTommi Virtanen if (opt->key) { 3308323c3aaSTommi Virtanen ceph_crypto_key_destroy(opt->key); 3318323c3aaSTommi Virtanen kfree(opt->key); 3328323c3aaSTommi Virtanen } 3331cad7893SNoah Watkins kfree(opt->mon_addr); 3343d14c5d2SYehuda Sadeh kfree(opt); 3353d14c5d2SYehuda Sadeh } 3363d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_destroy_options); 3373d14c5d2SYehuda Sadeh 338e2c3d29bSTommi Virtanen /* get secret from key store */ 339*82995cc6SDavid Howells static int get_secret(struct ceph_crypto_key *dst, const char *name, 340*82995cc6SDavid Howells struct fs_context *fc) 341*82995cc6SDavid Howells { 342e2c3d29bSTommi Virtanen struct key *ukey; 343e2c3d29bSTommi Virtanen int key_err; 344e2c3d29bSTommi Virtanen int err = 0; 3454b2a58abSTommi Virtanen struct ceph_crypto_key *ckey; 346e2c3d29bSTommi Virtanen 3474b2a58abSTommi Virtanen ukey = request_key(&key_type_ceph, name, NULL); 348bad87216SYueHaibing if (IS_ERR(ukey)) { 349e2c3d29bSTommi Virtanen /* request_key errors don't map nicely to mount(2) 350e2c3d29bSTommi Virtanen errors; don't even try, but still printk */ 351e2c3d29bSTommi Virtanen key_err = PTR_ERR(ukey); 352e2c3d29bSTommi Virtanen switch (key_err) { 353e2c3d29bSTommi Virtanen case -ENOKEY: 354*82995cc6SDavid Howells errorf(fc, "libceph: Failed due to key not found: %s", 355b9a67899SJoe Perches name); 356e2c3d29bSTommi Virtanen break; 357e2c3d29bSTommi Virtanen case -EKEYEXPIRED: 358*82995cc6SDavid Howells errorf(fc, "libceph: Failed due to expired key: %s", 359b9a67899SJoe Perches name); 360e2c3d29bSTommi Virtanen break; 361e2c3d29bSTommi Virtanen case -EKEYREVOKED: 362*82995cc6SDavid Howells errorf(fc, "libceph: Failed due to revoked key: %s", 363b9a67899SJoe Perches name); 364e2c3d29bSTommi Virtanen break; 365e2c3d29bSTommi Virtanen default: 366*82995cc6SDavid Howells errorf(fc, "libceph: Failed due to key error %d: %s", 367b9a67899SJoe Perches key_err, name); 368e2c3d29bSTommi Virtanen } 369e2c3d29bSTommi Virtanen err = -EPERM; 370e2c3d29bSTommi Virtanen goto out; 371e2c3d29bSTommi Virtanen } 372e2c3d29bSTommi Virtanen 373146aa8b1SDavid Howells ckey = ukey->payload.data[0]; 3744b2a58abSTommi Virtanen err = ceph_crypto_key_clone(dst, ckey); 375e2c3d29bSTommi Virtanen if (err) 376e2c3d29bSTommi Virtanen goto out_key; 377e2c3d29bSTommi Virtanen /* pass through, err is 0 */ 378e2c3d29bSTommi Virtanen 379e2c3d29bSTommi Virtanen out_key: 380e2c3d29bSTommi Virtanen key_put(ukey); 381e2c3d29bSTommi Virtanen out: 382e2c3d29bSTommi Virtanen return err; 383e2c3d29bSTommi Virtanen } 384e2c3d29bSTommi Virtanen 385*82995cc6SDavid Howells int ceph_parse_mon_ips(const char *buf, size_t len, struct ceph_options *opt, 386*82995cc6SDavid Howells struct fs_context *fc) 3873d14c5d2SYehuda Sadeh { 388*82995cc6SDavid Howells int ret; 3893d14c5d2SYehuda Sadeh 3903d14c5d2SYehuda Sadeh /* ip1[:port1][,ip2[:port2]...] */ 391*82995cc6SDavid Howells ret = ceph_parse_ips(buf, buf + len, opt->mon_addr, CEPH_MAX_MON, 392*82995cc6SDavid Howells &opt->num_mon); 393*82995cc6SDavid Howells if (ret) { 394*82995cc6SDavid Howells errorf(fc, "libceph: Failed to parse monitor IPs: %d", ret); 395*82995cc6SDavid Howells return ret; 396*82995cc6SDavid Howells } 3973d14c5d2SYehuda Sadeh 398*82995cc6SDavid Howells return 0; 3993d14c5d2SYehuda Sadeh } 400*82995cc6SDavid Howells EXPORT_SYMBOL(ceph_parse_mon_ips); 401*82995cc6SDavid Howells 402*82995cc6SDavid Howells int ceph_parse_param(struct fs_parameter *param, struct ceph_options *opt, 403*82995cc6SDavid Howells struct fs_context *fc) 404*82995cc6SDavid Howells { 405*82995cc6SDavid Howells struct fs_parse_result result; 406*82995cc6SDavid Howells int token, err; 407*82995cc6SDavid Howells 408*82995cc6SDavid Howells token = fs_parse(fc, &ceph_parameters, param, &result); 409*82995cc6SDavid Howells dout("%s fs_parse '%s' token %d\n", __func__, param->key, token); 410*82995cc6SDavid Howells if (token < 0) 411*82995cc6SDavid Howells return token; 412*82995cc6SDavid Howells 4133d14c5d2SYehuda Sadeh switch (token) { 4143d14c5d2SYehuda Sadeh case Opt_ip: 415*82995cc6SDavid Howells err = ceph_parse_ips(param->string, 416*82995cc6SDavid Howells param->string + param->size, 4173d14c5d2SYehuda Sadeh &opt->my_addr, 4183d14c5d2SYehuda Sadeh 1, NULL); 419*82995cc6SDavid Howells if (err) { 420*82995cc6SDavid Howells errorf(fc, "libceph: Failed to parse ip: %d", err); 421*82995cc6SDavid Howells return err; 422*82995cc6SDavid Howells } 4233d14c5d2SYehuda Sadeh opt->flags |= CEPH_OPT_MYIP; 4243d14c5d2SYehuda Sadeh break; 4253d14c5d2SYehuda Sadeh 4263d14c5d2SYehuda Sadeh case Opt_fsid: 427*82995cc6SDavid Howells err = parse_fsid(param->string, &opt->fsid); 428*82995cc6SDavid Howells if (err) { 429*82995cc6SDavid Howells errorf(fc, "libceph: Failed to parse fsid: %d", err); 430*82995cc6SDavid Howells return err; 431*82995cc6SDavid Howells } 4323d14c5d2SYehuda Sadeh opt->flags |= CEPH_OPT_FSID; 4333d14c5d2SYehuda Sadeh break; 4343d14c5d2SYehuda Sadeh case Opt_name: 435937441f3SChengguang Xu kfree(opt->name); 436*82995cc6SDavid Howells opt->name = param->string; 437*82995cc6SDavid Howells param->string = NULL; 4383d14c5d2SYehuda Sadeh break; 4393d14c5d2SYehuda Sadeh case Opt_secret: 440937441f3SChengguang Xu ceph_crypto_key_destroy(opt->key); 441937441f3SChengguang Xu kfree(opt->key); 442937441f3SChengguang Xu 4438323c3aaSTommi Virtanen opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL); 444*82995cc6SDavid Howells if (!opt->key) 445*82995cc6SDavid Howells return -ENOMEM; 446*82995cc6SDavid Howells err = ceph_crypto_key_unarmor(opt->key, param->string); 447*82995cc6SDavid Howells if (err) { 448*82995cc6SDavid Howells errorf(fc, "libceph: Failed to parse secret: %d", err); 449*82995cc6SDavid Howells return err; 4508323c3aaSTommi Virtanen } 4513d14c5d2SYehuda Sadeh break; 452e2c3d29bSTommi Virtanen case Opt_key: 453937441f3SChengguang Xu ceph_crypto_key_destroy(opt->key); 454937441f3SChengguang Xu kfree(opt->key); 455937441f3SChengguang Xu 456e2c3d29bSTommi Virtanen opt->key = kzalloc(sizeof(*opt->key), GFP_KERNEL); 457*82995cc6SDavid Howells if (!opt->key) 458*82995cc6SDavid Howells return -ENOMEM; 459*82995cc6SDavid Howells return get_secret(opt->key, param->string, fc); 4603d14c5d2SYehuda Sadeh 4613d14c5d2SYehuda Sadeh case Opt_osdtimeout: 462*82995cc6SDavid Howells warnf(fc, "libceph: Ignoring osdtimeout"); 4633d14c5d2SYehuda Sadeh break; 4643d14c5d2SYehuda Sadeh case Opt_osdkeepalivetimeout: 465a319bf56SIlya Dryomov /* 0 isn't well defined right now, reject it */ 466*82995cc6SDavid Howells if (result.uint_32 < 1 || result.uint_32 > INT_MAX / 1000) 467*82995cc6SDavid Howells goto out_of_range; 468a319bf56SIlya Dryomov opt->osd_keepalive_timeout = 469*82995cc6SDavid Howells msecs_to_jiffies(result.uint_32 * 1000); 4703d14c5d2SYehuda Sadeh break; 4713d14c5d2SYehuda Sadeh case Opt_osd_idle_ttl: 472a319bf56SIlya Dryomov /* 0 isn't well defined right now, reject it */ 473*82995cc6SDavid Howells if (result.uint_32 < 1 || result.uint_32 > INT_MAX / 1000) 474*82995cc6SDavid Howells goto out_of_range; 475*82995cc6SDavid Howells opt->osd_idle_ttl = msecs_to_jiffies(result.uint_32 * 1000); 4763d14c5d2SYehuda Sadeh break; 4773d14c5d2SYehuda Sadeh case Opt_mount_timeout: 478a319bf56SIlya Dryomov /* 0 is "wait forever" (i.e. infinite timeout) */ 479*82995cc6SDavid Howells if (result.uint_32 > INT_MAX / 1000) 480*82995cc6SDavid Howells goto out_of_range; 481*82995cc6SDavid Howells opt->mount_timeout = msecs_to_jiffies(result.uint_32 * 1000); 4823d14c5d2SYehuda Sadeh break; 4837cc5e38fSIlya Dryomov case Opt_osd_request_timeout: 4847cc5e38fSIlya Dryomov /* 0 is "wait forever" (i.e. infinite timeout) */ 485*82995cc6SDavid Howells if (result.uint_32 > INT_MAX / 1000) 486*82995cc6SDavid Howells goto out_of_range; 487*82995cc6SDavid Howells opt->osd_request_timeout = 488*82995cc6SDavid Howells msecs_to_jiffies(result.uint_32 * 1000); 4897cc5e38fSIlya Dryomov break; 4903d14c5d2SYehuda Sadeh 491cffaba15SAlex Elder case Opt_share: 492*82995cc6SDavid Howells if (!result.negated) 493cffaba15SAlex Elder opt->flags &= ~CEPH_OPT_NOSHARE; 494*82995cc6SDavid Howells else 4953d14c5d2SYehuda Sadeh opt->flags |= CEPH_OPT_NOSHARE; 4963d14c5d2SYehuda Sadeh break; 497cffaba15SAlex Elder case Opt_crc: 498*82995cc6SDavid Howells if (!result.negated) 499cffaba15SAlex Elder opt->flags &= ~CEPH_OPT_NOCRC; 500*82995cc6SDavid Howells else 5013d14c5d2SYehuda Sadeh opt->flags |= CEPH_OPT_NOCRC; 5023d14c5d2SYehuda Sadeh break; 503a3fc9800SYan, Zheng case Opt_cephx_require_signatures: 504*82995cc6SDavid Howells if (!result.negated) 505a3fc9800SYan, Zheng opt->flags &= ~CEPH_OPT_NOMSGAUTH; 506*82995cc6SDavid Howells else 507a3fc9800SYan, Zheng opt->flags |= CEPH_OPT_NOMSGAUTH; 508a3fc9800SYan, Zheng break; 509a51983e4SIlya Dryomov case Opt_cephx_sign_messages: 510*82995cc6SDavid Howells if (!result.negated) 511a51983e4SIlya Dryomov opt->flags &= ~CEPH_OPT_NOMSGSIGN; 512*82995cc6SDavid Howells else 513a51983e4SIlya Dryomov opt->flags |= CEPH_OPT_NOMSGSIGN; 514a51983e4SIlya Dryomov break; 515ba988f87SChaitanya Huilgol case Opt_tcp_nodelay: 516*82995cc6SDavid Howells if (!result.negated) 517ba988f87SChaitanya Huilgol opt->flags |= CEPH_OPT_TCP_NODELAY; 518*82995cc6SDavid Howells else 519ba988f87SChaitanya Huilgol opt->flags &= ~CEPH_OPT_TCP_NODELAY; 520ba988f87SChaitanya Huilgol break; 521ba988f87SChaitanya Huilgol 52202b2f549SDongsheng Yang case Opt_abort_on_full: 52302b2f549SDongsheng Yang opt->flags |= CEPH_OPT_ABORT_ON_FULL; 52402b2f549SDongsheng Yang break; 52502b2f549SDongsheng Yang 5263d14c5d2SYehuda Sadeh default: 527*82995cc6SDavid Howells BUG(); 5283d14c5d2SYehuda Sadeh } 5293d14c5d2SYehuda Sadeh 530*82995cc6SDavid Howells return 0; 5313d14c5d2SYehuda Sadeh 532*82995cc6SDavid Howells out_of_range: 533*82995cc6SDavid Howells return invalf(fc, "libceph: %s out of range", param->key); 5343d14c5d2SYehuda Sadeh } 535*82995cc6SDavid Howells EXPORT_SYMBOL(ceph_parse_param); 5363d14c5d2SYehuda Sadeh 53702b2f549SDongsheng Yang int ceph_print_client_options(struct seq_file *m, struct ceph_client *client, 53802b2f549SDongsheng Yang bool show_all) 539ff40f9aeSIlya Dryomov { 540ff40f9aeSIlya Dryomov struct ceph_options *opt = client->options; 541ff40f9aeSIlya Dryomov size_t pos = m->count; 542ff40f9aeSIlya Dryomov 543a068acf2SKees Cook if (opt->name) { 544a068acf2SKees Cook seq_puts(m, "name="); 545a068acf2SKees Cook seq_escape(m, opt->name, ", \t\n\\"); 546a068acf2SKees Cook seq_putc(m, ','); 547a068acf2SKees Cook } 548ff40f9aeSIlya Dryomov if (opt->key) 549ff40f9aeSIlya Dryomov seq_puts(m, "secret=<hidden>,"); 550ff40f9aeSIlya Dryomov 551ff40f9aeSIlya Dryomov if (opt->flags & CEPH_OPT_FSID) 552ff40f9aeSIlya Dryomov seq_printf(m, "fsid=%pU,", &opt->fsid); 553ff40f9aeSIlya Dryomov if (opt->flags & CEPH_OPT_NOSHARE) 554ff40f9aeSIlya Dryomov seq_puts(m, "noshare,"); 555ff40f9aeSIlya Dryomov if (opt->flags & CEPH_OPT_NOCRC) 556ff40f9aeSIlya Dryomov seq_puts(m, "nocrc,"); 557ff40f9aeSIlya Dryomov if (opt->flags & CEPH_OPT_NOMSGAUTH) 558ff40f9aeSIlya Dryomov seq_puts(m, "nocephx_require_signatures,"); 559a51983e4SIlya Dryomov if (opt->flags & CEPH_OPT_NOMSGSIGN) 560a51983e4SIlya Dryomov seq_puts(m, "nocephx_sign_messages,"); 561ff40f9aeSIlya Dryomov if ((opt->flags & CEPH_OPT_TCP_NODELAY) == 0) 562ff40f9aeSIlya Dryomov seq_puts(m, "notcp_nodelay,"); 56302b2f549SDongsheng Yang if (show_all && (opt->flags & CEPH_OPT_ABORT_ON_FULL)) 56402b2f549SDongsheng Yang seq_puts(m, "abort_on_full,"); 565ff40f9aeSIlya Dryomov 566ff40f9aeSIlya Dryomov if (opt->mount_timeout != CEPH_MOUNT_TIMEOUT_DEFAULT) 567a319bf56SIlya Dryomov seq_printf(m, "mount_timeout=%d,", 568a319bf56SIlya Dryomov jiffies_to_msecs(opt->mount_timeout) / 1000); 569ff40f9aeSIlya Dryomov if (opt->osd_idle_ttl != CEPH_OSD_IDLE_TTL_DEFAULT) 570a319bf56SIlya Dryomov seq_printf(m, "osd_idle_ttl=%d,", 571a319bf56SIlya Dryomov jiffies_to_msecs(opt->osd_idle_ttl) / 1000); 572ff40f9aeSIlya Dryomov if (opt->osd_keepalive_timeout != CEPH_OSD_KEEPALIVE_DEFAULT) 573ff40f9aeSIlya Dryomov seq_printf(m, "osdkeepalivetimeout=%d,", 574a319bf56SIlya Dryomov jiffies_to_msecs(opt->osd_keepalive_timeout) / 1000); 5757cc5e38fSIlya Dryomov if (opt->osd_request_timeout != CEPH_OSD_REQUEST_TIMEOUT_DEFAULT) 5767cc5e38fSIlya Dryomov seq_printf(m, "osd_request_timeout=%d,", 5777cc5e38fSIlya Dryomov jiffies_to_msecs(opt->osd_request_timeout) / 1000); 578ff40f9aeSIlya Dryomov 579ff40f9aeSIlya Dryomov /* drop redundant comma */ 580ff40f9aeSIlya Dryomov if (m->count != pos) 581ff40f9aeSIlya Dryomov m->count--; 582ff40f9aeSIlya Dryomov 583ff40f9aeSIlya Dryomov return 0; 584ff40f9aeSIlya Dryomov } 585ff40f9aeSIlya Dryomov EXPORT_SYMBOL(ceph_print_client_options); 586ff40f9aeSIlya Dryomov 587005a07bfSIlya Dryomov struct ceph_entity_addr *ceph_client_addr(struct ceph_client *client) 588005a07bfSIlya Dryomov { 589005a07bfSIlya Dryomov return &client->msgr.inst.addr; 590005a07bfSIlya Dryomov } 591005a07bfSIlya Dryomov EXPORT_SYMBOL(ceph_client_addr); 592005a07bfSIlya Dryomov 593033268a5SIlya Dryomov u64 ceph_client_gid(struct ceph_client *client) 5943d14c5d2SYehuda Sadeh { 5953d14c5d2SYehuda Sadeh return client->monc.auth->global_id; 5963d14c5d2SYehuda Sadeh } 597033268a5SIlya Dryomov EXPORT_SYMBOL(ceph_client_gid); 5983d14c5d2SYehuda Sadeh 5993d14c5d2SYehuda Sadeh /* 6003d14c5d2SYehuda Sadeh * create a fresh client instance 6013d14c5d2SYehuda Sadeh */ 60274da4a0fSIlya Dryomov struct ceph_client *ceph_create_client(struct ceph_options *opt, void *private) 6033d14c5d2SYehuda Sadeh { 6043d14c5d2SYehuda Sadeh struct ceph_client *client; 6056ab00d46SSage Weil struct ceph_entity_addr *myaddr = NULL; 606ae5b806aSJason A. Donenfeld int err; 607ae5b806aSJason A. Donenfeld 608ae5b806aSJason A. Donenfeld err = wait_for_random_bytes(); 609ae5b806aSJason A. Donenfeld if (err < 0) 610ae5b806aSJason A. Donenfeld return ERR_PTR(err); 6113d14c5d2SYehuda Sadeh 6123d14c5d2SYehuda Sadeh client = kzalloc(sizeof(*client), GFP_KERNEL); 6133d14c5d2SYehuda Sadeh if (client == NULL) 6143d14c5d2SYehuda Sadeh return ERR_PTR(-ENOMEM); 6153d14c5d2SYehuda Sadeh 6163d14c5d2SYehuda Sadeh client->private = private; 6173d14c5d2SYehuda Sadeh client->options = opt; 6183d14c5d2SYehuda Sadeh 6193d14c5d2SYehuda Sadeh mutex_init(&client->mount_mutex); 6203d14c5d2SYehuda Sadeh init_waitqueue_head(&client->auth_wq); 6213d14c5d2SYehuda Sadeh client->auth_err = 0; 6223d14c5d2SYehuda Sadeh 6233d14c5d2SYehuda Sadeh client->extra_mon_dispatch = NULL; 62474da4a0fSIlya Dryomov client->supported_features = CEPH_FEATURES_SUPPORTED_DEFAULT; 62574da4a0fSIlya Dryomov client->required_features = CEPH_FEATURES_REQUIRED_DEFAULT; 62674da4a0fSIlya Dryomov 62774da4a0fSIlya Dryomov if (!ceph_test_opt(client, NOMSGAUTH)) 62874da4a0fSIlya Dryomov client->required_features |= CEPH_FEATURE_MSG_AUTH; 6293d14c5d2SYehuda Sadeh 6306ab00d46SSage Weil /* msgr */ 6316ab00d46SSage Weil if (ceph_test_opt(client, MYIP)) 6326ab00d46SSage Weil myaddr = &client->options->my_addr; 633ba988f87SChaitanya Huilgol 634859bff51SIlya Dryomov ceph_messenger_init(&client->msgr, myaddr); 6353d14c5d2SYehuda Sadeh 6363d14c5d2SYehuda Sadeh /* subsystems */ 6373d14c5d2SYehuda Sadeh err = ceph_monc_init(&client->monc, client); 6383d14c5d2SYehuda Sadeh if (err < 0) 63915d9882cSAlex Elder goto fail; 6403d14c5d2SYehuda Sadeh err = ceph_osdc_init(&client->osdc, client); 6413d14c5d2SYehuda Sadeh if (err < 0) 6423d14c5d2SYehuda Sadeh goto fail_monc; 6433d14c5d2SYehuda Sadeh 6443d14c5d2SYehuda Sadeh return client; 6453d14c5d2SYehuda Sadeh 6463d14c5d2SYehuda Sadeh fail_monc: 6473d14c5d2SYehuda Sadeh ceph_monc_stop(&client->monc); 6483d14c5d2SYehuda Sadeh fail: 649757856d2SIlya Dryomov ceph_messenger_fini(&client->msgr); 6503d14c5d2SYehuda Sadeh kfree(client); 6513d14c5d2SYehuda Sadeh return ERR_PTR(err); 6523d14c5d2SYehuda Sadeh } 6533d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_create_client); 6543d14c5d2SYehuda Sadeh 6553d14c5d2SYehuda Sadeh void ceph_destroy_client(struct ceph_client *client) 6563d14c5d2SYehuda Sadeh { 6573d14c5d2SYehuda Sadeh dout("destroy_client %p\n", client); 6583d14c5d2SYehuda Sadeh 659a2a32584SGuanjun He atomic_set(&client->msgr.stopping, 1); 660a2a32584SGuanjun He 6613d14c5d2SYehuda Sadeh /* unmount */ 6623d14c5d2SYehuda Sadeh ceph_osdc_stop(&client->osdc); 6633d14c5d2SYehuda Sadeh ceph_monc_stop(&client->monc); 664757856d2SIlya Dryomov ceph_messenger_fini(&client->msgr); 6653d14c5d2SYehuda Sadeh 6663d14c5d2SYehuda Sadeh ceph_debugfs_client_cleanup(client); 6673d14c5d2SYehuda Sadeh 6683d14c5d2SYehuda Sadeh ceph_destroy_options(client->options); 6693d14c5d2SYehuda Sadeh 6703d14c5d2SYehuda Sadeh kfree(client); 6713d14c5d2SYehuda Sadeh dout("destroy_client %p done\n", client); 6723d14c5d2SYehuda Sadeh } 6733d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_destroy_client); 6743d14c5d2SYehuda Sadeh 675120a75eaSYan, Zheng void ceph_reset_client_addr(struct ceph_client *client) 676120a75eaSYan, Zheng { 677120a75eaSYan, Zheng ceph_messenger_reset_nonce(&client->msgr); 678120a75eaSYan, Zheng ceph_monc_reopen_session(&client->monc); 679120a75eaSYan, Zheng ceph_osdc_reopen_osds(&client->osdc); 680120a75eaSYan, Zheng } 681120a75eaSYan, Zheng EXPORT_SYMBOL(ceph_reset_client_addr); 682120a75eaSYan, Zheng 6833d14c5d2SYehuda Sadeh /* 6843d14c5d2SYehuda Sadeh * true if we have the mon map (and have thus joined the cluster) 6853d14c5d2SYehuda Sadeh */ 6863b33f692SZhang Zhuoyu static bool have_mon_and_osd_map(struct ceph_client *client) 6873d14c5d2SYehuda Sadeh { 6883d14c5d2SYehuda Sadeh return client->monc.monmap && client->monc.monmap->epoch && 6893d14c5d2SYehuda Sadeh client->osdc.osdmap && client->osdc.osdmap->epoch; 6903d14c5d2SYehuda Sadeh } 6913d14c5d2SYehuda Sadeh 6923d14c5d2SYehuda Sadeh /* 6933d14c5d2SYehuda Sadeh * mount: join the ceph cluster, and open root directory. 6943d14c5d2SYehuda Sadeh */ 6953d14c5d2SYehuda Sadeh int __ceph_open_session(struct ceph_client *client, unsigned long started) 6963d14c5d2SYehuda Sadeh { 697a319bf56SIlya Dryomov unsigned long timeout = client->options->mount_timeout; 698216639ddSIlya Dryomov long err; 6993d14c5d2SYehuda Sadeh 7003d14c5d2SYehuda Sadeh /* open session, and wait for mon and osd maps */ 7013d14c5d2SYehuda Sadeh err = ceph_monc_open_session(&client->monc); 7023d14c5d2SYehuda Sadeh if (err < 0) 7033d14c5d2SYehuda Sadeh return err; 7043d14c5d2SYehuda Sadeh 7053d14c5d2SYehuda Sadeh while (!have_mon_and_osd_map(client)) { 7063d14c5d2SYehuda Sadeh if (timeout && time_after_eq(jiffies, started + timeout)) 707216639ddSIlya Dryomov return -ETIMEDOUT; 7083d14c5d2SYehuda Sadeh 7093d14c5d2SYehuda Sadeh /* wait */ 7103d14c5d2SYehuda Sadeh dout("mount waiting for mon_map\n"); 7113d14c5d2SYehuda Sadeh err = wait_event_interruptible_timeout(client->auth_wq, 7123d14c5d2SYehuda Sadeh have_mon_and_osd_map(client) || (client->auth_err < 0), 713a319bf56SIlya Dryomov ceph_timeout_jiffies(timeout)); 714216639ddSIlya Dryomov if (err < 0) 7153d14c5d2SYehuda Sadeh return err; 7163d14c5d2SYehuda Sadeh if (client->auth_err < 0) 7173d14c5d2SYehuda Sadeh return client->auth_err; 7183d14c5d2SYehuda Sadeh } 7193d14c5d2SYehuda Sadeh 720033268a5SIlya Dryomov pr_info("client%llu fsid %pU\n", ceph_client_gid(client), 721033268a5SIlya Dryomov &client->fsid); 72202ac956cSIlya Dryomov ceph_debugfs_client_init(client); 72302ac956cSIlya Dryomov 7243d14c5d2SYehuda Sadeh return 0; 7253d14c5d2SYehuda Sadeh } 7263d14c5d2SYehuda Sadeh EXPORT_SYMBOL(__ceph_open_session); 7273d14c5d2SYehuda Sadeh 7283d14c5d2SYehuda Sadeh int ceph_open_session(struct ceph_client *client) 7293d14c5d2SYehuda Sadeh { 7303d14c5d2SYehuda Sadeh int ret; 7313d14c5d2SYehuda Sadeh unsigned long started = jiffies; /* note the start time */ 7323d14c5d2SYehuda Sadeh 7333d14c5d2SYehuda Sadeh dout("open_session start\n"); 7343d14c5d2SYehuda Sadeh mutex_lock(&client->mount_mutex); 7353d14c5d2SYehuda Sadeh 7363d14c5d2SYehuda Sadeh ret = __ceph_open_session(client, started); 7373d14c5d2SYehuda Sadeh 7383d14c5d2SYehuda Sadeh mutex_unlock(&client->mount_mutex); 7393d14c5d2SYehuda Sadeh return ret; 7403d14c5d2SYehuda Sadeh } 7413d14c5d2SYehuda Sadeh EXPORT_SYMBOL(ceph_open_session); 7423d14c5d2SYehuda Sadeh 743bb229bbbSIlya Dryomov int ceph_wait_for_latest_osdmap(struct ceph_client *client, 744bb229bbbSIlya Dryomov unsigned long timeout) 745bb229bbbSIlya Dryomov { 746bb229bbbSIlya Dryomov u64 newest_epoch; 747bb229bbbSIlya Dryomov int ret; 748bb229bbbSIlya Dryomov 749bb229bbbSIlya Dryomov ret = ceph_monc_get_version(&client->monc, "osdmap", &newest_epoch); 750bb229bbbSIlya Dryomov if (ret) 751bb229bbbSIlya Dryomov return ret; 752bb229bbbSIlya Dryomov 753bb229bbbSIlya Dryomov if (client->osdc.osdmap->epoch >= newest_epoch) 754bb229bbbSIlya Dryomov return 0; 755bb229bbbSIlya Dryomov 756bb229bbbSIlya Dryomov ceph_osdc_maybe_request_map(&client->osdc); 757bb229bbbSIlya Dryomov return ceph_monc_wait_osdmap(&client->monc, newest_epoch, timeout); 758bb229bbbSIlya Dryomov } 759bb229bbbSIlya Dryomov EXPORT_SYMBOL(ceph_wait_for_latest_osdmap); 7603d14c5d2SYehuda Sadeh 7613d14c5d2SYehuda Sadeh static int __init init_ceph_lib(void) 7623d14c5d2SYehuda Sadeh { 7633d14c5d2SYehuda Sadeh int ret = 0; 7643d14c5d2SYehuda Sadeh 7651a829ff2SGreg Kroah-Hartman ceph_debugfs_init(); 7663d14c5d2SYehuda Sadeh 7674b2a58abSTommi Virtanen ret = ceph_crypto_init(); 7683d14c5d2SYehuda Sadeh if (ret < 0) 7693d14c5d2SYehuda Sadeh goto out_debugfs; 7703d14c5d2SYehuda Sadeh 7714b2a58abSTommi Virtanen ret = ceph_msgr_init(); 7724b2a58abSTommi Virtanen if (ret < 0) 7734b2a58abSTommi Virtanen goto out_crypto; 7744b2a58abSTommi Virtanen 7755522ae0bSAlex Elder ret = ceph_osdc_setup(); 7765522ae0bSAlex Elder if (ret < 0) 7775522ae0bSAlex Elder goto out_msgr; 7785522ae0bSAlex Elder 7794f6a7e5eSSage Weil pr_info("loaded (mon/osd proto %d/%d)\n", 7804f6a7e5eSSage Weil CEPH_MONC_PROTOCOL, CEPH_OSDC_PROTOCOL); 7813d14c5d2SYehuda Sadeh 7823d14c5d2SYehuda Sadeh return 0; 7833d14c5d2SYehuda Sadeh 7845522ae0bSAlex Elder out_msgr: 7855522ae0bSAlex Elder ceph_msgr_exit(); 7864b2a58abSTommi Virtanen out_crypto: 7874b2a58abSTommi Virtanen ceph_crypto_shutdown(); 7883d14c5d2SYehuda Sadeh out_debugfs: 7893d14c5d2SYehuda Sadeh ceph_debugfs_cleanup(); 7903d14c5d2SYehuda Sadeh return ret; 7913d14c5d2SYehuda Sadeh } 7923d14c5d2SYehuda Sadeh 7933d14c5d2SYehuda Sadeh static void __exit exit_ceph_lib(void) 7943d14c5d2SYehuda Sadeh { 7953d14c5d2SYehuda Sadeh dout("exit_ceph_lib\n"); 79651e92737SYan, Zheng WARN_ON(!ceph_strings_empty()); 79751e92737SYan, Zheng 7985522ae0bSAlex Elder ceph_osdc_cleanup(); 7993d14c5d2SYehuda Sadeh ceph_msgr_exit(); 8004b2a58abSTommi Virtanen ceph_crypto_shutdown(); 8013d14c5d2SYehuda Sadeh ceph_debugfs_cleanup(); 8023d14c5d2SYehuda Sadeh } 8033d14c5d2SYehuda Sadeh 8043d14c5d2SYehuda Sadeh module_init(init_ceph_lib); 8053d14c5d2SYehuda Sadeh module_exit(exit_ceph_lib); 8063d14c5d2SYehuda Sadeh 8073d14c5d2SYehuda Sadeh MODULE_AUTHOR("Sage Weil <sage@newdream.net>"); 8083d14c5d2SYehuda Sadeh MODULE_AUTHOR("Yehuda Sadeh <yehuda@hq.newdream.net>"); 8093d14c5d2SYehuda Sadeh MODULE_AUTHOR("Patience Warnick <patience@newdream.net>"); 8106c13a6bbSHong Zhiguo MODULE_DESCRIPTION("Ceph core library"); 8113d14c5d2SYehuda Sadeh MODULE_LICENSE("GPL"); 812