]> git.meshlink.io Git - utcp/blob - utcp.c
Call abort() only when debugging is enabled.
[utcp] / utcp.c
1 /*
2     utcp.c -- Userspace TCP
3     Copyright (C) 2014 Guus Sliepen <guus@tinc-vpn.org>
4
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.
9
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.
14
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.
18 */
19
20 #define _GNU_SOURCE
21
22 #include <assert.h>
23 #include <errno.h>
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <stdint.h>
27 #include <stdbool.h>
28 #include <string.h>
29 #include <unistd.h>
30 #include <sys/time.h>
31 #include <sys/socket.h>
32
33 #include "utcp_priv.h"
34
35 #ifndef EBADMSG
36 #define EBADMSG         104
37 #endif
38
39 #ifndef SHUT_RDWR
40 #define SHUT_RDWR 2
41 #endif
42
43 #ifdef poll
44 #undef poll
45 #endif
46
47 #ifndef timersub
48 #define timersub(a, b, r) do {\
49         (r)->tv_sec = (a)->tv_sec - (b)->tv_sec;\
50         (r)->tv_usec = (a)->tv_usec - (b)->tv_usec;\
51         if((r)->tv_usec < 0)\
52                 (r)->tv_sec--, (r)->tv_usec += 1000000;\
53 } while (0)
54 #endif
55
56 #ifdef UTCP_DEBUG
57 #include <stdarg.h>
58
59 static void debug(const char *format, ...) {
60         va_list ap;
61         va_start(ap, format);
62         vfprintf(stderr, format, ap);
63         va_end(ap);
64 }
65
66 static void print_packet(struct utcp *utcp, const char *dir, const void *pkt, size_t len) {
67         struct hdr hdr;
68         if(len < sizeof hdr) {
69                 debug("%p %s: short packet (%zu bytes)\n", utcp, dir, len);
70                 return;
71         }
72
73         memcpy(&hdr, pkt, sizeof hdr);
74         fprintf (stderr, "%p %s: len=%zu, src=%u dst=%u seq=%u ack=%u wnd=%u ctl=", utcp, dir, len, hdr.src, hdr.dst, hdr.seq, hdr.ack, hdr.wnd);
75         if(hdr.ctl & SYN)
76                 debug("SYN");
77         if(hdr.ctl & RST)
78                 debug("RST");
79         if(hdr.ctl & FIN)
80                 debug("FIN");
81         if(hdr.ctl & ACK)
82                 debug("ACK");
83
84         if(len > sizeof hdr) {
85                 debug(" data=");
86                 for(int i = sizeof hdr; i < len; i++) {
87                         const char *data = pkt;
88                         debug("%c", data[i] >= 32 ? data[i] : '.');
89                 }
90         }
91
92         debug("\n");
93 }
94 #else
95 #define debug(...)
96 #define print_packet(...)
97 #endif
98
99 static void set_state(struct utcp_connection *c, enum state state) {
100         c->state = state;
101         if(state == ESTABLISHED)
102                 timerclear(&c->conn_timeout);
103         debug("%p new state: %s\n", c->utcp, strstate[state]);
104 }
105
106 static inline void list_connections(struct utcp *utcp) {
107         debug("%p has %d connections:\n", utcp, utcp->nconnections);
108         for(int i = 0; i < utcp->nconnections; i++)
109                 debug("  %u -> %u state %s\n", utcp->connections[i]->src, utcp->connections[i]->dst, strstate[utcp->connections[i]->state]);
110 }
111
112 static int32_t seqdiff(uint32_t a, uint32_t b) {
113         return a - b;
114 }
115
116 // Buffer functions
117 // TODO: convert to ringbuffers to avoid memmove() operations.
118
119 // Store data into the buffer
120 static ssize_t buffer_put(struct buffer *buf, const void *data, size_t len) {
121         if(buf->maxsize <= buf->used)
122                 return 0;
123         if(len > buf->maxsize - buf->used)
124                 len = buf->maxsize - buf->used;
125         if(len > buf->size - buf->used) {
126                 size_t newsize = buf->size;
127                 do {
128                         newsize *= 2;
129                 } while(newsize < buf->used + len);
130                 if(newsize > buf->maxsize)
131                         newsize = buf->maxsize;
132                 char *newdata = realloc(buf->data, newsize);
133                 if(!newdata)
134                         return -1;
135                 buf->data = newdata;
136                 buf->size = newsize;
137         }
138         memcpy(buf->data + buf->used, data, len);
139         buf->used += len;
140         return len;
141 }
142
143 // Get data from the buffer. data can be NULL.
144 static ssize_t buffer_get(struct buffer *buf, void *data, size_t len) {
145         if(len > buf->used)
146                 len = buf->used;
147         if(data)
148                 memcpy(data, buf->data, len);
149         if(len < buf->used)
150                 memmove(buf->data, buf->data + len, buf->used - len);
151         buf->used -= len;
152         return len;
153 }
154
155 // Copy data from the buffer without removing it.
156 static ssize_t buffer_copy(struct buffer *buf, void *data, size_t offset, size_t len) {
157         if(offset >= buf->used)
158                 return 0;
159         if(offset + len > buf->used)
160                 len = buf->used - offset;
161         memcpy(data, buf->data + offset, len);
162         return len;
163 }
164
165 static bool buffer_init(struct buffer *buf, uint32_t len, uint32_t maxlen) {
166         memset(buf, 0, sizeof *buf);
167         buf->data = malloc(len);
168         if(!len)
169                 return false;
170         buf->size = len;
171         buf->maxsize = maxlen;
172         return true;
173 }
174
175 static void buffer_exit(struct buffer *buf) {
176         free(buf->data);
177         memset(buf, 0, sizeof *buf);
178 }
179
180 static uint32_t buffer_free(const struct buffer *buf) {
181         return buf->maxsize - buf->used;
182 }
183
184 // Connections are stored in a sorted list.
185 // This gives O(log(N)) lookup time, O(N log(N)) insertion time and O(N) deletion time.
186
187 static int compare(const void *va, const void *vb) {
188         assert(va && vb);
189
190         const struct utcp_connection *a = *(struct utcp_connection **)va;
191         const struct utcp_connection *b = *(struct utcp_connection **)vb;
192
193         assert(a && b);
194         assert(a->src && b->src);
195
196         int c = (int)a->src - (int)b->src;
197         if(c)
198                 return c;
199         c = (int)a->dst - (int)b->dst;
200         return c;
201 }
202
203 static struct utcp_connection *find_connection(const struct utcp *utcp, uint16_t src, uint16_t dst) {
204         if(!utcp->nconnections)
205                 return NULL;
206         struct utcp_connection key = {
207                 .src = src,
208                 .dst = dst,
209         }, *keyp = &key;
210         struct utcp_connection **match = bsearch(&keyp, utcp->connections, utcp->nconnections, sizeof *utcp->connections, compare);
211         return match ? *match : NULL;
212 }
213
214 static void free_connection(struct utcp_connection *c) {
215         struct utcp *utcp = c->utcp;
216         struct utcp_connection **cp = bsearch(&c, utcp->connections, utcp->nconnections, sizeof *utcp->connections, compare);
217
218         assert(cp);
219
220         int i = cp - utcp->connections;
221         memmove(cp, cp + 1, (utcp->nconnections - i - 1) * sizeof *cp);
222         utcp->nconnections--;
223
224         buffer_exit(&c->sndbuf);
225         free(c);
226 }
227
228 static struct utcp_connection *allocate_connection(struct utcp *utcp, uint16_t src, uint16_t dst) {
229         // Check whether this combination of src and dst is free
230
231         if(src) {
232                 if(find_connection(utcp, src, dst)) {
233                         errno = EADDRINUSE;
234                         return NULL;
235                 }
236         } else { // If src == 0, generate a random port number with the high bit set
237                 if(utcp->nconnections >= 32767) {
238                         errno = ENOMEM;
239                         return NULL;
240                 }
241                 src = rand() | 0x8000;
242                 while(find_connection(utcp, src, dst))
243                         src++;
244         }
245
246         // Allocate memory for the new connection
247
248         if(utcp->nconnections >= utcp->nallocated) {
249                 if(!utcp->nallocated)
250                         utcp->nallocated = 4;
251                 else
252                         utcp->nallocated *= 2;
253                 struct utcp_connection **new_array = realloc(utcp->connections, utcp->nallocated * sizeof *utcp->connections);
254                 if(!new_array)
255                         return NULL;
256                 utcp->connections = new_array;
257         }
258
259         struct utcp_connection *c = calloc(1, sizeof *c);
260         if(!c)
261                 return NULL;
262
263         if(!buffer_init(&c->sndbuf, DEFAULT_SNDBUFSIZE, DEFAULT_MAXSNDBUFSIZE)) {
264                 free(c);
265                 return NULL;
266         }
267
268         // Fill in the details
269
270         c->src = src;
271         c->dst = dst;
272         c->snd.iss = rand();
273         c->snd.una = c->snd.iss;
274         c->snd.nxt = c->snd.iss + 1;
275         c->rcv.wnd = utcp->mtu;
276         c->snd.last = c->snd.nxt;
277         c->snd.cwnd = utcp->mtu;
278         c->utcp = utcp;
279
280         // Add it to the sorted list of connections
281
282         utcp->connections[utcp->nconnections++] = c;
283         qsort(utcp->connections, utcp->nconnections, sizeof *utcp->connections, compare);
284
285         return c;
286 }
287
288 struct utcp_connection *utcp_connect(struct utcp *utcp, uint16_t dst, utcp_recv_t recv, void *priv) {
289         struct utcp_connection *c = allocate_connection(utcp, 0, dst);
290         if(!c)
291                 return NULL;
292
293         c->recv = recv;
294         c->priv = priv;
295
296         struct hdr hdr;
297
298         hdr.src = c->src;
299         hdr.dst = c->dst;
300         hdr.seq = c->snd.iss;
301         hdr.ack = 0;
302         hdr.wnd = c->rcv.wnd;
303         hdr.ctl = SYN;
304         hdr.aux = 0;
305
306         set_state(c, SYN_SENT);
307
308         print_packet(utcp, "send", &hdr, sizeof hdr);
309         utcp->send(utcp, &hdr, sizeof hdr);
310
311         gettimeofday(&c->conn_timeout, NULL);
312         c->conn_timeout.tv_sec += utcp->timeout;
313
314         return c;
315 }
316
317 void utcp_accept(struct utcp_connection *c, utcp_recv_t recv, void *priv) {
318         if(c->reapable || c->state != SYN_RECEIVED) {
319                 debug("Error: accept() called on invalid connection %p in state %s\n", c, strstate[c->state]);
320                 return;
321         }
322
323         debug("%p accepted, %p %p\n", c, recv, priv);
324         c->recv = recv;
325         c->priv = priv;
326         set_state(c, ESTABLISHED);
327 }
328
329 static void ack(struct utcp_connection *c, bool sendatleastone) {
330         int32_t left = seqdiff(c->snd.last, c->snd.nxt);
331         int32_t cwndleft = c->snd.cwnd - seqdiff(c->snd.nxt, c->snd.una);
332
333         assert(left >= 0);
334
335         if(cwndleft <= 0)
336                 cwndleft = 0;
337
338         if(cwndleft < left)
339                 left = cwndleft;
340
341         if(!left && !sendatleastone)
342                 return;
343
344         struct {
345                 struct hdr hdr;
346                 char data[];
347         } *pkt;
348
349         pkt = malloc(sizeof pkt->hdr + c->utcp->mtu);
350         if(!pkt->data)
351                 return;
352
353         pkt->hdr.src = c->src;
354         pkt->hdr.dst = c->dst;
355         pkt->hdr.ack = c->rcv.nxt;
356         pkt->hdr.wnd = c->snd.wnd;
357         pkt->hdr.ctl = ACK;
358         pkt->hdr.aux = 0;
359
360         do {
361                 uint32_t seglen = left > c->utcp->mtu ? c->utcp->mtu : left;
362                 pkt->hdr.seq = c->snd.nxt;
363
364                 buffer_copy(&c->sndbuf, pkt->data, seqdiff(c->snd.nxt, c->snd.una), seglen);
365
366                 c->snd.nxt += seglen;
367                 left -= seglen;
368
369                 if(c->state != ESTABLISHED && seglen && c->snd.nxt == c->snd.last) {
370                         switch(c->state) {
371                         case FIN_WAIT_1:
372                         case CLOSING:
373                                 seglen--;
374                                 pkt->hdr.ctl |= FIN;
375                                 break;
376                         default:
377                                 break;
378                         }
379                 }
380
381                 print_packet(c->utcp, "send", pkt, sizeof pkt->hdr + seglen);
382                 c->utcp->send(c->utcp, pkt, sizeof pkt->hdr + seglen);
383         } while(left);
384
385         free(pkt);
386 }
387
388 ssize_t utcp_send(struct utcp_connection *c, const void *data, size_t len) {
389         if(c->reapable) {
390                 debug("Error: send() called on closed connection %p\n", c);
391                 errno = EBADF;
392                 return -1;
393         }
394
395         switch(c->state) {
396         case CLOSED:
397         case LISTEN:
398         case SYN_SENT:
399         case SYN_RECEIVED:
400                 debug("Error: send() called on unconnected connection %p\n", c);
401                 errno = ENOTCONN;
402                 return -1;
403         case ESTABLISHED:
404         case CLOSE_WAIT:
405                 break;
406         case FIN_WAIT_1:
407         case FIN_WAIT_2:
408         case CLOSING:
409         case LAST_ACK:
410         case TIME_WAIT:
411                 debug("Error: send() called on closing connection %p\n", c);
412                 errno = EPIPE;
413                 return -1;
414         }
415
416         // Add data to send buffer
417
418         if(!len)
419                 return 0;
420
421         if(!data) {
422                 errno = EFAULT;
423                 return -1;
424         }
425
426         len = buffer_put(&c->sndbuf, data, len);
427         if(len <= 0) {
428                 errno = EWOULDBLOCK;
429                 return 0;
430         }
431
432         c->snd.last += len;
433         ack(c, false);
434         return len;
435 }
436
437 static void swap_ports(struct hdr *hdr) {
438         uint16_t tmp = hdr->src;
439         hdr->src = hdr->dst;
440         hdr->dst = tmp;
441 }
442
443 static void retransmit(struct utcp_connection *c) {
444         if(c->state == CLOSED || c->snd.nxt == c->snd.una)
445                 return;
446
447         struct utcp *utcp = c->utcp;
448
449         struct {
450                 struct hdr hdr;
451                 char data[];
452         } *pkt;
453
454         pkt = malloc(sizeof pkt->hdr + c->utcp->mtu);
455         if(!pkt)
456                 return;
457
458         pkt->hdr.src = c->src;
459         pkt->hdr.dst = c->dst;
460
461         switch(c->state) {
462                 case LISTEN:
463                         // TODO: this should not happen
464                         break;
465
466                 case SYN_SENT:
467                         pkt->hdr.seq = c->snd.iss;
468                         pkt->hdr.ack = 0;
469                         pkt->hdr.wnd = c->rcv.wnd;
470                         pkt->hdr.ctl = SYN;
471                         print_packet(c->utcp, "rtrx", pkt, sizeof pkt->hdr);
472                         utcp->send(utcp, pkt, sizeof pkt->hdr);
473                         break;
474
475                 case SYN_RECEIVED:
476                         pkt->hdr.seq = c->snd.nxt;
477                         pkt->hdr.ack = c->rcv.nxt;
478                         pkt->hdr.ctl = SYN | ACK;
479                         print_packet(c->utcp, "rtrx", pkt, sizeof pkt->hdr);
480                         utcp->send(utcp, pkt, sizeof pkt->hdr);
481                         break;
482
483                 case ESTABLISHED:
484                 case FIN_WAIT_1:
485                         pkt->hdr.seq = c->snd.una;
486                         pkt->hdr.ack = c->rcv.nxt;
487                         pkt->hdr.ctl = ACK;
488                         uint32_t len = seqdiff(c->snd.nxt, c->snd.una);
489                         if(c->state == FIN_WAIT_1)
490                                 len--;
491                         if(len > utcp->mtu)
492                                 len = utcp->mtu;
493                         else {
494                                 if(c->state == FIN_WAIT_1)
495                                         pkt->hdr.ctl |= FIN;
496                         }
497                         buffer_copy(&c->sndbuf, pkt->data, 0, len);
498                         print_packet(c->utcp, "rtrx", pkt, sizeof pkt->hdr + len);
499                         utcp->send(utcp, pkt, sizeof pkt->hdr + len);
500                         break;
501
502                 default:
503                         // TODO: implement
504 #ifdef UTCP_DEBUG
505                         abort();
506 #endif
507                         break;
508         }
509
510         free(pkt);
511 }
512
513
514 ssize_t utcp_recv(struct utcp *utcp, const void *data, size_t len) {
515         if(!utcp) {
516                 errno = EFAULT;
517                 return -1;
518         }
519
520         if(!len)
521                 return 0;
522
523         if(!data) {
524                 errno = EFAULT;
525                 return -1;
526         }
527
528         print_packet(utcp, "recv", data, len);
529
530         // Drop packets smaller than the header
531
532         struct hdr hdr;
533         if(len < sizeof hdr) {
534                 errno = EBADMSG;
535                 return -1;
536         }
537
538         // Make a copy from the potentially unaligned data to a struct hdr
539
540         memcpy(&hdr, data, sizeof hdr);
541         data += sizeof hdr;
542         len -= sizeof hdr;
543
544         // Drop packets with an unknown CTL flag
545
546         if(hdr.ctl & ~(SYN | ACK | RST | FIN)) {
547                 errno = EBADMSG;
548                 return -1;
549         }
550
551         // Try to match the packet to an existing connection
552
553         struct utcp_connection *c = find_connection(utcp, hdr.dst, hdr.src);
554
555         // Is it for a new connection?
556
557         if(!c) {
558                 // Ignore RST packets
559
560                 if(hdr.ctl & RST)
561                         return 0;
562
563                 // Is it a SYN packet and are we LISTENing?
564
565                 if(hdr.ctl & SYN && !(hdr.ctl & ACK) && utcp->accept) {
566                         // If we don't want to accept it, send a RST back
567                         if((utcp->pre_accept && !utcp->pre_accept(utcp, hdr.dst))) {
568                                 len = 1;
569                                 goto reset;
570                         }
571
572                         // Try to allocate memory, otherwise send a RST back
573                         c = allocate_connection(utcp, hdr.dst, hdr.src);
574                         if(!c) {
575                                 len = 1;
576                                 goto reset;
577                         }
578
579                         // Return SYN+ACK, go to SYN_RECEIVED state
580                         c->snd.wnd = hdr.wnd;
581                         c->rcv.irs = hdr.seq;
582                         c->rcv.nxt = c->rcv.irs + 1;
583                         set_state(c, SYN_RECEIVED);
584
585                         hdr.dst = c->dst;
586                         hdr.src = c->src;
587                         hdr.ack = c->rcv.irs + 1;
588                         hdr.seq = c->snd.iss;
589                         hdr.ctl = SYN | ACK;
590                         print_packet(c->utcp, "send", &hdr, sizeof hdr);
591                         utcp->send(utcp, &hdr, sizeof hdr);
592                 } else {
593                         // No, we don't want your packets, send a RST back
594                         len = 1;
595                         goto reset;
596                 }
597
598                 return 0;
599         }
600
601         debug("%p state %s\n", c->utcp, strstate[c->state]);
602
603         // In case this is for a CLOSED connection, ignore the packet.
604         // TODO: make it so incoming packets can never match a CLOSED connection.
605
606         if(c->state == CLOSED)
607                 return 0;
608
609         // It is for an existing connection.
610
611         uint32_t prevrcvnxt = c->rcv.nxt;
612
613         // 1. Drop invalid packets.
614
615         // 1a. Drop packets that should not happen in our current state.
616
617         switch(c->state) {
618         case SYN_SENT:
619         case SYN_RECEIVED:
620         case ESTABLISHED:
621         case FIN_WAIT_1:
622         case FIN_WAIT_2:
623         case CLOSE_WAIT:
624         case CLOSING:
625         case LAST_ACK:
626         case TIME_WAIT:
627                 break;
628         default:
629 #ifdef UTCP_DEBUG
630                 abort();
631 #endif
632                 break;
633         }
634
635         // 1b. Drop packets with a sequence number not in our receive window.
636
637         bool acceptable;
638
639         if(c->state == SYN_SENT)
640                 acceptable = true;
641
642         // TODO: handle packets overlapping c->rcv.nxt.
643 #if 0
644         // Only use this when accepting out-of-order packets.
645         else if(len == 0)
646                 if(c->rcv.wnd == 0)
647                         acceptable = hdr.seq == c->rcv.nxt;
648                 else
649                         acceptable = (seqdiff(hdr.seq, c->rcv.nxt) >= 0 && seqdiff(hdr.seq, c->rcv.nxt + c->rcv.wnd) < 0);
650         else
651                 if(c->rcv.wnd == 0)
652                         // We don't accept data when the receive window is zero.
653                         acceptable = false;
654                 else
655                         // Both start and end of packet must be within the receive window
656                         acceptable = (seqdiff(hdr.seq, c->rcv.nxt) >= 0 && seqdiff(hdr.seq, c->rcv.nxt + c->rcv.wnd) < 0)
657                                 || (seqdiff(hdr.seq + len + 1, c->rcv.nxt) >= 0 && seqdiff(hdr.seq + len - 1, c->rcv.nxt + c->rcv.wnd) < 0);
658 #else
659         if(c->state != SYN_SENT)
660                 acceptable = hdr.seq == c->rcv.nxt;
661 #endif
662
663         if(!acceptable) {
664                 debug("Packet not acceptable, %u <= %u + %zu < %u\n", c->rcv.nxt, hdr.seq, len, c->rcv.nxt + c->rcv.wnd);
665                 // Ignore unacceptable RST packets.
666                 if(hdr.ctl & RST)
667                         return 0;
668                 // Otherwise, send an ACK back in the hope things improve.
669                 ack(c, true);
670                 return 0;
671         }
672
673         c->snd.wnd = hdr.wnd; // TODO: move below
674
675         // 1c. Drop packets with an invalid ACK.
676         // ackno should not roll back, and it should also not be bigger than snd.nxt.
677
678         if(hdr.ctl & ACK && (seqdiff(hdr.ack, c->snd.nxt) > 0 || seqdiff(hdr.ack, c->snd.una) < 0)) {
679                 debug("Packet ack seqno out of range, %u %u %u\n", hdr.ack, c->snd.una, c->snd.nxt);
680                 // Ignore unacceptable RST packets.
681                 if(hdr.ctl & RST)
682                         return 0;
683                 goto reset;
684         }
685
686         // 2. Handle RST packets
687
688         if(hdr.ctl & RST) {
689                 switch(c->state) {
690                 case SYN_SENT:
691                         if(!(hdr.ctl & ACK))
692                                 return 0;
693                         // The peer has refused our connection.
694                         set_state(c, CLOSED);
695                         errno = ECONNREFUSED;
696                         if(c->recv)
697                                 c->recv(c, NULL, 0);
698                         return 0;
699                 case SYN_RECEIVED:
700                         if(hdr.ctl & ACK)
701                                 return 0;
702                         // We haven't told the application about this connection yet. Silently delete.
703                         free_connection(c);
704                         return 0;
705                 case ESTABLISHED:
706                 case FIN_WAIT_1:
707                 case FIN_WAIT_2:
708                 case CLOSE_WAIT:
709                         if(hdr.ctl & ACK)
710                                 return 0;
711                         // The peer has aborted our connection.
712                         set_state(c, CLOSED);
713                         errno = ECONNRESET;
714                         if(c->recv)
715                                 c->recv(c, NULL, 0);
716                         return 0;
717                 case CLOSING:
718                 case LAST_ACK:
719                 case TIME_WAIT:
720                         if(hdr.ctl & ACK)
721                                 return 0;
722                         // As far as the application is concerned, the connection has already been closed.
723                         // If it has called utcp_close() already, we can immediately free this connection.
724                         if(c->reapable) {
725                                 free_connection(c);
726                                 return 0;
727                         }
728                         // Otherwise, immediately move to the CLOSED state.
729                         set_state(c, CLOSED);
730                         return 0;
731                 default:
732 #ifdef UTCP_DEBUG
733                         abort();
734 #endif
735                         break;
736                 }
737         }
738
739         // 3. Advance snd.una
740
741         uint32_t advanced = seqdiff(hdr.ack, c->snd.una);
742         prevrcvnxt = c->rcv.nxt;
743
744         if(advanced) {
745                 int32_t data_acked = advanced;
746
747                 switch(c->state) {
748                         case SYN_SENT:
749                         case SYN_RECEIVED:
750                                 data_acked--;
751                                 break;
752                         // TODO: handle FIN as well.
753                         default:
754                                 break;
755                 }
756
757                 assert(data_acked >= 0);
758
759                 int32_t bufused = seqdiff(c->snd.last, c->snd.una);
760                 assert(data_acked <= bufused);
761
762                 if(data_acked)
763                         buffer_get(&c->sndbuf, NULL, data_acked);
764
765                 c->snd.una = hdr.ack;
766
767                 c->dupack = 0;
768                 c->snd.cwnd += utcp->mtu;
769                 if(c->snd.cwnd > c->sndbuf.maxsize)
770                         c->snd.cwnd = c->sndbuf.maxsize;
771
772                 // Check if we have sent a FIN that is now ACKed.
773                 switch(c->state) {
774                 case FIN_WAIT_1:
775                         if(c->snd.una == c->snd.last)
776                                 set_state(c, FIN_WAIT_2);
777                         break;
778                 case CLOSING:
779                         if(c->snd.una == c->snd.last) {
780                                 gettimeofday(&c->conn_timeout, NULL);
781                                 c->conn_timeout.tv_sec += 60;
782                                 set_state(c, TIME_WAIT);
783                         }
784                         break;
785                 default:
786                         break;
787                 }
788         } else {
789                 if(!len) {
790                         c->dupack++;
791                         if(c->dupack == 3) {
792                                 debug("Triplicate ACK\n");
793                                 //TODO: Resend one packet and go to fast recovery mode. See RFC 6582.
794                                 //We do a very simple variant here; reset the nxt pointer to the last acknowledged packet from the peer.
795                                 //This will cause us to start retransmitting, but at the same speed as the incoming ACKs arrive,
796                                 //thus preventing a drop in speed.
797                                 c->snd.nxt = c->snd.una;
798                         }
799                 }
800         }
801
802         // 4. Update timers
803
804         if(advanced) {
805                 timerclear(&c->conn_timeout); // It will be set anew in utcp_timeout() if c->snd.una != c->snd.nxt.
806                 if(c->snd.una == c->snd.nxt)
807                         timerclear(&c->rtrx_timeout);
808         }
809
810         // 5. Process SYN stuff
811
812         if(hdr.ctl & SYN) {
813                 switch(c->state) {
814                 case SYN_SENT:
815                         // This is a SYNACK. It should always have ACKed the SYN.
816                         if(!advanced)
817                                 goto reset;
818                         c->rcv.irs = hdr.seq;
819                         c->rcv.nxt = hdr.seq;
820                         set_state(c, ESTABLISHED);
821                         // TODO: notify application of this somehow.
822                         break;
823                 case SYN_RECEIVED:
824                 case ESTABLISHED:
825                 case FIN_WAIT_1:
826                 case FIN_WAIT_2:
827                 case CLOSE_WAIT:
828                 case CLOSING:
829                 case LAST_ACK:
830                 case TIME_WAIT:
831                         // Ehm, no. We should never receive a second SYN.
832                         goto reset;
833                 default:
834 #ifdef UTCP_DEBUG
835                         abort();
836 #endif
837                         return 0;
838                 }
839
840                 // SYN counts as one sequence number
841                 c->rcv.nxt++;
842         }
843
844         // 6. Process new data
845
846         if(c->state == SYN_RECEIVED) {
847                 // This is the ACK after the SYNACK. It should always have ACKed the SYNACK.
848                 if(!advanced)
849                         goto reset;
850
851                 // Are we still LISTENing?
852                 if(utcp->accept)
853                         utcp->accept(c, c->src);
854
855                 if(c->state != ESTABLISHED) {
856                         set_state(c, CLOSED);
857                         c->reapable = true;
858                         goto reset;
859                 }
860         }
861
862         if(len) {
863                 switch(c->state) {
864                 case SYN_SENT:
865                 case SYN_RECEIVED:
866                         // This should never happen.
867 #ifdef UTCP_DEBUG
868                         abort();
869 #endif
870                         return 0;
871                 case ESTABLISHED:
872                 case FIN_WAIT_1:
873                 case FIN_WAIT_2:
874                         break;
875                 case CLOSE_WAIT:
876                 case CLOSING:
877                 case LAST_ACK:
878                 case TIME_WAIT:
879                         // Ehm no, We should never receive more data after a FIN.
880                         goto reset;
881                 default:
882 #ifdef UTCP_DEBUG
883                         abort();
884 #endif
885                         return 0;
886                 }
887
888                 ssize_t rxd;
889
890                 if(c->recv) {
891                         rxd = c->recv(c, data, len);
892                         if(rxd != len) {
893                                 // TODO: once we have a receive buffer, handle the application not accepting all data.
894                                 abort();
895                         }
896                         if(rxd < 0)
897                                 rxd = 0;
898                         else if(rxd > len)
899                                 rxd = len; // Bad application, bad!
900                 } else {
901                         rxd = len;
902                 }
903
904                 c->rcv.nxt += len;
905         }
906
907         // 7. Process FIN stuff
908
909         if(hdr.ctl & FIN) {
910                 switch(c->state) {
911                 case SYN_SENT:
912                 case SYN_RECEIVED:
913                         // This should never happen.
914 #ifdef UTCP_DEBUG
915                         abort();
916 #endif
917                         break;
918                 case ESTABLISHED:
919                         set_state(c, CLOSE_WAIT);
920                         break;
921                 case FIN_WAIT_1:
922                         set_state(c, CLOSING);
923                         break;
924                 case FIN_WAIT_2:
925                         gettimeofday(&c->conn_timeout, NULL);
926                         c->conn_timeout.tv_sec += 60;
927                         set_state(c, TIME_WAIT);
928                         break;
929                 case CLOSE_WAIT:
930                 case CLOSING:
931                 case LAST_ACK:
932                 case TIME_WAIT:
933                         // Ehm, no. We should never receive a second FIN.
934                         goto reset;
935                 default:
936 #ifdef UTCP_DEBUG
937                         abort();
938 #endif
939                         break;
940                 }
941
942                 // FIN counts as one sequence number
943                 c->rcv.nxt++;
944                 len++;
945
946                 // Inform the application that the peer closed the connection.
947                 if(c->recv) {
948                         errno = 0;
949                         c->recv(c, NULL, 0);
950                 }
951         }
952
953         // Now we send something back if:
954         // - we advanced rcv.nxt (ie, we got some data that needs to be ACKed)
955         //   -> sendatleastone = true
956         // - or we got an ack, so we should maybe send a bit more data
957         //   -> sendatleastone = false
958
959 ack:
960         ack(c, prevrcvnxt != c->rcv.nxt);
961         return 0;
962
963 reset:
964         swap_ports(&hdr);
965         hdr.wnd = 0;
966         if(hdr.ctl & ACK) {
967                 hdr.seq = hdr.ack;
968                 hdr.ctl = RST;
969         } else {
970                 hdr.ack = hdr.seq + len;
971                 hdr.seq = 0;
972                 hdr.ctl = RST | ACK;
973         }
974         print_packet(utcp, "send", &hdr, sizeof hdr);
975         utcp->send(utcp, &hdr, sizeof hdr);
976         return 0;
977
978 }
979
980 int utcp_shutdown(struct utcp_connection *c, int dir) {
981         debug("%p shutdown %d at %u\n", c ? c->utcp : NULL, dir, c->snd.last);
982         if(!c) {
983                 errno = EFAULT;
984                 return -1;
985         }
986
987         if(c->reapable) {
988                 debug("Error: shutdown() called on closed connection %p\n", c);
989                 errno = EBADF;
990                 return -1;
991         }
992
993         // TODO: handle dir
994         // TODO: check that repeated calls with the same parameters should have no effect
995
996         switch(c->state) {
997         case CLOSED:
998                 return 0;
999         case LISTEN:
1000         case SYN_SENT:
1001                 set_state(c, CLOSED);
1002                 return 0;
1003
1004         case SYN_RECEIVED:
1005         case ESTABLISHED:
1006                 set_state(c, FIN_WAIT_1);
1007                 break;
1008         case FIN_WAIT_1:
1009         case FIN_WAIT_2:
1010                 return 0;
1011         case CLOSE_WAIT:
1012                 set_state(c, CLOSING);
1013                 break;
1014
1015         case CLOSING:
1016         case LAST_ACK:
1017         case TIME_WAIT:
1018                 return 0;
1019         }
1020
1021         c->snd.last++;
1022
1023         ack(c, false);
1024         return 0;
1025 }
1026
1027 int utcp_close(struct utcp_connection *c) {
1028         if(utcp_shutdown(c, SHUT_RDWR))
1029                 return -1;
1030         c->recv = NULL;
1031         c->poll = NULL;
1032         c->reapable = true;
1033         return 0;
1034 }
1035
1036 int utcp_abort(struct utcp_connection *c) {
1037         if(!c) {
1038                 errno = EFAULT;
1039                 return -1;
1040         }
1041
1042         if(c->reapable) {
1043                 debug("Error: abort() called on closed connection %p\n", c);
1044                 errno = EBADF;
1045                 return -1;
1046         }
1047
1048         c->recv = NULL;
1049         c->poll = NULL;
1050         c->reapable = true;
1051
1052         switch(c->state) {
1053         case CLOSED:
1054                 return 0;
1055         case LISTEN:
1056         case SYN_SENT:
1057         case CLOSING:
1058         case LAST_ACK:
1059         case TIME_WAIT:
1060                 set_state(c, CLOSED);
1061                 return 0;
1062
1063         case SYN_RECEIVED:
1064         case ESTABLISHED:
1065         case FIN_WAIT_1:
1066         case FIN_WAIT_2:
1067         case CLOSE_WAIT:
1068                 set_state(c, CLOSED);
1069                 break;
1070         }
1071
1072         // Send RST
1073
1074         struct hdr hdr;
1075
1076         hdr.src = c->src;
1077         hdr.dst = c->dst;
1078         hdr.seq = c->snd.nxt;
1079         hdr.ack = 0;
1080         hdr.wnd = 0;
1081         hdr.ctl = RST;
1082
1083         print_packet(c->utcp, "send", &hdr, sizeof hdr);
1084         c->utcp->send(c->utcp, &hdr, sizeof hdr);
1085         return 0;
1086 }
1087
1088 /* Handle timeouts.
1089  * One call to this function will loop through all connections,
1090  * checking if something needs to be resent or not.
1091  * The return value is the time to the next timeout in milliseconds,
1092  * or maybe a negative value if the timeout is infinite.
1093  */
1094 struct timeval utcp_timeout(struct utcp *utcp) {
1095         struct timeval now;
1096         gettimeofday(&now, NULL);
1097         struct timeval next = {now.tv_sec + 3600, now.tv_usec};
1098
1099         for(int i = 0; i < utcp->nconnections; i++) {
1100                 struct utcp_connection *c = utcp->connections[i];
1101                 if(!c)
1102                         continue;
1103
1104                 if(c->state == CLOSED) {
1105                         if(c->reapable) {
1106                                 debug("Reaping %p\n", c);
1107                                 free_connection(c);
1108                                 i--;
1109                         }
1110                         continue;
1111                 }
1112
1113                 if(timerisset(&c->conn_timeout) && timercmp(&c->conn_timeout, &now, <)) {
1114                         errno = ETIMEDOUT;
1115                         c->state = CLOSED;
1116                         if(c->recv)
1117                                 c->recv(c, NULL, 0);
1118                         continue;
1119                 }
1120
1121                 if(timerisset(&c->rtrx_timeout) && timercmp(&c->rtrx_timeout, &now, <)) {
1122                         retransmit(c);
1123                 }
1124
1125                 if(c->poll && buffer_free(&c->sndbuf) && (c->state == ESTABLISHED || c->state == CLOSE_WAIT))
1126                         c->poll(c, buffer_free(&c->sndbuf));
1127
1128                 if(timerisset(&c->conn_timeout) && timercmp(&c->conn_timeout, &next, <))
1129                         next = c->conn_timeout;
1130
1131                 if(c->snd.nxt != c->snd.una) {
1132                         c->rtrx_timeout = now;
1133                         c->rtrx_timeout.tv_sec++;
1134                 } else {
1135                         timerclear(&c->rtrx_timeout);
1136                 }
1137
1138                 if(timerisset(&c->rtrx_timeout) && timercmp(&c->rtrx_timeout, &next, <))
1139                         next = c->rtrx_timeout;
1140         }
1141
1142         struct timeval diff;
1143         timersub(&next, &now, &diff);
1144         return diff;
1145 }
1146
1147 struct utcp *utcp_init(utcp_accept_t accept, utcp_pre_accept_t pre_accept, utcp_send_t send, void *priv) {
1148         struct utcp *utcp = calloc(1, sizeof *utcp);
1149         if(!utcp)
1150                 return NULL;
1151
1152         if(!send) {
1153                 errno = EFAULT;
1154                 return NULL;
1155         }
1156
1157         utcp->accept = accept;
1158         utcp->pre_accept = pre_accept;
1159         utcp->send = send;
1160         utcp->priv = priv;
1161         utcp->mtu = 1000;
1162         utcp->timeout = 60;
1163
1164         return utcp;
1165 }
1166
1167 void utcp_exit(struct utcp *utcp) {
1168         if(!utcp)
1169                 return;
1170         for(int i = 0; i < utcp->nconnections; i++) {
1171                 if(!utcp->connections[i]->reapable)
1172                         debug("Warning, freeing unclosed connection %p\n", utcp->connections[i]);
1173                 buffer_exit(&utcp->connections[i]->sndbuf);
1174                 free(utcp->connections[i]);
1175         }
1176         free(utcp->connections);
1177         free(utcp);
1178 }
1179
1180 uint16_t utcp_get_mtu(struct utcp *utcp) {
1181         return utcp ? utcp->mtu : 0;
1182 }
1183
1184 void utcp_set_mtu(struct utcp *utcp, uint16_t mtu) {
1185         // TODO: handle overhead of the header
1186         if(utcp)
1187                 utcp->mtu = mtu;
1188 }
1189
1190 int utcp_get_user_timeout(struct utcp *u) {
1191         return u ? u->timeout : 0;
1192 }
1193
1194 void utcp_set_user_timeout(struct utcp *u, int timeout) {
1195         if(u)
1196                 u->timeout = timeout;
1197 }
1198
1199 size_t utcp_get_sndbuf(struct utcp_connection *c) {
1200         return c ? c->sndbuf.maxsize : 0;
1201 }
1202
1203 size_t utcp_get_sndbuf_free(struct utcp_connection *c) {
1204         if(c && (c->state == ESTABLISHED || c->state == CLOSE_WAIT))
1205                 return buffer_free(&c->sndbuf);
1206         else
1207                 return 0;
1208 }
1209
1210 void utcp_set_sndbuf(struct utcp_connection *c, size_t size) {
1211         if(!c)
1212                 return;
1213         c->sndbuf.maxsize = size;
1214         if(c->sndbuf.maxsize != size)
1215                 c->sndbuf.maxsize = -1;
1216 }
1217
1218 bool utcp_get_nodelay(struct utcp_connection *c) {
1219         return c ? c->nodelay : false;
1220 }
1221
1222 void utcp_set_nodelay(struct utcp_connection *c, bool nodelay) {
1223         if(c)
1224                 c->nodelay = nodelay;
1225 }
1226
1227 bool utcp_get_keepalive(struct utcp_connection *c) {
1228         return c ? c->keepalive : false;
1229 }
1230
1231 void utcp_set_keepalive(struct utcp_connection *c, bool keepalive) {
1232         if(c)
1233                 c->keepalive = keepalive;
1234 }
1235
1236 size_t utcp_get_outq(struct utcp_connection *c) {
1237         return c ? seqdiff(c->snd.nxt, c->snd.una) : 0;
1238 }
1239
1240 void utcp_set_recv_cb(struct utcp_connection *c, utcp_recv_t recv) {
1241         if(c)
1242                 c->recv = recv;
1243 }
1244
1245 void utcp_set_poll_cb(struct utcp_connection *c, utcp_poll_t poll) {
1246         if(c)
1247                 c->poll = poll;
1248 }