Use I_LINK instead of I_PLINK on Solaris
[platform/upstream/openconnect.git] / tun.c
1 /*
2  * OpenConnect (SSL + DTLS) VPN client
3  *
4  * Copyright © 2008-2010 Intel Corporation.
5  *
6  * Author: David Woodhouse <dwmw2@infradead.org>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * version 2.1, as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to:
19  *
20  *   Free Software Foundation, Inc.
21  *   51 Franklin Street, Fifth Floor,
22  *   Boston, MA 02110-1301 USA
23  */
24
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <sys/socket.h>
28 #include <sys/ioctl.h>
29 #include <string.h>
30 #include <signal.h>
31 #include <fcntl.h>
32 #include <unistd.h>
33 #include <netdb.h>
34 #include <netinet/in_systm.h>
35 #include <netinet/in.h>
36 #include <netinet/ip.h>
37 #include <net/if.h>
38 #include <arpa/inet.h>
39 #include <errno.h>
40 #include <ctype.h>
41 #if defined(__sun__)
42 #include <stropts.h>
43 #include <sys/sockio.h>
44 #include <net/if_tun.h>
45 #ifndef TUNNEWPPA
46 #error "Install TAP driver from http://www.whiteboard.ne.jp/~admin2/tuntap/"
47 #endif
48 #endif
49
50 #include "openconnect-internal.h"
51
52 /*
53  * If an if_tun.h include file was found anywhere (by the Makefile), it's 
54  * included. Else, we end up assuming that we have BSD-style devices such
55  * as /dev/tun0 etc.
56  */
57 #ifdef IF_TUN_HDR
58 #include IF_TUN_HDR
59 #endif
60
61 /*
62  * The OS X tun/tap driver doesn't provide a header file; you're expected
63  * to define this for yourself.
64  */
65 #ifdef __APPLE__
66 #define TUNSIFHEAD  _IOW('t', 96, int)
67 #endif
68
69 /*
70  * OpenBSD always puts the protocol family prefix onto packets. Other
71  * systems let us enable that with the TUNSIFHEAD ioctl, and some of them
72  * (e.g. FreeBSD) _need_ it otherwise they'll interpret IPv6 packets as IPv4.
73  */
74 #if defined(__OpenBSD__) || defined(TUNSIFHEAD)
75 #define TUN_HAS_AF_PREFIX 1
76 #endif
77
78 #ifdef __sun__
79 static int local_config_tun(struct openconnect_info *vpninfo, int mtu_only)
80 {
81         if (!mtu_only)
82                 vpn_progress(vpninfo, PRG_ERR,
83                              _("No vpnc-script configured. Need Solaris IP-setting code\n"));
84         return 0;
85 }
86 #else
87 static int local_config_tun(struct openconnect_info *vpninfo, int mtu_only)
88 {
89         struct ifreq ifr;
90         int net_fd;
91
92         net_fd = socket(PF_INET, SOCK_DGRAM, 0);
93         if (net_fd < 0) {
94                 perror(_("open net"));
95                 return -EINVAL;
96         }
97         memset(&ifr, 0, sizeof(ifr));
98         strncpy(ifr.ifr_name, vpninfo->ifname, sizeof(ifr.ifr_name) - 1);
99
100         if (!mtu_only) {
101                 struct sockaddr_in addr;
102
103                 if (ioctl(net_fd, SIOCGIFFLAGS, &ifr) < 0)
104                         perror(_("SIOCGIFFLAGS"));
105
106                 ifr.ifr_flags |= IFF_UP | IFF_POINTOPOINT;
107                 if (ioctl(net_fd, SIOCSIFFLAGS, &ifr) < 0)
108                         perror(_("SIOCSIFFLAGS"));
109
110                 addr.sin_family = AF_INET;
111                 addr.sin_addr.s_addr = inet_addr(vpninfo->vpn_addr);
112                 memcpy(&ifr.ifr_addr, &addr, sizeof(addr));
113                 if (ioctl(net_fd, SIOCSIFADDR, &ifr) < 0)
114                         perror(_("SIOCSIFADDR"));
115         }
116
117         ifr.ifr_mtu = vpninfo->mtu;
118         if (ioctl(net_fd, SIOCSIFMTU, &ifr) < 0)
119                 perror(_("SIOCSIFMTU"));
120
121         close(net_fd);
122
123         return 0;
124 }
125 #endif
126
127 static int setenv_int(const char *opt, int value)
128 {
129         char buf[16];
130         sprintf(buf, "%d", value);
131         return setenv(opt, buf, 1);
132 }
133
134 static int netmasklen(struct in_addr addr)
135 {
136         int masklen;
137
138         for (masklen = 0; masklen < 32; masklen++) {
139                 if (ntohl(addr.s_addr) >= (0xffffffff << masklen))
140                         break;
141         }
142         return 32 - masklen;
143 }
144
145 static int process_split_xxclude(struct openconnect_info *vpninfo,
146                                  int include, const char *route, int *v4_incs,
147                                  int *v6_incs)
148 {
149         struct in_addr addr;
150         const char *in_ex = include?"IN":"EX";
151         char envname[80];
152         char *slash;
153
154         slash = strchr(route, '/');
155         if (!slash) {
156         badinc:
157                 if (include)
158                         vpn_progress(vpninfo, PRG_ERR,
159                                      _("Discard bad split include: \"%s\"\n"),
160                                      route);
161                 else
162                         vpn_progress(vpninfo, PRG_ERR,
163                                      _("Discard bad split exclude: \"%s\"\n"),
164                                      route);
165                 return -EINVAL;
166         }
167
168         *slash = 0;
169
170         if (strchr(route, ':')) {
171                 snprintf(envname, 79, "CISCO_IPV6_SPLIT_%sC_%d_ADDR", in_ex,
172                          *v6_incs);
173                 setenv(envname, route, 1);
174
175                 snprintf(envname, 79, "CISCO_IPV6_SPLIT_%sC_%d_MASKLEN", in_ex,
176                          *v6_incs);
177                 setenv(envname, slash+1, 1);
178
179                 (*v6_incs)++;
180                 return 0;
181         }
182                 
183         if (!inet_aton(route, &addr)) {
184                 *slash = '/';
185                 goto badinc;
186         }
187
188         envname[79] = 0;
189         snprintf(envname, 79, "CISCO_SPLIT_%sC_%d_ADDR", in_ex, *v4_incs);
190         setenv(envname, route, 1);
191
192         /* Put it back how we found it */
193         *slash = '/';
194
195         if (!inet_aton(slash+1, &addr))
196                 goto badinc;
197
198         snprintf(envname, 79, "CISCO_SPLIT_%sC_%d_MASK", in_ex, *v4_incs);
199         setenv(envname, slash+1, 1);
200
201         snprintf(envname, 79, "CISCO_SPLIT_%sC_%d_MASKLEN", in_ex, *v4_incs);
202         setenv_int(envname, netmasklen(addr));
203
204         (*v4_incs)++;
205         return 0;
206 }
207
208 static int appendenv(const char *opt, const char *new)
209 {
210         char buf[1024];
211         char *old = getenv(opt);
212
213         buf[1023] = 0;
214         if (old)
215                 snprintf(buf, 1023, "%s %s", old, new);
216         else
217                 snprintf(buf, 1023, "%s", new);
218
219         return setenv(opt, buf, 1);
220 }
221
222 static void setenv_cstp_opts(struct openconnect_info *vpninfo)
223 {
224         char *env_buf;
225         int buflen = 0;
226         int bufofs = 0;
227         struct vpn_option *opt;
228
229         for (opt = vpninfo->cstp_options; opt; opt = opt->next)
230                 buflen += 2 + strlen(opt->option) + strlen(opt->value);
231
232         env_buf = malloc(buflen + 1);
233         if (!env_buf)
234                 return;
235
236         env_buf[buflen] = 0;
237
238         for (opt = vpninfo->cstp_options; opt; opt = opt->next)
239                 bufofs += snprintf(env_buf + bufofs, buflen - bufofs,
240                                    "%s=%s\n", opt->option, opt->value);
241
242         setenv("CISCO_CSTP_OPTIONS", env_buf, 1);
243         free(env_buf);
244 }
245
246 static void set_banner(struct openconnect_info *vpninfo)
247 {
248         char *banner, *q;
249         const char *p;
250
251         if (!vpninfo->banner || !(banner = malloc(strlen(vpninfo->banner)))) {
252                 unsetenv("CISCO_BANNER");
253                 return;
254         }
255         p = vpninfo->banner;
256         q = banner;
257         
258         while (*p) {
259                 if (*p == '%' && isxdigit((int)(unsigned char)p[1]) &&
260                     isxdigit((int)(unsigned char)p[2])) {
261                         *(q++) = unhex(p + 1);
262                         p += 3;
263                 } else 
264                         *(q++) = *(p++);
265         }
266         *q = 0;
267         setenv("CISCO_BANNER", banner, 1);
268
269         free(banner);
270 }       
271
272 static void set_script_env(struct openconnect_info *vpninfo)
273 {
274         char host[80];
275         int ret = getnameinfo(vpninfo->peer_addr, vpninfo->peer_addrlen, host,
276                               sizeof(host), NULL, 0, NI_NUMERICHOST);
277         if (!ret)
278                 setenv("VPNGATEWAY", host, 1);
279
280         setenv("reason", "connect", 1);
281         set_banner(vpninfo);
282         unsetenv("CISCO_SPLIT_INC");
283         unsetenv("CISCO_SPLIT_EXC");
284
285         setenv_int("INTERNAL_IP4_MTU", vpninfo->mtu);
286
287         if (vpninfo->vpn_addr) {
288                 setenv("INTERNAL_IP4_ADDRESS", vpninfo->vpn_addr, 1);
289                 if (vpninfo->vpn_netmask) {
290                         struct in_addr addr;
291                         struct in_addr mask;
292
293                         if (inet_aton(vpninfo->vpn_addr, &addr) &&
294                             inet_aton(vpninfo->vpn_netmask, &mask)) {
295                                 char *netaddr;
296
297                                 addr.s_addr &= mask.s_addr;
298                                 netaddr = inet_ntoa(addr);
299
300                                 setenv("INTERNAL_IP4_NETADDR", netaddr, 1);
301                                 setenv("INTERNAL_IP4_NETMASK", vpninfo->vpn_netmask, 1);
302                                 setenv_int("INTERNAL_IP4_NETMASKLEN", netmasklen(mask));
303                         }
304                 }
305         }
306         if (vpninfo->vpn_addr6) {
307                 setenv("INTERNAL_IP6_ADDRESS", vpninfo->vpn_addr6, 1);
308                 setenv("INTERNAL_IP6_NETMASK", vpninfo->vpn_netmask6, 1);
309         }
310
311         if (vpninfo->vpn_dns[0])
312                 setenv("INTERNAL_IP4_DNS", vpninfo->vpn_dns[0], 1);
313         else
314                 unsetenv("INTERNAL_IP4_DNS");
315         if (vpninfo->vpn_dns[1])
316                 appendenv("INTERNAL_IP4_DNS", vpninfo->vpn_dns[1]);
317         if (vpninfo->vpn_dns[2])
318                 appendenv("INTERNAL_IP4_DNS", vpninfo->vpn_dns[2]);
319
320         if (vpninfo->vpn_nbns[0])
321                 setenv("INTERNAL_IP4_NBNS", vpninfo->vpn_nbns[0], 1);
322         else
323                 unsetenv("INTERNAL_IP4_NBNS");
324         if (vpninfo->vpn_nbns[1])
325                 appendenv("INTERNAL_IP4_NBNS", vpninfo->vpn_nbns[1]);
326         if (vpninfo->vpn_nbns[2])
327                 appendenv("INTERNAL_IP4_NBNS", vpninfo->vpn_nbns[2]);
328
329         if (vpninfo->vpn_domain)
330                 setenv("CISCO_DEF_DOMAIN", vpninfo->vpn_domain, 1);
331         else unsetenv ("CISCO_DEF_DOMAIN");
332
333         if (vpninfo->vpn_proxy_pac)
334                 setenv("CISCO_PROXY_PAC", vpninfo->vpn_proxy_pac, 1);
335
336         if (vpninfo->split_includes) {
337                 struct split_include *this = vpninfo->split_includes;
338                 int nr_split_includes = 0;
339                 int nr_v6_split_includes = 0;
340
341                 while (this) {
342                         process_split_xxclude(vpninfo, 1, this->route,
343                                               &nr_split_includes,
344                                               &nr_v6_split_includes);
345                         this = this->next;
346                 }
347                 if (nr_split_includes)
348                         setenv_int("CISCO_SPLIT_INC", nr_split_includes);
349                 if (nr_v6_split_includes)
350                         setenv_int("CISCO_IPV6_SPLIT_INC", nr_v6_split_includes);
351         }
352         if (vpninfo->split_excludes) {
353                 struct split_include *this = vpninfo->split_excludes;
354                 int nr_split_excludes = 0;
355                 int nr_v6_split_excludes = 0;
356
357                 while (this) {
358                         process_split_xxclude(vpninfo, 0, this->route,
359                                               &nr_split_excludes,
360                                               &nr_v6_split_excludes);
361                         this = this->next;
362                 }
363                 if (nr_split_excludes)
364                         setenv_int("CISCO_SPLIT_EXC", nr_split_excludes);
365                 if (nr_v6_split_excludes)
366                         setenv_int("CISCO_IPV6_SPLIT_EXC", nr_v6_split_excludes);
367         }
368         setenv_cstp_opts(vpninfo);
369 }
370
371 static int script_config_tun(struct openconnect_info *vpninfo)
372 {
373         if (system(vpninfo->vpnc_script)) {
374                 int e = errno;
375                 vpn_progress(vpninfo, PRG_ERR,
376                              _("Failed to spawn script '%s': %s\n"),
377                              vpninfo->vpnc_script, strerror(e));
378                 return -e;
379         }
380         return 0;
381 }
382
383 void script_reconnect (struct openconnect_info *vpninfo)
384 {
385         setenv("reason", "reconnect", 1);
386         script_config_tun(vpninfo);
387 }
388
389 /* Set up a tuntap device. */
390 int setup_tun(struct openconnect_info *vpninfo)
391 {
392         int tun_fd;
393
394         set_script_env(vpninfo);
395
396         if (vpninfo->script_tun) {
397                 pid_t child;
398                 int fds[2];
399
400                 if (socketpair(AF_UNIX, SOCK_DGRAM, 0, fds)) {
401                         perror(_("socketpair"));
402                         exit(1);
403                 }
404                 tun_fd = fds[0];
405                 child = fork();
406                 if (child < 0) {
407                         perror(_("fork"));
408                         exit(1);
409                 } else if (!child) {
410                         close(tun_fd);
411                         setenv_int("VPNFD", fds[1]);
412                         execl("/bin/sh", "/bin/sh", "-c", vpninfo->vpnc_script, NULL);
413                         perror(_("execl"));
414                         exit(1);
415                 }
416                 close(fds[1]);
417                 vpninfo->script_tun = child;
418                 vpninfo->ifname = strdup(_("(script)"));
419         } else {
420 #ifdef IFF_TUN /* Linux */
421                 struct ifreq ifr;
422                 int tunerr;
423
424                 tun_fd = open("/dev/net/tun", O_RDWR);
425                 if (tun_fd < 0) {
426                         /* Android has /dev/tun instead of /dev/net/tun
427                            Since other systems might have too, just try it
428                            as a fallback instead of using ifdef __ANDROID__ */
429                         tunerr = errno;
430                         tun_fd = open("/dev/tun", O_RDWR);
431                 }
432                 if (tun_fd < 0) {
433                         /* If the error on /dev/tun is ENOENT, that's boring.
434                            Use the error we got on /dev/net/tun instead */
435                         if (errno != -ENOENT)
436                                 tunerr = errno;
437
438                         vpn_progress(vpninfo, PRG_ERR,
439                                      _("Failed to open tun device: %s\n"),
440                                      strerror(tunerr));
441                         exit(1);
442                 }
443                 memset(&ifr, 0, sizeof(ifr));
444                 ifr.ifr_flags = IFF_TUN | IFF_NO_PI;
445                 if (vpninfo->ifname)
446                         strncpy(ifr.ifr_name, vpninfo->ifname,
447                                 sizeof(ifr.ifr_name) - 1);
448                 if (ioctl(tun_fd, TUNSETIFF, (void *) &ifr) < 0) {
449                         vpn_progress(vpninfo, PRG_ERR,
450                                      _("TUNSETIFF failed: %s\n"),
451                                      strerror(errno));
452                         exit(1);
453                 }
454                 if (!vpninfo->ifname)
455                         vpninfo->ifname = strdup(ifr.ifr_name);
456 #elif defined (__sun__)
457                 static char tun_name[80];
458                 int tun2_fd, ip_fd = open("/dev/ip", O_RDWR);
459                 int unit_nr, mux_id;
460                 struct ifreq ifr;
461
462                 if (ip_fd < 0) {
463                         perror(_("open /dev/ip"));
464                         return -EIO;
465                 }
466
467                 tun_fd = open("/dev/tun", O_RDWR);
468                 if (tun_fd < 0) {
469                         perror(_("open /dev/tun"));
470                         close(ip_fd);
471                         return -EIO;
472                 }
473
474                 unit_nr = ioctl(tun_fd, TUNNEWPPA, -1);
475                 if (unit_nr < 0) {
476                         perror(_("Failed to create new tun"));
477                         close(tun_fd);
478                         close(ip_fd);
479                         return -EIO;
480                 }
481                 
482                 tun2_fd = open("/dev/tun", O_RDWR);
483                 if (tun2_fd < 0) {
484                         perror(_("open /dev/tun again"));
485                         close(tun_fd);
486                         close(ip_fd);
487                         return -EIO;
488                 }
489                 if (ioctl(tun2_fd, I_PUSH, "ip") < 0) {
490                         perror(_("Can't push IP"));
491                         close(tun2_fd);
492                         close(tun_fd);
493                         close(ip_fd);
494                         return -EIO;
495                 }
496                 if (ioctl(tun2_fd, IF_UNITSEL, &unit_nr) < 0) {
497                         perror(_("Can't select unit"));
498                         close(tun2_fd);
499                         close(tun_fd);
500                         close(ip_fd);
501                         return -EIO;
502                 }
503                 mux_id = ioctl(ip_fd, I_LINK, tun2_fd);
504                 if (mux_id < 0) {
505                         perror(_("Can't link tun to IP"));
506                         close(tun2_fd);
507                         close(tun_fd);
508                         close(ip_fd);
509                         return -EIO;
510                 }
511                 close(tun2_fd);
512
513                 sprintf(tun_name, "tun%d", unit_nr);
514                 vpninfo->ifname = strdup(tun_name);
515
516                 memset(&ifr, 0, sizeof(ifr));
517                 strcpy(ifr.ifr_name, tun_name);
518                 ifr.ifr_ip_muxid = mux_id;
519
520                 if (ioctl(ip_fd, SIOCSIFMUXID, &ifr) < 0) {
521                         perror(_("Set mux id"));
522                         close(tun_fd);
523                         close(ip_fd);
524                         return -EIO;
525                 }
526                 vpninfo->ip_fd = ip_fd;
527
528 #else /* BSD et al have /dev/tun$x devices */
529                 static char tun_name[80];
530                 int i;
531                 for (i = 0; i < 255; i++) {
532                         sprintf(tun_name, "/dev/tun%d", i);
533                         tun_fd = open(tun_name, O_RDWR);
534                         if (tun_fd >= 0)
535                                 break;
536                 }
537                 if (tun_fd < 0) {
538                         perror(_("open tun"));
539                         exit(1);
540                 }
541                 vpninfo->ifname = strdup(tun_name + 5);
542 #ifdef TUNSIFHEAD
543                 i = 1;
544                 if (ioctl(tun_fd, TUNSIFHEAD, &i) < 0) {
545                         perror(_("TUNSIFHEAD"));
546                         exit(1);
547                 }
548 #endif
549 #endif
550                 if (vpninfo->vpnc_script) {
551                         setenv("TUNDEV", vpninfo->ifname, 1);
552                         script_config_tun(vpninfo);
553                         /* We have to set the MTU for ourselves, because the script doesn't */
554                         local_config_tun(vpninfo, 1);
555                 } else
556                         local_config_tun(vpninfo, 0);
557         }
558
559         fcntl(tun_fd, F_SETFD, FD_CLOEXEC);
560
561         vpninfo->tun_fd = tun_fd;
562
563         if (vpninfo->select_nfds <= tun_fd)
564                 vpninfo->select_nfds = tun_fd + 1;
565
566         FD_SET(tun_fd, &vpninfo->select_rfds);
567
568         fcntl(vpninfo->tun_fd, F_SETFL, fcntl(vpninfo->tun_fd, F_GETFL) | O_NONBLOCK);
569
570         return 0;
571 }
572
573 int tun_mainloop(struct openconnect_info *vpninfo, int *timeout)
574 {
575         unsigned char buf[2000];
576         int len;
577         int work_done = 0;
578         int moredata = 1;
579
580         if (FD_ISSET(vpninfo->tun_fd, &vpninfo->select_rfds)) {
581                 while (moredata) {
582                         unsigned char *pkt = buf;
583 #ifdef __sun__
584                         /* On Solaris, if we're actually using tuntap and *not* just
585                            passing packets through a UNIX socket to a child process,
586                            we have to use getmsg() to ensure that we only get *one*
587                            packet at a time. */
588                         if (!vpninfo->script_tun) {
589                                 struct strbuf strb;
590                                 int flags = 0;
591                                 int ret;
592                                 
593                                 strb.buf = buf;
594                                 strb.maxlen = sizeof(buf);
595                                 strb.len = 0;
596                                 ret = getmsg(vpninfo->tun_fd, NULL, &strb, &flags);
597                                 if (ret < 0)
598                                         break;
599
600                                 if (!(ret & MOREDATA))
601                                         moredata = 0;
602                                 len = strb.len;
603                         } else
604 #endif /* __sun__ ... */
605                         {
606                                 len = read(vpninfo->tun_fd, buf, sizeof(buf));
607                                 if (len <= 0)
608                                         break;
609                         }
610
611 #ifdef TUN_HAS_AF_PREFIX
612                         if (!vpninfo->script_tun) {
613                                 pkt += 4;
614                                 len -= 4;
615                         }
616 #endif
617                         if (queue_new_packet(&vpninfo->outgoing_queue, pkt,
618                                              len))
619                                 break;
620
621                         work_done = 1;
622                         vpninfo->outgoing_qlen++;
623                         if (vpninfo->outgoing_qlen == vpninfo->max_qlen) {
624                                 FD_CLR(vpninfo->tun_fd, &vpninfo->select_rfds);
625                                 break;
626                         }
627                 }
628         } else if (vpninfo->outgoing_qlen < vpninfo->max_qlen) {
629                 FD_SET(vpninfo->tun_fd, &vpninfo->select_rfds);
630         }
631
632         /* The kernel returns -ENOMEM when the queue is full, so theoretically
633            we could handle that and retry... but it doesn't let us poll() for
634            the no-longer-full situation, so let's not bother. */
635         while (vpninfo->incoming_queue) {
636                 struct pkt *this = vpninfo->incoming_queue;
637                 unsigned char *data = this->data;
638                 int len = this->len;
639
640 #ifdef TUN_HAS_AF_PREFIX
641                 if (!vpninfo->script_tun) {
642                         struct ip *iph = (void *)data;
643                         int type;
644
645                         if (iph->ip_v == 6)
646                                 type = AF_INET6;
647                         else if (iph->ip_v == 4)
648                                 type = AF_INET;
649                         else {
650                                 static int complained = 0;
651                                 if (!complained) {
652                                         complained = 1;
653                                         vpn_progress(vpninfo, PRG_ERR,
654                                                      _("Unknown packet (len %d) received: %02x %02x %02x %02x...\n"),
655                                                      len, data[0], data[1], data[2], data[3]);
656                                 }
657                                 free(this);
658                                 continue;
659                         }
660                         data -= 4;
661                         len += 4;
662                         *(int *)data = htonl(type);
663                 }
664 #endif
665                 vpninfo->incoming_queue = this->next;
666
667                 if (write(vpninfo->tun_fd, data, len) < 0) {
668                         /* Handle death of "script" socket */
669                         if (vpninfo->script_tun && errno == ENOTCONN) {
670                                 vpninfo->quit_reason = "Client connection terminated";
671                                 return 1;
672                         }
673                         vpn_progress(vpninfo, PRG_ERR,
674                                      _("Failed to write incoming packet: %s\n"),
675                                      strerror(errno));
676                 }
677                 free(this);
678         }
679         /* Work is not done if we just got rid of packets off the queue */
680         return work_done;
681 }
682
683 void shutdown_tun(struct openconnect_info *vpninfo)
684 {       
685         if (vpninfo->script_tun) {
686                 kill(vpninfo->script_tun, SIGHUP);
687         } else {
688                 if (vpninfo->vpnc_script) {
689                         setenv("reason", "disconnect", 1);
690                         if (system(vpninfo->vpnc_script) == -1) {
691                                 vpn_progress(vpninfo, PRG_ERR,
692                                              _("Failed to spawn script '%s': %s\n"),
693                                              vpninfo->vpnc_script,
694                                              strerror(errno));
695                         }
696                 }
697 #ifdef __sun__
698                 close(vpninfo->ip_fd);
699                 vpninfo->ip_fd = -1;
700 #endif
701         }
702
703         close(vpninfo->tun_fd);
704         vpninfo->tun_fd = -1;
705 }