dccp.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447
  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. extern struct proto dccp_prot;
  49. /* is seq1 < seq2 ? */
  50. static inline int before48(const u64 seq1, const u64 seq2)
  51. {
  52. return (s64)((seq1 << 16) - (seq2 << 16)) < 0;
  53. }
  54. /* is seq1 > seq2 ? */
  55. static inline int after48(const u64 seq1, const u64 seq2)
  56. {
  57. return (s64)((seq2 << 16) - (seq1 << 16)) < 0;
  58. }
  59. /* is seq2 <= seq1 <= seq3 ? */
  60. static inline int between48(const u64 seq1, const u64 seq2, const u64 seq3)
  61. {
  62. return (seq3 << 16) - (seq2 << 16) >= (seq1 << 16) - (seq2 << 16);
  63. }
  64. static inline u64 max48(const u64 seq1, const u64 seq2)
  65. {
  66. return after48(seq1, seq2) ? seq1 : seq2;
  67. }
  68. enum {
  69. DCCP_MIB_NUM = 0,
  70. DCCP_MIB_ACTIVEOPENS, /* ActiveOpens */
  71. DCCP_MIB_ESTABRESETS, /* EstabResets */
  72. DCCP_MIB_CURRESTAB, /* CurrEstab */
  73. DCCP_MIB_OUTSEGS, /* OutSegs */
  74. DCCP_MIB_OUTRSTS,
  75. DCCP_MIB_ABORTONTIMEOUT,
  76. DCCP_MIB_TIMEOUTS,
  77. DCCP_MIB_ABORTFAILED,
  78. DCCP_MIB_PASSIVEOPENS,
  79. DCCP_MIB_ATTEMPTFAILS,
  80. DCCP_MIB_OUTDATAGRAMS,
  81. DCCP_MIB_INERRS,
  82. DCCP_MIB_OPTMANDATORYERROR,
  83. DCCP_MIB_INVALIDOPT,
  84. __DCCP_MIB_MAX
  85. };
  86. #define DCCP_MIB_MAX __DCCP_MIB_MAX
  87. struct dccp_mib {
  88. unsigned long mibs[DCCP_MIB_MAX];
  89. } __SNMP_MIB_ALIGN__;
  90. DECLARE_SNMP_STAT(struct dccp_mib, dccp_statistics);
  91. #define DCCP_INC_STATS(field) SNMP_INC_STATS(dccp_statistics, field)
  92. #define DCCP_INC_STATS_BH(field) SNMP_INC_STATS_BH(dccp_statistics, field)
  93. #define DCCP_INC_STATS_USER(field) SNMP_INC_STATS_USER(dccp_statistics, field)
  94. #define DCCP_DEC_STATS(field) SNMP_DEC_STATS(dccp_statistics, field)
  95. #define DCCP_ADD_STATS_BH(field, val) \
  96. SNMP_ADD_STATS_BH(dccp_statistics, field, val)
  97. #define DCCP_ADD_STATS_USER(field, val) \
  98. SNMP_ADD_STATS_USER(dccp_statistics, field, val)
  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, const u64 seq,
  104. const enum dccp_pkt_type pkt_type);
  105. extern int dccp_write_xmit(struct sock *sk, struct sk_buff *skb, long *timeo);
  106. extern void dccp_write_space(struct sock *sk);
  107. extern void dccp_init_xmit_timers(struct sock *sk);
  108. static inline void dccp_clear_xmit_timers(struct sock *sk)
  109. {
  110. inet_csk_clear_xmit_timers(sk);
  111. }
  112. extern unsigned int dccp_sync_mss(struct sock *sk, u32 pmtu);
  113. extern const char *dccp_packet_name(const int type);
  114. extern const char *dccp_state_name(const int state);
  115. static inline void dccp_set_state(struct sock *sk, const int state)
  116. {
  117. const int oldstate = sk->sk_state;
  118. dccp_pr_debug("%s(%p) %-10.10s -> %s\n",
  119. dccp_role(sk), sk,
  120. dccp_state_name(oldstate), dccp_state_name(state));
  121. WARN_ON(state == oldstate);
  122. switch (state) {
  123. case DCCP_OPEN:
  124. if (oldstate != DCCP_OPEN)
  125. DCCP_INC_STATS(DCCP_MIB_CURRESTAB);
  126. break;
  127. case DCCP_CLOSED:
  128. if (oldstate == DCCP_CLOSING || oldstate == DCCP_OPEN)
  129. DCCP_INC_STATS(DCCP_MIB_ESTABRESETS);
  130. sk->sk_prot->unhash(sk);
  131. if (inet_csk(sk)->icsk_bind_hash != NULL &&
  132. !(sk->sk_userlocks & SOCK_BINDPORT_LOCK))
  133. inet_put_port(&dccp_hashinfo, sk);
  134. /* fall through */
  135. default:
  136. if (oldstate == DCCP_OPEN)
  137. DCCP_DEC_STATS(DCCP_MIB_CURRESTAB);
  138. }
  139. /* Change state AFTER socket is unhashed to avoid closed
  140. * socket sitting in hash tables.
  141. */
  142. sk->sk_state = state;
  143. }
  144. static inline void dccp_done(struct sock *sk)
  145. {
  146. dccp_set_state(sk, DCCP_CLOSED);
  147. dccp_clear_xmit_timers(sk);
  148. sk->sk_shutdown = SHUTDOWN_MASK;
  149. if (!sock_flag(sk, SOCK_DEAD))
  150. sk->sk_state_change(sk);
  151. else
  152. inet_csk_destroy_sock(sk);
  153. }
  154. static inline void dccp_openreq_init(struct request_sock *req,
  155. struct dccp_sock *dp,
  156. struct sk_buff *skb)
  157. {
  158. /*
  159. * FIXME: fill in the other req fields from the DCCP options
  160. * received
  161. */
  162. inet_rsk(req)->rmt_port = dccp_hdr(skb)->dccph_sport;
  163. inet_rsk(req)->acked = 0;
  164. req->rcv_wnd = 0;
  165. }
  166. extern int dccp_v4_conn_request(struct sock *sk, struct sk_buff *skb);
  167. extern struct sock *dccp_create_openreq_child(struct sock *sk,
  168. const struct request_sock *req,
  169. const struct sk_buff *skb);
  170. extern int dccp_v4_do_rcv(struct sock *sk, struct sk_buff *skb);
  171. extern void dccp_v4_err(struct sk_buff *skb, u32);
  172. extern int dccp_v4_rcv(struct sk_buff *skb);
  173. extern struct sock *dccp_v4_request_recv_sock(struct sock *sk,
  174. struct sk_buff *skb,
  175. struct request_sock *req,
  176. struct dst_entry *dst);
  177. extern struct sock *dccp_check_req(struct sock *sk, struct sk_buff *skb,
  178. struct request_sock *req,
  179. struct request_sock **prev);
  180. extern int dccp_child_process(struct sock *parent, struct sock *child,
  181. struct sk_buff *skb);
  182. extern int dccp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
  183. struct dccp_hdr *dh, unsigned len);
  184. extern int dccp_rcv_established(struct sock *sk, struct sk_buff *skb,
  185. const struct dccp_hdr *dh, const unsigned len);
  186. extern int dccp_v4_init_sock(struct sock *sk);
  187. extern int dccp_v4_destroy_sock(struct sock *sk);
  188. extern void dccp_close(struct sock *sk, long timeout);
  189. extern struct sk_buff *dccp_make_response(struct sock *sk,
  190. struct dst_entry *dst,
  191. struct request_sock *req);
  192. extern struct sk_buff *dccp_make_reset(struct sock *sk,
  193. struct dst_entry *dst,
  194. enum dccp_reset_codes code);
  195. extern int dccp_connect(struct sock *sk);
  196. extern int dccp_disconnect(struct sock *sk, int flags);
  197. extern void dccp_unhash(struct sock *sk);
  198. extern int dccp_getsockopt(struct sock *sk, int level, int optname,
  199. char __user *optval, int __user *optlen);
  200. extern int dccp_setsockopt(struct sock *sk, int level, int optname,
  201. char __user *optval, int optlen);
  202. extern int dccp_ioctl(struct sock *sk, int cmd, unsigned long arg);
  203. extern int dccp_sendmsg(struct kiocb *iocb, struct sock *sk,
  204. struct msghdr *msg, size_t size);
  205. extern int dccp_recvmsg(struct kiocb *iocb, struct sock *sk,
  206. struct msghdr *msg, size_t len, int nonblock,
  207. int flags, int *addr_len);
  208. extern void dccp_shutdown(struct sock *sk, int how);
  209. extern int inet_dccp_listen(struct socket *sock, int backlog);
  210. extern unsigned int dccp_poll(struct file *file, struct socket *sock,
  211. poll_table *wait);
  212. extern void dccp_v4_send_check(struct sock *sk, int len,
  213. struct sk_buff *skb);
  214. extern int dccp_v4_connect(struct sock *sk, struct sockaddr *uaddr,
  215. int addr_len);
  216. extern int dccp_v4_checksum(const struct sk_buff *skb,
  217. const u32 saddr, const u32 daddr);
  218. extern int dccp_v4_send_reset(struct sock *sk,
  219. enum dccp_reset_codes code);
  220. extern void dccp_send_close(struct sock *sk, const int active);
  221. extern int dccp_invalid_packet(struct sk_buff *skb);
  222. static inline int dccp_bad_service_code(const struct sock *sk,
  223. const __u32 service)
  224. {
  225. const struct dccp_sock *dp = dccp_sk(sk);
  226. if (dp->dccps_service == service)
  227. return 0;
  228. return !dccp_list_has_service(dp->dccps_service_list, service);
  229. }
  230. struct dccp_skb_cb {
  231. __u8 dccpd_type:4;
  232. __u8 dccpd_ccval:4;
  233. __u8 dccpd_reset_code;
  234. __u16 dccpd_opt_len;
  235. __u64 dccpd_seq;
  236. __u64 dccpd_ack_seq;
  237. };
  238. #define DCCP_SKB_CB(__skb) ((struct dccp_skb_cb *)&((__skb)->cb[0]))
  239. static inline int dccp_non_data_packet(const struct sk_buff *skb)
  240. {
  241. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  242. return type == DCCP_PKT_ACK ||
  243. type == DCCP_PKT_CLOSE ||
  244. type == DCCP_PKT_CLOSEREQ ||
  245. type == DCCP_PKT_RESET ||
  246. type == DCCP_PKT_SYNC ||
  247. type == DCCP_PKT_SYNCACK;
  248. }
  249. static inline int dccp_packet_without_ack(const struct sk_buff *skb)
  250. {
  251. const __u8 type = DCCP_SKB_CB(skb)->dccpd_type;
  252. return type == DCCP_PKT_DATA || type == DCCP_PKT_REQUEST;
  253. }
  254. #define DCCP_MAX_SEQNO ((((u64)1) << 48) - 1)
  255. #define DCCP_PKT_WITHOUT_ACK_SEQ (DCCP_MAX_SEQNO << 2)
  256. static inline void dccp_set_seqno(u64 *seqno, u64 value)
  257. {
  258. if (value > DCCP_MAX_SEQNO)
  259. value -= DCCP_MAX_SEQNO + 1;
  260. *seqno = value;
  261. }
  262. static inline u64 dccp_delta_seqno(u64 seqno1, u64 seqno2)
  263. {
  264. return ((seqno2 << 16) - (seqno1 << 16)) >> 16;
  265. }
  266. static inline void dccp_inc_seqno(u64 *seqno)
  267. {
  268. if (++*seqno > DCCP_MAX_SEQNO)
  269. *seqno = 0;
  270. }
  271. static inline void dccp_hdr_set_seq(struct dccp_hdr *dh, const u64 gss)
  272. {
  273. struct dccp_hdr_ext *dhx = (struct dccp_hdr_ext *)((void *)dh +
  274. sizeof(*dh));
  275. #if defined(__LITTLE_ENDIAN_BITFIELD)
  276. dh->dccph_seq = htonl((gss >> 32)) >> 8;
  277. #elif defined(__BIG_ENDIAN_BITFIELD)
  278. dh->dccph_seq = htonl((gss >> 32));
  279. #else
  280. #error "Adjust your <asm/byteorder.h> defines"
  281. #endif
  282. dhx->dccph_seq_low = htonl(gss & 0xffffffff);
  283. }
  284. static inline void dccp_hdr_set_ack(struct dccp_hdr_ack_bits *dhack,
  285. const u64 gsr)
  286. {
  287. #if defined(__LITTLE_ENDIAN_BITFIELD)
  288. dhack->dccph_ack_nr_high = htonl((gsr >> 32)) >> 8;
  289. #elif defined(__BIG_ENDIAN_BITFIELD)
  290. dhack->dccph_ack_nr_high = htonl((gsr >> 32));
  291. #else
  292. #error "Adjust your <asm/byteorder.h> defines"
  293. #endif
  294. dhack->dccph_ack_nr_low = htonl(gsr & 0xffffffff);
  295. }
  296. static inline void dccp_update_gsr(struct sock *sk, u64 seq)
  297. {
  298. struct dccp_sock *dp = dccp_sk(sk);
  299. dp->dccps_gsr = seq;
  300. dccp_set_seqno(&dp->dccps_swl,
  301. (dp->dccps_gsr + 1 -
  302. (dp->dccps_options.dccpo_sequence_window / 4)));
  303. dccp_set_seqno(&dp->dccps_swh,
  304. (dp->dccps_gsr +
  305. (3 * dp->dccps_options.dccpo_sequence_window) / 4));
  306. }
  307. static inline void dccp_update_gss(struct sock *sk, u64 seq)
  308. {
  309. struct dccp_sock *dp = dccp_sk(sk);
  310. dp->dccps_awh = dp->dccps_gss = seq;
  311. dccp_set_seqno(&dp->dccps_awl,
  312. (dp->dccps_gss -
  313. dp->dccps_options.dccpo_sequence_window + 1));
  314. }
  315. static inline int dccp_ack_pending(const struct sock *sk)
  316. {
  317. const struct dccp_sock *dp = dccp_sk(sk);
  318. return dp->dccps_timestamp_echo != 0 ||
  319. #ifdef CONFIG_IP_DCCP_ACKVEC
  320. (dp->dccps_options.dccpo_send_ack_vector &&
  321. dccp_ackvec_pending(dp->dccps_hc_rx_ackvec)) ||
  322. #endif
  323. inet_csk_ack_scheduled(sk);
  324. }
  325. extern void dccp_insert_options(struct sock *sk, struct sk_buff *skb);
  326. extern void dccp_insert_option_elapsed_time(struct sock *sk,
  327. struct sk_buff *skb,
  328. u32 elapsed_time);
  329. extern void dccp_insert_option_timestamp(struct sock *sk,
  330. struct sk_buff *skb);
  331. extern void dccp_insert_option(struct sock *sk, struct sk_buff *skb,
  332. unsigned char option,
  333. const void *value, unsigned char len);
  334. extern struct socket *dccp_ctl_socket;
  335. extern void dccp_timestamp(const struct sock *sk, struct timeval *tv);
  336. static inline suseconds_t timeval_usecs(const struct timeval *tv)
  337. {
  338. return tv->tv_sec * USEC_PER_SEC + tv->tv_usec;
  339. }
  340. static inline suseconds_t timeval_delta(const struct timeval *large,
  341. const struct timeval *small)
  342. {
  343. time_t secs = large->tv_sec - small->tv_sec;
  344. suseconds_t usecs = large->tv_usec - small->tv_usec;
  345. if (usecs < 0) {
  346. secs--;
  347. usecs += USEC_PER_SEC;
  348. }
  349. return secs * USEC_PER_SEC + usecs;
  350. }
  351. static inline void timeval_add_usecs(struct timeval *tv,
  352. const suseconds_t usecs)
  353. {
  354. tv->tv_usec += usecs;
  355. while (tv->tv_usec >= USEC_PER_SEC) {
  356. tv->tv_sec++;
  357. tv->tv_usec -= USEC_PER_SEC;
  358. }
  359. }
  360. static inline void timeval_sub_usecs(struct timeval *tv,
  361. const suseconds_t usecs)
  362. {
  363. tv->tv_usec -= usecs;
  364. while (tv->tv_usec < 0) {
  365. tv->tv_sec--;
  366. tv->tv_usec += USEC_PER_SEC;
  367. }
  368. }
  369. #endif /* _DCCP_H */