dccp.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413
  1. #ifndef _DCCP_H
  2. #define _DCCP_H
  3. /*
  4. * net/dccp/dccp.h
  5. *
  6. * An implementation of the DCCP protocol
  7. * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  8. * Copyright (c) 2005-6 Ian McDonald <ian.mcdonald@jandi.co.nz>
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include <linux/dccp.h>
  15. #include <net/snmp.h>
  16. #include <net/sock.h>
  17. #include <net/tcp.h>
  18. #include "ackvec.h"
  19. #ifdef CONFIG_IP_DCCP_DEBUG
  20. extern int dccp_debug;
  21. #define dccp_pr_debug(format, a...) \
  22. do { if (dccp_debug) \
  23. printk(KERN_DEBUG "%s: " format, __FUNCTION__ , ##a); \
  24. } while (0)
  25. #define dccp_pr_debug_cat(format, a...) do { if (dccp_debug) \
  26. printk(format, ##a); } while (0)
  27. #else
  28. #define dccp_pr_debug(format, a...)
  29. #define dccp_pr_debug_cat(format, a...)
  30. #endif
  31. extern struct inet_hashinfo dccp_hashinfo;
  32. extern atomic_t dccp_orphan_count;
  33. extern void dccp_time_wait(struct sock *sk, int state, int timeo);
  34. /*
  35. * Set safe upper bounds for header and option length. Since Data Offset is 8
  36. * bits (RFC 4340, sec. 5.1), the total header length can never be more than
  37. * 4 * 255 = 1020 bytes. The largest possible header length is 28 bytes (X=1):
  38. * - DCCP-Response with ACK Subheader and 4 bytes of Service code OR
  39. * - DCCP-Reset with ACK Subheader and 4 bytes of Reset Code fields
  40. * Hence a safe upper bound for the maximum option length is 1020-28 = 992
  41. */
  42. #define MAX_DCCP_SPECIFIC_HEADER (255 * sizeof(int))
  43. #define DCCP_MAX_PACKET_HDR 28
  44. #define DCCP_MAX_OPT_LEN (MAX_DCCP_SPECIFIC_HEADER - DCCP_MAX_PACKET_HDR)
  45. #define MAX_DCCP_HEADER (MAX_DCCP_SPECIFIC_HEADER + MAX_HEADER)
  46. #define DCCP_TIMEWAIT_LEN (60 * HZ) /* how long to wait to destroy TIME-WAIT
  47. * state, about 60 seconds */
  48. /* RFC 1122, 4.2.3.1 initial RTO value */
  49. #define DCCP_TIMEOUT_INIT ((unsigned)(3 * HZ))
  50. /* Maximal interval between probes for local resources. */
  51. #define DCCP_RESOURCE_PROBE_INTERVAL ((unsigned)(HZ / 2U))
  52. #define DCCP_RTO_MAX ((unsigned)(120 * HZ)) /* FIXME: using TCP value */
  53. /* is seq1 < seq2 ? */
  54. static inline int before48(const u64 seq1, const u64 seq2)
  55. {
  56. return (s64)((seq1 << 16) - (seq2 << 16)) < 0;
  57. }
  58. /* is seq1 > seq2 ? */
  59. static inline int after48(const u64 seq1, const u64 seq2)
  60. {
  61. return (s64)((seq2 << 16) - (seq1 << 16)) < 0;
  62. }
  63. /* is seq2 <= seq1 <= seq3 ? */
  64. static inline int between48(const u64 seq1, const u64 seq2, const u64 seq3)
  65. {
  66. return (seq3 << 16) - (seq2 << 16) >= (seq1 << 16) - (seq2 << 16);
  67. }
  68. static inline u64 max48(const u64 seq1, const u64 seq2)
  69. {
  70. return after48(seq1, seq2) ? seq1 : seq2;
  71. }
  72. /* is seq1 next seqno after seq2 */
  73. static inline int follows48(const u64 seq1, const u64 seq2)
  74. {
  75. int diff = (seq1 & 0xFFFF) - (seq2 & 0xFFFF);
  76. return diff==1;
  77. }
  78. enum {
  79. DCCP_MIB_NUM = 0,
  80. DCCP_MIB_ACTIVEOPENS, /* ActiveOpens */
  81. DCCP_MIB_ESTABRESETS, /* EstabResets */
  82. DCCP_MIB_CURRESTAB, /* CurrEstab */
  83. DCCP_MIB_OUTSEGS, /* OutSegs */
  84. DCCP_MIB_OUTRSTS,
  85. DCCP_MIB_ABORTONTIMEOUT,
  86. DCCP_MIB_TIMEOUTS,
  87. DCCP_MIB_ABORTFAILED,
  88. DCCP_MIB_PASSIVEOPENS,
  89. DCCP_MIB_ATTEMPTFAILS,
  90. DCCP_MIB_OUTDATAGRAMS,
  91. DCCP_MIB_INERRS,
  92. DCCP_MIB_OPTMANDATORYERROR,
  93. DCCP_MIB_INVALIDOPT,
  94. __DCCP_MIB_MAX
  95. };
  96. #define DCCP_MIB_MAX __DCCP_MIB_MAX
  97. struct dccp_mib {
  98. unsigned long mibs[DCCP_MIB_MAX];
  99. } __SNMP_MIB_ALIGN__;
  100. DECLARE_SNMP_STAT(struct dccp_mib, dccp_statistics);
  101. #define DCCP_INC_STATS(field) SNMP_INC_STATS(dccp_statistics, field)
  102. #define DCCP_INC_STATS_BH(field) SNMP_INC_STATS_BH(dccp_statistics, field)
  103. #define DCCP_INC_STATS_USER(field) SNMP_INC_STATS_USER(dccp_statistics, field)
  104. #define DCCP_DEC_STATS(field) SNMP_DEC_STATS(dccp_statistics, field)
  105. #define DCCP_ADD_STATS_BH(field, val) \
  106. SNMP_ADD_STATS_BH(dccp_statistics, field, val)
  107. #define DCCP_ADD_STATS_USER(field, val) \
  108. SNMP_ADD_STATS_USER(dccp_statistics, field, val)
  109. extern int dccp_retransmit_skb(struct sock *sk, struct sk_buff *skb);
  110. extern void dccp_send_ack(struct sock *sk);
  111. extern void dccp_send_delayed_ack(struct sock *sk);
  112. extern void dccp_reqsk_send_ack(struct sk_buff *sk, struct request_sock *rsk);
  113. extern void dccp_send_sync(struct sock *sk, const u64 seq,
  114. const enum dccp_pkt_type pkt_type);
  115. extern void dccp_write_xmit(struct sock *sk, int block);
  116. extern void dccp_write_space(struct sock *sk);
  117. extern void dccp_init_xmit_timers(struct sock *sk);
  118. static inline void dccp_clear_xmit_timers(struct sock *sk)
  119. {
  120. inet_csk_clear_xmit_timers(sk);
  121. }
  122. extern unsigned int dccp_sync_mss(struct sock *sk, u32 pmtu);
  123. extern const char *dccp_packet_name(const int type);
  124. extern const char *dccp_state_name(const int state);
  125. extern void dccp_set_state(struct sock *sk, const int state);
  126. extern void dccp_done(struct sock *sk);
  127. static inline void dccp_openreq_init(struct request_sock *req,
  128. struct dccp_sock *dp,
  129. struct sk_buff *skb)
  130. {
  131. /*
  132. * FIXME: fill in the other req fields from the DCCP options
  133. * received
  134. */
  135. inet_rsk(req)->rmt_port = dccp_hdr(skb)->dccph_sport;
  136. inet_rsk(req)->acked = 0;
  137. req->rcv_wnd = 0;
  138. }
  139. extern int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
  140. extern struct sock *dccp_create_openreq_child(struct sock *sk,
  141. const struct request_sock *req,
  142. const struct sk_buff *skb);
  143. extern int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb);
  144. extern struct sock *dccp_v4_request_recv_sock(struct sock *sk,
  145. struct sk_buff *skb,
  146. struct request_sock *req,
  147. struct dst_entry *dst);
  148. extern struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  149. struct request_sock *req,
  150. struct request_sock **prev);
  151. extern int dccp_child_process(struct sock *parent, struct sock *child,
  152. struct sk_buff *skb);
  153. extern int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
  154. struct dccp_hdr *dh, unsigned len);
  155. extern int dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
  156. const struct dccp_hdr *dh, const unsigned len);
  157. extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized);
  158. extern int dccp_destroy_sock(struct sock *sk);
  159. extern void dccp_close(struct sock *sk, long timeout);
  160. extern struct sk_buff *dccp_make_response(struct sock *sk,
  161. struct dst_entry *dst,
  162. struct request_sock *req);
  163. extern int dccp_connect(struct sock *sk);
  164. extern int dccp_disconnect(struct sock *sk, int flags);
  165. extern void dccp_hash(struct sock *sk);
  166. extern void dccp_unhash(struct sock *sk);
  167. extern int dccp_getsockopt(struct sock *sk, int level, int optname,
  168. char __user *optval, int __user *optlen);
  169. extern int dccp_setsockopt(struct sock *sk, int level, int optname,
  170. char __user *optval, int optlen);
  171. #ifdef CONFIG_COMPAT
  172. extern int compat_dccp_getsockopt(struct sock *sk,
  173. int level, int optname,
  174. char __user *optval, int __user *optlen);
  175. extern int compat_dccp_setsockopt(struct sock *sk,
  176. int level, int optname,
  177. char __user *optval, int optlen);
  178. #endif
  179. extern int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg);
  180. extern int dccp_sendmsg(struct kiocb *iocb, struct sock *sk,
  181. struct msghdr *msg, size_t size);
  182. extern int dccp_recvmsg(struct kiocb *iocb, struct sock *sk,
  183. struct msghdr *msg, size_t len, int nonblock,
  184. int flags, int *addr_len);
  185. extern void dccp_shutdown(struct sock *sk, int how);
  186. extern int inet_dccp_listen(struct socket *sock, int backlog);
  187. extern unsigned int dccp_poll(struct file *file, struct socket *sock,
  188. poll_table *wait);
  189. extern void dccp_v4_send_check(struct sock *sk, int len,
  190. struct sk_buff *skb);
  191. extern int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr,
  192. int addr_len);
  193. extern int dccp_v4_checksum(const struct sk_buff *skb,
  194. const __be32 saddr, const __be32 daddr);
  195. extern int dccp_send_reset(struct sock *sk, enum dccp_reset_codes code);
  196. extern void dccp_send_close(struct sock *sk, const int active);
  197. extern int dccp_invalid_packet(struct sk_buff *skb);
  198. static inline int dccp_bad_service_code(const struct sock *sk,
  199. const __be32 service)
  200. {
  201. const struct dccp_sock *dp = dccp_sk(sk);
  202. if (dp->dccps_service == service)
  203. return 0;
  204. return !dccp_list_has_service(dp->dccps_service_list, service);
  205. }
  206. struct dccp_skb_cb {
  207. __u8 dccpd_type:4;
  208. __u8 dccpd_ccval:4;
  209. __u8 dccpd_reset_code;
  210. __u16 dccpd_opt_len;
  211. __u64 dccpd_seq;
  212. __u64 dccpd_ack_seq;
  213. };
  214. #define DCCP_SKB_CB(__skb) ((struct dccp_skb_cb *)&((__skb)->cb[0]))
  215. static inline int dccp_non_data_packet(const struct sk_buff *skb)
  216. {
  217. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  218. return type == DCCP_PKT_ACK ||
  219. type == DCCP_PKT_CLOSE ||
  220. type == DCCP_PKT_CLOSEREQ ||
  221. type == DCCP_PKT_RESET ||
  222. type == DCCP_PKT_SYNC ||
  223. type == DCCP_PKT_SYNCACK;
  224. }
  225. static inline int dccp_packet_without_ack(const struct sk_buff *skb)
  226. {
  227. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  228. return type == DCCP_PKT_DATA || type == DCCP_PKT_REQUEST;
  229. }
  230. #define DCCP_MAX_SEQNO ((((u64)1) << 48) - 1)
  231. #define DCCP_PKT_WITHOUT_ACK_SEQ (DCCP_MAX_SEQNO << 2)
  232. static inline void dccp_set_seqno(u64 *seqno, u64 value)
  233. {
  234. if (value > DCCP_MAX_SEQNO)
  235. value -= DCCP_MAX_SEQNO + 1;
  236. *seqno = value;
  237. }
  238. static inline u64 dccp_delta_seqno(u64 seqno1, u64 seqno2)
  239. {
  240. return ((seqno2 << 16) - (seqno1 << 16)) >> 16;
  241. }
  242. static inline void dccp_inc_seqno(u64 *seqno)
  243. {
  244. if (++*seqno > DCCP_MAX_SEQNO)
  245. *seqno = 0;
  246. }
  247. static inline void dccp_hdr_set_seq(struct dccp_hdr *dh, const u64 gss)
  248. {
  249. struct dccp_hdr_ext *dhx = (struct dccp_hdr_ext *)((void *)dh +
  250. sizeof(*dh));
  251. dh->dccph_seq2 = 0;
  252. dh->dccph_seq = htons((gss >> 32) & 0xfffff);
  253. dhx->dccph_seq_low = htonl(gss & 0xffffffff);
  254. }
  255. static inline void dccp_hdr_set_ack(struct dccp_hdr_ack_bits *dhack,
  256. const u64 gsr)
  257. {
  258. dhack->dccph_reserved1 = 0;
  259. dhack->dccph_ack_nr_high = htons(gsr >> 32);
  260. dhack->dccph_ack_nr_low = htonl(gsr & 0xffffffff);
  261. }
  262. static inline void dccp_update_gsr(struct sock *sk, u64 seq)
  263. {
  264. struct dccp_sock *dp = dccp_sk(sk);
  265. const struct dccp_minisock *dmsk = dccp_msk(sk);
  266. dp->dccps_gsr = seq;
  267. dccp_set_seqno(&dp->dccps_swl,
  268. dp->dccps_gsr + 1 - (dmsk->dccpms_sequence_window / 4));
  269. dccp_set_seqno(&dp->dccps_swh,
  270. dp->dccps_gsr + (3 * dmsk->dccpms_sequence_window) / 4);
  271. }
  272. static inline void dccp_update_gss(struct sock *sk, u64 seq)
  273. {
  274. struct dccp_sock *dp = dccp_sk(sk);
  275. dp->dccps_awh = dp->dccps_gss = seq;
  276. dccp_set_seqno(&dp->dccps_awl,
  277. (dp->dccps_gss -
  278. dccp_msk(sk)->dccpms_sequence_window + 1));
  279. }
  280. static inline int dccp_ack_pending(const struct sock *sk)
  281. {
  282. const struct dccp_sock *dp = dccp_sk(sk);
  283. return dp->dccps_timestamp_echo != 0 ||
  284. #ifdef CONFIG_IP_DCCP_ACKVEC
  285. (dccp_msk(sk)->dccpms_send_ack_vector &&
  286. dccp_ackvec_pending(dp->dccps_hc_rx_ackvec)) ||
  287. #endif
  288. inet_csk_ack_scheduled(sk);
  289. }
  290. extern int dccp_insert_options(struct sock *sk, struct sk_buff *skb);
  291. extern int dccp_insert_option_elapsed_time(struct sock *sk,
  292. struct sk_buff *skb,
  293. u32 elapsed_time);
  294. extern int dccp_insert_option_timestamp(struct sock *sk,
  295. struct sk_buff *skb);
  296. extern int dccp_insert_option(struct sock *sk, struct sk_buff *skb,
  297. unsigned char option,
  298. const void *value, unsigned char len);
  299. extern void dccp_timestamp(const struct sock *sk, struct timeval *tv);
  300. static inline suseconds_t timeval_usecs(const struct timeval *tv)
  301. {
  302. return tv->tv_sec * USEC_PER_SEC + tv->tv_usec;
  303. }
  304. static inline suseconds_t timeval_delta(const struct timeval *large,
  305. const struct timeval *small)
  306. {
  307. time_t secs = large->tv_sec - small->tv_sec;
  308. suseconds_t usecs = large->tv_usec - small->tv_usec;
  309. if (usecs < 0) {
  310. secs--;
  311. usecs += USEC_PER_SEC;
  312. }
  313. return secs * USEC_PER_SEC + usecs;
  314. }
  315. static inline void timeval_add_usecs(struct timeval *tv,
  316. const suseconds_t usecs)
  317. {
  318. tv->tv_usec += usecs;
  319. while (tv->tv_usec >= USEC_PER_SEC) {
  320. tv->tv_sec++;
  321. tv->tv_usec -= USEC_PER_SEC;
  322. }
  323. }
  324. static inline void timeval_sub_usecs(struct timeval *tv,
  325. const suseconds_t usecs)
  326. {
  327. tv->tv_usec -= usecs;
  328. while (tv->tv_usec < 0) {
  329. tv->tv_sec--;
  330. tv->tv_usec += USEC_PER_SEC;
  331. }
  332. }
  333. #ifdef CONFIG_SYSCTL
  334. extern int dccp_sysctl_init(void);
  335. extern void dccp_sysctl_exit(void);
  336. #else
  337. static inline int dccp_sysctl_init(void)
  338. {
  339. return 0;
  340. }
  341. static inline void dccp_sysctl_exit(void)
  342. {
  343. }
  344. #endif
  345. #endif /* _DCCP_H */