renamed a file to fit into the convention
[oweals/gnunet.git] / src / vpn / gnunet-daemon-vpn.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 Philipp Tölke
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_template_service.h" */
32
33 /**
34  * Final status code.
35  */
36 static int ret;
37
38 struct vpn_cls {
39         struct GNUNET_DISK_PipeHandle* helper_in;
40         struct GNUNET_DISK_PipeHandle* helper_out;
41         const struct GNUNET_DISK_FileHandle* fh_from_helper;
42
43         struct GNUNET_SCHEDULER_Handle *sched; // TODO CG: is that right? Do I have to carry it around myself?
44
45         pid_t helper_pid;
46 };
47
48 static void cleanup(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tskctx) {
49         struct vpn_cls* mycls = (struct vpn_cls*) cls;
50         if (tskctx->reason == GNUNET_SCHEDULER_REASON_SHUTDOWN) {
51                 PLIBC_KILL(mycls->helper_pid, SIGTERM);
52                 GNUNET_OS_process_wait(mycls->helper_pid);
53         }
54 }
55
56 static void helper_read(void* cls, const struct GNUNET_SCHEDULER_TaskContext* tsdkctx) {
57         struct vpn_cls* mycls = (struct vpn_cls*) cls;
58         struct suid_packet_header hdr = { .size = 0 };
59
60         int r = 0;
61
62         while (r < sizeof(struct suid_packet_header)) {
63                 int t = GNUNET_DISK_file_read(mycls->fh_from_helper, &hdr, sizeof(struct suid_packet_header));
64                 if (t< 0) {
65                         fprintf(stderr, "Read error for header: %m\n");
66                         return;
67                 }
68                 r += t;
69         }
70
71         fprintf(stderr, "Read %d bytes for the header. The 'size' is %x, that is %d\n", r, hdr.size, ntohl(hdr.size));
72
73         struct suid_packet *pkt = (struct suid_packet*) GNUNET_malloc(ntohl(hdr.size));
74
75         if (memcpy(pkt, &hdr, sizeof(struct suid_packet_header)) < 0) {
76                 fprintf(stderr, "Memcpy: %m\n");
77                 return;
78         }
79
80         while (r < ntohl(pkt->hdr.size)) {
81                 int t = GNUNET_DISK_file_read(mycls->fh_from_helper, (unsigned char*)pkt + r, ntohl(pkt->hdr.size) - r);
82                 if (t< 0) {
83                         fprintf(stderr, "Read error for data: %m\n");
84                         return;
85                 }
86                 r += t;
87         }
88
89         printf("read %d bytes. The first 87 are:\n\t", r);
90
91         for (r = 0; r < 87; r++)
92                 printf("%02x ", pkt->data[r]);
93         printf("\n");
94
95         GNUNET_free(pkt);
96
97         GNUNET_SCHEDULER_add_read_file (mycls->sched, GNUNET_TIME_UNIT_FOREVER_REL, mycls->fh_from_helper, &helper_read, mycls);
98 }
99
100 /**
101  * Main function that will be run by the scheduler.
102  *
103  * @param cls closure
104  * @param sched the scheduler to use
105  * @param args remaining command-line arguments
106  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
107  * @param cfg configuration
108  */
109 static void
110 run (void *cls,
111                 struct GNUNET_SCHEDULER_Handle *sched,
112                 char *const *args,
113                 const char *cfgfile,
114                 const struct GNUNET_CONFIGURATION_Handle *cfg) {
115
116         struct vpn_cls* mycls = (struct vpn_cls*) cls;
117
118         mycls->sched = sched;
119
120         GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_UNIT_FOREVER_REL, &cleanup, cls);
121
122         mycls->helper_in = GNUNET_DISK_pipe(1);
123         mycls->helper_out = GNUNET_DISK_pipe(1);
124
125         mycls->helper_pid = GNUNET_OS_start_process(mycls->helper_in, mycls->helper_out, "gnunet-vpn-helper", "gnunet-vpn-helper", NULL);
126
127         mycls->fh_from_helper = GNUNET_DISK_pipe_handle (mycls->helper_out, GNUNET_DISK_PIPE_END_READ);
128         
129         GNUNET_SCHEDULER_add_read_file (sched, GNUNET_TIME_UNIT_FOREVER_REL, mycls->fh_from_helper, &helper_read, mycls);
130 }
131
132
133 /**
134  * The main function to obtain template from gnunetd.
135  *
136  * @param argc number of arguments from the command line
137  * @param argv command line arguments
138  * @return 0 ok, 1 on error
139  */
140 int
141 main (int argc, char *const *argv)
142 {
143   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
144     GNUNET_GETOPT_OPTION_END
145   };
146
147   struct vpn_cls* cls = (struct vpn_cls*)malloc(sizeof(struct vpn_cls));
148
149   return (GNUNET_OK ==
150           GNUNET_PROGRAM_run (argc,
151                               argv,
152                               "gnunet-daemon-vpn",
153                               gettext_noop ("help text"),
154                               options, &run, cls)) ? ret : 1;
155 }
156
157 /* end of gnunet-daemon-vpn.c */