2 utcp.c -- Userspace TCP
3 Copyright (C) 2014-2017 Guus Sliepen <guus@tinc-vpn.org>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 #include "utcp_priv.h"
47 #if defined(CLOCK_MONOTONIC_RAW) && defined(__x86_64__)
48 #define UTCP_CLOCK CLOCK_MONOTONIC_RAW
50 #define UTCP_CLOCK CLOCK_MONOTONIC
54 static void timespec_sub(const struct timespec *a, const struct timespec *b, struct timespec *r) {
55 r->tv_sec = a->tv_sec - b->tv_sec;
56 r->tv_nsec = a->tv_nsec - b->tv_nsec;
59 r->tv_sec--, r->tv_nsec += NSEC_PER_SEC;
63 static int32_t timespec_diff_usec(const struct timespec *a, const struct timespec *b) {
64 return (a->tv_sec - b->tv_sec) * 1000000 + (a->tv_nsec - b->tv_nsec) / 1000;
67 static bool timespec_lt(const struct timespec *a, const struct timespec *b) {
68 if(a->tv_sec == b->tv_sec) {
69 return a->tv_nsec < b->tv_nsec;
71 return a->tv_sec < b->tv_sec;
75 static void timespec_clear(struct timespec *a) {
80 static bool timespec_isset(const struct timespec *a) {
84 static long CLOCK_GRANULARITY; // usec
86 static inline size_t min(size_t a, size_t b) {
90 static inline size_t max(size_t a, size_t b) {
97 #ifndef UTCP_DEBUG_DATALEN
98 #define UTCP_DEBUG_DATALEN 20
101 static void debug(struct utcp_connection *c, const char *format, ...) {
106 clock_gettime(CLOCK_REALTIME, &tv);
107 len = snprintf(buf, sizeof(buf), "%ld.%06lu %u:%u ", (long)tv.tv_sec, tv.tv_nsec / 1000, c ? c->src : 0, c ? c->dst : 0);
109 va_start(ap, format);
110 len += vsnprintf(buf + len, sizeof(buf) - len, format, ap);
113 if(len > 0 && (size_t)len < sizeof(buf)) {
114 fwrite(buf, len, 1, stderr);
118 static void print_packet(struct utcp_connection *c, const char *dir, const void *pkt, size_t len) {
121 if(len < sizeof(hdr)) {
122 debug(c, "%s: short packet (%lu bytes)\n", dir, (unsigned long)len);
126 memcpy(&hdr, pkt, sizeof(hdr));
130 if(len > sizeof(hdr)) {
131 datalen = min(len - sizeof(hdr), UTCP_DEBUG_DATALEN);
137 const uint8_t *data = (uint8_t *)pkt + sizeof(hdr);
138 char str[datalen * 2 + 1];
141 for(uint32_t i = 0; i < datalen; i++) {
142 *p++ = "0123456789ABCDEF"[data[i] >> 4];
143 *p++ = "0123456789ABCDEF"[data[i] & 15];
148 debug(c, "%s: len %lu src %u dst %u seq %u ack %u wnd %u aux %x ctl %s%s%s%s%s data %s\n",
149 dir, (unsigned long)len, hdr.src, hdr.dst, hdr.seq, hdr.ack, hdr.wnd, hdr.aux,
150 hdr.ctl & SYN ? "SYN" : "",
151 hdr.ctl & RST ? "RST" : "",
152 hdr.ctl & FIN ? "FIN" : "",
153 hdr.ctl & ACK ? "ACK" : "",
154 hdr.ctl & MF ? "MF" : "",
159 static void debug_cwnd(struct utcp_connection *c) {
160 debug(c, "snd.cwnd %u snd.ssthresh %u\n", c->snd.cwnd, ~c->snd.ssthresh ? c->snd.ssthresh : 0);
163 #define debug(...) do {} while(0)
164 #define print_packet(...) do {} while(0)
165 #define debug_cwnd(...) do {} while(0)
168 static void set_state(struct utcp_connection *c, enum state state) {
171 if(state == ESTABLISHED) {
172 timespec_clear(&c->conn_timeout);
175 debug(c, "state %s\n", strstate[state]);
178 static bool fin_wanted(struct utcp_connection *c, uint32_t seq) {
179 if(seq != c->snd.last) {
194 static bool is_reliable(struct utcp_connection *c) {
195 return c->flags & UTCP_RELIABLE;
198 static int32_t seqdiff(uint32_t a, uint32_t b) {
203 static bool buffer_wraps(struct buffer *buf) {
204 return buf->size - buf->offset < buf->used;
207 static bool buffer_resize(struct buffer *buf, uint32_t newsize) {
208 char *newdata = realloc(buf->data, newsize);
216 if(buffer_wraps(buf)) {
217 // Shift the right part of the buffer until it hits the end of the new buffer.
221 // [345.........|........012]
222 uint32_t tailsize = buf->size - buf->offset;
223 uint32_t newoffset = newsize - tailsize;
224 memmove(buf->data + newoffset, buf->data + buf->offset, tailsize);
225 buf->offset = newoffset;
232 // Store data into the buffer
233 static ssize_t buffer_put_at(struct buffer *buf, size_t offset, const void *data, size_t len) {
234 debug(NULL, "buffer_put_at %lu %lu %lu\n", (unsigned long)buf->used, (unsigned long)offset, (unsigned long)len);
236 // Ensure we don't store more than maxsize bytes in total
237 size_t required = offset + len;
239 if(required > buf->maxsize) {
240 if(offset >= buf->maxsize) {
244 len = buf->maxsize - offset;
245 required = buf->maxsize;
248 // Check if we need to resize the buffer
249 if(required > buf->size) {
250 size_t newsize = buf->size;
258 } while(newsize < required);
260 if(newsize > buf->maxsize) {
261 newsize = buf->maxsize;
264 if(!buffer_resize(buf, newsize)) {
269 uint32_t realoffset = buf->offset + offset;
271 if(buf->size - buf->offset < offset) {
272 // The offset wrapped
273 realoffset -= buf->size;
276 if(buf->size - realoffset < len) {
277 // The new chunk of data must be wrapped
278 memcpy(buf->data + realoffset, data, buf->size - realoffset);
279 memcpy(buf->data, (char *)data + buf->size - realoffset, len - (buf->size - realoffset));
281 memcpy(buf->data + realoffset, data, len);
284 if(required > buf->used) {
285 buf->used = required;
291 static ssize_t buffer_put(struct buffer *buf, const void *data, size_t len) {
292 return buffer_put_at(buf, buf->used, data, len);
295 // Copy data from the buffer without removing it.
296 static ssize_t buffer_copy(struct buffer *buf, void *data, size_t offset, size_t len) {
297 // Ensure we don't copy more than is actually stored in the buffer
298 if(offset >= buf->used) {
302 if(buf->used - offset < len) {
303 len = buf->used - offset;
306 uint32_t realoffset = buf->offset + offset;
308 if(buf->size - buf->offset < offset) {
309 // The offset wrapped
310 realoffset -= buf->size;
313 if(buf->size - realoffset < len) {
314 // The data is wrapped
315 memcpy(data, buf->data + realoffset, buf->size - realoffset);
316 memcpy((char *)data + buf->size - realoffset, buf->data, len - (buf->size - realoffset));
318 memcpy(data, buf->data + realoffset, len);
324 // Copy data from the buffer without removing it.
325 static ssize_t buffer_call(struct buffer *buf, utcp_recv_t cb, void *arg, size_t offset, size_t len) {
326 // Ensure we don't copy more than is actually stored in the buffer
327 if(offset >= buf->used) {
331 if(buf->used - offset < len) {
332 len = buf->used - offset;
335 uint32_t realoffset = buf->offset + offset;
337 if(buf->size - buf->offset < offset) {
338 // The offset wrapped
339 realoffset -= buf->size;
342 if(buf->size - realoffset < len) {
343 // The data is wrapped
344 ssize_t rx1 = cb(arg, buf->data + realoffset, buf->size - realoffset);
346 if(rx1 < buf->size - realoffset) {
350 ssize_t rx2 = cb(arg, buf->data, len - (buf->size - realoffset));
358 return cb(arg, buf->data + realoffset, len);
362 // Discard data from the buffer.
363 static ssize_t buffer_discard(struct buffer *buf, size_t len) {
364 if(buf->used < len) {
368 if(buf->size - buf->offset < len) {
369 buf->offset -= buf->size;
372 if(buf->used == len) {
383 static void buffer_clear(struct buffer *buf) {
388 static bool buffer_set_size(struct buffer *buf, uint32_t minsize, uint32_t maxsize) {
389 if(maxsize < minsize) {
393 buf->maxsize = maxsize;
395 return buf->size >= minsize || buffer_resize(buf, minsize);
398 static void buffer_exit(struct buffer *buf) {
400 memset(buf, 0, sizeof(*buf));
403 static uint32_t buffer_free(const struct buffer *buf) {
404 return buf->maxsize > buf->used ? buf->maxsize - buf->used : 0;
407 // Connections are stored in a sorted list.
408 // This gives O(log(N)) lookup time, O(N log(N)) insertion time and O(N) deletion time.
410 static int compare(const void *va, const void *vb) {
413 const struct utcp_connection *a = *(struct utcp_connection **)va;
414 const struct utcp_connection *b = *(struct utcp_connection **)vb;
417 assert(a->src && b->src);
419 int c = (int)a->src - (int)b->src;
425 c = (int)a->dst - (int)b->dst;
429 static struct utcp_connection *find_connection(const struct utcp *utcp, uint16_t src, uint16_t dst) {
430 if(!utcp->nconnections) {
434 struct utcp_connection key = {
438 struct utcp_connection **match = bsearch(&keyp, utcp->connections, utcp->nconnections, sizeof(*utcp->connections), compare);
439 return match ? *match : NULL;
442 static void free_connection(struct utcp_connection *c) {
443 struct utcp *utcp = c->utcp;
444 struct utcp_connection **cp = bsearch(&c, utcp->connections, utcp->nconnections, sizeof(*utcp->connections), compare);
448 int i = cp - utcp->connections;
449 memmove(cp, cp + 1, (utcp->nconnections - i - 1) * sizeof(*cp));
450 utcp->nconnections--;
452 buffer_exit(&c->rcvbuf);
453 buffer_exit(&c->sndbuf);
457 static struct utcp_connection *allocate_connection(struct utcp *utcp, uint16_t src, uint16_t dst) {
458 // Check whether this combination of src and dst is free
461 if(find_connection(utcp, src, dst)) {
465 } else { // If src == 0, generate a random port number with the high bit set
466 if(utcp->nconnections >= 32767) {
471 src = rand() | 0x8000;
473 while(find_connection(utcp, src, dst)) {
478 // Allocate memory for the new connection
480 if(utcp->nconnections >= utcp->nallocated) {
481 if(!utcp->nallocated) {
482 utcp->nallocated = 4;
484 utcp->nallocated *= 2;
487 struct utcp_connection **new_array = realloc(utcp->connections, utcp->nallocated * sizeof(*utcp->connections));
493 utcp->connections = new_array;
496 struct utcp_connection *c = calloc(1, sizeof(*c));
502 if(!buffer_set_size(&c->sndbuf, DEFAULT_SNDBUFSIZE, DEFAULT_MAXSNDBUFSIZE)) {
507 if(!buffer_set_size(&c->rcvbuf, DEFAULT_RCVBUFSIZE, DEFAULT_MAXRCVBUFSIZE)) {
508 buffer_exit(&c->sndbuf);
513 // Fill in the details
522 c->snd.una = c->snd.iss;
523 c->snd.nxt = c->snd.iss + 1;
524 c->snd.last = c->snd.nxt;
525 c->snd.cwnd = (utcp->mss > 2190 ? 2 : utcp->mss > 1095 ? 3 : 4) * utcp->mss;
526 c->snd.ssthresh = ~0;
533 // Add it to the sorted list of connections
535 utcp->connections[utcp->nconnections++] = c;
536 qsort(utcp->connections, utcp->nconnections, sizeof(*utcp->connections), compare);
541 static inline uint32_t absdiff(uint32_t a, uint32_t b) {
549 // Update RTT variables. See RFC 6298.
550 static void update_rtt(struct utcp_connection *c, uint32_t rtt) {
552 debug(c, "invalid rtt\n");
560 c->rttvar = (c->rttvar * 3 + absdiff(c->srtt, rtt)) / 4;
561 c->srtt = (c->srtt * 7 + rtt) / 8;
564 c->rto = c->srtt + max(4 * c->rttvar, CLOCK_GRANULARITY);
566 if(c->rto > MAX_RTO) {
570 debug(c, "rtt %u srtt %u rttvar %u rto %u\n", rtt, c->srtt, c->rttvar, c->rto);
573 static void start_retransmit_timer(struct utcp_connection *c) {
574 clock_gettime(UTCP_CLOCK, &c->rtrx_timeout);
576 uint32_t rto = c->rto;
578 while(rto > USEC_PER_SEC) {
579 c->rtrx_timeout.tv_sec++;
583 c->rtrx_timeout.tv_nsec += rto * 1000;
585 if(c->rtrx_timeout.tv_nsec >= NSEC_PER_SEC) {
586 c->rtrx_timeout.tv_nsec -= NSEC_PER_SEC;
587 c->rtrx_timeout.tv_sec++;
590 debug(c, "rtrx_timeout %ld.%06lu\n", c->rtrx_timeout.tv_sec, c->rtrx_timeout.tv_nsec);
593 static void stop_retransmit_timer(struct utcp_connection *c) {
594 timespec_clear(&c->rtrx_timeout);
595 debug(c, "rtrx_timeout cleared\n");
598 struct utcp_connection *utcp_connect_ex(struct utcp *utcp, uint16_t dst, utcp_recv_t recv, void *priv, uint32_t flags) {
599 struct utcp_connection *c = allocate_connection(utcp, 0, dst);
605 assert((flags & ~0x1f) == 0);
616 pkt.hdr.src = c->src;
617 pkt.hdr.dst = c->dst;
618 pkt.hdr.seq = c->snd.iss;
620 pkt.hdr.wnd = c->rcvbuf.maxsize;
622 pkt.hdr.aux = 0x0101;
626 pkt.init[3] = flags & 0x7;
628 set_state(c, SYN_SENT);
630 print_packet(c, "send", &pkt, sizeof(pkt));
631 utcp->send(utcp, &pkt, sizeof(pkt));
633 clock_gettime(UTCP_CLOCK, &c->conn_timeout);
634 c->conn_timeout.tv_sec += utcp->timeout;
636 start_retransmit_timer(c);
641 struct utcp_connection *utcp_connect(struct utcp *utcp, uint16_t dst, utcp_recv_t recv, void *priv) {
642 return utcp_connect_ex(utcp, dst, recv, priv, UTCP_TCP);
645 void utcp_accept(struct utcp_connection *c, utcp_recv_t recv, void *priv) {
646 if(c->reapable || c->state != SYN_RECEIVED) {
647 debug(c, "accept() called on invalid connection in state %s\n", c, strstate[c->state]);
651 debug(c, "accepted %p %p\n", c, recv, priv);
654 set_state(c, ESTABLISHED);
657 static void ack(struct utcp_connection *c, bool sendatleastone) {
658 int32_t left = seqdiff(c->snd.last, c->snd.nxt);
659 int32_t cwndleft = is_reliable(c) ? min(c->snd.cwnd, c->snd.wnd) - seqdiff(c->snd.nxt, c->snd.una) : MAX_UNRELIABLE_SIZE;
665 } else if(cwndleft < left) {
668 if(!sendatleastone || cwndleft > c->utcp->mss) {
669 left -= left % c->utcp->mss;
673 debug(c, "cwndleft %d left %d\n", cwndleft, left);
675 if(!left && !sendatleastone) {
682 } *pkt = c->utcp->pkt;
684 pkt->hdr.src = c->src;
685 pkt->hdr.dst = c->dst;
686 pkt->hdr.ack = c->rcv.nxt;
687 pkt->hdr.wnd = is_reliable(c) ? c->rcvbuf.maxsize : 0;
692 uint32_t seglen = left > c->utcp->mss ? c->utcp->mss : left;
693 pkt->hdr.seq = c->snd.nxt;
695 buffer_copy(&c->sndbuf, pkt->data, seqdiff(c->snd.nxt, c->snd.una), seglen);
697 c->snd.nxt += seglen;
700 if(!is_reliable(c)) {
708 if(seglen && fin_wanted(c, c->snd.nxt)) {
713 if(!c->rtt_start.tv_sec) {
714 // Start RTT measurement
715 clock_gettime(UTCP_CLOCK, &c->rtt_start);
716 c->rtt_seq = pkt->hdr.seq + seglen;
717 debug(c, "starting RTT measurement, expecting ack %u\n", c->rtt_seq);
720 print_packet(c, "send", pkt, sizeof(pkt->hdr) + seglen);
721 c->utcp->send(c->utcp, pkt, sizeof(pkt->hdr) + seglen);
723 if(left && !is_reliable(c)) {
724 pkt->hdr.wnd += seglen;
729 ssize_t utcp_send(struct utcp_connection *c, const void *data, size_t len) {
731 debug(c, "send() called on closed connection\n");
739 debug(c, "send() called on unconnected connection\n");
754 debug(c, "send() called on closed connection\n");
759 // Exit early if we have nothing to send.
770 // Check if we need to be able to buffer all data
772 if(c->flags & UTCP_NO_PARTIAL) {
773 if(len > buffer_free(&c->sndbuf)) {
774 if(len > c->sndbuf.maxsize) {
784 // Add data to send buffer.
787 len = buffer_put(&c->sndbuf, data, len);
788 } else if(c->state != SYN_SENT && c->state != SYN_RECEIVED) {
789 if(len > MAX_UNRELIABLE_SIZE || buffer_put(&c->sndbuf, data, len) != (ssize_t)len) {
808 // Don't send anything yet if the connection has not fully established yet
810 if(c->state == SYN_SENT || c->state == SYN_RECEIVED) {
816 if(!is_reliable(c)) {
817 c->snd.una = c->snd.nxt = c->snd.last;
818 buffer_discard(&c->sndbuf, c->sndbuf.used);
821 if(is_reliable(c) && !timespec_isset(&c->rtrx_timeout)) {
822 start_retransmit_timer(c);
825 if(is_reliable(c) && !timespec_isset(&c->conn_timeout)) {
826 clock_gettime(UTCP_CLOCK, &c->conn_timeout);
827 c->conn_timeout.tv_sec += c->utcp->timeout;
833 static void swap_ports(struct hdr *hdr) {
834 uint16_t tmp = hdr->src;
839 static void fast_retransmit(struct utcp_connection *c) {
840 if(c->state == CLOSED || c->snd.last == c->snd.una) {
841 debug(c, "fast_retransmit() called but nothing to retransmit!\n");
845 struct utcp *utcp = c->utcp;
850 } *pkt = c->utcp->pkt;
852 pkt->hdr.src = c->src;
853 pkt->hdr.dst = c->dst;
854 pkt->hdr.wnd = c->rcvbuf.maxsize;
863 // Send unacked data again.
864 pkt->hdr.seq = c->snd.una;
865 pkt->hdr.ack = c->rcv.nxt;
867 uint32_t len = min(seqdiff(c->snd.last, c->snd.una), utcp->mss);
869 if(fin_wanted(c, c->snd.una + len)) {
874 buffer_copy(&c->sndbuf, pkt->data, 0, len);
875 print_packet(c, "rtrx", pkt, sizeof(pkt->hdr) + len);
876 utcp->send(utcp, pkt, sizeof(pkt->hdr) + len);
884 static void retransmit(struct utcp_connection *c) {
885 if(c->state == CLOSED || c->snd.last == c->snd.una) {
886 debug(c, "retransmit() called but nothing to retransmit!\n");
887 stop_retransmit_timer(c);
891 struct utcp *utcp = c->utcp;
893 if (utcp->retransmit) {
900 } *pkt = c->utcp->pkt;
902 pkt->hdr.src = c->src;
903 pkt->hdr.dst = c->dst;
904 pkt->hdr.wnd = c->rcvbuf.maxsize;
909 // Send our SYN again
910 pkt->hdr.seq = c->snd.iss;
913 pkt->hdr.aux = 0x0101;
917 pkt->data[3] = c->flags & 0x7;
918 print_packet(c, "rtrx", pkt, sizeof(pkt->hdr) + 4);
919 utcp->send(utcp, pkt, sizeof(pkt->hdr) + 4);
924 pkt->hdr.seq = c->snd.nxt;
925 pkt->hdr.ack = c->rcv.nxt;
926 pkt->hdr.ctl = SYN | ACK;
927 print_packet(c, "rtrx", pkt, sizeof(pkt->hdr));
928 utcp->send(utcp, pkt, sizeof(pkt->hdr));
936 // Send unacked data again.
937 pkt->hdr.seq = c->snd.una;
938 pkt->hdr.ack = c->rcv.nxt;
940 uint32_t len = min(seqdiff(c->snd.last, c->snd.una), utcp->mss);
942 if(fin_wanted(c, c->snd.una + len)) {
947 // RFC 5681 slow start after timeout
948 uint32_t flightsize = seqdiff(c->snd.nxt, c->snd.una);
949 c->snd.ssthresh = max(flightsize / 2, utcp->mss * 2); // eq. 4
950 c->snd.cwnd = utcp->mss;
953 buffer_copy(&c->sndbuf, pkt->data, 0, len);
954 print_packet(c, "rtrx", pkt, sizeof(pkt->hdr) + len);
955 utcp->send(utcp, pkt, sizeof(pkt->hdr) + len);
957 c->snd.nxt = c->snd.una + len;
964 // We shouldn't need to retransmit anything in this state.
968 stop_retransmit_timer(c);
972 start_retransmit_timer(c);
975 if(c->rto > MAX_RTO) {
979 c->rtt_start.tv_sec = 0; // invalidate RTT timer
980 c->dupack = 0; // cancel any ongoing fast recovery
986 /* Update receive buffer and SACK entries after consuming data.
990 * |.....0000..1111111111.....22222......3333|
993 * 0..3 represent the SACK entries. The ^ indicates up to which point we want
994 * to remove data from the receive buffer. The idea is to substract "len"
995 * from the offset of all the SACK entries, and then remove/cut down entries
996 * that are shifted to before the start of the receive buffer.
998 * There are three cases:
999 * - the SACK entry is after ^, in that case just change the offset.
1000 * - the SACK entry starts before and ends after ^, so we have to
1001 * change both its offset and size.
1002 * - the SACK entry is completely before ^, in that case delete it.
1004 static void sack_consume(struct utcp_connection *c, size_t len) {
1005 debug(c, "sack_consume %lu\n", (unsigned long)len);
1007 if(len > c->rcvbuf.used) {
1008 debug(c, "all SACK entries consumed\n");
1009 c->sacks[0].len = 0;
1013 buffer_discard(&c->rcvbuf, len);
1015 for(int i = 0; i < NSACKS && c->sacks[i].len;) {
1016 if(len < c->sacks[i].offset) {
1017 c->sacks[i].offset -= len;
1019 } else if(len < c->sacks[i].offset + c->sacks[i].len) {
1020 c->sacks[i].len -= len - c->sacks[i].offset;
1021 c->sacks[i].offset = 0;
1024 if(i < NSACKS - 1) {
1025 memmove(&c->sacks[i], &c->sacks[i + 1], (NSACKS - 1 - i) * sizeof(c->sacks)[i]);
1026 c->sacks[NSACKS - 1].len = 0;
1028 c->sacks[i].len = 0;
1034 for(int i = 0; i < NSACKS && c->sacks[i].len; i++) {
1035 debug(c, "SACK[%d] offset %u len %u\n", i, c->sacks[i].offset, c->sacks[i].len);
1039 static void handle_out_of_order(struct utcp_connection *c, uint32_t offset, const void *data, size_t len) {
1040 debug(c, "out of order packet, offset %u\n", offset);
1041 // Packet loss or reordering occured. Store the data in the buffer.
1042 ssize_t rxd = buffer_put_at(&c->rcvbuf, offset, data, len);
1045 debug(c, "packet outside receive buffer, dropping\n");
1049 if((size_t)rxd < len) {
1050 debug(c, "packet partially outside receive buffer\n");
1054 // Make note of where we put it.
1055 for(int i = 0; i < NSACKS; i++) {
1056 if(!c->sacks[i].len) { // nothing to merge, add new entry
1057 debug(c, "new SACK entry %d\n", i);
1058 c->sacks[i].offset = offset;
1059 c->sacks[i].len = rxd;
1061 } else if(offset < c->sacks[i].offset) {
1062 if(offset + rxd < c->sacks[i].offset) { // insert before
1063 if(!c->sacks[NSACKS - 1].len) { // only if room left
1064 debug(c, "insert SACK entry at %d\n", i);
1065 memmove(&c->sacks[i + 1], &c->sacks[i], (NSACKS - i - 1) * sizeof(c->sacks)[i]);
1066 c->sacks[i].offset = offset;
1067 c->sacks[i].len = rxd;
1069 debug(c, "SACK entries full, dropping packet\n");
1074 debug(c, "merge with start of SACK entry at %d\n", i);
1075 c->sacks[i].offset = offset;
1078 } else if(offset <= c->sacks[i].offset + c->sacks[i].len) {
1079 if(offset + rxd > c->sacks[i].offset + c->sacks[i].len) { // merge
1080 debug(c, "merge with end of SACK entry at %d\n", i);
1081 c->sacks[i].len = offset + rxd - c->sacks[i].offset;
1082 // TODO: handle potential merge with next entry
1089 for(int i = 0; i < NSACKS && c->sacks[i].len; i++) {
1090 debug(c, "SACK[%d] offset %u len %u\n", i, c->sacks[i].offset, c->sacks[i].len);
1094 static void handle_in_order(struct utcp_connection *c, const void *data, size_t len) {
1096 ssize_t rxd = c->recv(c, data, len);
1098 if(rxd != (ssize_t)len) {
1099 // TODO: handle the application not accepting all data.
1104 // Check if we can process out-of-order data now.
1105 if(c->sacks[0].len && len >= c->sacks[0].offset) {
1106 debug(c, "incoming packet len %lu connected with SACK at %u\n", (unsigned long)len, c->sacks[0].offset);
1108 if(len < c->sacks[0].offset + c->sacks[0].len) {
1109 size_t offset = len;
1110 len = c->sacks[0].offset + c->sacks[0].len;
1111 size_t remainder = len - offset;
1114 ssize_t rxd = buffer_call(&c->rcvbuf, c->recv, c, offset, remainder);
1116 if(rxd != (ssize_t)remainder) {
1117 // TODO: handle the application not accepting all data.
1124 if(c->rcvbuf.used) {
1125 sack_consume(c, len);
1131 static void handle_unreliable(struct utcp_connection *c, const struct hdr *hdr, const void *data, size_t len) {
1132 // Fast path for unfragmented packets
1133 if(!hdr->wnd && !(hdr->ctl & MF)) {
1135 c->recv(c, data, len);
1138 c->rcv.nxt = hdr->seq + len;
1142 // Ensure reassembled packet are not larger than 64 kiB
1143 if(hdr->wnd >= MAX_UNRELIABLE_SIZE || hdr->wnd + len > MAX_UNRELIABLE_SIZE) {
1147 // Don't accept out of order fragments
1148 if(hdr->wnd && hdr->seq != c->rcv.nxt) {
1152 // Reset the receive buffer for the first fragment
1154 buffer_clear(&c->rcvbuf);
1157 ssize_t rxd = buffer_put_at(&c->rcvbuf, hdr->wnd, data, len);
1159 if(rxd != (ssize_t)len) {
1163 // Send the packet if it's the final fragment
1164 if(!(hdr->ctl & MF) && c->recv) {
1165 buffer_call(&c->rcvbuf, c->recv, c, 0, hdr->wnd + len);
1168 c->rcv.nxt = hdr->seq + len;
1171 static void handle_incoming_data(struct utcp_connection *c, const struct hdr *hdr, const void *data, size_t len) {
1172 if(!is_reliable(c)) {
1173 handle_unreliable(c, hdr, data, len);
1177 uint32_t offset = seqdiff(hdr->seq, c->rcv.nxt);
1180 handle_out_of_order(c, offset, data, len);
1182 handle_in_order(c, data, len);
1187 ssize_t utcp_recv(struct utcp *utcp, const void *data, size_t len) {
1188 const uint8_t *ptr = data;
1204 // Drop packets smaller than the header
1208 if(len < sizeof(hdr)) {
1209 print_packet(NULL, "recv", data, len);
1214 // Make a copy from the potentially unaligned data to a struct hdr
1216 memcpy(&hdr, ptr, sizeof(hdr));
1218 // Try to match the packet to an existing connection
1220 struct utcp_connection *c = find_connection(utcp, hdr.dst, hdr.src);
1221 print_packet(c, "recv", data, len);
1223 // Process the header
1228 // Drop packets with an unknown CTL flag
1230 if(hdr.ctl & ~(SYN | ACK | RST | FIN | MF)) {
1231 print_packet(NULL, "recv", data, len);
1236 // Check for auxiliary headers
1238 const uint8_t *init = NULL;
1240 uint16_t aux = hdr.aux;
1243 size_t auxlen = 4 * (aux >> 8) & 0xf;
1244 uint8_t auxtype = aux & 0xff;
1253 if(!(hdr.ctl & SYN) || auxlen != 4) {
1269 if(!(aux & 0x800)) {
1278 memcpy(&aux, ptr, 2);
1283 bool has_data = len || (hdr.ctl & (SYN | FIN));
1285 // Is it for a new connection?
1288 // Ignore RST packets
1294 // Is it a SYN packet and are we LISTENing?
1296 if(hdr.ctl & SYN && !(hdr.ctl & ACK) && utcp->accept) {
1297 // If we don't want to accept it, send a RST back
1298 if((utcp->pre_accept && !utcp->pre_accept(utcp, hdr.dst))) {
1303 // Try to allocate memory, otherwise send a RST back
1304 c = allocate_connection(utcp, hdr.dst, hdr.src);
1311 // Parse auxilliary information
1318 c->flags = init[3] & 0x7;
1320 c->flags = UTCP_TCP;
1324 // Return SYN+ACK, go to SYN_RECEIVED state
1325 c->snd.wnd = hdr.wnd;
1326 c->rcv.irs = hdr.seq;
1327 c->rcv.nxt = c->rcv.irs + 1;
1328 set_state(c, SYN_RECEIVED);
1335 pkt.hdr.src = c->src;
1336 pkt.hdr.dst = c->dst;
1337 pkt.hdr.ack = c->rcv.irs + 1;
1338 pkt.hdr.seq = c->snd.iss;
1339 pkt.hdr.wnd = c->rcvbuf.maxsize;
1340 pkt.hdr.ctl = SYN | ACK;
1343 pkt.hdr.aux = 0x0101;
1347 pkt.data[3] = c->flags & 0x7;
1348 print_packet(c, "send", &pkt, sizeof(hdr) + 4);
1349 utcp->send(utcp, &pkt, sizeof(hdr) + 4);
1352 print_packet(c, "send", &pkt, sizeof(hdr));
1353 utcp->send(utcp, &pkt, sizeof(hdr));
1356 // No, we don't want your packets, send a RST back
1364 debug(c, "state %s\n", strstate[c->state]);
1366 // In case this is for a CLOSED connection, ignore the packet.
1367 // TODO: make it so incoming packets can never match a CLOSED connection.
1369 if(c->state == CLOSED) {
1370 debug(c, "got packet for closed connection\n");
1374 // It is for an existing connection.
1376 // 1. Drop invalid packets.
1378 // 1a. Drop packets that should not happen in our current state.
1399 // 1b. Discard data that is not in our receive window.
1401 if(is_reliable(c)) {
1404 if(c->state == SYN_SENT) {
1406 } else if(len == 0) {
1407 acceptable = seqdiff(hdr.seq, c->rcv.nxt) >= 0;
1409 int32_t rcv_offset = seqdiff(hdr.seq, c->rcv.nxt);
1411 // cut already accepted front overlapping
1412 if(rcv_offset < 0) {
1413 acceptable = len > (size_t) - rcv_offset;
1418 hdr.seq -= rcv_offset;
1421 acceptable = seqdiff(hdr.seq, c->rcv.nxt) >= 0 && seqdiff(hdr.seq, c->rcv.nxt) + len <= c->rcvbuf.maxsize;
1426 debug(c, "packet not acceptable, %u <= %u + %lu < %u\n", c->rcv.nxt, hdr.seq, (unsigned long)len, c->rcv.nxt + c->rcvbuf.maxsize);
1428 // Ignore unacceptable RST packets.
1433 // Otherwise, continue processing.
1438 int32_t rcv_offset = seqdiff(hdr.seq, c->rcv.nxt);
1441 debug(c, "packet out of order, offset %u bytes", rcv_offset);
1447 c->snd.wnd = hdr.wnd; // TODO: move below
1449 // 1c. Drop packets with an invalid ACK.
1450 // ackno should not roll back, and it should also not be bigger than what we ever could have sent
1451 // (= snd.una + c->sndbuf.used).
1453 if(!is_reliable(c)) {
1454 if(hdr.ack != c->snd.last && c->state >= ESTABLISHED) {
1455 hdr.ack = c->snd.una;
1459 if(hdr.ctl & ACK && (seqdiff(hdr.ack, c->snd.last) > 0 || seqdiff(hdr.ack, c->snd.una) < 0)) {
1460 debug(c, "packet ack seqno out of range, %u <= %u < %u\n", c->snd.una, hdr.ack, c->snd.una + c->sndbuf.used);
1462 // Ignore unacceptable RST packets.
1470 // 2. Handle RST packets
1475 if(!(hdr.ctl & ACK)) {
1479 // The peer has refused our connection.
1480 set_state(c, CLOSED);
1481 errno = ECONNREFUSED;
1484 c->recv(c, NULL, 0);
1487 if(c->poll && !c->reapable) {
1498 // We haven't told the application about this connection yet. Silently delete.
1510 // The peer has aborted our connection.
1511 set_state(c, CLOSED);
1515 c->recv(c, NULL, 0);
1518 if(c->poll && !c->reapable) {
1531 // As far as the application is concerned, the connection has already been closed.
1532 // If it has called utcp_close() already, we can immediately free this connection.
1538 // Otherwise, immediately move to the CLOSED state.
1539 set_state(c, CLOSED);
1552 if(!(hdr.ctl & ACK)) {
1557 // 3. Advance snd.una
1559 advanced = seqdiff(hdr.ack, c->snd.una);
1563 if(c->rtt_start.tv_sec) {
1564 if(c->rtt_seq == hdr.ack) {
1565 struct timespec now;
1566 clock_gettime(UTCP_CLOCK, &now);
1567 int32_t diff = timespec_diff_usec(&now, &c->rtt_start);
1568 update_rtt(c, diff);
1569 c->rtt_start.tv_sec = 0;
1570 } else if(c->rtt_seq < hdr.ack) {
1571 debug(c, "cancelling RTT measurement: %u < %u\n", c->rtt_seq, hdr.ack);
1572 c->rtt_start.tv_sec = 0;
1576 int32_t data_acked = advanced;
1584 // TODO: handle FIN as well.
1589 assert(data_acked >= 0);
1592 int32_t bufused = seqdiff(c->snd.last, c->snd.una);
1593 assert(data_acked <= bufused);
1597 buffer_discard(&c->sndbuf, data_acked);
1599 if(is_reliable(c)) {
1604 // Also advance snd.nxt if possible
1605 if(seqdiff(c->snd.nxt, hdr.ack) < 0) {
1606 c->snd.nxt = hdr.ack;
1609 c->snd.una = hdr.ack;
1612 if(c->dupack >= 3) {
1613 debug(c, "fast recovery ended\n");
1614 c->snd.cwnd = c->snd.ssthresh;
1620 // Increase the congestion window according to RFC 5681
1621 if(c->snd.cwnd < c->snd.ssthresh) {
1622 c->snd.cwnd += min(advanced, utcp->mss); // eq. 2
1624 c->snd.cwnd += max(1, (utcp->mss * utcp->mss) / c->snd.cwnd); // eq. 3
1627 if(c->snd.cwnd > c->sndbuf.maxsize) {
1628 c->snd.cwnd = c->sndbuf.maxsize;
1633 // Check if we have sent a FIN that is now ACKed.
1636 if(c->snd.una == c->snd.last) {
1637 set_state(c, FIN_WAIT_2);
1643 if(c->snd.una == c->snd.last) {
1644 clock_gettime(UTCP_CLOCK, &c->conn_timeout);
1645 c->conn_timeout.tv_sec += utcp->timeout;
1646 set_state(c, TIME_WAIT);
1655 if(!len && is_reliable(c) && c->snd.una != c->snd.last) {
1657 debug(c, "duplicate ACK %d\n", c->dupack);
1659 if(c->dupack == 3) {
1660 // RFC 5681 fast recovery
1661 debug(c, "fast recovery started\n", c->dupack);
1662 uint32_t flightsize = seqdiff(c->snd.nxt, c->snd.una);
1663 c->snd.ssthresh = max(flightsize / 2, utcp->mss * 2); // eq. 4
1664 c->snd.cwnd = min(c->snd.ssthresh + 3 * utcp->mss, c->sndbuf.maxsize);
1666 if(c->snd.cwnd > c->sndbuf.maxsize) {
1667 c->snd.cwnd = c->sndbuf.maxsize;
1673 } else if(c->dupack > 3) {
1674 c->snd.cwnd += utcp->mss;
1676 if(c->snd.cwnd > c->sndbuf.maxsize) {
1677 c->snd.cwnd = c->sndbuf.maxsize;
1683 // We got an ACK which indicates the other side did get one of our packets.
1684 // Reset the retransmission timer to avoid going to slow start,
1685 // but don't touch the connection timeout.
1686 start_retransmit_timer(c);
1693 if(c->snd.una == c->snd.last) {
1694 stop_retransmit_timer(c);
1695 timespec_clear(&c->conn_timeout);
1696 } else if(is_reliable(c)) {
1697 start_retransmit_timer(c);
1698 clock_gettime(UTCP_CLOCK, &c->conn_timeout);
1699 c->conn_timeout.tv_sec += utcp->timeout;
1704 // 5. Process SYN stuff
1710 // This is a SYNACK. It should always have ACKed the SYN.
1715 c->rcv.irs = hdr.seq;
1716 c->rcv.nxt = hdr.seq;
1720 set_state(c, FIN_WAIT_1);
1722 set_state(c, ESTABLISHED);
1725 // TODO: notify application of this somehow.
1729 // This is a retransmit of a SYN, send back the SYNACK.
1739 // Ehm, no. We should never receive a second SYN.
1749 // SYN counts as one sequence number
1753 // 6. Process new data
1755 if(c->state == SYN_RECEIVED) {
1756 // This is the ACK after the SYNACK. It should always have ACKed the SYNACK.
1761 // Are we still LISTENing?
1763 utcp->accept(c, c->src);
1766 if(c->state != ESTABLISHED) {
1767 set_state(c, CLOSED);
1777 // This should never happen.
1792 // Ehm no, We should never receive more data after a FIN.
1802 handle_incoming_data(c, &hdr, ptr, len);
1805 // 7. Process FIN stuff
1807 if((hdr.ctl & FIN) && (!is_reliable(c) || hdr.seq + len == c->rcv.nxt)) {
1811 // This should never happen.
1818 set_state(c, CLOSE_WAIT);
1822 set_state(c, CLOSING);
1826 clock_gettime(UTCP_CLOCK, &c->conn_timeout);
1827 c->conn_timeout.tv_sec += utcp->timeout;
1828 set_state(c, TIME_WAIT);
1835 // Ehm, no. We should never receive a second FIN.
1845 // FIN counts as one sequence number
1849 // Inform the application that the peer closed its end of the connection.
1852 c->recv(c, NULL, 0);
1856 // Now we send something back if:
1857 // - we received data, so we have to send back an ACK
1858 // -> sendatleastone = true
1859 // - or we got an ack, so we should maybe send a bit more data
1860 // -> sendatleastone = false
1862 if(is_reliable(c) || hdr.ctl & SYN || hdr.ctl & FIN) {
1877 hdr.ack = hdr.seq + len;
1879 hdr.ctl = RST | ACK;
1882 print_packet(c, "send", &hdr, sizeof(hdr));
1883 utcp->send(utcp, &hdr, sizeof(hdr));
1888 int utcp_shutdown(struct utcp_connection *c, int dir) {
1889 debug(c, "shutdown %d at %u\n", dir, c ? c->snd.last : 0);
1897 debug(c, "shutdown() called on closed connection\n");
1902 if(!(dir == UTCP_SHUT_RD || dir == UTCP_SHUT_WR || dir == UTCP_SHUT_RDWR)) {
1907 // TCP does not have a provision for stopping incoming packets.
1908 // The best we can do is to just ignore them.
1909 if(dir == UTCP_SHUT_RD || dir == UTCP_SHUT_RDWR) {
1913 // The rest of the code deals with shutting down writes.
1914 if(dir == UTCP_SHUT_RD) {
1918 // Only process shutting down writes once.
1936 set_state(c, FIN_WAIT_1);
1944 set_state(c, CLOSING);
1957 if(!timespec_isset(&c->rtrx_timeout)) {
1958 start_retransmit_timer(c);
1964 static bool reset_connection(struct utcp_connection *c) {
1971 debug(c, "abort() called on closed connection\n");
1988 set_state(c, CLOSED);
1996 set_state(c, CLOSED);
2006 hdr.seq = c->snd.nxt;
2011 print_packet(c, "send", &hdr, sizeof(hdr));
2012 c->utcp->send(c->utcp, &hdr, sizeof(hdr));
2016 // Closes all the opened connections
2017 void utcp_abort_all_connections(struct utcp *utcp) {
2023 for(int i = 0; i < utcp->nconnections; i++) {
2024 struct utcp_connection *c = utcp->connections[i];
2026 if(c->reapable || c->state == CLOSED) {
2030 utcp_recv_t old_recv = c->recv;
2031 utcp_poll_t old_poll = c->poll;
2033 reset_connection(c);
2037 old_recv(c, NULL, 0);
2040 if(old_poll && !c->reapable) {
2049 int utcp_close(struct utcp_connection *c) {
2050 if(utcp_shutdown(c, SHUT_RDWR) && errno != ENOTCONN) {
2060 int utcp_abort(struct utcp_connection *c) {
2061 if(!reset_connection(c)) {
2070 * One call to this function will loop through all connections,
2071 * checking if something needs to be resent or not.
2072 * The return value is the time to the next timeout in milliseconds,
2073 * or maybe a negative value if the timeout is infinite.
2075 struct timespec utcp_timeout(struct utcp *utcp) {
2076 struct timespec now;
2077 clock_gettime(UTCP_CLOCK, &now);
2078 struct timespec next = {now.tv_sec + 3600, now.tv_nsec};
2080 for(int i = 0; i < utcp->nconnections; i++) {
2081 struct utcp_connection *c = utcp->connections[i];
2087 // delete connections that have been utcp_close()d.
2088 if(c->state == CLOSED) {
2090 debug(c, "reaping\n");
2098 if(timespec_isset(&c->conn_timeout) && timespec_lt(&c->conn_timeout, &now)) {
2103 c->recv(c, NULL, 0);
2106 if(c->poll && !c->reapable) {
2113 if(timespec_isset(&c->rtrx_timeout) && timespec_lt(&c->rtrx_timeout, &now)) {
2114 debug(c, "retransmitting after timeout\n");
2119 if((c->state == ESTABLISHED || c->state == CLOSE_WAIT) && c->do_poll) {
2121 uint32_t len = buffer_free(&c->sndbuf);
2126 } else if(c->state == CLOSED) {
2131 if(timespec_isset(&c->conn_timeout) && timespec_lt(&c->conn_timeout, &next)) {
2132 next = c->conn_timeout;
2135 if(timespec_isset(&c->rtrx_timeout) && timespec_lt(&c->rtrx_timeout, &next)) {
2136 next = c->rtrx_timeout;
2140 struct timespec diff;
2142 timespec_sub(&next, &now, &diff);
2147 bool utcp_is_active(struct utcp *utcp) {
2152 for(int i = 0; i < utcp->nconnections; i++)
2153 if(utcp->connections[i]->state != CLOSED && utcp->connections[i]->state != TIME_WAIT) {
2160 struct utcp *utcp_init(utcp_accept_t accept, utcp_pre_accept_t pre_accept, utcp_send_t send, void *priv) {
2166 struct utcp *utcp = calloc(1, sizeof(*utcp));
2172 utcp_set_mtu(utcp, DEFAULT_MTU);
2179 if(!CLOCK_GRANULARITY) {
2180 struct timespec res;
2181 clock_getres(UTCP_CLOCK, &res);
2182 CLOCK_GRANULARITY = res.tv_sec * USEC_PER_SEC + res.tv_nsec / 1000;
2185 utcp->accept = accept;
2186 utcp->pre_accept = pre_accept;
2189 utcp->timeout = DEFAULT_USER_TIMEOUT; // sec
2194 void utcp_exit(struct utcp *utcp) {
2199 for(int i = 0; i < utcp->nconnections; i++) {
2200 struct utcp_connection *c = utcp->connections[i];
2204 c->recv(c, NULL, 0);
2207 if(c->poll && !c->reapable) {
2212 buffer_exit(&c->rcvbuf);
2213 buffer_exit(&c->sndbuf);
2217 free(utcp->connections);
2222 uint16_t utcp_get_mtu(struct utcp *utcp) {
2223 return utcp ? utcp->mtu : 0;
2226 uint16_t utcp_get_mss(struct utcp *utcp) {
2227 return utcp ? utcp->mss : 0;
2230 void utcp_set_mtu(struct utcp *utcp, uint16_t mtu) {
2235 if(mtu <= sizeof(struct hdr)) {
2239 if(mtu > utcp->mtu) {
2240 char *new = realloc(utcp->pkt, mtu + sizeof(struct hdr));
2250 utcp->mss = mtu - sizeof(struct hdr);
2253 void utcp_reset_timers(struct utcp *utcp) {
2258 struct timespec now, then;
2260 clock_gettime(UTCP_CLOCK, &now);
2264 then.tv_sec += utcp->timeout;
2266 for(int i = 0; i < utcp->nconnections; i++) {
2267 struct utcp_connection *c = utcp->connections[i];
2273 if(timespec_isset(&c->rtrx_timeout)) {
2274 c->rtrx_timeout = now;
2277 if(timespec_isset(&c->conn_timeout)) {
2278 c->conn_timeout = then;
2281 c->rtt_start.tv_sec = 0;
2283 if(c->rto > START_RTO) {
2289 int utcp_get_user_timeout(struct utcp *u) {
2290 return u ? u->timeout : 0;
2293 void utcp_set_user_timeout(struct utcp *u, int timeout) {
2295 u->timeout = timeout;
2299 size_t utcp_get_sndbuf(struct utcp_connection *c) {
2300 return c ? c->sndbuf.maxsize : 0;
2303 size_t utcp_get_sndbuf_free(struct utcp_connection *c) {
2313 return buffer_free(&c->sndbuf);
2320 void utcp_set_sndbuf(struct utcp_connection *c, size_t size) {
2325 c->sndbuf.maxsize = size;
2327 if(c->sndbuf.maxsize != size) {
2328 c->sndbuf.maxsize = -1;
2331 c->do_poll = is_reliable(c) && buffer_free(&c->sndbuf);
2334 size_t utcp_get_rcvbuf(struct utcp_connection *c) {
2335 return c ? c->rcvbuf.maxsize : 0;
2338 size_t utcp_get_rcvbuf_free(struct utcp_connection *c) {
2339 if(c && (c->state == ESTABLISHED || c->state == CLOSE_WAIT)) {
2340 return buffer_free(&c->rcvbuf);
2346 void utcp_set_rcvbuf(struct utcp_connection *c, size_t size) {
2351 c->rcvbuf.maxsize = size;
2353 if(c->rcvbuf.maxsize != size) {
2354 c->rcvbuf.maxsize = -1;
2358 size_t utcp_get_sendq(struct utcp_connection *c) {
2359 return c->sndbuf.used;
2362 size_t utcp_get_recvq(struct utcp_connection *c) {
2363 return c->rcvbuf.used;
2366 bool utcp_get_nodelay(struct utcp_connection *c) {
2367 return c ? c->nodelay : false;
2370 void utcp_set_nodelay(struct utcp_connection *c, bool nodelay) {
2372 c->nodelay = nodelay;
2376 bool utcp_get_keepalive(struct utcp_connection *c) {
2377 return c ? c->keepalive : false;
2380 void utcp_set_keepalive(struct utcp_connection *c, bool keepalive) {
2382 c->keepalive = keepalive;
2386 size_t utcp_get_outq(struct utcp_connection *c) {
2387 return c ? seqdiff(c->snd.nxt, c->snd.una) : 0;
2390 void utcp_set_recv_cb(struct utcp_connection *c, utcp_recv_t recv) {
2396 void utcp_set_poll_cb(struct utcp_connection *c, utcp_poll_t poll) {
2399 c->do_poll = is_reliable(c) && buffer_free(&c->sndbuf);
2403 void utcp_set_accept_cb(struct utcp *utcp, utcp_accept_t accept, utcp_pre_accept_t pre_accept) {
2405 utcp->accept = accept;
2406 utcp->pre_accept = pre_accept;
2410 void utcp_expect_data(struct utcp_connection *c, bool expect) {
2411 if(!c || c->reapable) {
2415 if(!(c->state == ESTABLISHED || c->state == FIN_WAIT_1 || c->state == FIN_WAIT_2)) {
2420 // If we expect data, start the connection timer.
2421 if(!timespec_isset(&c->conn_timeout)) {
2422 clock_gettime(UTCP_CLOCK, &c->conn_timeout);
2423 c->conn_timeout.tv_sec += c->utcp->timeout;
2426 // If we want to cancel expecting data, only clear the timer when there is no unACKed data.
2427 if(c->snd.una == c->snd.last) {
2428 timespec_clear(&c->conn_timeout);
2433 void utcp_offline(struct utcp *utcp, bool offline) {
2434 struct timespec now;
2435 clock_gettime(UTCP_CLOCK, &now);
2437 for(int i = 0; i < utcp->nconnections; i++) {
2438 struct utcp_connection *c = utcp->connections[i];
2444 utcp_expect_data(c, offline);
2447 if(timespec_isset(&c->rtrx_timeout)) {
2448 c->rtrx_timeout = now;
2451 utcp->connections[i]->rtt_start.tv_sec = 0;
2453 if(c->rto > START_RTO) {
2460 void utcp_set_retransmit_cb(struct utcp *utcp, utcp_retransmit_t retransmit) {
2461 utcp->retransmit = retransmit;
2464 void utcp_set_clock_granularity(long granularity) {
2465 CLOCK_GRANULARITY = granularity;