dccp.h 13 KB

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