Add capability to use vpnc's route mangling script
[platform/upstream/openconnect.git] / mainloop.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 <errno.h>
22 #include <poll.h>
23 #include <limits.h>
24 #include <sys/select.h>
25 #include <signal.h>
26 #include <arpa/inet.h>
27
28 #include "anyconnect.h"
29
30 void queue_packet(struct pkt **q, struct pkt *new)
31 {
32         while (*q)
33                 q = &(*q)->next;
34
35         new->next = NULL;
36         *q = new;
37 }
38
39 int queue_new_packet(struct pkt **q, int type, void *buf, int len)
40 {
41         struct pkt *new = malloc(sizeof(struct pkt) + len);
42         if (!new)
43                 return -ENOMEM;
44
45         new->type = type;
46         new->len = len;
47         new->next = NULL;
48         memcpy(new->data, buf, len);
49         queue_packet(q, new);
50         return 0;
51 }
52
53 int vpn_add_pollfd(struct anyconnect_info *vpninfo, int fd, short events)
54 {
55         vpninfo->nfds++;
56         vpninfo->pfds = realloc(vpninfo->pfds, sizeof(struct pollfd) * vpninfo->nfds);
57         if (!vpninfo->pfds) {
58                 fprintf(stderr, "Failed to reallocate pfds\n");
59                 exit(1);
60         }
61         vpninfo->pfds[vpninfo->nfds - 1].fd = fd;
62         vpninfo->pfds[vpninfo->nfds - 1].events = events;
63
64         return vpninfo->nfds - 1;
65 }
66
67 static int killed;
68
69 static void handle_sigint(int sig)
70 {
71         killed = 1;
72 }
73
74 int vpn_mainloop(struct anyconnect_info *vpninfo)
75 {
76         struct sigaction sa;
77         memset(&sa, 0, sizeof(sa));
78         sa.sa_handler = handle_sigint;
79         
80         sigaction(SIGINT, &sa, NULL);
81         while (!killed && !vpninfo->quit_reason) {
82                 int did_work = 0;
83                 int timeout = INT_MAX;
84
85                 if (vpninfo->dtls_fd != -1)
86                         did_work += dtls_mainloop(vpninfo, &timeout);
87
88                 did_work += ssl_mainloop(vpninfo, &timeout);
89                 did_work += tun_mainloop(vpninfo, &timeout);
90                 
91                 if (did_work)
92                         continue;
93                 
94                 if (verbose)
95                         printf("Did no work; sleeping for %d ms...\n", timeout);
96
97                 poll(vpninfo->pfds, vpninfo->nfds, timeout);
98                 if (vpninfo->pfds[vpninfo->ssl_pfd].revents & POLL_HUP) {
99                         fprintf(stderr, "Server closed connection!\n");
100                         /* OpenSSL doesn't seem to cope properly with this... */
101                         exit(1);
102                 }
103         }
104         if (!vpninfo->quit_reason)
105                 vpninfo->quit_reason = "Client received SIGINT";
106
107         ssl_bye(vpninfo, vpninfo->quit_reason);
108
109         if (vpninfo->vpnc_script) {
110                 setenv("TUNDEV", vpninfo->ifname, 1);
111                 setenv("reason", "disconnect", 1);
112                 system(vpninfo->vpnc_script);
113         }
114
115         return 0;
116 }