messenger.h 8.8 KB
Newer Older
S
Sage Weil 已提交
1 2 3
#ifndef __FS_CEPH_MESSENGER_H
#define __FS_CEPH_MESSENGER_H

4
#include <linux/blk_types.h>
S
Sage Weil 已提交
5
#include <linux/kref.h>
S
Sage Weil 已提交
6 7 8 9 10 11
#include <linux/mutex.h>
#include <linux/net.h>
#include <linux/radix-tree.h>
#include <linux/uio.h>
#include <linux/workqueue.h>

12 13
#include <linux/ceph/types.h>
#include <linux/ceph/buffer.h>
S
Sage Weil 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27

struct ceph_msg;
struct ceph_connection;

/*
 * Ceph defines these callbacks for handling connection events.
 */
struct ceph_connection_operations {
	struct ceph_connection *(*get)(struct ceph_connection *);
	void (*put)(struct ceph_connection *);

	/* handle an incoming message. */
	void (*dispatch) (struct ceph_connection *con, struct ceph_msg *m);

28
	/* authorize an outgoing connection */
29 30
	struct ceph_auth_handshake *(*get_authorizer) (
				struct ceph_connection *con,
31
			       int *proto, int force_new);
32
	int (*verify_authorizer_reply) (struct ceph_connection *con, int len);
33
	int (*invalidate_authorizer)(struct ceph_connection *con);
34

S
Sage Weil 已提交
35 36 37 38 39 40 41 42
	/* there was some error on the socket (disconnect, whatever) */
	void (*fault) (struct ceph_connection *con);

	/* a remote host as terminated a message exchange session, and messages
	 * we sent (or they tried to send us) may be lost. */
	void (*peer_reset) (struct ceph_connection *con);

	struct ceph_msg * (*alloc_msg) (struct ceph_connection *con,
43 44
					struct ceph_msg_header *hdr,
					int *skip);
Y
Yan, Zheng 已提交
45 46 47 48
	int (*sign_message) (struct ceph_connection *con, struct ceph_msg *msg);

	int (*check_message_signature) (struct ceph_connection *con,
					struct ceph_msg *msg);
S
Sage Weil 已提交
49 50 51
};

/* use format string %s%d */
S
Sage Weil 已提交
52
#define ENTITY_NAME(n) ceph_entity_type_name((n).type), le64_to_cpu((n).num)
S
Sage Weil 已提交
53 54 55

struct ceph_messenger {
	struct ceph_entity_inst inst;    /* my name+address */
56
	struct ceph_entity_addr my_enc_addr;
S
Sage Weil 已提交
57

58
	atomic_t stopping;
S
Sage Weil 已提交
59
	bool nocrc;
C
Chaitanya Huilgol 已提交
60
	bool tcp_nodelay;
S
Sage Weil 已提交
61 62 63 64 65 66 67

	/*
	 * the global_seq counts connections i (attempt to) initiate
	 * in order to disambiguate certain connect race conditions.
	 */
	u32 global_seq;
	spinlock_t global_seq_lock;
68

69 70
	u64 supported_features;
	u64 required_features;
S
Sage Weil 已提交
71 72
};

A
Alex Elder 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
enum ceph_msg_data_type {
	CEPH_MSG_DATA_NONE,	/* message contains no data payload */
	CEPH_MSG_DATA_PAGES,	/* data source/destination is a page array */
	CEPH_MSG_DATA_PAGELIST,	/* data source/destination is a pagelist */
#ifdef CONFIG_BLOCK
	CEPH_MSG_DATA_BIO,	/* data source/destination is a bio list */
#endif /* CONFIG_BLOCK */
};

static __inline__ bool ceph_msg_data_type_valid(enum ceph_msg_data_type type)
{
	switch (type) {
	case CEPH_MSG_DATA_NONE:
	case CEPH_MSG_DATA_PAGES:
	case CEPH_MSG_DATA_PAGELIST:
#ifdef CONFIG_BLOCK
	case CEPH_MSG_DATA_BIO:
#endif /* CONFIG_BLOCK */
		return true;
	default:
		return false;
	}
}

