blob: 8b2d2f0b659e6064a2d03f915c9f4a949a122a7a [file] [log] [blame]
Sage Weilba75bb92009-10-06 11:31:11 -07001#ifndef _FS_CEPH_MON_CLIENT_H
2#define _FS_CEPH_MON_CLIENT_H
3
4#include <linux/completion.h>
Sage Weil3143edd2010-03-24 21:43:33 -07005#include <linux/kref.h>
Sage Weil85ff03f2010-02-15 14:47:28 -08006#include <linux/rbtree.h>
Sage Weilba75bb92009-10-06 11:31:11 -07007
David Howellsa1ce3922012-10-02 18:01:25 +01008#include <linux/ceph/messenger.h>
Sage Weilba75bb92009-10-06 11:31:11 -07009
10struct ceph_client;
11struct ceph_mount_args;
Sage Weil4e7a5dc2009-11-18 16:19:57 -080012struct ceph_auth_client;
Sage Weilba75bb92009-10-06 11:31:11 -070013
14/*
15 * The monitor map enumerates the set of all monitors.
16 */
17struct ceph_monmap {
18 struct ceph_fsid fsid;
19 u32 epoch;
20 u32 num_mon;
21 struct ceph_entity_inst mon_inst[0];
22};
23
24struct ceph_mon_client;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -070025struct ceph_mon_generic_request;
Sage Weilba75bb92009-10-06 11:31:11 -070026
27
28/*
29 * Generic mechanism for resending monitor requests.
30 */
31typedef void (*ceph_monc_request_func_t)(struct ceph_mon_client *monc,
32 int newmon);
33
34/* a pending monitor request */
35struct 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 Dryomov7a6fdeb2014-12-22 19:14:26 +030043 * ceph_mon_generic_request is being used for the statfs and
Ilya Dryomov513a8242014-05-13 11:19:26 +040044 * mon_get_version requests which are being done a bit differently
45 * because we need to get data back to the caller
Sage Weilba75bb92009-10-06 11:31:11 -070046 */
Yehuda Sadehf8c76f62010-04-22 15:40:37 -070047struct ceph_mon_generic_request {
Sage Weil3143edd2010-03-24 21:43:33 -070048 struct kref kref;
Sage Weilba75bb92009-10-06 11:31:11 -070049 u64 tid;
Sage Weil85ff03f2010-02-15 14:47:28 -080050 struct rb_node node;
Sage Weilba75bb92009-10-06 11:31:11 -070051 int result;
Yehuda Sadehf8c76f62010-04-22 15:40:37 -070052 void *buf;
Sage Weilba75bb92009-10-06 11:31:11 -070053 struct completion completion;
Sage Weilba75bb92009-10-06 11:31:11 -070054 struct ceph_msg *request; /* original request */
Sage Weil3143edd2010-03-24 21:43:33 -070055 struct ceph_msg *reply; /* and reply */
Sage Weilba75bb92009-10-06 11:31:11 -070056};
57
58struct 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 Weil4e7a5dc2009-11-18 16:19:57 -080065 struct ceph_auth_client *auth;
Sage Weil240ed682010-05-21 14:57:25 -070066 struct ceph_msg *m_auth, *m_auth_reply, *m_subscribe, *m_subscribe_ack;
Sage Weil9bd2e6f2010-02-02 16:21:06 -080067 int pending_auth;
Sage Weil4e7a5dc2009-11-18 16:19:57 -080068
Sage Weilba75bb92009-10-06 11:31:11 -070069 bool hunting;
70 int cur_mon; /* last monitor i contacted */
Ilya Dryomov82dcaba2016-01-19 16:19:06 +010071 unsigned long sub_renew_after;
72 unsigned long sub_renew_sent;
Alex Elder67130932012-05-26 23:26:43 -050073 struct ceph_connection con;
Sage Weilba75bb92009-10-06 11:31:11 -070074
Yehuda Sadehf8c76f62010-04-22 15:40:37 -070075 /* pending generic requests */
76 struct rb_root generic_request_tree;
77 int num_generic_requests;
Sage Weilba75bb92009-10-06 11:31:11 -070078 u64 last_tid;
79
Ilya Dryomov82dcaba2016-01-19 16:19:06 +010080 /* subs, indexed with CEPH_SUB_* */
81 struct {
82 struct ceph_mon_subscribe_item item;
83 bool want;
84 u32 have; /* epoch */
85 } subs[3];
Sage Weilba75bb92009-10-06 11:31:11 -070086
Sage Weil039934b2009-11-12 15:05:52 -080087#ifdef CONFIG_DEBUG_FS
Sage Weilba75bb92009-10-06 11:31:11 -070088 struct dentry *debugfs_file;
Sage Weil039934b2009-11-12 15:05:52 -080089#endif
Sage Weilba75bb92009-10-06 11:31:11 -070090};
91
92extern struct ceph_monmap *ceph_monmap_decode(void *p, void *end);
93extern int ceph_monmap_contains(struct ceph_monmap *m,
94 struct ceph_entity_addr *addr);
95
96extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl);
97extern void ceph_monc_stop(struct ceph_mon_client *monc);
98
Ilya Dryomov82dcaba2016-01-19 16:19:06 +010099enum {
100 CEPH_SUB_MDSMAP = 0,
101 CEPH_SUB_MONMAP,
102 CEPH_SUB_OSDMAP,
103};
104
105extern const char *ceph_sub_str[];
106
Sage Weilba75bb92009-10-06 11:31:11 -0700107/*
108 * The model here is to indicate that we need a new map of at least
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100109 * epoch @epoch, and also call in when we receive a map. We will
Sage Weilba75bb92009-10-06 11:31:11 -0700110 * periodically rerequest the map from the monitor cluster until we
111 * get what we want.
112 */
Ilya Dryomov82dcaba2016-01-19 16:19:06 +0100113bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch,
114 bool continuous);
115void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch);
Sage Weilba75bb92009-10-06 11:31:11 -0700116
117extern void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc);
Ilya Dryomov6044cde2014-05-13 11:19:27 +0400118extern int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch,
119 unsigned long timeout);
Sage Weilba75bb92009-10-06 11:31:11 -0700120
Sage Weilba75bb92009-10-06 11:31:11 -0700121extern int ceph_monc_do_statfs(struct ceph_mon_client *monc,
122 struct ceph_statfs *buf);
123
Ilya Dryomov513a8242014-05-13 11:19:26 +0400124extern int ceph_monc_do_get_version(struct ceph_mon_client *monc,
125 const char *what, u64 *newest);
126
Sage Weil4e7a5dc2009-11-18 16:19:57 -0800127extern int ceph_monc_open_session(struct ceph_mon_client *monc);
128
Sage Weil9bd2e6f2010-02-02 16:21:06 -0800129extern int ceph_monc_validate_auth(struct ceph_mon_client *monc);
130
Sage Weilba75bb92009-10-06 11:31:11 -0700131#endif