Comment on write queue full situation
[platform/upstream/openconnect.git] / tun.c
1 /*
2  * Open AnyConnect (SSL + DTLS) client
3  *
4  * © 2008 David Woodhouse <dwmw2@infradead.org>
5  *
6  * Permission to use, copy, modify, and/or distribute this software
7  * for any purpose with or without fee is hereby granted, provided
8  * that the above copyright notice and this permission notice appear
9  * in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
12  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
13  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
14  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
15  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
16  * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
17  * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
18  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19  */
20
21 #include <string.h>
22 #include <net/if.h>
23 #include <sys/ioctl.h>
24 #include <linux/if_tun.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #include <unistd.h>
29
30 #include "anyconnect.h"
31
32 /* Set up a tuntap device. */
33 int setup_tun(struct anyconnect_info *vpninfo)
34 {
35         struct vpn_option *cstp_opt = vpninfo->cstp_options;
36         struct ifreq ifr;
37         int tun_fd;
38         int pfd;
39
40         tun_fd = open("/dev/net/tun", O_RDWR);
41         if (tun_fd == -1) {
42                 perror("open tun");
43                 exit(1);
44         }
45         memset(&ifr, 0, sizeof(ifr));
46         ifr.ifr_flags = IFF_TUN | IFF_NO_PI;
47         strncpy(ifr.ifr_name, "cisco0", sizeof(ifr.ifr_name) - 1);
48         if (ioctl(tun_fd, TUNSETIFF, (void *) &ifr) < 0){
49                 perror("TUNSETIFF");
50                 exit(1);
51         }
52
53         /* FIXME: Configure it... */
54         while (cstp_opt) {
55                 printf("CSTP option %s : %s\n", cstp_opt->option, cstp_opt->value);
56                 cstp_opt = cstp_opt->next;
57         }
58
59         /* Better still, use lwip and just provide a SOCKS server rather than
60            telling the kernel about it at all */
61         vpninfo->tun_fd = tun_fd;
62         pfd = vpn_add_pollfd(vpninfo, vpninfo->tun_fd, POLLIN);
63         
64         fcntl(vpninfo->tun_fd, F_SETFL, fcntl(vpninfo->tun_fd, F_GETFL) | O_NONBLOCK);
65
66         return 0;
67 }
68
69 int tun_mainloop(struct anyconnect_info *vpninfo, int *timeout)
70 {
71         char buf[2000];
72         int len;
73         int work_done = 0;
74
75         while ( (len = read(vpninfo->tun_fd, buf, sizeof(buf))) > 0) {
76                 queue_new_packet(&vpninfo->outgoing_queue, AF_INET, buf, len);
77                 work_done = 1;
78         }
79
80         /* The kernel returns -ENOMEM when the queue is full, so theoretically
81            we could handle that and retry... but it doesn't let us poll() for
82            the no-longer-full situation, so let's not bother. */
83         while (vpninfo->incoming_queue) {
84                 struct pkt *this = vpninfo->incoming_queue;
85                 vpninfo->incoming_queue = this->next;
86                 write(vpninfo->tun_fd, this->data, this->len);
87         }
88         /* Work is not done if we just got rid of packets off the queue */
89         return work_done;
90 }