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 | |
| 42 | /* |
Ilya Dryomov | 7a6fdeb | 2014-12-22 19:14:26 +0300 | [diff] [blame] | 43 | * ceph_mon_generic_request is being used for the statfs and |
Ilya Dryomov | 513a824 | 2014-05-13 11:19:26 +0400 | [diff] [blame] | 44 | * mon_get_version requests which are being done a bit differently |
| 45 | * because we need to get data back to the caller |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 46 | */ |
Yehuda Sadeh | f8c76f6 | 2010-04-22 15:40:37 -0700 | [diff] [blame] | 47 | struct ceph_mon_generic_request { |
Sage Weil | 3143edd | 2010-03-24 21:43:33 -0700 | [diff] [blame] | 48 | struct kref kref; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 49 | u64 tid; |
Sage Weil | 85ff03f | 2010-02-15 14:47:28 -0800 | [diff] [blame] | 50 | struct rb_node node; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 51 | int result; |
Yehuda Sadeh | f8c76f6 | 2010-04-22 15:40:37 -0700 | [diff] [blame] | 52 | void *buf; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 53 | struct completion completion; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 54 | struct ceph_msg *request; /* original request */ |
Sage Weil | 3143edd | 2010-03-24 21:43:33 -0700 | [diff] [blame] | 55 | struct ceph_msg *reply; /* and reply */ |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | struct ceph_mon_client { |
| 59 | struct ceph_client *client; |
| 60 | struct ceph_monmap *monmap; |
| 61 | |
| 62 | struct mutex mutex; |
| 63 | struct delayed_work delayed_work; |
| 64 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 65 | struct ceph_auth_client *auth; |
Sage Weil | 240ed68 | 2010-05-21 14:57:25 -0700 | [diff] [blame] | 66 | 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] | 67 | int pending_auth; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 68 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 69 | bool hunting; |
| 70 | int cur_mon; /* last monitor i contacted */ |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 71 | unsigned long sub_renew_after; |
| 72 | unsigned long sub_renew_sent; |
Alex Elder | 6713093 | 2012-05-26 23:26:43 -0500 | [diff] [blame] | 73 | struct ceph_connection con; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 74 | |
Ilya Dryomov | 168b909 | 2016-01-21 16:33:19 +0100 | [diff] [blame] | 75 | bool had_a_connection; |
| 76 | int hunt_mult; /* [1..CEPH_MONC_HUNT_MAX_MULT] */ |
| 77 | |
Yehuda Sadeh | f8c76f6 | 2010-04-22 15:40:37 -0700 | [diff] [blame] | 78 | /* pending generic requests */ |
| 79 | struct rb_root generic_request_tree; |
| 80 | int num_generic_requests; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 81 | u64 last_tid; |
| 82 | |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 83 | /* subs, indexed with CEPH_SUB_* */ |
| 84 | struct { |
| 85 | struct ceph_mon_subscribe_item item; |
| 86 | bool want; |
| 87 | u32 have; /* epoch */ |
| 88 | } subs[3]; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 89 | |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 90 | #ifdef CONFIG_DEBUG_FS |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 91 | struct dentry *debugfs_file; |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 92 | #endif |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 93 | }; |
| 94 | |
| 95 | extern struct ceph_monmap *ceph_monmap_decode(void *p, void *end); |
| 96 | extern int ceph_monmap_contains(struct ceph_monmap *m, |
| 97 | struct ceph_entity_addr *addr); |
| 98 | |
| 99 | extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl); |
| 100 | extern void ceph_monc_stop(struct ceph_mon_client *monc); |
| 101 | |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 102 | enum { |
| 103 | CEPH_SUB_MDSMAP = 0, |
| 104 | CEPH_SUB_MONMAP, |
| 105 | CEPH_SUB_OSDMAP, |
| 106 | }; |
| 107 | |
| 108 | extern const char *ceph_sub_str[]; |
| 109 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 110 | /* |
| 111 | * 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] | 112 | * 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] | 113 | * periodically rerequest the map from the monitor cluster until we |
| 114 | * get what we want. |
| 115 | */ |
Ilya Dryomov | 82dcaba | 2016-01-19 16:19:06 +0100 | [diff] [blame] | 116 | bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch, |
| 117 | bool continuous); |
| 118 | void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch); |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 119 | |
| 120 | extern void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc); |
Ilya Dryomov | 6044cde | 2014-05-13 11:19:27 +0400 | [diff] [blame] | 121 | extern int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch, |
| 122 | unsigned long timeout); |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 123 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 124 | extern int ceph_monc_do_statfs(struct ceph_mon_client *monc, |
| 125 | struct ceph_statfs *buf); |
| 126 | |
Ilya Dryomov | 513a824 | 2014-05-13 11:19:26 +0400 | [diff] [blame] | 127 | extern int ceph_monc_do_get_version(struct ceph_mon_client *monc, |
| 128 | const char *what, u64 *newest); |
| 129 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 130 | extern int ceph_monc_open_session(struct ceph_mon_client *monc); |
| 131 | |
Sage Weil | 9bd2e6f | 2010-02-02 16:21:06 -0800 | [diff] [blame] | 132 | extern int ceph_monc_validate_auth(struct ceph_mon_client *monc); |
| 133 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 134 | #endif |