e3ae2a16ef1c102eb7860726ce7e03d55b8d3b18
[oweals/gnunet.git] / src / vpn / gnunet-daemon-vpn.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Christian Grothoff
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file vpn/gnunet-daemon-vpn.c
23  * @brief 
24  * @author Philipp Tölke
25  */
26 #include "platform.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet_os_lib.h"
30 #include "gnunet-vpn-helper-p.h"
31 #include "gnunet-vpn-packet.h"
32 #include "gnunet-vpn-pretty-print.h"
33 /* #include "gnunet_template_service.h" */
34
35 /**
36  * Final status code.
37  */
38 static int ret;
39
40 struct vpn_cls {
41         struct GNUNET_DISK_PipeHandle* helper_in;
42         struct GNUNET_DISK_PipeHandle* helper_out;
43         const struct GNUNET_DISK_FileHandle* fh_from_helper;
44
45         struct GNUNET_SCHEDULER_Handle *sched;
46
47         pid_t helper_pid;
48 };
49
50 static void cleanup(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tskctx) {
51         struct vpn_cls* mycls = (struct vpn_cls*) cls;
52         if (tskctx->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) {
53                 PLIBC_KILL(mycls->helper_pid, SIGTERM);
54                 GNUNET_OS_process_wait(mycls->helper_pid);
55         }
56 }
57
58 static void helper_read(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tsdkctx);
59
60 static void start_helper_and_schedule(struct vpn_cls* mycls) {
61         mycls->helper_in = GNUNET_DISK_pipe(1);
62         mycls->helper_out = GNUNET_DISK_pipe(1);
63
64         mycls->helper_pid = GNUNET_OS_start_process(mycls->helper_in, mycls->helper_out, "gnunet-vpn-helper", "gnunet-vpn-helper", NULL);
65
66         mycls->fh_from_helper = GNUNET_DISK_pipe_handle (mycls->helper_out, GNUNET_DISK_PIPE_END_READ);
67         
68         GNUNET_SCHEDULER_add_read_file (mycls->sched, GNUNET_TIME_UNIT_FOREVER_REL, mycls->fh_from_helper, &helper_read, mycls);
69 }
70
71
72 static void restart_helper(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tskctx) {
73         struct vpn_cls* mycls = (struct vpn_cls*) cls;
74
75         // Kill the helper
76         PLIBC_KILL(mycls->helper_pid, SIGTERM);
77         GNUNET_OS_process_wait(mycls->helper_pid);
78
79         // Restart the helper
80         start_helper_and_schedule(mycls);
81
82 }
83
84 static void helper_read(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tsdkctx) {
85         struct vpn_cls* mycls = (struct vpn_cls*) cls;
86         struct suid_packet_header hdr = { .size = 0 };
87
88         int r = 0;
89
90         if (tsdkctx->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN)
91                 return;
92
93         while (r < sizeof(struct suid_packet_header)) {
94                 int t = GNUNET_DISK_file_read(mycls->fh_from_helper, &hdr, sizeof(struct suid_packet_header));
95                 if (t< 0) {
96                         fprintf(stderr, "Read error for header: %m\n");
97                         return;
98                 }
99                 r += t;
100         }
101
102         struct suid_packet *pkt = (struct suid_packet*) GNUNET_malloc(ntohl(hdr.size));
103
104         if (memcpy(pkt, &hdr, sizeof(struct suid_packet_header)) < 0) {
105                 fprintf(stderr, "Memcpy: %m\n");
106                 return;
107         }
108
109         while (r < ntohl(pkt->hdr.size)) {
110                 int t = GNUNET_DISK_file_read(mycls->fh_from_helper, (unsigned char*)pkt + r, ntohl(pkt->hdr.size) - r);
111                 if (t< 0) {
112                         fprintf(stderr, "Read error for data: %m\n");
113                         return;
114                 }
115                 r += t;
116         }
117
118         struct ip6_pkt *pkt6 = (struct ip6_pkt*) pkt;
119         struct ip6_tcp *pkt6_tcp;
120         struct ip6_udp *pkt6_udp;
121
122         pkt_printf(pkt6);
123         switch(pkt6->ip6_hdr.nxthdr) {
124                 case 0x06:
125                         pkt6_tcp = (struct ip6_tcp*)pkt6;
126                         pkt_printf_ip6tcp(pkt6_tcp);
127                         break;
128                 case 0x11:
129                         pkt6_udp = (struct ip6_udp*)pkt6;
130                         pkt_printf_ip6udp(pkt6_udp);
131                         if (ntohs(pkt6_udp->udp_hdr.dpt) == 53) {
132                                 pkt_printf_ip6dns((struct ip6_udp_dns*)pkt6_udp);
133                         }
134                         break;
135         }
136
137         GNUNET_free(pkt);
138
139         GNUNET_SCHEDULER_add_read_file (mycls->sched, GNUNET_TIME_UNIT_FOREVER_REL, mycls->fh_from_helper, &helper_read, mycls);
140 }
141
142 /**
143  * Main function that will be run by the scheduler.
144  *
145  * @param cls closure
146  * @param sched the scheduler to use
147  * @param args remaining command-line arguments
148  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
149  * @param cfg configuration
150  */
151 static void
152 run (void *cls,
153                 struct GNUNET_SCHEDULER_Handle *sched,
154                 char *const *args,
155                 const char *cfgfile,
156                 const struct GNUNET_CONFIGURATION_Handle *cfg) {
157
158         struct vpn_cls* mycls = (struct vpn_cls*) cls;
159
160         mycls->sched = sched;
161
162         GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
163
164         start_helper_and_schedule(mycls);
165 }
166
167
168 /**
169  * The main function to obtain template from gnunetd.
170  *
171  * @param argc number of arguments from the command line
172  * @param argv command line arguments
173  * @return 0 ok, 1 on error
174  */
175 int
176 main (int argc, char *const *argv)
177 {
178   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
179     GNUNET_GETOPT_OPTION_END
180   };
181
182   struct vpn_cls* cls = (struct vpn_cls*)malloc(sizeof(struct vpn_cls));
183
184   return (GNUNET_OK ==
185           GNUNET_PROGRAM_run (argc,
186                               argv,
187                               "gnunet-daemon-vpn",
188                               gettext_noop ("help text"),
189                               options, &run, cls)) ? ret : 1;
190 }
191
192 /* end of gnunet-daemon-vpn.c */