messenger.h 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #ifndef __FS_CEPH_MESSENGER_H
  2. #define __FS_CEPH_MESSENGER_H
  3. #include <linux/mutex.h>
  4. #include <linux/net.h>
  5. #include <linux/radix-tree.h>
  6. #include <linux/uio.h>
  7. #include <linux/version.h>
  8. #include <linux/workqueue.h>
  9. #include "types.h"
  10. #include "buffer.h"
  11. struct ceph_msg;
  12. struct ceph_connection;
  13. extern struct workqueue_struct *ceph_msgr_wq; /* receive work queue */
  14. /*
  15. * Ceph defines these callbacks for handling connection events.
  16. */
  17. struct ceph_connection_operations {
  18. struct ceph_connection *(*get)(struct ceph_connection *);
  19. void (*put)(struct ceph_connection *);
  20. /* handle an incoming message. */
  21. void (*dispatch) (struct ceph_connection *con, struct ceph_msg *m);
  22. /* protocol version mismatch */
  23. void (*bad_proto) (struct ceph_connection *con);
  24. /* there was some error on the socket (disconnect, whatever) */
  25. void (*fault) (struct ceph_connection *con);
  26. /* a remote host as terminated a message exchange session, and messages
  27. * we sent (or they tried to send us) may be lost. */
  28. void (*peer_reset) (struct ceph_connection *con);
  29. struct ceph_msg * (*alloc_msg) (struct ceph_connection *con,
  30. struct ceph_msg_header *hdr);
  31. int (*alloc_middle) (struct ceph_connection *con,
  32. struct ceph_msg *msg);
  33. /* an incoming message has a data payload; tell me what pages I
  34. * should read the data into. */
  35. int (*prepare_pages) (struct ceph_connection *con, struct ceph_msg *m,
  36. int want);
  37. };
  38. extern const char *ceph_name_type_str(int t);
  39. /* use format string %s%d */
  40. #define ENTITY_NAME(n) ceph_name_type_str((n).type), le64_to_cpu((n).num)
  41. struct ceph_messenger {
  42. struct ceph_entity_inst inst; /* my name+address */
  43. struct ceph_entity_addr my_enc_addr;
  44. struct page *zero_page; /* used in certain error cases */
  45. bool nocrc;
  46. /*
  47. * the global_seq counts connections i (attempt to) initiate
  48. * in order to disambiguate certain connect race conditions.
  49. */
  50. u32 global_seq;
  51. spinlock_t global_seq_lock;
  52. };
  53. /*
  54. * a single message. it contains a header (src, dest, message type, etc.),
  55. * footer (crc values, mainly), a "front" message body, and possibly a
  56. * data payload (stored in some number of pages).
  57. */
  58. struct ceph_msg {
  59. struct ceph_msg_header hdr; /* header */
  60. struct ceph_msg_footer footer; /* footer */
  61. struct kvec front; /* unaligned blobs of message */
  62. struct ceph_buffer *middle;
  63. struct page **pages; /* data payload. NOT OWNER. */
  64. unsigned nr_pages; /* size of page array */
  65. struct list_head list_head;
  66. atomic_t nref;
  67. bool front_is_vmalloc;
  68. bool more_to_follow;
  69. int front_max;
  70. struct ceph_msgpool *pool;
  71. };
  72. struct ceph_msg_pos {
  73. int page, page_pos; /* which page; offset in page */
  74. int data_pos; /* offset in data payload */
  75. int did_page_crc; /* true if we've calculated crc for current page */
  76. };
  77. /* ceph connection fault delay defaults, for exponential backoff */
  78. #define BASE_DELAY_INTERVAL (HZ/2)
  79. #define MAX_DELAY_INTERVAL (5 * 60 * HZ)
  80. /*
  81. * ceph_connection state bit flags
  82. *
  83. * QUEUED and BUSY are used together to ensure that only a single
  84. * thread is currently opening, reading or writing data to the socket.
  85. */
  86. #define LOSSYTX 0 /* we can close channel or drop messages on errors */
  87. #define CONNECTING 1
  88. #define NEGOTIATING 2
  89. #define KEEPALIVE_PENDING 3
  90. #define WRITE_PENDING 4 /* we have data ready to send */
  91. #define QUEUED 5 /* there is work queued on this connection */
  92. #define BUSY 6 /* work is being done */
  93. #define STANDBY 8 /* no outgoing messages, socket closed. we keep
  94. * the ceph_connection around to maintain shared
  95. * state with the peer. */
  96. #define CLOSED 10 /* we've closed the connection */
  97. #define SOCK_CLOSED 11 /* socket state changed to closed */
  98. #define REGISTERED 12 /* connection appears in con_tree */
  99. #define OPENING 13 /* open connection w/ (possibly new) peer */
  100. #define DEAD 14 /* dead, about to kfree */
  101. /*
  102. * A single connection with another host.
  103. *
  104. * We maintain a queue of outgoing messages, and some session state to
  105. * ensure that we can preserve the lossless, ordered delivery of
  106. * messages in the case of a TCP disconnect.
  107. */
  108. struct ceph_connection {
  109. void *private;
  110. atomic_t nref;
  111. const struct ceph_connection_operations *ops;
  112. struct ceph_messenger *msgr;
  113. struct socket *sock;
  114. unsigned long state; /* connection state (see flags above) */
  115. const char *error_msg; /* error message, if any */
  116. struct ceph_entity_addr peer_addr; /* peer address */
  117. struct ceph_entity_name peer_name; /* peer name */
  118. struct ceph_entity_addr peer_addr_for_me;
  119. u32 connect_seq; /* identify the most recent connection
  120. attempt for this connection, client */
  121. u32 peer_global_seq; /* peer's global seq for this connection */
  122. /* out queue */
  123. struct mutex out_mutex;
  124. struct list_head out_queue;
  125. struct list_head out_sent; /* sending or sent but unacked */
  126. u64 out_seq; /* last message queued for send */
  127. u64 out_seq_sent; /* last message sent */
  128. bool out_keepalive_pending;
  129. u64 in_seq, in_seq_acked; /* last message received, acked */
  130. /* connection negotiation temps */
  131. char in_banner[CEPH_BANNER_MAX_LEN];
  132. union {
  133. struct { /* outgoing connection */
  134. struct ceph_msg_connect out_connect;
  135. struct ceph_msg_connect_reply in_reply;
  136. };
  137. struct { /* incoming */
  138. struct ceph_msg_connect in_connect;
  139. struct ceph_msg_connect_reply out_reply;
  140. };
  141. };
  142. struct ceph_entity_addr actual_peer_addr;
  143. /* message out temps */
  144. struct ceph_msg *out_msg; /* sending message (== tail of
  145. out_sent) */
  146. struct ceph_msg_pos out_msg_pos;
  147. struct kvec out_kvec[8], /* sending header/footer data */
  148. *out_kvec_cur;
  149. int out_kvec_left; /* kvec's left in out_kvec */
  150. int out_skip; /* skip this many bytes */
  151. int out_kvec_bytes; /* total bytes left */
  152. bool out_kvec_is_msg; /* kvec refers to out_msg */
  153. int out_more; /* there is more data after the kvecs */
  154. __le64 out_temp_ack; /* for writing an ack */
  155. /* message in temps */
  156. struct ceph_msg_header in_hdr;
  157. struct ceph_msg *in_msg;
  158. struct ceph_msg_pos in_msg_pos;
  159. u32 in_front_crc, in_middle_crc, in_data_crc; /* calculated crc */
  160. char in_tag; /* protocol control byte */
  161. int in_base_pos; /* bytes read */
  162. __le64 in_temp_ack; /* for reading an ack */
  163. struct delayed_work work; /* send|recv work */
  164. unsigned long delay; /* current delay interval */
  165. };
  166. extern const char *pr_addr(const struct sockaddr_storage *ss);
  167. extern int ceph_parse_ips(const char *c, const char *end,
  168. struct ceph_entity_addr *addr,
  169. int max_count, int *count);
  170. extern int ceph_msgr_init(void);
  171. extern void ceph_msgr_exit(void);
  172. extern struct ceph_messenger *ceph_messenger_create(
  173. struct ceph_entity_addr *myaddr);
  174. extern void ceph_messenger_destroy(struct ceph_messenger *);
  175. extern void ceph_con_init(struct ceph_messenger *msgr,
  176. struct ceph_connection *con);
  177. extern void ceph_con_open(struct ceph_connection *con,
  178. struct ceph_entity_addr *addr);
  179. extern void ceph_con_close(struct ceph_connection *con);
  180. extern void ceph_con_send(struct ceph_connection *con, struct ceph_msg *msg);
  181. extern void ceph_con_revoke(struct ceph_connection *con, struct ceph_msg *msg);
  182. extern void ceph_con_keepalive(struct ceph_connection *con);
  183. extern struct ceph_connection *ceph_con_get(struct ceph_connection *con);
  184. extern void ceph_con_put(struct ceph_connection *con);
  185. extern struct ceph_msg *ceph_msg_new(int type, int front_len,
  186. int page_len, int page_off,
  187. struct page **pages);
  188. extern void ceph_msg_kfree(struct ceph_msg *m);
  189. extern struct ceph_msg *ceph_alloc_msg(struct ceph_connection *con,
  190. struct ceph_msg_header *hdr);
  191. extern int ceph_alloc_middle(struct ceph_connection *con, struct ceph_msg *msg);
  192. static inline struct ceph_msg *ceph_msg_get(struct ceph_msg *msg)
  193. {
  194. dout("ceph_msg_get %p %d -> %d\n", msg, atomic_read(&msg->nref),
  195. atomic_read(&msg->nref)+1);
  196. atomic_inc(&msg->nref);
  197. return msg;
  198. }
  199. extern void ceph_msg_put(struct ceph_msg *msg);
  200. #endif