dccp.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  1. #ifndef _DCCP_H
  2. #define _DCCP_H
  3. /*
  4. * net/dccp/dccp.h
  5. *
  6. * An implementation of the DCCP protocol
  7. * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #include <linux/dccp.h>
  14. #include <net/snmp.h>
  15. #include <net/sock.h>
  16. #include <net/tcp.h>
  17. #define DCCP_DEBUG
  18. #ifdef DCCP_DEBUG
  19. extern int dccp_debug;
  20. #define dccp_pr_debug(format, a...) \
  21. do { if (dccp_debug) \
  22. printk(KERN_DEBUG "%s: " format, __FUNCTION__ , ##a); \
  23. } while (0)
  24. #define dccp_pr_debug_cat(format, a...) do { if (dccp_debug) \
  25. printk(format, ##a); } while (0)
  26. #else
  27. #define dccp_pr_debug(format, a...)
  28. #define dccp_pr_debug_cat(format, a...)
  29. #endif
  30. extern struct inet_hashinfo dccp_hashinfo;
  31. extern atomic_t dccp_orphan_count;
  32. extern int dccp_tw_count;
  33. extern void dccp_tw_deschedule(struct inet_timewait_sock *tw);
  34. extern void dccp_time_wait(struct sock *sk, int state, int timeo);
  35. /* FIXME: Right size this */
  36. #define DCCP_MAX_OPT_LEN 128
  37. #define DCCP_MAX_PACKET_HDR 32
  38. #define MAX_DCCP_HEADER (DCCP_MAX_PACKET_HDR + DCCP_MAX_OPT_LEN + MAX_HEADER)
  39. #define DCCP_TIMEWAIT_LEN (60 * HZ) /* how long to wait to destroy TIME-WAIT
  40. * state, about 60 seconds */
  41. /* draft-ietf-dccp-spec-11.txt initial RTO value */
  42. #define DCCP_TIMEOUT_INIT ((unsigned)(3 * HZ))
  43. /* Maximal interval between probes for local resources. */
  44. #define DCCP_RESOURCE_PROBE_INTERVAL ((unsigned)(HZ / 2U))
  45. #define DCCP_RTO_MAX ((unsigned)(120 * HZ)) /* FIXME: using TCP value */
  46. extern struct proto dccp_v4_prot;
  47. /* is seq1 < seq2 ? */
  48. static inline const int before48(const u64 seq1, const u64 seq2)
  49. {
  50. return (const s64)((seq1 << 16) - (seq2 << 16)) < 0;
  51. }
  52. /* is seq1 > seq2 ? */
  53. static inline const int after48(const u64 seq1, const u64 seq2)
  54. {
  55. return (const s64)((seq2 << 16) - (seq1 << 16)) < 0;
  56. }
  57. /* is seq2 <= seq1 <= seq3 ? */
  58. static inline const int between48(const u64 seq1, const u64 seq2,
  59. const u64 seq3)
  60. {
  61. return (seq3 << 16) - (seq2 << 16) >= (seq1 << 16) - (seq2 << 16);
  62. }
  63. static inline u64 max48(const u64 seq1, const u64 seq2)
  64. {
  65. return after48(seq1, seq2) ? seq1 : seq2;
  66. }
  67. enum {
  68. DCCP_MIB_NUM = 0,
  69. DCCP_MIB_ACTIVEOPENS, /* ActiveOpens */
  70. DCCP_MIB_ESTABRESETS, /* EstabResets */
  71. DCCP_MIB_CURRESTAB, /* CurrEstab */
  72. DCCP_MIB_OUTSEGS, /* OutSegs */
  73. DCCP_MIB_OUTRSTS,
  74. DCCP_MIB_ABORTONTIMEOUT,
  75. DCCP_MIB_TIMEOUTS,
  76. DCCP_MIB_ABORTFAILED,
  77. DCCP_MIB_PASSIVEOPENS,
  78. DCCP_MIB_ATTEMPTFAILS,
  79. DCCP_MIB_OUTDATAGRAMS,
  80. DCCP_MIB_INERRS,
  81. DCCP_MIB_OPTMANDATORYERROR,
  82. DCCP_MIB_INVALIDOPT,
  83. __DCCP_MIB_MAX
  84. };
  85. #define DCCP_MIB_MAX __DCCP_MIB_MAX
  86. struct dccp_mib {
  87. unsigned long mibs[DCCP_MIB_MAX];
  88. } __SNMP_MIB_ALIGN__;
  89. DECLARE_SNMP_STAT(struct dccp_mib, dccp_statistics);
  90. #define DCCP_INC_STATS(field) SNMP_INC_STATS(dccp_statistics, field)
  91. #define DCCP_INC_STATS_BH(field) SNMP_INC_STATS_BH(dccp_statistics, field)
  92. #define DCCP_INC_STATS_USER(field) SNMP_INC_STATS_USER(dccp_statistics, field)
  93. #define DCCP_DEC_STATS(field) SNMP_DEC_STATS(dccp_statistics, field)
  94. #define DCCP_ADD_STATS_BH(field, val) \
  95. SNMP_ADD_STATS_BH(dccp_statistics, field, val)
  96. #define DCCP_ADD_STATS_USER(field, val) \
  97. SNMP_ADD_STATS_USER(dccp_statistics, field, val)
  98. extern int dccp_transmit_skb(struct sock *sk, struct sk_buff *skb);
  99. extern int dccp_retransmit_skb(struct sock *sk, struct sk_buff *skb);
  100. extern int dccp_send_response(struct sock *sk);
  101. extern void dccp_send_ack(struct sock *sk);
  102. extern void dccp_send_delayed_ack(struct sock *sk);
  103. extern void dccp_send_sync(struct sock *sk, u64 seq);
  104. extern int dccp_write_xmit(struct sock *sk, struct sk_buff *skb,
  105. const int len);
  106. extern void dccp_init_xmit_timers(struct sock *sk);
  107. static inline void dccp_clear_xmit_timers(struct sock *sk)
  108. {
  109. inet_csk_clear_xmit_timers(sk);
  110. }
  111. extern unsigned int dccp_sync_mss(struct sock *sk, u32 pmtu);
  112. extern const char *dccp_packet_name(const int type);
  113. extern const char *dccp_state_name(const int state);
  114. static inline void dccp_set_state(struct sock *sk, const int state)
  115. {
  116. const int oldstate = sk->sk_state;
  117. dccp_pr_debug("%s(%p) %-10.10s -> %s\n",
  118. dccp_role(sk), sk,
  119. dccp_state_name(oldstate), dccp_state_name(state));
  120. WARN_ON(state == oldstate);
  121. switch (state) {
  122. case DCCP_OPEN:
  123. if (oldstate != DCCP_OPEN)
  124. DCCP_INC_STATS(DCCP_MIB_CURRESTAB);
  125. break;
  126. case DCCP_CLOSED:
  127. if (oldstate == DCCP_CLOSING || oldstate == DCCP_OPEN)
  128. DCCP_INC_STATS(DCCP_MIB_ESTABRESETS);
  129. sk->sk_prot->unhash(sk);
  130. if (inet_csk(sk)->icsk_bind_hash != NULL &&
  131. !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
  132. inet_put_port(&dccp_hashinfo, sk);
  133. /* fall through */
  134. default:
  135. if (oldstate == DCCP_OPEN)
  136. DCCP_DEC_STATS(DCCP_MIB_CURRESTAB);
  137. }
  138. /* Change state AFTER socket is unhashed to avoid closed
  139. * socket sitting in hash tables.
  140. */
  141. sk->sk_state = state;
  142. }
  143. static inline void dccp_done(struct sock *sk)
  144. {
  145. dccp_set_state(sk, DCCP_CLOSED);
  146. dccp_clear_xmit_timers(sk);
  147. sk->sk_shutdown = SHUTDOWN_MASK;
  148. if (!sock_flag(sk, SOCK_DEAD))
  149. sk->sk_state_change(sk);
  150. else
  151. inet_csk_destroy_sock(sk);
  152. }
  153. static inline void dccp_openreq_init(struct request_sock *req,
  154. struct dccp_sock *dp,
  155. struct sk_buff *skb)
  156. {
  157. /*
  158. * FIXME: fill in the other req fields from the DCCP options
  159. * received
  160. */
  161. inet_rsk(req)->rmt_port = dccp_hdr(skb)->dccph_sport;
  162. inet_rsk(req)->acked = 0;
  163. req->rcv_wnd = 0;
  164. }
  165. extern int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
  166. extern struct sock *dccp_create_openreq_child(struct sock *sk,
  167. const struct request_sock *req,
  168. const struct sk_buff *skb);
  169. extern int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb);
  170. extern void dccp_v4_err(struct sk_buff *skb, u32);
  171. extern int dccp_v4_rcv(struct sk_buff *skb);
  172. extern struct sock *dccp_v4_request_recv_sock(struct sock *sk,
  173. struct sk_buff *skb,
  174. struct request_sock *req,
  175. struct dst_entry *dst);
  176. extern struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  177. struct request_sock *req,
  178. struct request_sock **prev);
  179. extern int dccp_child_process(struct sock *parent, struct sock *child,
  180. struct sk_buff *skb);
  181. extern int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
  182. struct dccp_hdr *dh, unsigned len);
  183. extern int dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
  184. const struct dccp_hdr *dh, const unsigned len);
  185. extern void dccp_close(struct sock *sk, long timeout);
  186. extern struct sk_buff *dccp_make_response(struct sock *sk,
  187. struct dst_entry *dst,
  188. struct request_sock *req);
  189. extern int dccp_connect(struct sock *sk);
  190. extern int dccp_disconnect(struct sock *sk, int flags);
  191. extern int dccp_getsockopt(struct sock *sk, int level, int optname,
  192. char *optval, int *optlen);
  193. extern int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg);
  194. extern int dccp_sendmsg(struct kiocb *iocb, struct sock *sk,
  195. struct msghdr *msg, size_t size);
  196. extern int dccp_recvmsg(struct kiocb *iocb, struct sock *sk,
  197. struct msghdr *msg, size_t len, int nonblock,
  198. int flags, int *addr_len);
  199. extern int dccp_setsockopt(struct sock *sk, int level, int optname,
  200. char *optval, int optlen);
  201. extern void dccp_shutdown(struct sock *sk, int how);
  202. extern int dccp_v4_checksum(const struct sk_buff *skb,
  203. const u32 saddr, const u32 daddr);
  204. extern int dccp_v4_send_reset(struct sock *sk,
  205. enum dccp_reset_codes code);
  206. extern void dccp_send_close(struct sock *sk);
  207. struct dccp_skb_cb {
  208. __u8 dccpd_type;
  209. __u8 dccpd_reset_code;
  210. __u8 dccpd_service;
  211. __u8 dccpd_ccval;
  212. __u64 dccpd_seq;
  213. __u64 dccpd_ack_seq;
  214. int dccpd_opt_len;
  215. };
  216. #define DCCP_SKB_CB(__skb) ((struct dccp_skb_cb *)&((__skb)->cb[0]))
  217. static inline int dccp_non_data_packet(const struct sk_buff *skb)
  218. {
  219. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  220. return type == DCCP_PKT_ACK ||
  221. type == DCCP_PKT_CLOSE ||
  222. type == DCCP_PKT_CLOSEREQ ||
  223. type == DCCP_PKT_RESET ||
  224. type == DCCP_PKT_SYNC ||
  225. type == DCCP_PKT_SYNCACK;
  226. }
  227. static inline int dccp_packet_without_ack(const struct sk_buff *skb)
  228. {
  229. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  230. return type == DCCP_PKT_DATA || type == DCCP_PKT_REQUEST;
  231. }
  232. #define DCCP_MAX_SEQNO ((((u64)1) << 48) - 1)
  233. #define DCCP_PKT_WITHOUT_ACK_SEQ (DCCP_MAX_SEQNO << 2)
  234. static inline void dccp_set_seqno(u64 *seqno, u64 value)
  235. {
  236. if (value > DCCP_MAX_SEQNO)
  237. value -= DCCP_MAX_SEQNO + 1;
  238. *seqno = value;
  239. }
  240. static inline u64 dccp_delta_seqno(u64 seqno1, u64 seqno2)
  241. {
  242. return ((seqno2 << 16) - (seqno1 << 16)) >> 16;
  243. }
  244. static inline void dccp_inc_seqno(u64 *seqno)
  245. {
  246. if (++*seqno > DCCP_MAX_SEQNO)
  247. *seqno = 0;
  248. }
  249. static inline void dccp_hdr_set_seq(struct dccp_hdr *dh, const u64 gss)
  250. {
  251. struct dccp_hdr_ext *dhx = (struct dccp_hdr_ext *)((void *)dh +
  252. sizeof(*dh));
  253. #if defined(__LITTLE_ENDIAN_BITFIELD)
  254. dh->dccph_seq = htonl((gss >> 32)) >> 8;
  255. #elif defined(__BIG_ENDIAN_BITFIELD)
  256. dh->dccph_seq = htonl((gss >> 32));
  257. #else
  258. #error "Adjust your <asm/byteorder.h> defines"
  259. #endif
  260. dhx->dccph_seq_low = htonl(gss & 0xffffffff);
  261. }
  262. static inline void dccp_hdr_set_ack(struct dccp_hdr_ack_bits *dhack,
  263. const u64 gsr)
  264. {
  265. #if defined(__LITTLE_ENDIAN_BITFIELD)
  266. dhack->dccph_ack_nr_high = htonl((gsr >> 32)) >> 8;
  267. #elif defined(__BIG_ENDIAN_BITFIELD)
  268. dhack->dccph_ack_nr_high = htonl((gsr >> 32));
  269. #else
  270. #error "Adjust your <asm/byteorder.h> defines"
  271. #endif
  272. dhack->dccph_ack_nr_low = htonl(gsr & 0xffffffff);
  273. }
  274. static inline void dccp_update_gsr(struct sock *sk, u64 seq)
  275. {
  276. struct dccp_sock *dp = dccp_sk(sk);
  277. u64 tmp_gsr;
  278. dccp_set_seqno(&tmp_gsr,
  279. (dp->dccps_gsr + 1 -
  280. (dp->dccps_options.dccpo_sequence_window / 4)));
  281. dp->dccps_gsr = seq;
  282. dccp_set_seqno(&dp->dccps_swl, max48(tmp_gsr, dp->dccps_isr));
  283. dccp_set_seqno(&dp->dccps_swh,
  284. (dp->dccps_gsr +
  285. (3 * dp->dccps_options.dccpo_sequence_window) / 4));
  286. }
  287. static inline void dccp_update_gss(struct sock *sk, u64 seq)
  288. {
  289. struct dccp_sock *dp = dccp_sk(sk);
  290. u64 tmp_gss;
  291. dccp_set_seqno(&tmp_gss,
  292. (dp->dccps_gss -
  293. dp->dccps_options.dccpo_sequence_window + 1));
  294. dp->dccps_awl = max48(tmp_gss, dp->dccps_iss);
  295. dp->dccps_awh = dp->dccps_gss = seq;
  296. }
  297. extern void dccp_insert_options(struct sock *sk, struct sk_buff *skb);
  298. extern void dccp_insert_option_elapsed_time(struct sock *sk,
  299. struct sk_buff *skb,
  300. u32 elapsed_time);
  301. extern void dccp_insert_option(struct sock *sk, struct sk_buff *skb,
  302. unsigned char option,
  303. const void *value, unsigned char len);
  304. extern struct socket *dccp_ctl_socket;
  305. #define DCCP_ACKPKTS_STATE_RECEIVED 0
  306. #define DCCP_ACKPKTS_STATE_ECN_MARKED (1 << 6)
  307. #define DCCP_ACKPKTS_STATE_NOT_RECEIVED (3 << 6)
  308. #define DCCP_ACKPKTS_STATE_MASK 0xC0 /* 11000000 */
  309. #define DCCP_ACKPKTS_LEN_MASK 0x3F /* 00111111 */
  310. /** struct dccp_ackpkts - acknowledgeable packets
  311. *
  312. * This data structure is the one defined in the DCCP draft
  313. * Appendix A.
  314. *
  315. * @dccpap_buf_head - circular buffer head
  316. * @dccpap_buf_tail - circular buffer tail
  317. * @dccpap_buf_ackno - ack # of the most recent packet acknowledgeable in the
  318. * buffer (i.e. %dccpap_buf_head)
  319. * @dccpap_buf_nonce - the one-bit sum of the ECN Nonces on all packets acked
  320. * by the buffer with State 0
  321. *
  322. * Additionally, the HC-Receiver must keep some information about the
  323. * Ack Vectors it has recently sent. For each packet sent carrying an
  324. * Ack Vector, it remembers four variables:
  325. *
  326. * @dccpap_ack_seqno - the Sequence Number used for the packet
  327. * (HC-Receiver seqno)
  328. * @dccpap_ack_ptr - the value of buf_head at the time of acknowledgement.
  329. * @dccpap_ack_ackno - the Acknowledgement Number used for the packet
  330. * (HC-Sender seqno)
  331. * @dccpap_ack_nonce - the one-bit sum of the ECN Nonces for all State 0.
  332. *
  333. * @dccpap_buf_len - circular buffer length
  334. * @dccpap_buf - circular buffer of acknowledgeable packets
  335. */
  336. struct dccp_ackpkts {
  337. unsigned int dccpap_buf_head;
  338. unsigned int dccpap_buf_tail;
  339. u64 dccpap_buf_ackno;
  340. u64 dccpap_ack_seqno;
  341. u64 dccpap_ack_ackno;
  342. unsigned int dccpap_ack_ptr;
  343. unsigned int dccpap_buf_vector_len;
  344. unsigned int dccpap_ack_vector_len;
  345. unsigned int dccpap_buf_len;
  346. unsigned long dccpap_time;
  347. u8 dccpap_buf_nonce;
  348. u8 dccpap_ack_nonce;
  349. u8 dccpap_buf[0];
  350. };
  351. extern struct dccp_ackpkts *dccp_ackpkts_alloc(unsigned int len, int priority);
  352. extern void dccp_ackpkts_free(struct dccp_ackpkts *ap);
  353. extern int dccp_ackpkts_add(struct dccp_ackpkts *ap, u64 ackno, u8 state);
  354. extern void dccp_ackpkts_check_rcv_ackno(struct dccp_ackpkts *ap,
  355. struct sock *sk, u64 ackno);
  356. #ifdef DCCP_DEBUG
  357. extern void dccp_ackvector_print(const u64 ackno,
  358. const unsigned char *vector, int len);
  359. extern void dccp_ackpkts_print(const struct dccp_ackpkts *ap);
  360. #else
  361. static inline void dccp_ackvector_print(const u64 ackno,
  362. const unsigned char *vector,
  363. int len) { }
  364. static inline void dccp_ackpkts_print(const struct dccp_ackpkts *ap) { }
  365. #endif
  366. #endif /* _DCCP_H */