9d82fccf3827750e370b01fcc70bae57f33536fa
[oweals/gnunet.git] / src / transport / gnunet-helper-transport-wlan-dummy.c
1 /*
2  This file is part of GNUnet.
3  (C) 2010, 2012 Christian Grothoff (and other contributing authors)
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  * @file transport/gnunet-helper-transport-wlan-dummy.c
22  * @brief helper for the testcases for plugin_transport_wlan.c
23  * @author David Brodski
24  */
25 #include "platform.h"
26 #include "gnunet_protocols.h"
27 #include "gnunet_util_lib.h"
28 #include "plugin_transport_wlan.h"
29
30 /**
31  * Name of the fifo to use for IPC with the other dummy process.
32  */
33 #define FIFO_FILE1 "/tmp/test-transport/api-wlan-p1/WLAN_FIFO_in"
34
35 /**
36  * Name of the fifo to use for IPC with the other dummy process.
37  */
38 #define FIFO_FILE2 "/tmp/test-transport/api-wlan-p1/WLAN_FIFO_out"
39
40 /**
41  * Maximum size of a message allowed in either direction
42  * (used for our receive and sent buffers).
43  */
44 #define MAXLINE 4096
45
46
47 /**
48  * IO buffer used for buffering data in transit.
49  */
50 struct SendBuffer
51 {
52
53   /**
54    * How many bytes that were stored in 'buf' did we already write to the
55    * destination?  Always smaller than 'size'.
56    */
57   size_t pos;
58
59   /**
60    * How many bytes of data are stored in 'buf' for transmission right now?
61    * Data always starts at offset 0 and extends to 'size'.
62    */
63   size_t size;
64
65   /**
66    * Buffered data; twice the maximum allowed message size as we add some
67    * headers.
68    */
69   char buf[MAXLINE * 2];
70 };
71
72
73 /**
74  * Flag set to 1 if we are to terminate, otherwise 0.
75  */
76 static int closeprog;
77
78
79 /**
80  * We're being killed, clean up.
81  *
82  * @param sig killing signal
83  */
84 static void
85 sigfunc (int sig)
86 {
87   closeprog = 1;
88   (void) unlink (FIFO_FILE1);
89   (void) unlink (FIFO_FILE2);
90 }
91
92
93 /**
94  * Create control message for plugin
95  *
96  * @param buffer pointer to buffer for the message
97  * @param mac pointer to the mac address
98  * @return number of bytes written
99  */
100 static int
101 send_mac_to_plugin (char *buffer, struct GNUNET_TRANSPORT_WLAN_MacAddress *mac)
102 {
103
104   struct GNUNET_TRANSPORT_WLAN_HelperControlMessage macmsg;
105
106   memcpy (&macmsg.mac, (char *) mac, sizeof (struct GNUNET_TRANSPORT_WLAN_MacAddress));
107   macmsg.hdr.size = htons (sizeof (struct GNUNET_TRANSPORT_WLAN_HelperControlMessage));
108   macmsg.hdr.type = htons (GNUNET_MESSAGE_TYPE_WLAN_HELPER_CONTROL);
109   memcpy (buffer, &macmsg, sizeof (struct GNUNET_TRANSPORT_WLAN_HelperControlMessage));
110   return sizeof (struct GNUNET_TRANSPORT_WLAN_HelperControlMessage);
111 }
112
113
114 /**
115  * We got a message from the FIFO, check it, convert the message
116  * type to the output forward and copy it to the buffer for stdout.
117  *
118  * @param cls the 'struct SendBuffer' to copy the converted message to
119  * @param client unused
120  * @param hdr inbound message from the FIFO
121  */
122 static void
123 stdin_send (void *cls, void *client, const struct GNUNET_MessageHeader *hdr)
124 {
125   struct SendBuffer *write_pout = cls;
126   const struct GNUNET_TRANSPORT_WLAN_RadiotapSendMessage *in;
127   size_t payload_size;
128   struct GNUNET_TRANSPORT_WLAN_RadiotapReceiveMessage newheader;
129   uint16_t sendsize;
130
131   sendsize = ntohs (hdr->size);
132   in = (const struct GNUNET_TRANSPORT_WLAN_RadiotapSendMessage *) hdr;
133   if ( (GNUNET_MESSAGE_TYPE_WLAN_DATA_TO_HELPER != ntohs (hdr->type)) ||
134        (sizeof (struct GNUNET_TRANSPORT_WLAN_RadiotapSendMessage) > sendsize) )
135   {
136     FPRINTF (stderr, "%s", "Received malformed message\n");
137     exit (1);
138   }
139   payload_size = sendsize - sizeof (struct GNUNET_TRANSPORT_WLAN_RadiotapSendMessage);
140   if ((payload_size + sizeof (struct GNUNET_TRANSPORT_WLAN_RadiotapReceiveMessage) + write_pout->size) > MAXLINE * 2)
141   {
142     FPRINTF (stderr, "%s",  "Packet too big for buffer\n");
143     exit (1);
144   }
145   memset (&newheader, 0, sizeof (newheader));
146   newheader.header.size = htons (payload_size + sizeof (newheader));
147   newheader.header.type = htons (GNUNET_MESSAGE_TYPE_WLAN_DATA_FROM_HELPER);
148   newheader.frame = in->frame;
149   memcpy (write_pout->buf + write_pout->size,
150           &newheader,
151           sizeof (newheader));
152   write_pout->size += sizeof (newheader);
153   memcpy (write_pout->buf + write_pout->size,
154           &in[1],
155           payload_size);
156   write_pout->size += payload_size;
157 }
158
159
160 /**
161  * We read a full message from stdin.  Copy it to our send buffer.
162  *
163  * @param cls the 'struct SendBuffer' to copy to
164  * @param client unused
165  * @param hdr the message we received to copy to the buffer
166  */
167 static void
168 file_in_send (void *cls, void *client, const struct GNUNET_MessageHeader *hdr)
169 {
170   struct SendBuffer *write_std = cls;
171   uint16_t sendsize;
172
173   sendsize = ntohs (hdr->size);
174   if ((sendsize + write_std->size) > MAXLINE * 2)
175   {
176     FPRINTF (stderr, "%s", "Packet too big for buffer\n");
177     exit (1);
178   }
179   memcpy (write_std->buf + write_std->size, hdr, sendsize);
180   write_std->size += sendsize;
181 }
182
183
184 /**
185  * Main function of a program that pretends to be a WLAN card.
186  *
187  * @param argc should be 2
188  * @param argv either '1' or '2', depending on which of the two cards this dummy is to emulate
189  * @return 1 on error, 0 if terminated normally via signal
190  */
191 int
192 main (int argc, char *argv[])
193 {
194   struct stat st;
195   int erg;
196   FILE *fpin = NULL;
197   FILE *fpout = NULL;
198   int fdpin;
199   int fdpout;
200   char readbuf[MAXLINE];
201   int readsize;
202   struct SendBuffer write_std;
203   struct SendBuffer write_pout;
204   int ret;
205   int maxfd;
206   fd_set rfds;
207   fd_set wfds;
208   struct timeval tv;
209   int retval;
210   struct GNUNET_SERVER_MessageStreamTokenizer *stdin_mst = NULL;
211   struct GNUNET_SERVER_MessageStreamTokenizer *file_in_mst = NULL;
212   struct GNUNET_TRANSPORT_WLAN_MacAddress macaddr;
213   int first;
214
215   if ( (2 != argc) ||
216        ((0 != strcmp (argv[1], "1")) && (0 != strcmp (argv[1], "2"))) )
217   {
218     FPRINTF (stderr,
219              "%s",
220              "This program must be started with the operating mode (1 or 2) as the only argument.\n");
221     return 1;
222   }
223
224   /* make the fifos if needed */
225   umask (0);
226   if ( (GNUNET_OK != GNUNET_DISK_directory_create_for_file (FIFO_FILE1)) ||
227        (GNUNET_OK != GNUNET_DISK_directory_create_for_file (FIFO_FILE2)) )
228   {
229     FPRINTF (stderr, "Failed to create directory for file `%s'\n", FIFO_FILE1);
230     return 1;
231   }
232   if (0 == strcmp (argv[1], "1") )
233   {
234     if (0 != stat (FIFO_FILE1, &st))
235     {
236       erg = mkfifo (FIFO_FILE1, 0666);
237       if ( (0 != erg) && (EEXIST != errno) )
238         FPRINTF (stderr, "Error in mkfifo(%s): %s\n", FIFO_FILE1,
239                  strerror (errno));    
240     }
241   }
242   else
243   {
244     if (0 != stat (FIFO_FILE2, &st))
245     {
246       erg = mkfifo (FIFO_FILE2, 0666);
247       if ( (0 != erg) && (EEXIST != errno) )
248         FPRINTF (stderr, "Error in mkfifo(%s): %s\n", FIFO_FILE2,
249                  strerror (errno));
250     }
251   }
252
253   if (0 == strcmp (argv[1], "1"))
254   {
255     first = 1;
256     fpin = fopen (FIFO_FILE1, "r");
257     if (NULL == fpin)
258     {
259       FPRINTF (stderr, "fopen of read FIFO_FILE1 failed: %s\n", STRERROR (errno));
260       goto end;
261     }
262     if (NULL == (fpout = fopen (FIFO_FILE2, "w")))
263     {
264       erg = mkfifo (FIFO_FILE2, 0666);
265       fpout = fopen (FIFO_FILE2, "w");
266     }
267     if (NULL == fpout)
268     {
269       FPRINTF (stderr, "fopen of write FIFO_FILE2 failed: %s\n", STRERROR (errno));
270       goto end;
271     }
272   }
273   else
274   {
275     first = 0;
276     if (NULL == (fpout = fopen (FIFO_FILE1, "w")))
277     {
278       erg = mkfifo (FIFO_FILE1, 0666);
279       fpout = fopen (FIFO_FILE1, "w");
280     }
281     if (NULL == fpout)
282     {
283       FPRINTF (stderr, "fopen of write FIFO_FILE1 failed: %s\n", STRERROR (errno));
284       goto end;
285     }
286     fpin = fopen (FIFO_FILE2, "r");
287     if (NULL == fpin)
288     {
289       FPRINTF (stderr, "fopen of read FIFO_FILE2 failed: %s\n", STRERROR (errno));
290       goto end;
291     }
292   }
293
294   fdpin = fileno (fpin);
295   GNUNET_assert (fpin >= 0);
296   if (fdpin >= FD_SETSIZE)
297   {
298     FPRINTF (stderr, "File fdpin number too large (%d > %u)\n", fdpin,
299              (unsigned int) FD_SETSIZE);
300     goto end;
301   }
302
303   fdpout = fileno (fpout);
304   GNUNET_assert (fdpout >= 0);
305
306   if (fdpout >= FD_SETSIZE)
307   {
308     FPRINTF (stderr, "File fdpout number too large (%d > %u)\n", fdpout,
309              (unsigned int) FD_SETSIZE);
310     goto end;
311   }
312
313   signal (SIGINT, &sigfunc);
314   signal (SIGTERM, &sigfunc);
315
316   write_std.size = 0;
317   write_std.pos = 0;
318   write_pout.size = 0;
319   write_pout.pos = 0;
320   stdin_mst = GNUNET_SERVER_mst_create (&stdin_send, &write_pout);
321   file_in_mst = GNUNET_SERVER_mst_create (&file_in_send, &write_std);
322
323   /* Send 'random' mac address */
324   macaddr.mac[0] = 0x13;
325   macaddr.mac[1] = 0x22;
326   macaddr.mac[2] = 0x33;
327   macaddr.mac[3] = 0x44;
328   macaddr.mac[4] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_STRONG, 256);
329   macaddr.mac[5] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE, 256);
330   write_std.size = send_mac_to_plugin (write_std.buf, &macaddr);
331
332   while (0 == closeprog)
333   {
334     maxfd = -1;
335     tv.tv_sec = 5;
336     tv.tv_usec = 0;
337
338     FD_ZERO (&rfds);
339     FD_ZERO (&wfds);
340     /* if output queue is empty, read */
341     if (0 == write_pout.size)
342     {
343       FD_SET (STDIN_FILENO, &rfds);
344       maxfd = MAX (STDIN_FILENO, maxfd);
345     }
346     if (0 == write_std.size)
347     {
348       FD_SET (fdpin, &rfds);
349       maxfd = MAX (fdpin, maxfd);
350     }
351
352     /* if there is something to write, try to write */
353     if (0 < write_std.size)
354     {
355       FD_SET (STDOUT_FILENO, &wfds);
356       maxfd = MAX (maxfd, STDOUT_FILENO);
357     }
358     if (0 < write_pout.size)
359     {
360       FD_SET (fdpout, &wfds);
361       maxfd = MAX (maxfd, fdpout);
362     }
363
364     retval = select (maxfd + 1, &rfds, &wfds, NULL, &tv);
365     if ((-1 == retval) && (EINTR == errno))
366       continue;
367     if (0 > retval)
368     {
369       FPRINTF (stderr, "select failed: %s\n", STRERROR (errno));
370       closeprog = 1;
371       break;
372     }
373
374     if (FD_ISSET (STDOUT_FILENO, &wfds))
375     {
376       ret =
377           write (STDOUT_FILENO, write_std.buf + write_std.pos,
378                  write_std.size - write_std.pos);
379       if (0 > ret)
380       {
381         closeprog = 1;
382         FPRINTF (stderr, "Write ERROR to STDOUT_FILENO: %s\n",
383                  STRERROR (errno));
384         break;
385       }
386       else
387       {
388         write_std.pos += ret;
389         /* check if finished writing */
390         if (write_std.pos == write_std.size)
391         {
392           write_std.pos = 0;
393           write_std.size = 0;
394         }
395       }
396     }
397
398     if (FD_ISSET (fdpout, &wfds))
399     {
400       ret =
401           write (fdpout, write_pout.buf + write_pout.pos,
402                  write_pout.size - write_pout.pos);
403
404       if (0 > ret)
405       {
406         closeprog = 1;
407         FPRINTF (stderr, "Write ERROR to fdpout failed: %s\n", STRERROR (errno));
408       }
409       else
410       {
411         write_pout.pos += ret;
412         /* check if finished writing */
413         if (write_pout.pos == write_pout.size)
414         {
415           write_pout.pos = 0;
416           write_pout.size = 0;
417         }
418       }
419     }
420
421     if (FD_ISSET (STDIN_FILENO, &rfds))
422     {
423       readsize = read (STDIN_FILENO, readbuf, sizeof (readbuf));
424
425       if (0 > readsize)
426       {
427         closeprog = 1;
428         FPRINTF (stderr, "Error reading from STDIN_FILENO: %s\n",
429                  STRERROR (errno));
430       }
431       else if (0 < readsize)
432       {
433         GNUNET_SERVER_mst_receive (stdin_mst, NULL, readbuf, readsize,
434                                    GNUNET_NO, GNUNET_NO);
435
436       }
437       else
438       {
439         /* eof */
440         closeprog = 1;
441       }
442     }
443
444     if (FD_ISSET (fdpin, &rfds))
445     {
446       readsize = read (fdpin, readbuf, sizeof (readbuf));
447       if (0 > readsize)
448       {
449         closeprog = 1;
450         FPRINTF (stderr, "Error reading from fdpin: %s\n", STRERROR (errno));
451         break;
452       }
453       else if (0 < readsize)
454       {
455         GNUNET_SERVER_mst_receive (file_in_mst, NULL, readbuf, readsize,
456                                    GNUNET_NO, GNUNET_NO);
457       }
458       else
459       {
460         /* eof */
461         closeprog = 1;
462       }
463     }
464   }
465
466 end:
467   /* clean up */
468   if (NULL != stdin_mst)
469     GNUNET_SERVER_mst_destroy (stdin_mst);
470   if (NULL != file_in_mst)
471     GNUNET_SERVER_mst_destroy (file_in_mst);
472
473   if (NULL != fpout)
474     fclose (fpout);
475   if (NULL != fpin)
476     fclose (fpin);
477   if (1 == first)
478   {
479     (void) unlink (FIFO_FILE1);
480     (void) unlink (FIFO_FILE2);
481   }
482   return 0;
483 }