-GArik: fix typo
[oweals/gnunet.git] / src / util / helper.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011, 2012 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 util/helper.c
23  * @brief API for dealing with (SUID) helper processes that communicate via GNUNET_MessageHeaders on stdin/stdout
24  * @author Philipp Toelke
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29
30
31 /**
32  * Entry in the queue of messages we need to transmit to the helper.
33  */
34 struct HelperMessageQueueEntry
35 {
36
37   /**
38    * This is an entry in a DLL.
39    */
40   struct HelperMessageQueueEntry *next;
41
42   /**
43    * This is an entry in a DLL.
44    */
45   struct HelperMessageQueueEntry *prev;
46
47   /**
48    * Message to transmit (allocated at the end of this struct)
49    */
50   const struct GNUNET_MessageHeader *msg;
51   
52   /**
53    * Function to call upon completion.
54    */
55   GNUNET_HELPER_Continuation cont;
56
57   /**
58    * Closure to 'cont'.
59    */
60   void *cont_cls;
61
62   /**
63    * Current write position.
64    */
65   unsigned int wpos;
66
67 };
68
69
70 /**
71  * The handle to a helper process.
72  */
73 struct GNUNET_HELPER_Handle
74 {
75
76   /**
77    * PipeHandle to receive data from the helper
78    */
79   struct GNUNET_DISK_PipeHandle *helper_in;
80   
81   /**
82    * PipeHandle to send data to the helper
83    */
84   struct GNUNET_DISK_PipeHandle *helper_out;
85   
86   /**
87    * FileHandle to receive data from the helper
88    */
89   const struct GNUNET_DISK_FileHandle *fh_from_helper;
90   
91   /**
92    * FileHandle to send data to the helper
93    */
94   const struct GNUNET_DISK_FileHandle *fh_to_helper;
95   
96   /**
97    * The process id of the helper
98    */
99   struct GNUNET_OS_Process *helper_proc;
100
101   /**
102    * The Message-Tokenizer that tokenizes the messages comming from the helper
103    */
104   struct GNUNET_SERVER_MessageStreamTokenizer *mst;
105
106   /**
107    * First message queued for transmission to helper.
108    */
109   struct HelperMessageQueueEntry *mq_head;
110
111   /**
112    * Last message queued for transmission to helper.
113    */
114   struct HelperMessageQueueEntry *mq_tail;
115
116   /**
117    * Binary to run.
118    */
119   const char *binary_name;
120
121   /**
122    * NULL-terminated list of command-line arguments.
123    */
124   char *const *binary_argv;
125                     
126   /**
127    * Task to read from the helper.
128    */
129   GNUNET_SCHEDULER_TaskIdentifier read_task;
130
131   /**
132    * Task to read from the helper.
133    */
134   GNUNET_SCHEDULER_TaskIdentifier write_task;
135
136   /**
137    * Restart task.
138    */
139   GNUNET_SCHEDULER_TaskIdentifier restart_task;
140 };
141
142
143 /**
144  * Stop the helper process, we're closing down or had an error.
145  *
146  * @param h handle to the helper process
147  */
148 static void
149 stop_helper (struct GNUNET_HELPER_Handle *h)
150 {
151   struct HelperMessageQueueEntry *qe;
152
153   if (NULL != h->helper_proc)
154   {
155     GNUNET_break (0 == GNUNET_OS_process_kill (h->helper_proc, SIGTERM));
156     GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (h->helper_proc));
157     GNUNET_OS_process_close (h->helper_proc);
158     h->helper_proc = NULL;
159   }
160   if (GNUNET_SCHEDULER_NO_TASK != h->restart_task)
161   {
162     GNUNET_SCHEDULER_cancel (h->restart_task);
163     h->restart_task = GNUNET_SCHEDULER_NO_TASK;
164   }
165   if (GNUNET_SCHEDULER_NO_TASK != h->read_task)
166   {
167     GNUNET_SCHEDULER_cancel (h->read_task);
168     h->read_task = GNUNET_SCHEDULER_NO_TASK;
169   }
170   if (GNUNET_SCHEDULER_NO_TASK != h->write_task)
171   {
172     GNUNET_SCHEDULER_cancel (h->write_task);
173     h->write_task = GNUNET_SCHEDULER_NO_TASK;
174   }
175   if (NULL != h->helper_in)
176   {
177     GNUNET_DISK_pipe_close (h->helper_in);
178     h->helper_in = NULL;
179     h->fh_to_helper = NULL;
180   }
181   if (NULL != h->helper_out)
182   {
183     GNUNET_DISK_pipe_close (h->helper_out);
184     h->helper_out = NULL;
185     h->fh_from_helper = NULL;
186   }
187   while (NULL != (qe = h->mq_head))
188   {
189     GNUNET_CONTAINER_DLL_remove (h->mq_head,
190                                  h->mq_tail,
191                                  qe);
192     if (NULL != qe->cont)
193       qe->cont (qe->cont_cls, GNUNET_NO);
194     GNUNET_free (qe);
195   }
196   /* purge MST buffer */
197   (void) GNUNET_SERVER_mst_receive (h->mst, NULL, NULL, 0, GNUNET_YES, GNUNET_NO);
198 }
199
200
201 /**
202  * Restart the helper process.
203  *
204  * @param cls handle to the helper process
205  * @param tc scheduler context
206  */
207 static void
208 restart_task (void *cls,
209               const struct GNUNET_SCHEDULER_TaskContext *tc);
210
211
212 /**
213  * Read from the helper-process
214  *
215  * @param cls handle to the helper process
216  * @param tc scheduler context
217  */
218 static void
219 helper_read (void *cls,
220              const struct GNUNET_SCHEDULER_TaskContext *tc)
221 {
222   struct GNUNET_HELPER_Handle *h = cls;
223   char buf[GNUNET_SERVER_MAX_MESSAGE_SIZE];
224   ssize_t t;
225
226   h->read_task = GNUNET_SCHEDULER_NO_TASK;
227   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
228   {
229     /* try again */
230     h->read_task = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
231                                                    h->fh_from_helper, &helper_read, h);
232     return;
233   }
234   t = GNUNET_DISK_file_read (h->fh_from_helper, &buf, sizeof (buf));
235   if (t < 0)
236   {
237     /* On read-error, restart the helper */
238     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
239                 _("Error reading from `%s': %s\n"),
240                 h->binary_name,
241                 STRERROR (errno));
242     stop_helper (h);
243     /* Restart the helper */
244     h->restart_task =
245       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
246                                     &restart_task, h);
247     return;
248   }
249   if (0 == t)
250   {
251     /* this happens if the helper is shut down via a 
252        signal, so it is not a "hard" error */
253     GNUNET_log (GNUNET_ERROR_TYPE_INFO, 
254                 _("Got 0 bytes from helper `%s' (EOF)\n"),
255                 h->binary_name);
256     stop_helper (h);
257     /* Restart the helper */
258     h->restart_task =
259       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
260                                     &restart_task, h);
261     return;
262   }
263   GNUNET_log (GNUNET_ERROR_TYPE_INFO, 
264               _("Got %u bytes from helper `%s'\n"),
265               (unsigned int) t,
266               h->binary_name);
267   h->read_task = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
268                                                  h->fh_from_helper, &helper_read, h);
269   if (GNUNET_SYSERR ==
270       GNUNET_SERVER_mst_receive (h->mst, NULL, buf, t, GNUNET_NO, GNUNET_NO))
271   {
272     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, 
273                 _("Failed to parse inbound message from helper `%s'\n"),
274                 h->binary_name);
275     stop_helper (h);
276     /* Restart the helper */
277     h->restart_task =
278         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
279                                       &restart_task, h);
280     return;
281   }
282 }
283
284
285 /**
286  * Start the helper process.
287  *
288  * @param h handle to the helper process
289  */
290 static void
291 start_helper (struct GNUNET_HELPER_Handle *h)
292 {
293   h->helper_in = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_YES, GNUNET_NO);
294   h->helper_out = GNUNET_DISK_pipe (GNUNET_YES, GNUNET_YES, GNUNET_NO, GNUNET_YES);
295   if ( (h->helper_in == NULL) || (h->helper_out == NULL))
296   {
297     /* out of file descriptors? try again later... */
298     stop_helper (h);
299     h->restart_task =
300       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
301                                     &restart_task, h);    
302     return;
303   }
304   h->fh_from_helper =
305       GNUNET_DISK_pipe_handle (h->helper_out, GNUNET_DISK_PIPE_END_READ);
306   h->fh_to_helper =
307       GNUNET_DISK_pipe_handle (h->helper_in, GNUNET_DISK_PIPE_END_WRITE);
308   h->helper_proc =
309       GNUNET_OS_start_process_vap (h->helper_in, h->helper_out,
310                                    h->binary_name,
311                                    h->binary_argv);
312   if (NULL == h->helper_proc)
313   {
314     /* failed to start process? try again later... */
315     stop_helper (h);
316     h->restart_task =
317       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
318                                     &restart_task, h);    
319     return;
320   }
321   GNUNET_DISK_pipe_close_end (h->helper_out, GNUNET_DISK_PIPE_END_WRITE);
322   GNUNET_DISK_pipe_close_end (h->helper_in, GNUNET_DISK_PIPE_END_READ);
323   h->read_task = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
324                                                  h->fh_from_helper, 
325                                                  &helper_read, 
326                                                  h);
327 }
328
329
330 /**
331  * Restart the helper process.
332  *
333  * @param cls handle to the helper process
334  * @param tc scheduler context
335  */
336 static void
337 restart_task (void *cls,
338               const struct GNUNET_SCHEDULER_TaskContext *tc)
339 {
340   struct GNUNET_HELPER_Handle*h = cls;
341
342   h->restart_task = GNUNET_SCHEDULER_NO_TASK;
343   start_helper (h);
344 }
345
346
347 /**
348  * @brief Starts a helper and begins reading from it
349  *
350  * @param binary_name name of the binary to run
351  * @param binary_argv NULL-terminated list of arguments to give when starting the binary (this
352  *                    argument must not be modified by the client for
353  *                     the lifetime of the helper h)
354  * @param cb function to call if we get messages from the helper
355  * @param cb_cls Closure for the callback
356  * @return the new H, NULL on error
357  */
358 struct GNUNET_HELPER_Handle*
359 GNUNET_HELPER_start (const char *binary_name,
360                      char *const binary_argv[],
361                      GNUNET_SERVER_MessageTokenizerCallback cb, void *cb_cls)
362 {
363   struct GNUNET_HELPER_Handle*h;
364
365   h =  GNUNET_malloc (sizeof (struct GNUNET_HELPER_Handle));
366   h->binary_name = binary_name;
367   h->binary_argv = binary_argv;
368   h->mst = GNUNET_SERVER_mst_create (cb, cb_cls);
369   start_helper (h);
370   return h;
371 }
372
373
374 /**
375  * @brief Kills the helper, closes the pipe and frees the h
376  *
377  * @param h h to helper to stop
378  */
379 void
380 GNUNET_HELPER_stop (struct GNUNET_HELPER_Handle *h)
381 {
382   struct HelperMessageQueueEntry *qe;
383
384   /* signal pending writes that we were stopped */
385   while (NULL != (qe = h->mq_head))
386   {
387     GNUNET_CONTAINER_DLL_remove (h->mq_head,
388                                  h->mq_tail,
389                                  qe);
390     if (NULL != qe->cont)
391       qe->cont (qe->cont_cls, GNUNET_SYSERR);
392     GNUNET_free (qe);
393   }
394   stop_helper (h);
395   GNUNET_SERVER_mst_destroy (h->mst);
396   GNUNET_free (h);
397 }
398
399
400 /**
401  * Write to the helper-process
402  *
403  * @param cls handle to the helper process
404  * @param tc scheduler context
405  */
406 static void
407 helper_write (void *cls,
408              const struct GNUNET_SCHEDULER_TaskContext *tc)
409 {
410   struct GNUNET_HELPER_Handle *h = cls;
411   struct HelperMessageQueueEntry *qe;
412   const char *buf;
413   ssize_t t;
414
415   h->write_task = GNUNET_SCHEDULER_NO_TASK;
416   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
417   {
418     /* try again */
419     h->write_task = GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
420                                                     h->fh_to_helper, &helper_write, h);
421     return;
422   }  
423   if (NULL == (qe = h->mq_head))
424     return; /* how did this happen? */
425   buf = (const char*) qe->msg;
426   t = GNUNET_DISK_file_write (h->fh_to_helper, &buf[qe->wpos], ntohs (qe->msg->size) - qe->wpos);
427   if (t <= 0)
428   {
429     /* On write-error, restart the helper */
430     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
431                 _("Error writing to `%s': %s\n"),
432                 h->binary_name,
433                 STRERROR (errno));
434     stop_helper (h);
435     /* Restart the helper */
436     h->restart_task =
437       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
438                                     &restart_task, h);
439     return;
440   }
441   qe->wpos += t;
442   if (qe->wpos == ntohs (qe->msg->size))
443   {
444     GNUNET_CONTAINER_DLL_remove (h->mq_head,
445                                  h->mq_tail,
446                                  qe);
447     if (NULL != qe->cont)
448       qe->cont (qe->cont_cls, GNUNET_YES);
449     GNUNET_free (qe);
450   }
451   if (NULL != h->mq_head)
452     h->write_task = GNUNET_SCHEDULER_add_write_file (GNUNET_TIME_UNIT_FOREVER_REL,
453                                                      h->fh_to_helper, 
454                                                      &helper_write, 
455                                                      h);
456 }
457
458
459 /**
460  * Send an message to the helper.
461  *
462  * @param h helper to send message to
463  * @param msg message to send
464  * @param can_drop can the message be dropped if there is already one in the queue?
465  * @param cont continuation to run once the message is out (PREREQ_DONE on succees, CANCEL
466  *             if the helper process died, NULL during GNUNET_HELPER_stop).
467  * @param cont_cls closure for 'cont'
468  * @return GNUNET_YES if the message will be sent
469  *         GNUNET_NO if the message was dropped
470  */
471 int
472 GNUNET_HELPER_send (struct GNUNET_HELPER_Handle *h, 
473                     const struct GNUNET_MessageHeader *msg,
474                     int can_drop,
475                     GNUNET_HELPER_Continuation cont,
476                     void *cont_cls)
477 {
478   struct HelperMessageQueueEntry *qe;
479   uint16_t mlen;
480
481   if (NULL == h->fh_to_helper)
482     return GNUNET_NO;
483   if ( (GNUNET_YES == can_drop) &&
484        (h->mq_head != NULL) )
485     return GNUNET_NO;
486   mlen = ntohs (msg->size);
487   qe = GNUNET_malloc (sizeof (struct HelperMessageQueueEntry) + mlen);
488   qe->msg = (const struct GNUNET_MessageHeader*) &qe[1];
489   memcpy (&qe[1], msg, mlen);
490   qe->cont = cont;
491   qe->cont_cls = cont_cls;
492   GNUNET_CONTAINER_DLL_insert_tail (h->mq_head,
493                                     h->mq_tail,
494                                     qe);
495   if (GNUNET_SCHEDULER_NO_TASK == h->write_task)
496     h->write_task = GNUNET_SCHEDULER_add_write_file (GNUNET_TIME_UNIT_FOREVER_REL,
497                                                      h->fh_to_helper, 
498                                                      &helper_write, 
499                                                      h);
500     
501   return GNUNET_YES;
502 }
503
504
505 /* end of helper.c */