d9be7f46ed42d030f8845fd5e009a131f2c4ce9f
[oweals/gnunet.git] / src / util / client.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2006, 2008, 2009, 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 2, 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/client.c
23  * @brief code for access to services
24  * @author Christian Grothoff
25  *
26  * Generic TCP code for reliable, record-oriented TCP
27  * connections between clients and service providers.
28  */
29 #include "platform.h"
30 #include "gnunet_common.h"
31 #include "gnunet_client_lib.h"
32 #include "gnunet_protocols.h"
33 #include "gnunet_server_lib.h"
34 #include "gnunet_scheduler_lib.h"
35
36
37 /**
38  * How often do we re-try tranmsitting requests before giving up?
39  * Note that if we succeeded transmitting a request but failed to read
40  * a response, we do NOT re-try.
41  */
42 #define MAX_ATTEMPTS 50
43
44 #define LOG(kind,...) GNUNET_log_from (kind, "util",__VA_ARGS__)
45
46 /**
47  * Handle for a transmission request.
48  */
49 struct GNUNET_CLIENT_TransmitHandle
50 {
51   /**
52    * Connection state.
53    */
54   struct GNUNET_CLIENT_Connection *client;
55
56   /**
57    * Function to call to get the data for transmission.
58    */
59   GNUNET_CONNECTION_TransmitReadyNotify notify;
60
61   /**
62    * Closure for notify.
63    */
64   void *notify_cls;
65
66   /**
67    * Handle to the transmission with the underlying
68    * connection.
69    */
70   struct GNUNET_CONNECTION_TransmitHandle *th;
71
72   /**
73    * If we are re-trying and are delaying to do so,
74    * handle to the scheduled task managing the delay.
75    */
76   GNUNET_SCHEDULER_TaskIdentifier reconnect_task;
77
78   /**
79    * Timeout for the operation overall.
80    */
81   struct GNUNET_TIME_Absolute timeout;
82
83   /**
84    * Number of bytes requested.
85    */
86   size_t size;
87
88   /**
89    * Are we allowed to re-try to connect without telling
90    * the user (of this API) about the connection troubles?
91    */
92   int auto_retry;
93
94   /**
95    * Number of attempts left for transmitting the request.  We may
96    * fail the first time (say because the service is not yet up), in
97    * which case (if auto_retry is set) we wait a bit and re-try
98    * (timeout permitting).
99    */
100   unsigned int attempts_left;
101
102 };
103
104
105 /**
106  * Context for processing
107  * "GNUNET_CLIENT_transmit_and_get_response" requests.
108  */
109 struct TransmitGetResponseContext
110 {
111   /**
112    * Client handle.
113    */
114   struct GNUNET_CLIENT_Connection *client;
115
116   /**
117    * Message to transmit; do not free, allocated
118    * right after this struct.
119    */
120   const struct GNUNET_MessageHeader *hdr;
121
122   /**
123    * Timeout to use.
124    */
125   struct GNUNET_TIME_Absolute timeout;
126
127   /**
128    * Function to call when done.
129    */
130   GNUNET_CLIENT_MessageHandler rn;
131
132   /**
133    * Closure for "rn".
134    */
135   void *rn_cls;
136 };
137
138 /**
139  * Struct to refer to a GNUnet TCP connection.
140  * This is more than just a socket because if the server
141  * drops the connection, the client automatically tries
142  * to reconnect (and for that needs connection information).
143  */
144 struct GNUNET_CLIENT_Connection
145 {
146
147   /**
148    * The connection handle, NULL if not live
149    */
150   struct GNUNET_CONNECTION_Handle *connection;
151
152   /**
153    * Our configuration.
154    */
155   const struct GNUNET_CONFIGURATION_Handle *cfg;
156
157   /**
158    * Name of the service we interact with.
159    */
160   char *service_name;
161
162   /**
163    * Context of a transmit_and_get_response operation, NULL
164    * if no such operation is pending.
165    */
166   struct TransmitGetResponseContext *tag;
167
168   /**
169    * Handler for current receiver task.
170    */
171   GNUNET_CLIENT_MessageHandler receiver_handler;
172
173   /**
174    * Closure for receiver_handler.
175    */
176   void *receiver_handler_cls;
177
178   /**
179    * Handle for a pending transmission request, NULL if there is
180    * none pending.
181    */
182   struct GNUNET_CLIENT_TransmitHandle *th;
183
184   /**
185    * Handler for service test completion (NULL unless in service_test)
186    */
187   GNUNET_SCHEDULER_Task test_cb;
188
189   /**
190    * Deadline for calling 'test_cb'.
191    */
192   struct GNUNET_TIME_Absolute test_deadline;
193
194   /**
195    * If we are re-trying and are delaying to do so,
196    * handle to the scheduled task managing the delay.
197    */
198   GNUNET_SCHEDULER_TaskIdentifier receive_task;
199
200   /**
201    * Closure for test_cb (NULL unless in service_test)
202    */
203   void *test_cb_cls;
204
205   /**
206    * Buffer for received message.
207    */
208   char *received_buf;
209
210   /**
211    * Timeout for receiving a response (absolute time).
212    */
213   struct GNUNET_TIME_Absolute receive_timeout;
214
215   /**
216    * Current value for our incremental back-off (for
217    * connect re-tries).
218    */
219   struct GNUNET_TIME_Relative back_off;
220
221   /**
222    * Number of bytes in received_buf that are valid.
223    */
224   size_t received_pos;
225
226   /**
227    * Size of received_buf.
228    */
229   unsigned int received_size;
230
231   /**
232    * Do we have a complete response in received_buf?
233    */
234   int msg_complete;
235
236   /**
237    * Are we currently busy doing receive-processing?
238    * GNUNET_YES if so, GNUNET_NO if not.
239    */
240   int in_receive;
241
242   /**
243    * How often have we tried to connect?
244    */
245   unsigned int attempts;
246
247 };
248
249
250 /**
251  * Try connecting to the server using UNIX domain sockets.
252  *
253  * @param service_name name of service to connect to
254  * @param cfg configuration to use
255  * @return NULL on error, connection to UNIX otherwise
256  */
257 static struct GNUNET_CONNECTION_Handle *
258 try_unixpath (const char *service_name,
259               const struct GNUNET_CONFIGURATION_Handle *cfg)
260 {
261 #if AF_UNIX
262   struct GNUNET_CONNECTION_Handle *connection;
263   char *unixpath;
264
265   unixpath = NULL;
266   if ((GNUNET_OK == GNUNET_CONFIGURATION_get_value_string (cfg, service_name, "UNIXPATH", &unixpath)) && 
267       (0 < strlen (unixpath)))     
268   {
269     /* We have a non-NULL unixpath, need to validate it */
270     connection = GNUNET_CONNECTION_create_from_connect_to_unixpath (cfg, unixpath);
271     if (NULL != connection)
272     {
273       LOG (GNUNET_ERROR_TYPE_DEBUG, "Connected to unixpath `%s'!\n",
274            unixpath);
275       GNUNET_free (unixpath);
276       return connection;
277     }
278   }
279   GNUNET_free_non_null (unixpath);
280 #endif
281   return NULL;
282 }
283
284
285 /**
286  * Try connecting to the server using UNIX domain sockets.
287  *
288  * @param service_name name of service to connect to
289  * @param cfg configuration to use
290  * @return GNUNET_OK if the configuration is valid, GNUNET_SYSERR if not
291  */
292 static int
293 test_service_configuration (const char *service_name,
294                             const struct GNUNET_CONFIGURATION_Handle *cfg)
295 {
296   int ret = GNUNET_SYSERR;
297   char *hostname = NULL;
298   unsigned long long port;
299 #if AF_UNIX
300   char *unixpath = NULL;
301
302   if ((GNUNET_OK == GNUNET_CONFIGURATION_get_value_string (cfg, service_name, "UNIXPATH", &unixpath)) && 
303       (0 < strlen (unixpath)))     
304     ret = GNUNET_OK;
305   GNUNET_free_non_null (unixpath);
306 #endif
307
308   if ( (GNUNET_YES ==
309         GNUNET_CONFIGURATION_have_value (cfg, service_name, "PORT")) &&
310        (GNUNET_OK ==
311         GNUNET_CONFIGURATION_get_value_number (cfg, service_name, "PORT", &port)) && 
312        (port <= 65535) && (0 != port) &&
313        (GNUNET_OK ==
314         GNUNET_CONFIGURATION_get_value_string (cfg, service_name, "HOSTNAME",
315                                                &hostname)) &&
316        (0 != strlen (hostname)) )
317     ret = GNUNET_OK;
318   GNUNET_free_non_null (hostname);
319   return ret;
320 }
321
322
323 /**
324  * Try to connect to the service.
325  *
326  * @param service_name name of service to connect to
327  * @param cfg configuration to use
328  * @param attempt counter used to alternate between IP and UNIX domain sockets
329  * @return NULL on error
330  */
331 static struct GNUNET_CONNECTION_Handle *
332 do_connect (const char *service_name,
333             const struct GNUNET_CONFIGURATION_Handle *cfg, unsigned int attempt)
334 {
335   struct GNUNET_CONNECTION_Handle *connection;
336   char *hostname;
337   unsigned long long port;
338
339   connection = NULL;
340   if (0 == (attempt % 2))
341   {
342     /* on even rounds, try UNIX first */
343     connection = try_unixpath (service_name, cfg);
344     if (NULL != connection)
345       return connection;
346   }
347   if (GNUNET_YES ==
348       GNUNET_CONFIGURATION_have_value (cfg, service_name, "PORT"))
349   {
350     if ((GNUNET_OK !=
351          GNUNET_CONFIGURATION_get_value_number (cfg, service_name, "PORT", &port))
352         || (port > 65535) ||
353         (GNUNET_OK !=
354          GNUNET_CONFIGURATION_get_value_string (cfg, service_name, "HOSTNAME",
355                                                 &hostname)))
356     {
357       LOG (GNUNET_ERROR_TYPE_WARNING,
358            _
359            ("Could not determine valid hostname and port for service `%s' from configuration.\n"),
360            service_name);
361       return NULL;
362     }
363     if (0 == strlen (hostname))
364     {
365       GNUNET_free (hostname);
366       LOG (GNUNET_ERROR_TYPE_WARNING,
367            _("Need a non-empty hostname for service `%s'.\n"), service_name);
368       return NULL;
369     }
370   }
371   else
372   {
373     /* unspecified means 0 (disabled) */
374     port = 0;
375     hostname = NULL;
376   }
377   if (0 == port)
378   {
379     /* if port is 0, try UNIX */
380     connection = try_unixpath (service_name, cfg);
381     if (NULL != connection)
382       return connection;
383     LOG (GNUNET_ERROR_TYPE_DEBUG,
384          "Port is 0 for service `%s', UNIXPATH did not work, returning NULL!\n",
385          service_name);
386     GNUNET_free_non_null (hostname);
387     return NULL;
388   }
389   connection = GNUNET_CONNECTION_create_from_connect (cfg, hostname, port);
390   GNUNET_free (hostname);
391   return connection;
392 }
393
394
395 /**
396  * Get a connection with a service.
397  *
398  * @param service_name name of the service
399  * @param cfg configuration to use
400  * @return NULL on error (service unknown to configuration)
401  */
402 struct GNUNET_CLIENT_Connection *
403 GNUNET_CLIENT_connect (const char *service_name,
404                        const struct GNUNET_CONFIGURATION_Handle *cfg)
405 {
406   struct GNUNET_CLIENT_Connection *client;
407   struct GNUNET_CONNECTION_Handle *connection;
408
409   if (GNUNET_OK != 
410       test_service_configuration (service_name,
411                                   cfg))
412     return NULL;
413   connection = do_connect (service_name, cfg, 0);
414   client = GNUNET_malloc (sizeof (struct GNUNET_CLIENT_Connection));
415   client->attempts = 1;
416   client->connection = connection;
417   client->service_name = GNUNET_strdup (service_name);
418   client->cfg = cfg;
419   client->back_off = GNUNET_TIME_UNIT_MILLISECONDS;
420   return client;
421 }
422
423
424 /**
425  * Destroy connection with the service.  This will automatically
426  * cancel any pending "receive" request (however, the handler will
427  * *NOT* be called, not even with a NULL message).  Any pending
428  * transmission request will also be cancelled UNLESS the callback for
429  * the transmission request has already been called, in which case the
430  * transmission 'finish_pending_write' argument determines whether or
431  * not the write is guaranteed to complete before the socket is fully
432  * destroyed (unless, of course, there is an error with the server in
433  * which case the message may still be lost).
434  *
435  * @param client handle to the service connection
436  */
437 void
438 GNUNET_CLIENT_disconnect (struct GNUNET_CLIENT_Connection *client)
439 {
440   if (GNUNET_YES == client->in_receive)
441   {
442     GNUNET_CONNECTION_receive_cancel (client->connection);
443     client->in_receive = GNUNET_NO;
444   }
445   if (NULL != client->th)
446   {
447     GNUNET_CLIENT_notify_transmit_ready_cancel (client->th);
448     client->th = NULL;
449   }
450   if (NULL != client->connection)
451   {
452     GNUNET_CONNECTION_destroy (client->connection);
453     client->connection = NULL;
454   }
455   if (GNUNET_SCHEDULER_NO_TASK != client->receive_task)
456   {
457     GNUNET_SCHEDULER_cancel (client->receive_task);
458     client->receive_task = GNUNET_SCHEDULER_NO_TASK;
459   }
460   if (NULL != client->tag)
461   {
462     GNUNET_free (client->tag);
463     client->tag = NULL;
464   }
465   client->receiver_handler = NULL;
466   GNUNET_array_grow (client->received_buf, client->received_size, 0);
467   GNUNET_free (client->service_name);
468   GNUNET_free (client);
469 }
470
471
472 /**
473  * Check if message is complete.  Sets the "msg_complete" member
474  * in the client struct.
475  *
476  * @param client connection with the buffer to check
477  */
478 static void
479 check_complete (struct GNUNET_CLIENT_Connection *client)
480 {
481   if ((client->received_pos >= sizeof (struct GNUNET_MessageHeader)) &&
482       (client->received_pos >=
483        ntohs (((const struct GNUNET_MessageHeader *) client->received_buf)->
484               size)))
485     client->msg_complete = GNUNET_YES;
486 }
487
488
489 /**
490  * Callback function for data received from the network.  Note that
491  * both "available" and "errCode" would be 0 if the read simply timed out.
492  *
493  * @param cls closure
494  * @param buf pointer to received data
495  * @param available number of bytes availabe in "buf",
496  *        possibly 0 (on errors)
497  * @param addr address of the sender
498  * @param addrlen size of addr
499  * @param errCode value of errno (on errors receiving)
500  */
501 static void
502 receive_helper (void *cls, const void *buf, size_t available,
503                 const struct sockaddr *addr, socklen_t addrlen, int errCode)
504 {
505   struct GNUNET_CLIENT_Connection *client = cls;
506   struct GNUNET_TIME_Relative remaining;
507   GNUNET_CLIENT_MessageHandler receive_handler;
508   void *receive_handler_cls;
509
510   GNUNET_assert (GNUNET_NO == client->msg_complete);
511   GNUNET_assert (GNUNET_YES == client->in_receive);
512   client->in_receive = GNUNET_NO;
513   if ((0 == available) || (NULL == client->connection) || (0 != errCode))
514   {
515     /* signal timeout! */
516     LOG (GNUNET_ERROR_TYPE_DEBUG,
517          "Timeout in receive_helper, available %u, client->connection %s, errCode `%s'\n",
518          (unsigned int) available, NULL == client->connection ? "NULL" : "non-NULL",
519          STRERROR (errCode));
520     if (NULL != (receive_handler = client->receiver_handler))
521     {
522       receive_handler_cls = client->receiver_handler_cls;
523       client->receiver_handler = NULL;
524       receive_handler (receive_handler_cls, NULL);
525     }
526     return;
527   }
528   /* FIXME: optimize for common fast case where buf contains the
529    * entire message and we need no copying... */
530
531   /* slow path: append to array */
532   if (client->received_size < client->received_pos + available)
533     GNUNET_array_grow (client->received_buf, client->received_size,
534                        client->received_pos + available);
535   memcpy (&client->received_buf[client->received_pos], buf, available);
536   client->received_pos += available;
537   check_complete (client);
538   /* check for timeout */
539   remaining = GNUNET_TIME_absolute_get_remaining (client->receive_timeout);
540   if (0 == remaining.rel_value)
541   {
542     /* signal timeout! */
543     if (NULL != client->receiver_handler)
544       client->receiver_handler (client->receiver_handler_cls, NULL);
545     return;
546   }
547   /* back to receive -- either for more data or to call callback! */
548   GNUNET_CLIENT_receive (client, client->receiver_handler,
549                          client->receiver_handler_cls, remaining);
550 }
551
552
553 /**
554  * Continuation to call the receive callback.
555  *
556  * @param cls  our handle to the client connection
557  * @param tc scheduler context
558  */
559 static void
560 receive_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
561 {
562   struct GNUNET_CLIENT_Connection *client = cls;
563   GNUNET_CLIENT_MessageHandler handler = client->receiver_handler;
564   const struct GNUNET_MessageHeader *cmsg =
565       (const struct GNUNET_MessageHeader *) client->received_buf;
566   void *handler_cls = client->receiver_handler_cls;
567   uint16_t msize = ntohs (cmsg->size);
568   char mbuf[msize];
569   struct GNUNET_MessageHeader *msg = (struct GNUNET_MessageHeader *) mbuf;
570
571   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received message of type %u and size %u\n",
572        ntohs (cmsg->type), msize);
573   client->receive_task = GNUNET_SCHEDULER_NO_TASK;
574   GNUNET_assert (GNUNET_YES == client->msg_complete);
575   GNUNET_assert (client->received_pos >= msize);
576   memcpy (msg, cmsg, msize);
577   memmove (client->received_buf, &client->received_buf[msize],
578            client->received_pos - msize);
579   client->received_pos -= msize;
580   client->msg_complete = GNUNET_NO;
581   client->receiver_handler = NULL;
582   check_complete (client);
583   if (NULL != handler)
584     handler (handler_cls, msg);
585 }
586
587
588 /**
589  * Read from the service.
590  *
591  * @param client the service
592  * @param handler function to call with the message
593  * @param handler_cls closure for handler
594  * @param timeout how long to wait until timing out
595  */
596 void
597 GNUNET_CLIENT_receive (struct GNUNET_CLIENT_Connection *client,
598                        GNUNET_CLIENT_MessageHandler handler, void *handler_cls,
599                        struct GNUNET_TIME_Relative timeout)
600 {
601   if (NULL == client->connection)
602   {
603     /* already disconnected, fail instantly! */
604     GNUNET_break (0);           /* this should not happen in well-written code! */
605     if (NULL != handler)
606       handler (handler_cls, NULL);
607     return;
608   }
609   client->receiver_handler = handler;
610   client->receiver_handler_cls = handler_cls;
611   client->receive_timeout = GNUNET_TIME_relative_to_absolute (timeout);
612   if (GNUNET_YES == client->msg_complete)
613   {
614     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == client->receive_task);
615     client->receive_task = GNUNET_SCHEDULER_add_now (&receive_task, client);
616   }
617   else
618   {
619     LOG (GNUNET_ERROR_TYPE_DEBUG, "calling GNUNET_CONNECTION_receive\n");
620     GNUNET_assert (GNUNET_NO == client->in_receive);
621     client->in_receive = GNUNET_YES;
622     GNUNET_CONNECTION_receive (client->connection, GNUNET_SERVER_MAX_MESSAGE_SIZE - 1,
623                                timeout, &receive_helper, client);
624   }
625 }
626
627
628 /**
629  * Report service unavailable.
630  */
631 static void
632 service_test_error (GNUNET_SCHEDULER_Task task, void *task_cls)
633 {
634   GNUNET_SCHEDULER_add_continuation (task, task_cls,
635                                      GNUNET_SCHEDULER_REASON_TIMEOUT);
636 }
637
638
639 /**
640  * Receive confirmation from test, service is up.
641  *
642  * @param cls closure
643  * @param msg message received, NULL on timeout or fatal error
644  */
645 static void
646 confirm_handler (void *cls, const struct GNUNET_MessageHeader *msg)
647 {
648   struct GNUNET_CLIENT_Connection *client = cls;
649
650   /* We may want to consider looking at the reply in more
651    * detail in the future, for example, is this the
652    * correct service? FIXME! */
653   if (NULL != msg)
654   {
655     LOG (GNUNET_ERROR_TYPE_DEBUG,
656          "Received confirmation that service is running.\n");
657     GNUNET_SCHEDULER_add_continuation (client->test_cb, client->test_cb_cls,
658                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
659   }
660   else
661   {
662     service_test_error (client->test_cb, client->test_cb_cls);
663   }
664   GNUNET_CLIENT_disconnect (client);
665 }
666
667
668 /**
669  * Send the 'TEST' message to the service.  If successful, prepare to
670  * receive the reply.
671  *
672  * @param cls the 'struct GNUNET_CLIENT_Connection' of the connection to test
673  * @param size number of bytes available in buf
674  * @param buf where to write the message
675  * @return number of bytes written to buf
676  */
677 static size_t
678 write_test (void *cls, size_t size, void *buf)
679 {
680   struct GNUNET_CLIENT_Connection *client = cls;
681   struct GNUNET_MessageHeader *msg;
682
683   if (size < sizeof (struct GNUNET_MessageHeader))
684   {
685     LOG (GNUNET_ERROR_TYPE_DEBUG, _("Failure to transmit TEST request.\n"));
686     service_test_error (client->test_cb, client->test_cb_cls);
687     GNUNET_CLIENT_disconnect (client);
688     return 0;                   /* client disconnected */
689   }
690   LOG (GNUNET_ERROR_TYPE_DEBUG, "Transmitting `%s' request.\n", "TEST");
691   msg = (struct GNUNET_MessageHeader *) buf;
692   msg->type = htons (GNUNET_MESSAGE_TYPE_TEST);
693   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
694   GNUNET_CLIENT_receive (client, &confirm_handler, client,
695                          GNUNET_TIME_absolute_get_remaining
696                          (client->test_deadline));
697   return sizeof (struct GNUNET_MessageHeader);
698 }
699
700
701 /**
702  * Test if the service is running.  If we are given a UNIXPATH or a local address,
703  * we do this NOT by trying to connect to the service, but by trying to BIND to
704  * the same port.  If the BIND fails, we know the service is running.
705  *
706  * @param service name of the service to wait for
707  * @param cfg configuration to use
708  * @param timeout how long to wait at most
709  * @param task task to run if service is running
710  *        (reason will be "PREREQ_DONE" (service running)
711  *         or "TIMEOUT" (service not known to be running))
712  * @param task_cls closure for task
713  */
714 void
715 GNUNET_CLIENT_service_test (const char *service,
716                             const struct GNUNET_CONFIGURATION_Handle *cfg,
717                             struct GNUNET_TIME_Relative timeout,
718                             GNUNET_SCHEDULER_Task task, void *task_cls)
719 {
720   char *hostname;
721   unsigned long long port;
722   struct GNUNET_NETWORK_Handle *sock;
723   struct GNUNET_CLIENT_Connection *client;
724
725   LOG (GNUNET_ERROR_TYPE_DEBUG, "Testing if service `%s' is running.\n",
726        service);
727 #ifdef AF_UNIX
728   {
729     /* probe UNIX support */
730     struct sockaddr_un s_un;
731     size_t slen;
732     char *unixpath;
733
734     unixpath = NULL;
735     if ((GNUNET_OK == GNUNET_CONFIGURATION_get_value_string (cfg, service, "UNIXPATH", &unixpath)) && (0 < strlen (unixpath)))  /* We have a non-NULL unixpath, does that mean it's valid? */
736     {
737       if (strlen (unixpath) >= sizeof (s_un.sun_path))
738       {
739         LOG (GNUNET_ERROR_TYPE_WARNING,
740              _("UNIXPATH `%s' too long, maximum length is %llu\n"), unixpath,
741              (unsigned long long) sizeof (s_un.sun_path));
742         unixpath = GNUNET_NETWORK_shorten_unixpath (unixpath);
743       }
744     }
745     if (NULL != unixpath)
746     {
747       sock = GNUNET_NETWORK_socket_create (PF_UNIX, SOCK_STREAM, 0);
748       if (NULL != sock)
749       {
750         memset (&s_un, 0, sizeof (s_un));
751         s_un.sun_family = AF_UNIX;
752         slen = strlen (unixpath) + 1;
753         if (slen >= sizeof (s_un.sun_path))
754           slen = sizeof (s_un.sun_path) - 1;
755         memcpy (s_un.sun_path, unixpath, slen);
756         s_un.sun_path[slen] = '\0';
757         slen = sizeof (struct sockaddr_un);
758 #if LINUX
759         s_un.sun_path[0] = '\0';
760 #endif
761 #if HAVE_SOCKADDR_IN_SIN_LEN
762         s_un.sun_len = (u_char) slen;
763 #endif
764         if (GNUNET_OK !=
765             GNUNET_NETWORK_socket_bind (sock, (const struct sockaddr *) &s_un,
766                                         slen))
767         {
768           /* failed to bind => service must be running */
769           GNUNET_free (unixpath);
770           (void) GNUNET_NETWORK_socket_close (sock);
771           GNUNET_SCHEDULER_add_continuation (task, task_cls,
772                                              GNUNET_SCHEDULER_REASON_PREREQ_DONE);
773           return;
774         }
775         (void) GNUNET_NETWORK_socket_close (sock);        
776         /* let's try IP */
777       }
778     }
779     GNUNET_free_non_null (unixpath);
780   }
781 #endif
782
783   hostname = NULL;
784   if ((GNUNET_OK !=
785        GNUNET_CONFIGURATION_get_value_number (cfg, service, "PORT", &port)) ||
786       (port > 65535) ||
787       (GNUNET_OK !=
788        GNUNET_CONFIGURATION_get_value_string (cfg, service, "HOSTNAME",
789                                               &hostname)))
790   {
791     /* UNIXPATH failed (if possible) AND IP failed => error */
792     service_test_error (task, task_cls);
793     return;
794   }
795
796   if (0 == strcmp ("localhost", hostname)
797 #if !LINUX
798       && 0
799 #endif
800       )
801   {
802     /* can test using 'bind' */
803     struct sockaddr_in s_in;
804
805     memset (&s_in, 0, sizeof (s_in));
806 #if HAVE_SOCKADDR_IN_SIN_LEN
807     s_in.sin_len = sizeof (struct sockaddr_in);
808 #endif
809     s_in.sin_family = AF_INET;
810     s_in.sin_port = htons (port);
811
812     sock = GNUNET_NETWORK_socket_create (AF_INET, SOCK_STREAM, 0);
813     if (NULL != sock)
814     {
815       if (GNUNET_OK !=
816           GNUNET_NETWORK_socket_bind (sock, (const struct sockaddr *) &s_in,
817                                       sizeof (s_in)))
818       {
819         /* failed to bind => service must be running */
820         GNUNET_free (hostname);
821         (void) GNUNET_NETWORK_socket_close (sock);
822         GNUNET_SCHEDULER_add_continuation (task, task_cls,
823                                            GNUNET_SCHEDULER_REASON_PREREQ_DONE);
824         return;
825       }
826       (void) GNUNET_NETWORK_socket_close (sock);
827     }
828   }
829
830   if (0 == strcmp ("ip6-localhost", hostname)
831 #if !LINUX
832       && 0
833 #endif
834       )
835   {
836     /* can test using 'bind' */
837     struct sockaddr_in6 s_in6;
838
839     memset (&s_in6, 0, sizeof (s_in6));
840 #if HAVE_SOCKADDR_IN_SIN_LEN
841     s_in6.sin6_len = sizeof (struct sockaddr_in6);
842 #endif
843     s_in6.sin6_family = AF_INET6;
844     s_in6.sin6_port = htons (port);
845
846     sock = GNUNET_NETWORK_socket_create (AF_INET6, SOCK_STREAM, 0);
847     if (NULL != sock)
848     {
849       if (GNUNET_OK !=
850           GNUNET_NETWORK_socket_bind (sock, (const struct sockaddr *) &s_in6,
851                                       sizeof (s_in6)))
852       {
853         /* failed to bind => service must be running */
854         GNUNET_free (hostname);
855         (void) GNUNET_NETWORK_socket_close (sock);
856         GNUNET_SCHEDULER_add_continuation (task, task_cls,
857                                            GNUNET_SCHEDULER_REASON_PREREQ_DONE);
858         return;
859       }
860       (void) GNUNET_NETWORK_socket_close (sock);
861     }
862   }
863
864   if (((0 == strcmp ("localhost", hostname)) ||
865        (0 == strcmp ("ip6-localhost", hostname)))
866 #if !LINUX
867       && 0
868 #endif
869       )
870   {
871     /* all binds succeeded => claim service not running right now */
872     GNUNET_free_non_null (hostname);
873     service_test_error (task, task_cls);
874     return;
875   }
876   GNUNET_free_non_null (hostname);
877
878   /* non-localhost, try 'connect' method */
879   client = GNUNET_CLIENT_connect (service, cfg);
880   if (NULL == client)
881   {
882     LOG (GNUNET_ERROR_TYPE_INFO,
883          _("Could not connect to service `%s', must not be running.\n"),
884          service);
885     service_test_error (task, task_cls);
886     return;
887   }
888   client->test_cb = task;
889   client->test_cb_cls = task_cls;
890   client->test_deadline = GNUNET_TIME_relative_to_absolute (timeout);
891   if (NULL == GNUNET_CLIENT_notify_transmit_ready (client,
892                                                    sizeof (struct GNUNET_MessageHeader),
893                                                    timeout, GNUNET_YES, &write_test,
894                                                    client))
895   {
896     LOG (GNUNET_ERROR_TYPE_WARNING,
897          _("Failure to transmit request to service `%s'\n"), service);
898     service_test_error (task, task_cls);
899     GNUNET_CLIENT_disconnect (client);
900     return;
901   }
902 }
903
904
905 /**
906  * Connection notifies us about failure or success of
907  * a transmission request.  Either pass it on to our
908  * user or, if possible, retry.
909  *
910  * @param cls our "struct GNUNET_CLIENT_TransmissionHandle"
911  * @param size number of bytes available for transmission
912  * @param buf where to write them
913  * @return number of bytes written to buf
914  */
915 static size_t
916 client_notify (void *cls, size_t size, void *buf);
917
918
919 /**
920  * This task is run if we should re-try connection to the
921  * service after a while.
922  *
923  * @param cls our "struct GNUNET_CLIENT_TransmitHandle" of the request
924  * @param tc unused
925  */
926 static void
927 client_delayed_retry (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
928 {
929   struct GNUNET_CLIENT_TransmitHandle *th = cls;
930   struct GNUNET_TIME_Relative delay;
931
932   th->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
933   th->client->connection =
934       do_connect (th->client->service_name, th->client->cfg, th->client->attempts++);
935   if (NULL == th->client->connection)
936   {
937     /* could happen if we're out of sockets */
938     delay =
939         GNUNET_TIME_relative_min (GNUNET_TIME_absolute_get_remaining
940                                   (th->timeout), th->client->back_off);
941     th->client->back_off =
942         GNUNET_TIME_relative_min (GNUNET_TIME_relative_multiply
943                                   (th->client->back_off, 2),
944                                   GNUNET_TIME_UNIT_SECONDS);
945     LOG (GNUNET_ERROR_TYPE_DEBUG,
946          "Transmission failed %u times, trying again in %llums.\n",
947          MAX_ATTEMPTS - th->attempts_left,
948          (unsigned long long) delay.rel_value);
949     th->reconnect_task =
950         GNUNET_SCHEDULER_add_delayed (delay, &client_delayed_retry, th);
951     return;
952   }
953   th->th =
954       GNUNET_CONNECTION_notify_transmit_ready (th->client->connection, th->size,
955                                                GNUNET_TIME_absolute_get_remaining
956                                                (th->timeout), &client_notify,
957                                                th);
958   if (NULL == th->th)
959   {
960     GNUNET_break (0);
961     th->client->th = NULL;
962     th->notify (th->notify_cls, 0, NULL);
963     GNUNET_free (th);
964     return;
965   }
966 }
967
968
969 /**
970  * Connection notifies us about failure or success of a transmission
971  * request.  Either pass it on to our user or, if possible, retry.
972  *
973  * @param cls our "struct GNUNET_CLIENT_TransmissionHandle"
974  * @param size number of bytes available for transmission
975  * @param buf where to write them
976  * @return number of bytes written to buf
977  */
978 static size_t
979 client_notify (void *cls, size_t size, void *buf)
980 {
981   struct GNUNET_CLIENT_TransmitHandle *th = cls;
982   struct GNUNET_CLIENT_Connection *client = th->client;
983   size_t ret;
984   struct GNUNET_TIME_Relative delay;
985
986   th->th = NULL;
987   client->th = NULL;
988   if (NULL == buf)
989   {
990     delay = GNUNET_TIME_absolute_get_remaining (th->timeout);
991     delay.rel_value /= 2;
992     if ((GNUNET_YES != th->auto_retry) || (0 == --th->attempts_left) ||
993         (delay.rel_value < 1))
994     {
995       LOG (GNUNET_ERROR_TYPE_DEBUG,
996            "Transmission failed %u times, giving up.\n",
997            MAX_ATTEMPTS - th->attempts_left);
998       GNUNET_break (0 == th->notify (th->notify_cls, 0, NULL));
999       GNUNET_free (th);
1000       return 0;
1001     }
1002     /* auto-retry */
1003     LOG (GNUNET_ERROR_TYPE_DEBUG,
1004          "Failed to connect to `%s', automatically trying again.\n",
1005          client->service_name);
1006     if (GNUNET_YES == client->in_receive)
1007     {
1008       GNUNET_CONNECTION_receive_cancel (client->connection);
1009       client->in_receive = GNUNET_NO;
1010     }    
1011     GNUNET_CONNECTION_destroy (client->connection);
1012     client->connection = NULL;
1013     delay = GNUNET_TIME_relative_min (delay, client->back_off);
1014     client->back_off =
1015         GNUNET_TIME_relative_min (GNUNET_TIME_relative_multiply
1016                                   (client->back_off, 2),
1017                                   GNUNET_TIME_UNIT_SECONDS);
1018     LOG (GNUNET_ERROR_TYPE_DEBUG,
1019          "Transmission failed %u times, trying again in %llums.\n",
1020          MAX_ATTEMPTS - th->attempts_left,
1021          (unsigned long long) delay.rel_value);
1022     client->th = th;
1023     th->reconnect_task =
1024         GNUNET_SCHEDULER_add_delayed (delay, &client_delayed_retry, th);
1025     return 0;
1026   }
1027   GNUNET_assert (size >= th->size);
1028   ret = th->notify (th->notify_cls, size, buf);
1029   GNUNET_free (th);
1030   return ret;
1031 }
1032
1033
1034 /**
1035  * Ask the client to call us once the specified number of bytes
1036  * are free in the transmission buffer.  May call the notify
1037  * method immediately if enough space is available.
1038  *
1039  * @param client connection to the service
1040  * @param size number of bytes to send
1041  * @param timeout after how long should we give up (and call
1042  *        notify with buf NULL and size 0)?
1043  * @param auto_retry if the connection to the service dies, should we
1044  *        automatically re-connect and retry (within the timeout period)
1045  *        or should we immediately fail in this case?  Pass GNUNET_YES
1046  *        if the caller does not care about temporary connection errors,
1047  *        for example because the protocol is stateless
1048  * @param notify function to call
1049  * @param notify_cls closure for notify
1050  * @return NULL if our buffer will never hold size bytes,
1051  *         a handle if the notify callback was queued (can be used to cancel)
1052  */
1053 struct GNUNET_CLIENT_TransmitHandle *
1054 GNUNET_CLIENT_notify_transmit_ready (struct GNUNET_CLIENT_Connection *client,
1055                                      size_t size,
1056                                      struct GNUNET_TIME_Relative timeout,
1057                                      int auto_retry,
1058                                      GNUNET_CONNECTION_TransmitReadyNotify
1059                                      notify, void *notify_cls)
1060 {
1061   struct GNUNET_CLIENT_TransmitHandle *th;
1062
1063   if (NULL != client->th)
1064   {
1065     /* If this breaks, you most likley called this function twice without waiting
1066      * for completion or canceling the request */
1067     GNUNET_break (0);
1068     return NULL;
1069   }
1070   th = GNUNET_malloc (sizeof (struct GNUNET_CLIENT_TransmitHandle));
1071   th->client = client;
1072   th->size = size;
1073   th->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1074   th->auto_retry = auto_retry;
1075   th->notify = notify;
1076   th->notify_cls = notify_cls;
1077   th->attempts_left = MAX_ATTEMPTS;
1078   client->th = th;
1079   if (NULL == client->connection)
1080   {
1081     th->reconnect_task =
1082         GNUNET_SCHEDULER_add_delayed (client->back_off, &client_delayed_retry,
1083                                       th);
1084
1085   }
1086   else
1087   {
1088     th->th =
1089         GNUNET_CONNECTION_notify_transmit_ready (client->connection, size, timeout,
1090                                                  &client_notify, th);
1091     if (NULL == th->th)
1092     {
1093       GNUNET_break (0);
1094       GNUNET_free (th);
1095       client->th = NULL;
1096       return NULL;
1097     }
1098   }
1099   return th;
1100 }
1101
1102
1103 /**
1104  * Cancel a request for notification.
1105  *
1106  * @param th handle from the original request.
1107  */
1108 void
1109 GNUNET_CLIENT_notify_transmit_ready_cancel (struct GNUNET_CLIENT_TransmitHandle
1110                                             *th)
1111 {
1112   if (GNUNET_SCHEDULER_NO_TASK != th->reconnect_task)
1113   {
1114     GNUNET_assert (NULL == th->th);
1115     GNUNET_SCHEDULER_cancel (th->reconnect_task);
1116     th->reconnect_task = GNUNET_SCHEDULER_NO_TASK;
1117   }
1118   else
1119   {
1120     GNUNET_assert (NULL != th->th);
1121     GNUNET_CONNECTION_notify_transmit_ready_cancel (th->th);
1122   }
1123   th->client->th = NULL;
1124   GNUNET_free (th);
1125 }
1126
1127
1128 /**
1129  * Function called to notify a client about the socket
1130  * begin ready to queue the message.  "buf" will be
1131  * NULL and "size" zero if the socket was closed for
1132  * writing in the meantime.
1133  *
1134  * @param cls closure of type "struct TransmitGetResponseContext*"
1135  * @param size number of bytes available in buf
1136  * @param buf where the callee should write the message
1137  * @return number of bytes written to buf
1138  */
1139 static size_t
1140 transmit_for_response (void *cls, size_t size, void *buf)
1141 {
1142   struct TransmitGetResponseContext *tc = cls;
1143   uint16_t msize;
1144
1145   tc->client->tag = NULL;
1146   msize = ntohs (tc->hdr->size);
1147   if (NULL == buf)
1148   {
1149     LOG (GNUNET_ERROR_TYPE_DEBUG,
1150          _("Could not submit request, not expecting to receive a response.\n"));
1151     if (NULL != tc->rn)
1152       tc->rn (tc->rn_cls, NULL);
1153     GNUNET_free (tc);
1154     return 0;
1155   }
1156   GNUNET_assert (size >= msize);
1157   memcpy (buf, tc->hdr, msize);
1158   GNUNET_CLIENT_receive (tc->client, tc->rn, tc->rn_cls,
1159                          GNUNET_TIME_absolute_get_remaining (tc->timeout));
1160   GNUNET_free (tc);
1161   return msize;
1162 }
1163
1164
1165 /**
1166  * Convenience API that combines sending a request
1167  * to the service and waiting for a response.
1168  * If either operation times out, the callback
1169  * will be called with a "NULL" response (in which
1170  * case the connection should probably be destroyed).
1171  *
1172  * @param client connection to use
1173  * @param hdr message to transmit
1174  * @param timeout when to give up (for both transmission
1175  *         and for waiting for a response)
1176  * @param auto_retry if the connection to the service dies, should we
1177  *        automatically re-connect and retry (within the timeout period)
1178  *        or should we immediately fail in this case?  Pass GNUNET_YES
1179  *        if the caller does not care about temporary connection errors,
1180  *        for example because the protocol is stateless
1181  * @param rn function to call with the response
1182  * @param rn_cls closure for rn
1183  * @return GNUNET_OK on success, GNUNET_SYSERR if a request
1184  *         is already pending
1185  */
1186 int
1187 GNUNET_CLIENT_transmit_and_get_response (struct GNUNET_CLIENT_Connection *client,
1188                                          const struct GNUNET_MessageHeader *hdr,
1189                                          struct GNUNET_TIME_Relative timeout,
1190                                          int auto_retry,
1191                                          GNUNET_CLIENT_MessageHandler rn,
1192                                          void *rn_cls)
1193 {
1194   struct TransmitGetResponseContext *tc;
1195   uint16_t msize;
1196
1197   if (NULL != client->th)
1198     return GNUNET_SYSERR;
1199   GNUNET_assert (NULL == client->tag);
1200   msize = ntohs (hdr->size);
1201   tc = GNUNET_malloc (sizeof (struct TransmitGetResponseContext) + msize);
1202   tc->client = client;
1203   tc->hdr = (const struct GNUNET_MessageHeader *) &tc[1];
1204   memcpy (&tc[1], hdr, msize);
1205   tc->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1206   tc->rn = rn;
1207   tc->rn_cls = rn_cls;
1208   if (NULL ==
1209       GNUNET_CLIENT_notify_transmit_ready (client, msize, timeout, auto_retry,
1210                                            &transmit_for_response, tc))
1211   {
1212     GNUNET_break (0);
1213     GNUNET_free (tc);
1214     return GNUNET_SYSERR;
1215   }
1216   client->tag = tc;
1217   return GNUNET_OK;
1218 }
1219
1220
1221
1222 /*  end of client.c */