A
Alex Elder 已提交
97
struct ceph_msg_data {
98
	struct list_head		links;	/* ceph_msg->data */
A
Alex Elder 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
	enum ceph_msg_data_type		type;
	union {
#ifdef CONFIG_BLOCK
		struct {
			struct bio	*bio;
			size_t		bio_length;
		};
#endif /* CONFIG_BLOCK */
		struct {
			struct page	**pages;	/* NOT OWNER. */
			size_t		length;		/* total # bytes */
			unsigned int	alignment;	/* first page */
		};
		struct ceph_pagelist	*pagelist;
	};
};

116
struct ceph_msg_data_cursor {
117 118 119 120
	size_t			total_resid;	/* across all data items */
	struct list_head	*data_head;	/* = &ceph_msg->data */

	struct ceph_msg_data	*data;		/* current data item */
A
Alex Elder 已提交
121 122 123
	size_t			resid;		/* bytes not yet consumed */
	bool			last_piece;	/* current is last piece */
	bool			need_crc;	/* crc update needed */
124
	union {
125 126 127
#ifdef CONFIG_BLOCK
		struct {				/* bio */
			struct bio	*bio;		/* bio from list */
128
			struct bvec_iter bvec_iter;
129 130
		};
#endif /* CONFIG_BLOCK */
131 132 133 134 135
		struct {				/* pages */
			unsigned int	page_offset;	/* offset in page */
			unsigned short	page_index;	/* index in array */
			unsigned short	page_count;	/* pages in array */
		};
136 137 138 139 140
		struct {				/* pagelist */
			struct page	*page;		/* page from list */
			size_t		offset;		/* bytes from list */
		};
	};
141 142
};

S
Sage Weil 已提交
143 144 145 146 147 148 149
/*
 * a single message.  it contains a header (src, dest, message type, etc.),
 * footer (crc values, mainly), a "front" message body, and possibly a
 * data payload (stored in some number of pages).
 */
struct ceph_msg {
	struct ceph_msg_header hdr;	/* header */
Y
Yan, Zheng 已提交
150 151 152 153
	union {
		struct ceph_msg_footer footer;		/* footer */
		struct ceph_msg_footer_old old_footer;	/* old format footer */
	};
S
Sage Weil 已提交
154 155
	struct kvec front;              /* unaligned blobs of message */
	struct ceph_buffer *middle;
156

A
Alex Elder 已提交
157
	size_t				data_length;
158
	struct list_head		data;
A
Alex Elder 已提交
159
	struct ceph_msg_data_cursor	cursor;
160 161 162 163 164

	struct ceph_connection *con;
	struct list_head list_head;	/* links for connection lists */

	struct kref kref;
S
Sage Weil 已提交
165
	bool more_to_follow;
166
	bool needs_out_seq;
167
	int front_alloc_len;
168
	unsigned long ack_stamp;        /* tx: when we were acked */
S
Sage Weil 已提交
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189

	struct ceph_msgpool *pool;
};

/* ceph connection fault delay defaults, for exponential backoff */
#define BASE_DELAY_INTERVAL	(HZ/2)
#define MAX_DELAY_INTERVAL	(5 * 60 * HZ)

/*
 * A single connection with another host.
 *
 * We maintain a queue of outgoing messages, and some session state to
 * ensure that we can preserve the lossless, ordered delivery of
 * messages in the case of a TCP disconnect.
 */
struct ceph_connection {
	void *private;

	const struct ceph_connection_operations *ops;

	struct ceph_messenger *msgr;
190 191

	atomic_t sock_state;
S
Sage Weil 已提交
192
	struct socket *sock;
193 194 195
	struct ceph_entity_addr peer_addr; /* peer address */
	struct ceph_entity_addr peer_addr_for_me;

196 197
	unsigned long flags;
	unsigned long state;
S
Sage Weil 已提交
198 199 200
	const char *error_msg;  /* error message, if any */

	struct ceph_entity_name peer_name; /* peer name */
201

202
	u64 peer_features;
S
Sage Weil 已提交
203 204 205 206
	u32 connect_seq;      /* identify the most recent connection
				 attempt for this connection, client */
	u32 peer_global_seq;  /* peer's global seq for this connection */

207 208 209 210
	int auth_retry;       /* true if we need a newer authorizer */
	void *auth_reply_buf;   /* where to put the authorizer reply */
	int auth_reply_buf_len;

211 212
	struct mutex mutex;

S
Sage Weil 已提交
213 214 215 216 217 218 219 220 221
	/* out queue */
	struct list_head out_queue;
	struct list_head out_sent;   /* sending or sent but unacked */
	u64 out_seq;		     /* last message queued for send */

