-fix use of PREFIX with libexec
[oweals/gnunet.git] / src / arm / arm_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 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 /**
22  * @file arm/arm_api.c
23  * @brief API for accessing the ARM service
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_arm_service.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_protocols.h"
30 #include "arm.h"
31
32 #define LOG(kind,...) GNUNET_log_from (kind, "arm-api",__VA_ARGS__)
33
34 /**
35  * Handle for interacting with ARM.
36  */
37 struct GNUNET_ARM_Handle
38 {
39
40   /**
41    * Our connection to the ARM service.
42    */
43   struct GNUNET_CLIENT_Connection *client;
44
45   /**
46    * The configuration that we are using.
47    */
48   struct GNUNET_CONFIGURATION_Handle *cfg;
49
50 };
51
52 /**
53  * Context for handling the shutdown of a service.
54  */
55 struct ShutdownContext
56 {
57   /**
58    * Connection to the service that is being shutdown.
59    */
60   struct GNUNET_CLIENT_Connection *sock;
61
62   /**
63    * Time allowed for shutdown to happen.
64    */
65   struct GNUNET_TIME_Absolute timeout;
66
67   /**
68    * Task set up to cancel the shutdown request on timeout.
69    */
70   GNUNET_SCHEDULER_TaskIdentifier cancel_task;
71
72   /**
73    * Task to call once shutdown complete
74    */
75   GNUNET_CLIENT_ShutdownTask cont;
76
77   /**
78    * Closure for shutdown continuation
79    */
80   void *cont_cls;
81
82   /**
83    * Handle for transmission request.
84    */
85   struct GNUNET_CLIENT_TransmitHandle *th;
86
87 };
88
89
90 /**
91  * Handler receiving response to service shutdown requests.
92  * First call with NULL: service misbehaving, or something.
93  * First call with GNUNET_MESSAGE_TYPE_ARM_SHUTDOWN_ACK:
94  *   - service will shutdown
95  * Second call with NULL:
96  *   - service has now really shut down.
97  *
98  * @param cls closure
99  * @param msg NULL, indicating socket closure.
100  */
101 static void
102 service_shutdown_handler (void *cls, const struct GNUNET_MessageHeader *msg)
103 {
104   struct ShutdownContext *shutdown_ctx = cls;
105
106   if (NULL != msg)
107   {
108     /* We just expected a disconnect! Report the error and be done with it... */
109     GNUNET_break (0);
110     shutdown_ctx->cont (shutdown_ctx->cont_cls, GNUNET_ARM_PROCESS_COMMUNICATION_ERROR);
111     GNUNET_SCHEDULER_cancel (shutdown_ctx->cancel_task);
112     GNUNET_CLIENT_disconnect (shutdown_ctx->sock);
113     GNUNET_free (shutdown_ctx);
114     return;
115   }
116   if (NULL != shutdown_ctx->cont)
117     /* shutdown is now complete, as we waited for the network disconnect... */
118     shutdown_ctx->cont (shutdown_ctx->cont_cls, GNUNET_ARM_PROCESS_DOWN);    
119   GNUNET_SCHEDULER_cancel (shutdown_ctx->cancel_task);
120   GNUNET_CLIENT_disconnect (shutdown_ctx->sock);
121   GNUNET_free (shutdown_ctx);
122 }
123
124
125 /**
126  * Shutting down took too long, cancel receive and return error.
127  *
128  * @param cls closure
129  * @param tc context information (why was this task triggered now)
130  */
131 static void
132 service_shutdown_cancel (void *cls,
133                          const struct GNUNET_SCHEDULER_TaskContext *tc)
134 {
135   struct ShutdownContext *shutdown_ctx = cls;
136
137   shutdown_ctx->cont (shutdown_ctx->cont_cls, GNUNET_ARM_PROCESS_COMMUNICATION_TIMEOUT);
138   GNUNET_CLIENT_disconnect (shutdown_ctx->sock);
139   GNUNET_free (shutdown_ctx);
140 }
141
142
143 /**
144  * If possible, write a shutdown message to the target
145  * buffer and destroy the client connection.
146  *
147  * @param cls the "struct GNUNET_CLIENT_Connection" to destroy
148  * @param size number of bytes available in buf
149  * @param buf NULL on error, otherwise target buffer
150  * @return number of bytes written to buf
151  */
152 static size_t
153 write_shutdown (void *cls, size_t size, void *buf)
154 {
155   struct ShutdownContext *shutdown_ctx = cls;
156   struct GNUNET_MessageHeader *msg;
157
158   shutdown_ctx->th = NULL;
159   if (size < sizeof (struct GNUNET_MessageHeader))
160   {
161     LOG (GNUNET_ERROR_TYPE_WARNING,
162          _("Failed to transmit shutdown request to client.\n"));
163     shutdown_ctx->cont (shutdown_ctx->cont_cls, GNUNET_ARM_PROCESS_COMMUNICATION_ERROR);
164     GNUNET_CLIENT_disconnect (shutdown_ctx->sock);
165     GNUNET_free (shutdown_ctx);
166     return 0;                   /* client disconnected */
167   }
168   GNUNET_CLIENT_receive (shutdown_ctx->sock, &service_shutdown_handler,
169                          shutdown_ctx, GNUNET_TIME_UNIT_FOREVER_REL);
170   shutdown_ctx->cancel_task =
171     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
172                                   (shutdown_ctx->timeout),
173                                   &service_shutdown_cancel, shutdown_ctx);
174   msg = (struct GNUNET_MessageHeader *) buf;
175   msg->type = htons (GNUNET_MESSAGE_TYPE_ARM_SHUTDOWN);
176   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
177   return sizeof (struct GNUNET_MessageHeader);
178 }
179
180
181 /**
182  * Request that the service should shutdown.
183  * Afterwards, the connection will automatically be
184  * disconnected.  Hence the "sock" should not
185  * be used by the caller after this call
186  * (calling this function frees "sock" after a while).
187  *
188  * @param sock the socket connected to the service
189  * @param timeout how long to wait before giving up on transmission
190  * @param cont continuation to call once the service is really down
191  * @param cont_cls closure for continuation
192  *
193  */
194 static void
195 arm_service_shutdown (struct GNUNET_CLIENT_Connection *sock,
196                       struct GNUNET_TIME_Relative timeout,
197                       GNUNET_CLIENT_ShutdownTask cont, void *cont_cls)
198 {
199   struct ShutdownContext *shutdown_ctx;
200
201   shutdown_ctx = GNUNET_malloc (sizeof (struct ShutdownContext));
202   shutdown_ctx->cont = cont;
203   shutdown_ctx->cont_cls = cont_cls;
204   shutdown_ctx->sock = sock;
205   shutdown_ctx->timeout = GNUNET_TIME_relative_to_absolute (timeout);
206   shutdown_ctx->th = GNUNET_CLIENT_notify_transmit_ready (sock,
207                                                           sizeof (struct GNUNET_MessageHeader),
208                                                           timeout, GNUNET_NO, &write_shutdown,
209                                                           shutdown_ctx);
210 }
211
212
213 /**
214  * Setup a context for communicating with ARM.  Note that this
215  * can be done even if the ARM service is not yet running.
216  *
217  * @param cfg configuration to use (needed to contact ARM;
218  *        the ARM service may internally use a different
219  *        configuration to determine how to start the service).
220  * @param service service that *this* process is implementing/providing, can be NULL
221  * @return context to use for further ARM operations, NULL on error
222  */
223 struct GNUNET_ARM_Handle *
224 GNUNET_ARM_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
225                     const char *service)
226 {
227   struct GNUNET_ARM_Handle *ret;
228
229   ret = GNUNET_malloc (sizeof (struct GNUNET_ARM_Handle));
230   ret->cfg = GNUNET_CONFIGURATION_dup (cfg);
231   return ret;
232 }
233
234
235 /**
236  * Disconnect from the ARM service.
237  *
238  * @param h the handle that was being used
239  */
240 void
241 GNUNET_ARM_disconnect (struct GNUNET_ARM_Handle *h)
242 {
243   if (h->client != NULL)
244     GNUNET_CLIENT_disconnect (h->client);
245   GNUNET_CONFIGURATION_destroy (h->cfg);
246   GNUNET_free (h);
247 }
248
249
250 struct ARM_ShutdownContext
251 {
252   /**
253    * Callback to call once shutdown complete.
254    */
255   GNUNET_ARM_Callback cb;
256
257   /**
258    * Closure for callback.
259    */
260   void *cb_cls;
261 };
262
263
264 /**
265  * Internal state for a request with ARM.
266  */
267 struct RequestContext
268 {
269
270   /**
271    * Pointer to our handle with ARM.
272    */
273   struct GNUNET_ARM_Handle *h;
274
275   /**
276    * Function to call with a status code for the requested operation.
277    */
278   GNUNET_ARM_Callback callback;
279
280   /**
281    * Closure for "callback".
282    */
283   void *cls;
284
285   /**
286    * Timeout for the operation.
287    */
288   struct GNUNET_TIME_Absolute timeout;
289
290   /**
291    * Type of the request expressed as a message type (start or stop).
292    */
293   uint16_t type;
294
295   /**
296    * Flags for passing std descriptors to ARM (when starting ARM).
297    */
298   enum GNUNET_OS_InheritStdioFlags std_inheritance;
299
300 };
301
302 #include "do_start_process.c"
303
304
305 /**
306  * A client specifically requested starting of ARM itself.
307  * This function is called with information about whether
308  * or not ARM is running; if it is, report success.  If
309  * it is not, start the ARM process.
310  *
311  * @param cls the context for the request that we will report on (struct RequestContext*)
312  * @param tc why were we called (reason says if ARM is running)
313  */
314 static void
315 arm_service_report (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
316 {
317   struct RequestContext *pos = cls;
318   struct GNUNET_OS_Process *proc;
319   char *cbinary;
320   char *binary;
321   char *config;
322   char *loprefix;
323   char *lopostfix;
324
325   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE))
326   {
327     LOG (GNUNET_ERROR_TYPE_DEBUG, "Looks like `%s' is already running.\n",
328          "gnunet-service-arm");
329     /* arm is running! */
330     if (pos->callback != NULL)
331       pos->callback (pos->cls, GNUNET_ARM_PROCESS_ALREADY_RUNNING);
332     GNUNET_free (pos);
333     return;
334   }
335   LOG (GNUNET_ERROR_TYPE_DEBUG,
336        "Looks like `%s' is not running, will start it.\n",
337        "gnunet-service-arm");
338   if (GNUNET_OK !=
339       GNUNET_CONFIGURATION_get_value_string (pos->h->cfg, "arm", "PREFIX",
340                                              &loprefix))
341     loprefix = GNUNET_strdup ("");
342   if (GNUNET_OK !=
343       GNUNET_CONFIGURATION_get_value_string (pos->h->cfg, "arm", "OPTIONS",
344                                              &lopostfix))
345     lopostfix = GNUNET_strdup ("");
346   if (GNUNET_OK !=
347       GNUNET_CONFIGURATION_get_value_string (pos->h->cfg, "arm", "BINARY",
348                                              &cbinary))
349   {
350     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
351                                "arm", "BINARY");
352     if (pos->callback != NULL)
353       pos->callback (pos->cls, GNUNET_ARM_PROCESS_UNKNOWN);
354     GNUNET_free (pos);
355     GNUNET_free (loprefix);
356     GNUNET_free (lopostfix);
357     return;
358   }
359   if (GNUNET_OK !=
360       GNUNET_CONFIGURATION_get_value_filename (pos->h->cfg, "arm", "CONFIG",
361                                                &config))
362   {
363     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_WARNING,
364                                "arm", "CONFIG");
365     if (pos->callback != NULL)
366       pos->callback (pos->cls, GNUNET_ARM_PROCESS_UNKNOWN);
367     GNUNET_free (cbinary);
368     GNUNET_free (pos);
369     GNUNET_free (loprefix);
370     GNUNET_free (lopostfix);
371     return;
372   }
373   binary = GNUNET_OS_get_libexec_binary_path (cbinary);
374   GNUNET_free (cbinary);
375   if ((GNUNET_YES ==
376        GNUNET_CONFIGURATION_have_value (pos->h->cfg, "TESTING", "WEAKRANDOM"))
377       && (GNUNET_YES ==
378           GNUNET_CONFIGURATION_get_value_yesno (pos->h->cfg, "TESTING",
379                                                 "WEAKRANDOM"))
380       && (GNUNET_NO ==
381           GNUNET_CONFIGURATION_have_value (pos->h->cfg, "TESTING",
382                                            "HOSTFILE")))
383   {
384     /* Means we are ONLY running locally */
385     /* we're clearly running a test, don't daemonize */
386     proc = do_start_process (GNUNET_NO, pos->std_inheritance,
387                              NULL, loprefix, binary, "-c", config,
388                              /* no daemonization! */
389                              lopostfix, NULL);
390   }
391   else
392   {
393     proc = do_start_process (GNUNET_NO, pos->std_inheritance,
394                              NULL, loprefix, binary, "-c", config,
395                              "-d", lopostfix, NULL);
396   }
397   GNUNET_free (binary);
398   GNUNET_free (config);
399   GNUNET_free (loprefix);
400   GNUNET_free (lopostfix);
401   if (proc == NULL)
402     {
403       if (pos->callback != NULL)
404         pos->callback (pos->cls, GNUNET_ARM_PROCESS_FAILURE);
405       GNUNET_free (pos);
406       return;
407     }
408   if (pos->callback != NULL)
409     pos->callback (pos->cls, GNUNET_ARM_PROCESS_STARTING);
410   GNUNET_free (proc);
411   GNUNET_free (pos);
412 }
413
414
415 /**
416  * Process a response from ARM to a request for a change in service
417  * status.
418  *
419  * @param cls the request context
420  * @param msg the response
421  */
422 static void
423 handle_response (void *cls, const struct GNUNET_MessageHeader *msg)
424 {
425   struct RequestContext *sc = cls;
426   const struct GNUNET_ARM_ResultMessage *res;
427   enum GNUNET_ARM_ProcessStatus status;
428
429   if ((msg == NULL) ||
430       (ntohs (msg->size) != sizeof (struct GNUNET_ARM_ResultMessage)))
431   {
432     GNUNET_break (0);
433     GNUNET_CLIENT_disconnect (sc->h->client);
434     sc->h->client = GNUNET_CLIENT_connect ("arm", sc->h->cfg);
435     GNUNET_assert (NULL != sc->h->client);
436     if (sc->callback != NULL)
437       sc->callback (sc->cls, GNUNET_ARM_PROCESS_COMMUNICATION_ERROR);
438     GNUNET_free (sc);
439     return;
440   }
441   res = (const struct GNUNET_ARM_ResultMessage *) msg;
442   LOG (GNUNET_ERROR_TYPE_DEBUG,
443        "Received response from ARM for service `%s': %u\n",
444        (const char *) &sc[1], ntohs (msg->type));
445   status = (enum GNUNET_ARM_ProcessStatus) ntohl (res->status);
446   if (sc->callback != NULL)
447     sc->callback (sc->cls, status);
448   GNUNET_free (sc);
449 }
450
451
452 /**
453  * Start or stop a service.
454  *
455  * @param h handle to ARM
456  * @param service_name name of the service
457  * @param timeout how long to wait before failing for good
458  * @param cb callback to invoke when service is ready
459  * @param cb_cls closure for callback
460  * @param type type of the request
461  */
462 static void
463 change_service (struct GNUNET_ARM_Handle *h, const char *service_name,
464                 struct GNUNET_TIME_Relative timeout, GNUNET_ARM_Callback cb,
465                 void *cb_cls, uint16_t type)
466 {
467   struct RequestContext *sctx;
468   size_t slen;
469   struct GNUNET_MessageHeader *msg;
470
471   slen = strlen (service_name) + 1;
472   if (slen + sizeof (struct GNUNET_MessageHeader) >=
473       GNUNET_SERVER_MAX_MESSAGE_SIZE)
474   {
475     GNUNET_break (0);
476     if (cb != NULL)
477       cb (cb_cls, GNUNET_NO);
478     return;
479   }
480   LOG (GNUNET_ERROR_TYPE_DEBUG,
481        (type ==
482         GNUNET_MESSAGE_TYPE_ARM_START) ?
483        "Requesting start of service `%s'.\n" :
484        "Requesting termination of service `%s'.\n", service_name);
485   sctx = GNUNET_malloc (sizeof (struct RequestContext) + slen);
486   sctx->h = h;
487   sctx->callback = cb;
488   sctx->cls = cb_cls;
489   sctx->timeout = GNUNET_TIME_relative_to_absolute (timeout);
490   sctx->type = type;
491   memcpy (&sctx[1], service_name, slen);
492   msg = GNUNET_malloc (sizeof (struct GNUNET_MessageHeader) + slen);
493   msg->size = htons (sizeof (struct GNUNET_MessageHeader) + slen);
494   msg->type = htons (sctx->type);
495   memcpy (&msg[1], service_name, slen);
496   if (GNUNET_OK !=
497       GNUNET_CLIENT_transmit_and_get_response (sctx->h->client, msg,
498                                                GNUNET_TIME_absolute_get_remaining
499                                                (sctx->timeout), GNUNET_YES,
500                                                &handle_response, sctx))
501   {
502     GNUNET_break (0);
503     if (cb != NULL)
504       cb (cb_cls, GNUNET_SYSERR);
505     GNUNET_free (sctx);
506     GNUNET_free (msg);
507     return;
508   }
509   GNUNET_free (msg);
510 }
511
512
513 /**
514  * Start a service.
515  *
516  * @param h handle to ARM
517  * @param service_name name of the service
518  * @param std_inheritance inheritance of std streams
519  * @param timeout how long to wait before failing for good
520  * @param cb callback to invoke when service is ready
521  * @param cb_cls closure for callback
522  */
523 void
524 GNUNET_ARM_start_service (struct GNUNET_ARM_Handle *h,
525                           const char *service_name,
526                           enum GNUNET_OS_InheritStdioFlags std_inheritance,
527                           struct GNUNET_TIME_Relative timeout,
528                           GNUNET_ARM_Callback cb, void *cb_cls)
529 {
530   struct RequestContext *sctx;
531   struct GNUNET_CLIENT_Connection *client;
532   size_t slen;
533
534   LOG (GNUNET_ERROR_TYPE_DEBUG,
535        "Asked to start service `%s' within %s\n", service_name,
536        GNUNET_STRINGS_relative_time_to_string (timeout, GNUNET_NO));
537   if (0 == strcasecmp ("arm", service_name))
538   {
539     slen = strlen ("arm") + 1;
540     sctx = GNUNET_malloc (sizeof (struct RequestContext) + slen);
541     sctx->h = h;
542     sctx->callback = cb;
543     sctx->cls = cb_cls;
544     sctx->timeout = GNUNET_TIME_relative_to_absolute (timeout);
545     sctx->std_inheritance = std_inheritance;
546     memcpy (&sctx[1], service_name, slen);
547     GNUNET_CLIENT_service_test ("arm", h->cfg, timeout, &arm_service_report,
548                                 sctx);
549     return;
550   }
551   if (NULL == h->client)
552   {
553     client = GNUNET_CLIENT_connect ("arm", h->cfg);
554     if (client == NULL)
555     {
556       LOG (GNUNET_ERROR_TYPE_DEBUG,
557            "arm_api, GNUNET_CLIENT_connect returned NULL\n");
558       cb (cb_cls, GNUNET_ARM_PROCESS_COMMUNICATION_ERROR);
559       return;
560     }
561     LOG (GNUNET_ERROR_TYPE_DEBUG,
562          "arm_api, GNUNET_CLIENT_connect returned non-NULL\n");
563     h->client = client;
564   }
565   LOG (GNUNET_ERROR_TYPE_DEBUG, "arm_api, h->client non-NULL\n");
566   change_service (h, service_name, timeout, cb, cb_cls,
567                   GNUNET_MESSAGE_TYPE_ARM_START);
568 }
569
570
571 /**
572  * Callback from the arm stop service call, indicates that the arm service
573  * is well and truly dead, won't die, or an error occurred.
574  *
575  * @param cls closure for the callback
576  * @param reason reason for callback
577  */
578 static void
579 arm_shutdown_callback (void *cls, enum GNUNET_ARM_ProcessStatus reason)
580 {
581   struct ARM_ShutdownContext *arm_shutdown_ctx = cls;
582
583   if (arm_shutdown_ctx->cb != NULL)
584     arm_shutdown_ctx->cb (arm_shutdown_ctx->cb_cls, reason);
585   GNUNET_free (arm_shutdown_ctx);
586 }
587
588
589 /**
590  * Stop a service.
591  *
592  * @param h handle to ARM
593  * @param service_name name of the service
594  * @param timeout how long to wait before failing for good
595  * @param cb callback to invoke when service is ready
596  * @param cb_cls closure for callback
597  */
598 void
599 GNUNET_ARM_stop_service (struct GNUNET_ARM_Handle *h,
600                          const char *service_name,
601                          struct GNUNET_TIME_Relative timeout,
602                          GNUNET_ARM_Callback cb, void *cb_cls)
603 {
604   struct ARM_ShutdownContext *arm_shutdown_ctx;
605   struct GNUNET_CLIENT_Connection *client;
606
607   LOG (GNUNET_ERROR_TYPE_DEBUG, 
608        "Stopping service `%s' within %s\n",
609        service_name, 
610        GNUNET_STRINGS_relative_time_to_string (timeout, GNUNET_NO));
611   if (h->client == NULL)
612   {
613     client = GNUNET_CLIENT_connect ("arm", h->cfg);
614     if (client == NULL)
615     {
616       cb (cb_cls, GNUNET_SYSERR);
617       return;
618     }
619     h->client = client;
620   }
621   if (0 == strcasecmp ("arm", service_name))
622   {
623     arm_shutdown_ctx = GNUNET_malloc (sizeof (struct ARM_ShutdownContext));
624     arm_shutdown_ctx->cb = cb;
625     arm_shutdown_ctx->cb_cls = cb_cls;
626     arm_service_shutdown (h->client, timeout, &arm_shutdown_callback,
627                           arm_shutdown_ctx);
628     h->client = NULL;
629     return;
630   }
631   change_service (h, service_name, timeout, cb, cb_cls,
632                   GNUNET_MESSAGE_TYPE_ARM_STOP);
633 }
634
635
636 /**
637  * Internal state for a list request with ARM.
638  */
639 struct ListRequestContext
640 {
641
642   /**
643    * Pointer to our handle with ARM.
644    */
645   struct GNUNET_ARM_Handle *h;
646
647   /**
648    * Function to call with a status code for the requested operation.
649    */
650   GNUNET_ARM_List_Callback callback;
651
652   /**
653    * Closure for "callback".
654    */
655   void *cls;
656
657   /**
658    * Timeout for the operation.
659    */
660   struct GNUNET_TIME_Absolute timeout;
661 };
662
663
664 /**
665  * Process a response from ARM for the list request.
666  *
667  * @param cls the list request context
668  * @param msg the response
669  */
670 static void
671 handle_list_response (void *cls, const struct GNUNET_MessageHeader *msg)
672 {
673   struct ListRequestContext *sc = cls;
674   const struct GNUNET_ARM_ListResultMessage *res;
675   const char *pos;
676   uint16_t size_check;
677   uint16_t rcount;
678   uint16_t msize;
679   
680   if (NULL == msg)
681   {
682     GNUNET_break (0);
683     GNUNET_CLIENT_disconnect (sc->h->client);
684     sc->h->client = GNUNET_CLIENT_connect ("arm", sc->h->cfg);
685     GNUNET_assert (NULL != sc->h->client);
686     if (sc->callback != NULL)
687       sc->callback (sc->cls, GNUNET_ARM_PROCESS_COMMUNICATION_ERROR, 0, NULL);
688     GNUNET_free (sc);
689     return;
690   }
691    
692   if (NULL == sc->callback) 
693   {
694     GNUNET_break (0);
695     GNUNET_free (sc);
696     return;
697   }  
698   msize = ntohs (msg->size);
699   if ( (msize < sizeof ( struct GNUNET_ARM_ListResultMessage)) ||
700        (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_ARM_LIST_RESULT) )
701   {
702     GNUNET_break (0);
703     sc->callback (sc->cls, GNUNET_NO, 0, NULL);
704     GNUNET_free (sc);
705     return;
706   }
707   size_check = 0;
708   res = (const struct GNUNET_ARM_ListResultMessage *) msg;
709   rcount = ntohs (res->count);
710   {
711     const char *list[rcount];
712     unsigned int i;
713     
714     pos = (const char *)&res[1];   
715     for (i=0; i<rcount; i++)
716     {
717       const char *end = memchr (pos, 0, msize - size_check);
718       if (NULL == end)
719       {
720         GNUNET_break (0);
721         sc->callback (sc->cls, GNUNET_NO, 0, NULL);
722         GNUNET_free (sc);
723         return;
724       }
725       list[i] = pos;
726       size_check += (end - pos) + 1;
727       pos = end + 1;
728     }
729     sc->callback (sc->cls, GNUNET_YES, rcount, list);
730   }
731   GNUNET_free (sc);
732 }
733
734
735 /**
736  * List all running services.
737  * 
738  * @param h handle to ARM
739  * @param timeout how long to wait before failing for good
740  * @param cb callback to invoke when service is ready
741  * @param cb_cls closure for callback
742  */
743 void
744 GNUNET_ARM_list_running_services (struct GNUNET_ARM_Handle *h,
745                                   struct GNUNET_TIME_Relative timeout,
746                                   GNUNET_ARM_List_Callback cb, void *cb_cls)
747 {
748   struct ListRequestContext *sctx;
749   struct GNUNET_MessageHeader msg;
750   struct GNUNET_CLIENT_Connection *client;
751   
752   if (h->client == NULL)
753   {
754     client = GNUNET_CLIENT_connect ("arm", h->cfg);
755     if (client == NULL)
756     {
757       GNUNET_break (0);
758       cb (cb_cls, GNUNET_ARM_PROCESS_COMMUNICATION_ERROR, 0, NULL);
759       return;
760     }
761     h->client = client;
762   }
763   
764   sctx = GNUNET_malloc (sizeof (struct RequestContext));
765   sctx->h = h;
766   sctx->callback = cb;
767   sctx->cls = cb_cls;
768   sctx->timeout = GNUNET_TIME_relative_to_absolute (timeout);
769   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
770   msg.type = htons (GNUNET_MESSAGE_TYPE_ARM_LIST);
771   
772   LOG (GNUNET_ERROR_TYPE_DEBUG, 
773        "Requesting LIST from ARM service with timeout: %s\n", 
774        GNUNET_STRINGS_relative_time_to_string (timeout, GNUNET_YES));
775   
776   if (GNUNET_OK !=
777       GNUNET_CLIENT_transmit_and_get_response (sctx->h->client, 
778                                                &msg,
779                                                GNUNET_TIME_absolute_get_remaining
780                                                (sctx->timeout), 
781                                                GNUNET_YES,
782                                                &handle_list_response, 
783                                                sctx))
784   {
785     GNUNET_break (0);
786     if (cb != NULL)
787       cb (cb_cls, GNUNET_SYSERR, 0, NULL);
788     GNUNET_free (sctx);
789     return;
790   }
791 }
792
793 /* end of arm_api.c */