Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 1 | #ifndef _FS_CEPH_MON_CLIENT_H |
| 2 | #define _FS_CEPH_MON_CLIENT_H |
| 3 | |
| 4 | #include <linux/completion.h> |
Sage Weil | 3143edd | 2010-03-24 21:43:33 -0700 | [diff] [blame] | 5 | #include <linux/kref.h> |
Sage Weil | 85ff03f | 2010-02-15 14:47:28 -0800 | [diff] [blame] | 6 | #include <linux/rbtree.h> |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 7 | |
David Howells | a1ce392 | 2012-10-02 18:01:25 +0100 | [diff] [blame] | 8 | #include <linux/ceph/messenger.h> |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 9 | |
| 10 | struct ceph_client; |
| 11 | struct ceph_mount_args; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 12 | struct ceph_auth_client; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 13 | |
| 14 | /* |
| 15 | * The monitor map enumerates the set of all monitors. |
| 16 | */ |
| 17 | struct ceph_monmap { |
| 18 | struct ceph_fsid fsid; |
| 19 | u32 epoch; |
| 20 | u32 num_mon; |
| 21 | struct ceph_entity_inst mon_inst[0]; |
| 22 | }; |
| 23 | |
| 24 | struct ceph_mon_client; |
Yehuda Sadeh | f8c76f6 | 2010-04-22 15:40:37 -0700 | [diff] [blame] | 25 | struct ceph_mon_generic_request; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 26 | |
| 27 | |
| 28 | /* |
| 29 | * Generic mechanism for resending monitor requests. |
| 30 | */ |
| 31 | typedef void (*ceph_monc_request_func_t)(struct ceph_mon_client *monc, |
| 32 | int newmon); |
| 33 | |
| 34 | /* a pending monitor request */ |
| 35 | struct ceph_mon_request { |
| 36 | struct ceph_mon_client *monc; |
| 37 | struct delayed_work delayed_work; |
| 38 | unsigned long delay; |
| 39 | ceph_monc_request_func_t do_request; |
| 40 | }; |
| 41 | |
Ilya Dryomov | d0b1970 | 2016-04-28 16:07:27 +0200 | [diff] [blame] | 42 | typedef void (*ceph_monc_callback_t)(struct ceph_mon_generic_request *); |
| 43 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 44 | /* |
Ilya Dryomov | 7a6fdeb | 2014-12-22 19:14:26 +0300 | [diff] [blame] | 45 | * ceph_mon_generic_request is being used for the statfs and |
Ilya Dryomov | 513a824 | 2014-05-13 11:19:26 +0400 | [diff] [blame] | 46 | * mon_get_version requests which are being done a bit differently |
| 47 | * because we need to get data back to the caller |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 48 | */ |
Yehuda Sadeh | f8c76f6 | 2010-04-22 15:40:37 -0700 | [diff] [blame] | 49 | struct ceph_mon_generic_request { |
Ilya Dryomov | d0b1970 | 2016-04-28 16:07:27 +0200 | [diff] [blame] | 50 | struct ceph_mon_client *monc; |
Sage Weil | 3143edd | 2010-03-24 21:43:33 -0700 | [diff] [blame] | 51 | struct kref kref; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 52 | u64 tid; |
Sage Weil | 85ff03f | 2010-02-15 14:47:28 -0800 | [diff] [blame] | 53 | struct rb_node node; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 54 | int result; |
Ilya Dryomov | d0b1970 | 2016-04-28 16:07:27 +0200 | [diff] [blame] | 55 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 56 | struct completion completion; |
Ilya Dryomov | d0b1970 | 2016-04-28 16:07:27 +0200 | [diff] [blame] | 57 | ceph_monc_callback_t complete_cb; |
| 58 | u64 private_data; /* r_tid/linger_id */ |
| 59 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 60 | struct ceph_msg *request; /* original request */ |
Sage Weil | 3143edd | 2010-03-24 21:43:33 -0700 | [diff] [blame] | 61 | struct ceph_msg *reply; /* and reply */ |
Ilya Dryomov | d0b1970 | 2016-04-28 16:07:27 +0200 | [diff] [blame] | 62 | |
| 63 | union { |
| 64 | struct ceph_statfs *st; |
| 65 | u64 newest; |
| 66 | } u; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | struct ceph_mon_client { |
| 70 | struct ceph_client *client; |
| 71 | struct ceph_monmap *monmap; |
| 72 | |
| 73 | struct mutex mutex; |
| 74 | struct delayed_work delayed_work; |
| 75 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 76 | struct ceph_auth_client *auth; |
Sage Weil | 240ed68 | 2010-05-21 14:57:25 -0700 | [diff] [blame] | 77 | struct ceph_msg *m_auth, *m_auth_reply, *m_subscribe, *m_subscribe_ack; |
Sage Weil | 9bd2e6f | 2010-02-02 16:21:06 -0800 | [diff] [blame] | 78 | int pending_auth; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 79 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 80 | bool hunting; |
| 81 | int cur_mon; /* last monitor i contacted */ |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 82 | unsigned long sub_renew_after; |
| 83 | unsigned long sub_renew_sent; |
Alex Elder | 6713093 | 2012-05-26 23:26:43 -0500 | [diff] [blame] | 84 | struct ceph_connection con; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 85 | |
Ilya Dryomov | 168b909 | 2016-01-21 16:33:19 +0100 | [diff] [blame] | 86 | bool had_a_connection; |
| 87 | int hunt_mult; /* [1..CEPH_MONC_HUNT_MAX_MULT] */ |
| 88 | |
Yehuda Sadeh | f8c76f6 | 2010-04-22 15:40:37 -0700 | [diff] [blame] | 89 | /* pending generic requests */ |
| 90 | struct rb_root generic_request_tree; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 91 | u64 last_tid; |
| 92 | |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 93 | /* subs, indexed with CEPH_SUB_* */ |
| 94 | struct { |
| 95 | struct ceph_mon_subscribe_item item; |
| 96 | bool want; |
| 97 | u32 have; /* epoch */ |
Yan, Zheng | 0cabbd9 | 2016-04-07 11:34:43 +0800 | [diff] [blame] | 98 | } subs[4]; |
Ilya Dryomov | 737cc81e | 2016-05-26 00:05:01 +0200 | [diff] [blame] | 99 | int fs_cluster_id; /* "mdsmap.<id>" sub */ |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 100 | |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 101 | #ifdef CONFIG_DEBUG_FS |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 102 | struct dentry *debugfs_file; |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 103 | #endif |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | extern struct ceph_monmap *ceph_monmap_decode(void *p, void *end); |
| 107 | extern int ceph_monmap_contains(struct ceph_monmap *m, |
| 108 | struct ceph_entity_addr *addr); |
| 109 | |
| 110 | extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl); |
| 111 | extern void ceph_monc_stop(struct ceph_mon_client *monc); |
| 112 | |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 113 | enum { |
Yan, Zheng | 0cabbd9 | 2016-04-07 11:34:43 +0800 | [diff] [blame] | 114 | CEPH_SUB_MONMAP = 0, |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 115 | CEPH_SUB_OSDMAP, |
Yan, Zheng | 0cabbd9 | 2016-04-07 11:34:43 +0800 | [diff] [blame] | 116 | CEPH_SUB_FSMAP, |
| 117 | CEPH_SUB_MDSMAP, |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | extern const char *ceph_sub_str[]; |
| 121 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 122 | /* |
| 123 | * The model here is to indicate that we need a new map of at least |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 124 | * epoch @epoch, and also call in when we receive a map. We will |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 125 | * periodically rerequest the map from the monitor cluster until we |
| 126 | * get what we want. |
| 127 | */ |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 128 | bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch, |
| 129 | bool continuous); |
| 130 | void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch); |
Ilya Dryomov | 42c1b12 | 2016-04-28 16:07:25 +0200 | [diff] [blame] | 131 | void ceph_monc_renew_subs(struct ceph_mon_client *monc); |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 132 | |
Ilya Dryomov | 6044cde | 2014-05-13 11:19:27 +0400 | [diff] [blame] | 133 | extern int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch, |
| 134 | unsigned long timeout); |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 135 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 136 | extern int ceph_monc_do_statfs(struct ceph_mon_client *monc, |
| 137 | struct ceph_statfs *buf); |
| 138 | |
Ilya Dryomov | d0b1970 | 2016-04-28 16:07:27 +0200 | [diff] [blame] | 139 | int ceph_monc_get_version(struct ceph_mon_client *monc, const char *what, |
| 140 | u64 *newest); |
| 141 | int ceph_monc_get_version_async(struct ceph_mon_client *monc, const char *what, |
| 142 | ceph_monc_callback_t cb, u64 private_data); |
Ilya Dryomov | 513a824 | 2014-05-13 11:19:26 +0400 | [diff] [blame] | 143 | |
Douglas Fuller | 6305a3b | 2015-07-22 20:59:52 -0400 | [diff] [blame^] | 144 | int ceph_monc_blacklist_add(struct ceph_mon_client *monc, |
| 145 | struct ceph_entity_addr *client_addr); |
| 146 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 147 | extern int ceph_monc_open_session(struct ceph_mon_client *monc); |
| 148 | |
Sage Weil | 9bd2e6f | 2010-02-02 16:21:06 -0800 | [diff] [blame] | 149 | extern int ceph_monc_validate_auth(struct ceph_mon_client *monc); |
| 150 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 151 | #endif |