License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / include / linux / ceph / mon_client.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
ba75bb98
SW
2#ifndef _FS_CEPH_MON_CLIENT_H
3#define _FS_CEPH_MON_CLIENT_H
4
5#include <linux/completion.h>
3143edd3 6#include <linux/kref.h>
85ff03f6 7#include <linux/rbtree.h>
ba75bb98 8
a1ce3928 9#include <linux/ceph/messenger.h>
ba75bb98
SW
10
11struct ceph_client;
12struct ceph_mount_args;
4e7a5dcd 13struct ceph_auth_client;
ba75bb98
SW
14
15/*
16 * The monitor map enumerates the set of all monitors.
17 */
18struct ceph_monmap {
19 struct ceph_fsid fsid;
20 u32 epoch;
21 u32 num_mon;
22 struct ceph_entity_inst mon_inst[0];
23};
24
25struct ceph_mon_client;
f8c76f6f 26struct ceph_mon_generic_request;
ba75bb98
SW
27
28
29/*
30 * Generic mechanism for resending monitor requests.
31 */
32typedef void (*ceph_monc_request_func_t)(struct ceph_mon_client *monc,
33 int newmon);
34
35/* a pending monitor request */
36struct ceph_mon_request {
37 struct ceph_mon_client *monc;
38 struct delayed_work delayed_work;
39 unsigned long delay;
40 ceph_monc_request_func_t do_request;
41};
42
d0b19705
ID
43typedef void (*ceph_monc_callback_t)(struct ceph_mon_generic_request *);
44
ba75bb98 45/*
7a6fdeb2 46 * ceph_mon_generic_request is being used for the statfs and
513a8243
ID
47 * mon_get_version requests which are being done a bit differently
48 * because we need to get data back to the caller
ba75bb98 49 */
f8c76f6f 50struct ceph_mon_generic_request {
d0b19705 51 struct ceph_mon_client *monc;
3143edd3 52 struct kref kref;
ba75bb98 53 u64 tid;
85ff03f6 54 struct rb_node node;
ba75bb98 55 int result;
d0b19705 56
ba75bb98 57 struct completion completion;
d0b19705
ID
58 ceph_monc_callback_t complete_cb;
59 u64 private_data; /* r_tid/linger_id */
60
ba75bb98 61 struct ceph_msg *request; /* original request */
3143edd3 62 struct ceph_msg *reply; /* and reply */
d0b19705
ID
63
64 union {
65 struct ceph_statfs *st;
66 u64 newest;
67 } u;
ba75bb98
SW
68};
69
70struct ceph_mon_client {
71 struct ceph_client *client;
72 struct ceph_monmap *monmap;
73
74 struct mutex mutex;
75 struct delayed_work delayed_work;
76
4e7a5dcd 77 struct ceph_auth_client *auth;
240ed68e 78 struct ceph_msg *m_auth, *m_auth_reply, *m_subscribe, *m_subscribe_ack;
9bd2e6f8 79 int pending_auth;
4e7a5dcd 80
ba75bb98
SW
81 bool hunting;
82 int cur_mon; /* last monitor i contacted */
82dcabad
ID
83 unsigned long sub_renew_after;
84 unsigned long sub_renew_sent;
67130934 85 struct ceph_connection con;
ba75bb98 86
168b9090
ID
87 bool had_a_connection;
88 int hunt_mult; /* [1..CEPH_MONC_HUNT_MAX_MULT] */
89
f8c76f6f
YS
90 /* pending generic requests */
91 struct rb_root generic_request_tree;
ba75bb98
SW
92 u64 last_tid;
93
82dcabad
ID
94 /* subs, indexed with CEPH_SUB_* */
95 struct {
96 struct ceph_mon_subscribe_item item;
97 bool want;
98 u32 have; /* epoch */
0cabbd94 99 } subs[4];
737cc81e 100 int fs_cluster_id; /* "mdsmap.<id>" sub */
ba75bb98 101
039934b8 102#ifdef CONFIG_DEBUG_FS
ba75bb98 103 struct dentry *debugfs_file;
039934b8 104#endif
ba75bb98
SW
105};
106
107extern struct ceph_monmap *ceph_monmap_decode(void *p, void *end);
108extern int ceph_monmap_contains(struct ceph_monmap *m,
109 struct ceph_entity_addr *addr);
110
111extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl);
112extern void ceph_monc_stop(struct ceph_mon_client *monc);
113
82dcabad 114enum {
0cabbd94 115 CEPH_SUB_MONMAP = 0,
82dcabad 116 CEPH_SUB_OSDMAP,
0cabbd94
YZ
117 CEPH_SUB_FSMAP,
118 CEPH_SUB_MDSMAP,
82dcabad
ID
119};
120
121extern const char *ceph_sub_str[];
122
ba75bb98
SW
123/*
124 * The model here is to indicate that we need a new map of at least
82dcabad 125 * epoch @epoch, and also call in when we receive a map. We will
ba75bb98
SW
126 * periodically rerequest the map from the monitor cluster until we
127 * get what we want.
128 */
82dcabad
ID
129bool ceph_monc_want_map(struct ceph_mon_client *monc, int sub, u32 epoch,
130 bool continuous);
131void ceph_monc_got_map(struct ceph_mon_client *monc, int sub, u32 epoch);
42c1b124 132void ceph_monc_renew_subs(struct ceph_mon_client *monc);
ba75bb98 133
6044cde6
ID
134extern int ceph_monc_wait_osdmap(struct ceph_mon_client *monc, u32 epoch,
135 unsigned long timeout);
ba75bb98 136
06d74376
DF
137int ceph_monc_do_statfs(struct ceph_mon_client *monc, u64 data_pool,
138 struct ceph_statfs *buf);
ba75bb98 139
d0b19705
ID
140int ceph_monc_get_version(struct ceph_mon_client *monc, const char *what,
141 u64 *newest);
142int ceph_monc_get_version_async(struct ceph_mon_client *monc, const char *what,
143 ceph_monc_callback_t cb, u64 private_data);
513a8243 144
6305a3b4
DF
145int ceph_monc_blacklist_add(struct ceph_mon_client *monc,
146 struct ceph_entity_addr *client_addr);
147
4e7a5dcd
SW
148extern int ceph_monc_open_session(struct ceph_mon_client *monc);
149
9bd2e6f8
SW
150extern int ceph_monc_validate_auth(struct ceph_mon_client *monc);
151
ba75bb98 152#endif