	u64 in_seq, in_seq_acked;  /* last message received, acked */

	/* connection negotiation temps */
	char in_banner[CEPH_BANNER_MAX_LEN];
S
Sage Weil 已提交
222 223
	struct ceph_msg_connect out_connect;
	struct ceph_msg_connect_reply in_reply;
S
Sage Weil 已提交
224 225 226 227 228
	struct ceph_entity_addr actual_peer_addr;

	/* message out temps */
	struct ceph_msg *out_msg;        /* sending message (== tail of
					    out_sent) */
229
	bool out_msg_done;
S
Sage Weil 已提交
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253

	struct kvec out_kvec[8],         /* sending header/footer data */
		*out_kvec_cur;
	int out_kvec_left;   /* kvec's left in out_kvec */
	int out_skip;        /* skip this many bytes */
	int out_kvec_bytes;  /* total bytes left */
	bool out_kvec_is_msg; /* kvec refers to out_msg */
	int out_more;        /* there is more data after the kvecs */
	__le64 out_temp_ack; /* for writing an ack */

	/* message in temps */
	struct ceph_msg_header in_hdr;
	struct ceph_msg *in_msg;
	u32 in_front_crc, in_middle_crc, in_data_crc;  /* calculated crc */

	char in_tag;         /* protocol control byte */
	int in_base_pos;     /* bytes read */
	__le64 in_temp_ack;  /* for reading an ack */

	struct delayed_work work;	    /* send|recv work */
	unsigned long       delay;          /* current delay interval */
};


254
extern const char *ceph_pr_addr(const struct sockaddr_storage *ss);
S
Sage Weil 已提交
255 256 257 258 259 260 261
extern int ceph_parse_ips(const char *c, const char *end,
			  struct ceph_entity_addr *addr,
			  int max_count, int *count);


extern int ceph_msgr_init(void);
extern void ceph_msgr_exit(void);
262
extern void ceph_msgr_flush(void);
S
Sage Weil 已提交
263

264 265
extern void ceph_messenger_init(struct ceph_messenger *msgr,
			struct ceph_entity_addr *myaddr,
266 267
			u64 supported_features,
			u64 required_features,
C
Chaitanya Huilgol 已提交
268 269
			bool nocrc,
			bool tcp_nodelay);
S
Sage Weil 已提交
270

271 272
extern void ceph_con_init(struct ceph_connection *con, void *private,
			const struct ceph_connection_operations *ops,
273
			struct ceph_messenger *msgr);
S
Sage Weil 已提交
274
extern void ceph_con_open(struct ceph_connection *con,
275
			  __u8 entity_type, __u64 entity_num,
S
Sage Weil 已提交
276
			  struct ceph_entity_addr *addr);
277
extern bool ceph_con_opened(struct ceph_connection *con);
S
Sage Weil 已提交
278 279
extern void ceph_con_close(struct ceph_connection *con);
extern void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg);
280 281

extern void ceph_msg_revoke(struct ceph_msg *msg);
282 283
extern void ceph_msg_revoke_incoming(struct ceph_msg *msg);

S
Sage Weil 已提交
284 285
extern void ceph_con_keepalive(struct ceph_connection *con);

286
extern void ceph_msg_data_add_pages(struct ceph_msg *msg, struct page **pages,
287
				size_t length, size_t alignment);
288
extern void ceph_msg_data_add_pagelist(struct ceph_msg *msg,
289
				struct ceph_pagelist *pagelist);
290
#ifdef CONFIG_BLOCK
291
extern void ceph_msg_data_add_bio(struct ceph_msg *msg, struct bio *bio,
A
Alex Elder 已提交
292
				size_t length);
293
#endif /* CONFIG_BLOCK */
294

295 296
extern struct ceph_msg *ceph_msg_new(int type, int front_len, gfp_t flags,
				     bool can_fail);
S
Sage Weil 已提交
297

298 299
extern struct ceph_msg *ceph_msg_get(struct ceph_msg *msg);
extern void ceph_msg_put(struct ceph_msg *msg);
S
Sage Weil 已提交
300

301 302
extern void ceph_msg_dump(struct ceph_msg *msg);

S
Sage Weil 已提交
303
#endif