dccp.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  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 Ian McDonald <iam4@cs.waikato.ac.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/config.h>
  15. #include <linux/dccp.h>
  16. #include <net/snmp.h>
  17. #include <net/sock.h>
  18. #include <net/tcp.h>
  19. #include "ackvec.h"
  20. #ifdef CONFIG_IP_DCCP_DEBUG
  21. extern int dccp_debug;
  22. #define dccp_pr_debug(format, a...) \
  23. do { if (dccp_debug) \
  24. printk(KERN_DEBUG "%s: " format, __FUNCTION__ , ##a); \
  25. } while (0)
  26. #define dccp_pr_debug_cat(format, a...) do { if (dccp_debug) \
  27. printk(format, ##a); } while (0)
  28. #else
  29. #define dccp_pr_debug(format, a...)
  30. #define dccp_pr_debug_cat(format, a...)
  31. #endif
  32. extern struct inet_hashinfo dccp_hashinfo;
  33. extern atomic_t dccp_orphan_count;
  34. extern int dccp_tw_count;
  35. extern void dccp_tw_deschedule(struct inet_timewait_sock *tw);
  36. extern void dccp_time_wait(struct sock *sk, int state, int timeo);
  37. /* FIXME: Right size this */
  38. #define DCCP_MAX_OPT_LEN 128
  39. #define DCCP_MAX_PACKET_HDR 32
  40. #define MAX_DCCP_HEADER (DCCP_MAX_PACKET_HDR + DCCP_MAX_OPT_LEN + MAX_HEADER)
  41. #define DCCP_TIMEWAIT_LEN (60 * HZ) /* how long to wait to destroy TIME-WAIT
  42. * state, about 60 seconds */
  43. /* draft-ietf-dccp-spec-11.txt initial RTO value */
  44. #define DCCP_TIMEOUT_INIT ((unsigned)(3 * HZ))
  45. /* Maximal interval between probes for local resources. */
  46. #define DCCP_RESOURCE_PROBE_INTERVAL ((unsigned)(HZ / 2U))
  47. #define DCCP_RTO_MAX ((unsigned)(120 * HZ)) /* FIXME: using TCP value */
  48. /* is seq1 < seq2 ? */
  49. static inline int before48(const u64 seq1, const u64 seq2)
  50. {
  51. return (s64)((seq1 << 16) - (seq2 << 16)) < 0;
  52. }
  53. /* is seq1 > seq2 ? */
  54. static inline int after48(const u64 seq1, const u64 seq2)
  55. {
  56. return (s64)((seq2 << 16) - (seq1 << 16)) < 0;
  57. }
  58. /* is seq2 <= seq1 <= seq3 ? */
  59. static inline int between48(const u64 seq1, const u64 seq2, 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_retransmit_skb(struct sock *sk, struct sk_buff *skb);
  99. extern int dccp_send_response(struct sock *sk);
  100. extern void dccp_send_ack(struct sock *sk);
  101. extern void dccp_send_delayed_ack(struct sock *sk);
  102. extern void dccp_send_sync(struct sock *sk, const u64 seq,
  103. const enum dccp_pkt_type pkt_type);
  104. extern int dccp_write_xmit(struct sock *sk, struct sk_buff *skb, long *timeo);
  105. extern void dccp_write_space(struct sock *sk);
  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. extern void dccp_set_state(struct sock *sk, const int state);
  115. extern void dccp_done(struct sock *sk);
  116. static inline void dccp_openreq_init(struct request_sock *req,
  117. struct dccp_sock *dp,
  118. struct sk_buff *skb)
  119. {
  120. /*
  121. * FIXME: fill in the other req fields from the DCCP options
  122. * received
  123. */
  124. inet_rsk(req)->rmt_port = dccp_hdr(skb)->dccph_sport;
  125. inet_rsk(req)->acked = 0;
  126. req->rcv_wnd = 0;
  127. }
  128. extern int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
  129. extern struct sock *dccp_create_openreq_child(struct sock *sk,
  130. const struct request_sock *req,
  131. const struct sk_buff *skb);
  132. extern int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb);
  133. extern struct sock *dccp_v4_request_recv_sock(struct sock *sk,
  134. struct sk_buff *skb,
  135. struct request_sock *req,
  136. struct dst_entry *dst);
  137. extern struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  138. struct request_sock *req,
  139. struct request_sock **prev);
  140. extern int dccp_child_process(struct sock *parent, struct sock *child,
  141. struct sk_buff *skb);
  142. extern int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
  143. struct dccp_hdr *dh, unsigned len);
  144. extern int dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
  145. const struct dccp_hdr *dh, const unsigned len);
  146. extern int dccp_init_sock(struct sock *sk, const __u8 ctl_sock_initialized);
  147. extern int dccp_destroy_sock(struct sock *sk);
  148. extern void dccp_close(struct sock *sk, long timeout);
  149. extern struct sk_buff *dccp_make_response(struct sock *sk,
  150. struct dst_entry *dst,
  151. struct request_sock *req);
  152. extern int dccp_connect(struct sock *sk);
  153. extern int dccp_disconnect(struct sock *sk, int flags);
  154. extern void dccp_hash(struct sock *sk);
  155. extern void dccp_unhash(struct sock *sk);
  156. extern int dccp_getsockopt(struct sock *sk, int level, int optname,
  157. char __user *optval, int __user *optlen);
  158. extern int dccp_setsockopt(struct sock *sk, int level, int optname,
  159. char __user *optval, int optlen);
  160. extern int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg);
  161. extern int dccp_sendmsg(struct kiocb *iocb, struct sock *sk,
  162. struct msghdr *msg, size_t size);
  163. extern int dccp_recvmsg(struct kiocb *iocb, struct sock *sk,
  164. struct msghdr *msg, size_t len, int nonblock,
  165. int flags, int *addr_len);
  166. extern void dccp_shutdown(struct sock *sk, int how);
  167. extern int inet_dccp_listen(struct socket *sock, int backlog);
  168. extern unsigned int dccp_poll(struct file *file, struct socket *sock,
  169. poll_table *wait);
  170. extern void dccp_v4_send_check(struct sock *sk, int len,
  171. struct sk_buff *skb);
  172. extern int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr,
  173. int addr_len);
  174. extern int dccp_v4_checksum(const struct sk_buff *skb,
  175. const __be32 saddr, const __be32 daddr);
  176. extern int dccp_send_reset(struct sock *sk, enum dccp_reset_codes code);
  177. extern void dccp_send_close(struct sock *sk, const int active);
  178. extern int dccp_invalid_packet(struct sk_buff *skb);
  179. static inline int dccp_bad_service_code(const struct sock *sk,
  180. const __be32 service)
  181. {
  182. const struct dccp_sock *dp = dccp_sk(sk);
  183. if (dp->dccps_service == service)
  184. return 0;
  185. return !dccp_list_has_service(dp->dccps_service_list, service);
  186. }
  187. struct dccp_skb_cb {
  188. __u8 dccpd_type:4;
  189. __u8 dccpd_ccval:4;
  190. __u8 dccpd_reset_code;
  191. __u16 dccpd_opt_len;
  192. __u64 dccpd_seq;
  193. __u64 dccpd_ack_seq;
  194. };
  195. #define DCCP_SKB_CB(__skb) ((struct dccp_skb_cb *)&((__skb)->cb[0]))
  196. static inline int dccp_non_data_packet(const struct sk_buff *skb)
  197. {
  198. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  199. return type == DCCP_PKT_ACK ||
  200. type == DCCP_PKT_CLOSE ||
  201. type == DCCP_PKT_CLOSEREQ ||
  202. type == DCCP_PKT_RESET ||
  203. type == DCCP_PKT_SYNC ||
  204. type == DCCP_PKT_SYNCACK;
  205. }
  206. static inline int dccp_packet_without_ack(const struct sk_buff *skb)
  207. {
  208. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  209. return type == DCCP_PKT_DATA || type == DCCP_PKT_REQUEST;
  210. }
  211. #define DCCP_MAX_SEQNO ((((u64)1) << 48) - 1)
  212. #define DCCP_PKT_WITHOUT_ACK_SEQ (DCCP_MAX_SEQNO << 2)
  213. static inline void dccp_set_seqno(u64 *seqno, u64 value)
  214. {
  215. if (value > DCCP_MAX_SEQNO)
  216. value -= DCCP_MAX_SEQNO + 1;
  217. *seqno = value;
  218. }
  219. static inline u64 dccp_delta_seqno(u64 seqno1, u64 seqno2)
  220. {
  221. return ((seqno2 << 16) - (seqno1 << 16)) >> 16;
  222. }
  223. static inline void dccp_inc_seqno(u64 *seqno)
  224. {
  225. if (++*seqno > DCCP_MAX_SEQNO)
  226. *seqno = 0;
  227. }
  228. static inline void dccp_hdr_set_seq(struct dccp_hdr *dh, const u64 gss)
  229. {
  230. struct dccp_hdr_ext *dhx = (struct dccp_hdr_ext *)((void *)dh +
  231. sizeof(*dh));
  232. dh->dccph_seq2 = 0;
  233. dh->dccph_seq = htons((gss >> 32) & 0xfffff);
  234. dhx->dccph_seq_low = htonl(gss & 0xffffffff);
  235. }
  236. static inline void dccp_hdr_set_ack(struct dccp_hdr_ack_bits *dhack,
  237. const u64 gsr)
  238. {
  239. dhack->dccph_reserved1 = 0;
  240. dhack->dccph_ack_nr_high = htons(gsr >> 32);
  241. dhack->dccph_ack_nr_low = htonl(gsr & 0xffffffff);
  242. }
  243. static inline void dccp_update_gsr(struct sock *sk, u64 seq)
  244. {
  245. struct dccp_sock *dp = dccp_sk(sk);
  246. dp->dccps_gsr = seq;
  247. dccp_set_seqno(&dp->dccps_swl,
  248. (dp->dccps_gsr + 1 -
  249. (dp->dccps_options.dccpo_sequence_window / 4)));
  250. dccp_set_seqno(&dp->dccps_swh,
  251. (dp->dccps_gsr +
  252. (3 * dp->dccps_options.dccpo_sequence_window) / 4));
  253. }
  254. static inline void dccp_update_gss(struct sock *sk, u64 seq)
  255. {
  256. struct dccp_sock *dp = dccp_sk(sk);
  257. dp->dccps_awh = dp->dccps_gss = seq;
  258. dccp_set_seqno(&dp->dccps_awl,
  259. (dp->dccps_gss -
  260. dp->dccps_options.dccpo_sequence_window + 1));
  261. }
  262. static inline int dccp_ack_pending(const struct sock *sk)
  263. {
  264. const struct dccp_sock *dp = dccp_sk(sk);
  265. return dp->dccps_timestamp_echo != 0 ||
  266. #ifdef CONFIG_IP_DCCP_ACKVEC
  267. (dp->dccps_options.dccpo_send_ack_vector &&
  268. dccp_ackvec_pending(dp->dccps_hc_rx_ackvec)) ||
  269. #endif
  270. inet_csk_ack_scheduled(sk);
  271. }
  272. extern void dccp_insert_options(struct sock *sk, struct sk_buff *skb);
  273. extern void dccp_insert_option_elapsed_time(struct sock *sk,
  274. struct sk_buff *skb,
  275. u32 elapsed_time);
  276. extern void dccp_insert_option_timestamp(struct sock *sk,
  277. struct sk_buff *skb);
  278. extern void dccp_insert_option(struct sock *sk, struct sk_buff *skb,
  279. unsigned char option,
  280. const void *value, unsigned char len);
  281. extern void dccp_timestamp(const struct sock *sk, struct timeval *tv);
  282. static inline suseconds_t timeval_usecs(const struct timeval *tv)
  283. {
  284. return tv->tv_sec * USEC_PER_SEC + tv->tv_usec;
  285. }
  286. static inline suseconds_t timeval_delta(const struct timeval *large,
  287. const struct timeval *small)
  288. {
  289. time_t secs = large->tv_sec - small->tv_sec;
  290. suseconds_t usecs = large->tv_usec - small->tv_usec;
  291. if (usecs < 0) {
  292. secs--;
  293. usecs += USEC_PER_SEC;
  294. }
  295. return secs * USEC_PER_SEC + usecs;
  296. }
  297. static inline void timeval_add_usecs(struct timeval *tv,
  298. const suseconds_t usecs)
  299. {
  300. tv->tv_usec += usecs;
  301. while (tv->tv_usec >= USEC_PER_SEC) {
  302. tv->tv_sec++;
  303. tv->tv_usec -= USEC_PER_SEC;
  304. }
  305. }
  306. static inline void timeval_sub_usecs(struct timeval *tv,
  307. const suseconds_t usecs)
  308. {
  309. tv->tv_usec -= usecs;
  310. while (tv->tv_usec < 0) {
  311. tv->tv_sec--;
  312. tv->tv_usec += USEC_PER_SEC;
  313. }
  314. }
  315. #ifdef CONFIG_SYSCTL
  316. extern int dccp_sysctl_init(void);
  317. extern void dccp_sysctl_exit(void);
  318. #else
  319. static inline int dccp_sysctl_init(void)
  320. {
  321. return 0;
  322. }
  323. static inline void dccp_sysctl_exit(void)
  324. {
  325. }
  326. #endif
  327. #endif /* _DCCP_H */