aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/mon_client.h
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2009-10-06 14:31:11 -0400
committerSage Weil <sage@newdream.net>2009-10-06 14:31:11 -0400
commitba75bb98cfb93b62c54af25bf67ff90857264bbe (patch)
tree4a966828835dd4639d25442b932072914e77fc9c /fs/ceph/mon_client.h
parent5ecc0a0f8128b1876e8614638deaed49cc8b174c (diff)
ceph: monitor client
The monitor cluster is responsible for managing cluster membership and state. The monitor client handles what minimal interaction the Ceph client has with it: checking for updated versions of the MDS and OSD maps, getting statfs() information, and unmounting. Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/mon_client.h')
-rw-r--r--fs/ceph/mon_client.h109
1 files changed, 109 insertions, 0 deletions
diff --git a/fs/ceph/mon_client.h b/fs/ceph/mon_client.h
new file mode 100644
index 000000000000..5258c5693b03
--- /dev/null
+++ b/fs/ceph/mon_client.h
@@ -0,0 +1,109 @@
1#ifndef _FS_CEPH_MON_CLIENT_H
2#define _FS_CEPH_MON_CLIENT_H
3
4#include <linux/completion.h>
5#include <linux/radix-tree.h>
6
7#include "messenger.h"
8#include "msgpool.h"
9
10struct ceph_client;
11struct ceph_mount_args;
12
13/*
14 * The monitor map enumerates the set of all monitors.
15 */
16struct ceph_monmap {
17 struct ceph_fsid fsid;
18 u32 epoch;
19 u32 num_mon;
20 struct ceph_entity_inst mon_inst[0];
21};
22
23struct ceph_mon_client;
24struct ceph_mon_statfs_request;
25
26
27/*
28 * Generic mechanism for resending monitor requests.
29 */
30typedef void (*ceph_monc_request_func_t)(struct ceph_mon_client *monc,
31 int newmon);
32
33/* a pending monitor request */
34struct ceph_mon_request {
35 struct ceph_mon_client *monc;
36 struct delayed_work delayed_work;
37 unsigned long delay;
38 ceph_monc_request_func_t do_request;
39};
40
41/*
42 * statfs() is done a bit differently because we need to get data back
43 * to the caller
44 */
45struct ceph_mon_statfs_request {
46 u64 tid;
47 int result;
48 struct ceph_statfs *buf;
49 struct completion completion;
50 unsigned long last_attempt, delay; /* jiffies */
51 struct ceph_msg *request; /* original request */
52};
53
54struct ceph_mon_client {
55 struct ceph_client *client;
56 struct ceph_monmap *monmap;
57
58 struct mutex mutex;
59 struct delayed_work delayed_work;
60
61 bool hunting;
62 int cur_mon; /* last monitor i contacted */
63 unsigned long sub_sent, sub_renew_after;
64 struct ceph_connection *con;
65
66 /* msg pools */
67 struct ceph_msgpool msgpool_mount_ack;
68 struct ceph_msgpool msgpool_subscribe_ack;
69 struct ceph_msgpool msgpool_statfs_reply;
70
71 /* pending statfs requests */
72 struct radix_tree_root statfs_request_tree;
73 int num_statfs_requests;
74 u64 last_tid;
75
76 /* mds/osd map or mount requests */
77 bool want_mount;
78 int want_next_osdmap; /* 1 = want, 2 = want+asked */
79 u32 have_osdmap, have_mdsmap;
80
81 struct dentry *debugfs_file;
82};
83
84extern struct ceph_monmap *ceph_monmap_decode(void *p, void *end);
85extern int ceph_monmap_contains(struct ceph_monmap *m,
86 struct ceph_entity_addr *addr);
87
88extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl);
89extern void ceph_monc_stop(struct ceph_mon_client *monc);
90
91/*
92 * The model here is to indicate that we need a new map of at least
93 * epoch @want, and also call in when we receive a map. We will
94 * periodically rerequest the map from the monitor cluster until we
95 * get what we want.
96 */
97extern int ceph_monc_got_mdsmap(struct ceph_mon_client *monc, u32 have);
98extern int ceph_monc_got_osdmap(struct ceph_mon_client *monc, u32 have);
99
100extern void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc);
101
102extern int ceph_monc_request_mount(struct ceph_mon_client *monc);
103
104extern int ceph_monc_do_statfs(struct ceph_mon_client *monc,
105 struct ceph_statfs *buf);
106
107
108
109#endif