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> |
| 5 | #include <linux/radix-tree.h> |
| 6 | |
| 7 | #include "messenger.h" |
| 8 | #include "msgpool.h" |
| 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; |
| 25 | struct ceph_mon_statfs_request; |
| 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 | /* |
| 43 | * statfs() is done a bit differently because we need to get data back |
| 44 | * to the caller |
| 45 | */ |
| 46 | struct ceph_mon_statfs_request { |
| 47 | u64 tid; |
| 48 | int result; |
| 49 | struct ceph_statfs *buf; |
| 50 | struct completion completion; |
| 51 | unsigned long last_attempt, delay; /* jiffies */ |
| 52 | struct ceph_msg *request; /* original request */ |
| 53 | }; |
| 54 | |
| 55 | struct ceph_mon_client { |
| 56 | struct ceph_client *client; |
| 57 | struct ceph_monmap *monmap; |
| 58 | |
| 59 | struct mutex mutex; |
| 60 | struct delayed_work delayed_work; |
| 61 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 62 | struct ceph_auth_client *auth; |
| 63 | struct ceph_msg *m_auth; |
Sage Weil | 9bd2e6f | 2010-02-02 16:21:06 -0800 | [diff] [blame^] | 64 | int pending_auth; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 65 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 66 | bool hunting; |
| 67 | int cur_mon; /* last monitor i contacted */ |
| 68 | unsigned long sub_sent, sub_renew_after; |
| 69 | struct ceph_connection *con; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 70 | bool have_fsid; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 71 | |
| 72 | /* msg pools */ |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 73 | struct ceph_msgpool msgpool_subscribe_ack; |
| 74 | struct ceph_msgpool msgpool_statfs_reply; |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 75 | struct ceph_msgpool msgpool_auth_reply; |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 76 | |
| 77 | /* pending statfs requests */ |
| 78 | struct radix_tree_root statfs_request_tree; |
| 79 | int num_statfs_requests; |
| 80 | u64 last_tid; |
| 81 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 82 | /* mds/osd map */ |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 83 | int want_next_osdmap; /* 1 = want, 2 = want+asked */ |
| 84 | u32 have_osdmap, have_mdsmap; |
| 85 | |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 86 | #ifdef CONFIG_DEBUG_FS |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 87 | struct dentry *debugfs_file; |
Sage Weil | 039934b | 2009-11-12 15:05:52 -0800 | [diff] [blame] | 88 | #endif |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 89 | }; |
| 90 | |
| 91 | extern struct ceph_monmap *ceph_monmap_decode(void *p, void *end); |
| 92 | extern int ceph_monmap_contains(struct ceph_monmap *m, |
| 93 | struct ceph_entity_addr *addr); |
| 94 | |
| 95 | extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl); |
| 96 | extern void ceph_monc_stop(struct ceph_mon_client *monc); |
| 97 | |
| 98 | /* |
| 99 | * The model here is to indicate that we need a new map of at least |
| 100 | * epoch @want, and also call in when we receive a map. We will |
| 101 | * periodically rerequest the map from the monitor cluster until we |
| 102 | * get what we want. |
| 103 | */ |
| 104 | extern int ceph_monc_got_mdsmap(struct ceph_mon_client *monc, u32 have); |
| 105 | extern int ceph_monc_got_osdmap(struct ceph_mon_client *monc, u32 have); |
| 106 | |
| 107 | extern void ceph_monc_request_next_osdmap(struct ceph_mon_client *monc); |
| 108 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 109 | extern int ceph_monc_do_statfs(struct ceph_mon_client *monc, |
| 110 | struct ceph_statfs *buf); |
| 111 | |
Sage Weil | 4e7a5dc | 2009-11-18 16:19:57 -0800 | [diff] [blame] | 112 | extern int ceph_monc_open_session(struct ceph_mon_client *monc); |
| 113 | |
Sage Weil | 9bd2e6f | 2010-02-02 16:21:06 -0800 | [diff] [blame^] | 114 | extern int ceph_monc_validate_auth(struct ceph_mon_client *monc); |
| 115 | |
Sage Weil | ba75bb9 | 2009-10-06 11:31:11 -0700 | [diff] [blame] | 116 | |
| 117 | |
| 118 | #endif |