1 #ifndef _FS_CEPH_MON_CLIENT_H
2 #define _FS_CEPH_MON_CLIENT_H
4 #include <linux/completion.h>
5 #include <linux/kref.h>
6 #include <linux/rbtree.h>
8 #include <linux/ceph/messenger.h>
11 struct ceph_mount_args
;
12 struct ceph_auth_client
;
15 * The monitor map enumerates the set of all monitors.
18 struct ceph_fsid fsid
;
21 struct ceph_entity_inst mon_inst
[0];
24 struct ceph_mon_client
;
25 struct ceph_mon_generic_request
;
29 * Generic mechanism for resending monitor requests.
31 typedef void (*ceph_monc_request_func_t
)(struct ceph_mon_client
*monc
,
34 /* a pending monitor request */
35 struct ceph_mon_request
{
36 struct ceph_mon_client
*monc
;
37 struct delayed_work delayed_work
;
39 ceph_monc_request_func_t do_request
;
42 typedef void (*ceph_monc_callback_t
)(struct ceph_mon_generic_request
*);
45 * ceph_mon_generic_request is being used for the statfs and
46 * mon_get_version requests which are being done a bit differently
47 * because we need to get data back to the caller
49 struct ceph_mon_generic_request
{
50 struct ceph_mon_client
*monc
;
56 struct completion completion
;
57 ceph_monc_callback_t complete_cb
;
58 u64 private_data
; /* r_tid/linger_id */
60 struct ceph_msg
*request
; /* original request */
61 struct ceph_msg
*reply
; /* and reply */
64 struct ceph_statfs
*st
;
69 struct ceph_mon_client
{
70 struct ceph_client
*client
;
71 struct ceph_monmap
*monmap
;
74 struct delayed_work delayed_work
;
76 struct ceph_auth_client
*auth
;
77 struct ceph_msg
*m_auth
, *m_auth_reply
, *m_subscribe
, *m_subscribe_ack
;
81 int cur_mon
; /* last monitor i contacted */
82 unsigned long sub_renew_after
;
83 unsigned long sub_renew_sent
;
84 struct ceph_connection con
;
86 bool had_a_connection
;
87 int hunt_mult
; /* [1..CEPH_MONC_HUNT_MAX_MULT] */
89 /* pending generic requests */
90 struct rb_root generic_request_tree
;
93 /* subs, indexed with CEPH_SUB_* */
95 struct ceph_mon_subscribe_item item
;
99 int fs_cluster_id
; /* "mdsmap.<id>" sub */
101 #ifdef CONFIG_DEBUG_FS
102 struct dentry
*debugfs_file
;
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
);
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
);
120 extern const char *ceph_sub_str
[];
123 * The model here is to indicate that we need a new map of at least
124 * epoch @epoch, and also call in when we receive a map. We will
125 * periodically rerequest the map from the monitor cluster until we
128 bool ceph_monc_want_map(struct ceph_mon_client
*monc
, int sub
, u32 epoch
,
130 void ceph_monc_got_map(struct ceph_mon_client
*monc
, int sub
, u32 epoch
);
131 void ceph_monc_renew_subs(struct ceph_mon_client
*monc
);
133 extern int ceph_monc_wait_osdmap(struct ceph_mon_client
*monc
, u32 epoch
,
134 unsigned long timeout
);
136 extern int ceph_monc_do_statfs(struct ceph_mon_client
*monc
,
137 struct ceph_statfs
*buf
);
139 int ceph_monc_get_version(struct ceph_mon_client
*monc
, const char *what
,
141 int ceph_monc_get_version_async(struct ceph_mon_client
*monc
, const char *what
,
142 ceph_monc_callback_t cb
, u64 private_data
);
144 int ceph_monc_blacklist_add(struct ceph_mon_client
*monc
,
145 struct ceph_entity_addr
*client_addr
);
147 extern int ceph_monc_open_session(struct ceph_mon_client
*monc
);
149 extern int ceph_monc_validate_auth(struct ceph_mon_client
*monc
);