new operation queue for limiting overlay connects
[oweals/gnunet.git] / src / transport / plugin_transport_unix.c
1 /*
2      This file is part of GNUnet
3      (C) 2010 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 transport/plugin_transport_unix.c
23  * @brief Transport plugin using unix domain sockets (!)
24  *        Clearly, can only be used locally on Unix/Linux hosts...
25  *        ONLY INTENDED FOR TESTING!!!
26  * @author Christian Grothoff
27  * @author Nathan Evans
28  */
29
30 #include "platform.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_connection_lib.h"
33 #include "gnunet_container_lib.h"
34 #include "gnunet_os_lib.h"
35 #include "gnunet_peerinfo_service.h"
36 #include "gnunet_protocols.h"
37 #include "gnunet_resolver_service.h"
38 #include "gnunet_server_lib.h"
39 #include "gnunet_signatures.h"
40 #include "gnunet_statistics_service.h"
41 #include "gnunet_transport_service.h"
42 #include "gnunet_transport_plugin.h"
43 #include "transport.h"
44
45 #define MAX_PROBES 20
46
47 #define LOG(kind,...) GNUNET_log_from (kind, "transport-unix",__VA_ARGS__)
48
49 /*
50  * Transport cost to peer, always 1 for UNIX (direct connection)
51  */
52 #define UNIX_DIRECT_DISTANCE 1
53
54 #define DEFAULT_NAT_PORT 0
55
56 /**
57  * How long until we give up on transmitting the welcome message?
58  */
59 #define HOSTNAME_RESOLVE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
60
61 /**
62  * Starting port for listening and sending, eventually a config value
63  */
64 #define UNIX_NAT_DEFAULT_PORT 22086
65
66 GNUNET_NETWORK_STRUCT_BEGIN
67
68 /**
69  * UNIX Message-Packet header.
70  */
71 struct UNIXMessage
72 {
73   /**
74    * Message header.
75    */
76   struct GNUNET_MessageHeader header;
77
78   /**
79    * What is the identity of the sender (GNUNET_hash of public key)
80    */
81   struct GNUNET_PeerIdentity sender;
82
83 };
84
85 struct Session
86 {
87   struct GNUNET_PeerIdentity target;
88
89   void *addr;
90   size_t addrlen;
91
92   /**
93    * Session timeout task
94    */
95   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
96
97   struct Plugin * plugin;
98 };
99
100 struct UNIXMessageWrapper
101 {
102   struct UNIXMessageWrapper *next;
103   struct UNIXMessageWrapper *prev;
104
105   struct UNIXMessage * msg;
106   size_t msgsize;
107   size_t payload;
108
109   struct GNUNET_TIME_Relative timeout;
110   unsigned int priority;
111
112   struct Session *session;
113   GNUNET_TRANSPORT_TransmitContinuation cont;
114   void *cont_cls;
115 };
116
117 /* Forward definition */
118 struct Plugin;
119
120
121 /**
122  * UNIX NAT "Session"
123  */
124 struct PeerSession
125 {
126
127   /**
128    * Stored in a linked list.
129    */
130   struct PeerSession *next;
131
132   /**
133    * Pointer to the global plugin struct.
134    */
135   struct Plugin *plugin;
136
137   /**
138    * To whom are we talking to (set to our identity
139    * if we are still waiting for the welcome message)
140    */
141   struct GNUNET_PeerIdentity target;
142
143   /**
144    * Address of the other peer (either based on our 'connect'
145    * call or on our 'accept' call).
146    */
147   void *connect_addr;
148
149   /**
150    * Length of connect_addr.
151    */
152   size_t connect_alen;
153
154   /**
155    * Are we still expecting the welcome message? (GNUNET_YES/GNUNET_NO)
156    */
157   int expecting_welcome;
158
159   /**
160    * From which socket do we need to send to this peer?
161    */
162   struct GNUNET_NETWORK_Handle *sock;
163
164   /*
165    * Queue of messages for this peer, in the case that
166    * we have to await a connection...
167    */
168   struct MessageQueue *messages;
169
170 };
171
172 /**
173  * Information we keep for each of our listen sockets.
174  */
175 struct UNIX_Sock_Info
176 {
177   /**
178    * The network handle
179    */
180   struct GNUNET_NETWORK_Handle *desc;
181
182   /**
183    * The port we bound to
184    */
185   uint16_t port;
186 };
187
188
189 /**
190  * Encapsulation of all of the state of the plugin.
191  */
192 struct Plugin
193 {
194   /**
195    * Our environment.
196    */
197   struct GNUNET_TRANSPORT_PluginEnvironment *env;
198
199   /**
200    * Sessions
201    */
202   struct GNUNET_CONTAINER_MultiHashMap *session_map;
203
204   /**
205    * ID of task used to update our addresses when one expires.
206    */
207   GNUNET_SCHEDULER_TaskIdentifier address_update_task;
208
209   /**
210    * ID of select task
211    */
212   GNUNET_SCHEDULER_TaskIdentifier select_task;
213
214   /**
215    * Integer to append to unix domain socket.
216    */
217   uint16_t port;
218
219   /**
220    * FD Read set
221    */
222   struct GNUNET_NETWORK_FDSet *rs;
223
224   /**
225    * FD Write set
226    */
227   struct GNUNET_NETWORK_FDSet *ws;
228
229   int with_ws;
230
231   /**
232    * socket that we transmit all data with
233    */
234   struct UNIX_Sock_Info unix_sock;
235
236   /**
237    * Path of our unix domain socket (/tmp/unix-plugin-PORT)
238    */
239   char *unix_socket_path;
240
241   struct UNIXMessageWrapper *msg_head;
242   struct UNIXMessageWrapper *msg_tail;
243
244   /**
245    * ATS network
246    */
247   struct GNUNET_ATS_Information ats_network;
248
249   unsigned int bytes_in_queue;
250   unsigned int bytes_in_sent;
251   unsigned int bytes_in_recv;
252   unsigned int bytes_discarded;
253 };
254
255 /**
256  * Start session timeout
257  */
258 static void
259 start_session_timeout (struct Session *s);
260
261 /**
262  * Increment session timeout due to activity
263  */
264 static void
265 reschedule_session_timeout (struct Session *s);
266
267 /**
268  * Cancel timeout
269  */
270 static void
271 stop_session_timeout (struct Session *s);
272
273
274 static void
275 unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
276
277
278 static void
279 reschedule_select (struct Plugin * plugin)
280 {
281
282   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
283   {
284     GNUNET_SCHEDULER_cancel (plugin->select_task);
285     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
286   }
287
288   if (NULL != plugin->msg_head)
289   {
290     plugin->select_task =
291       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
292                                    GNUNET_TIME_UNIT_FOREVER_REL,
293                                    plugin->rs,
294                                    plugin->ws,
295                                    &unix_plugin_select, plugin);
296     plugin->with_ws = GNUNET_YES;
297   }
298   else
299   {
300     plugin->select_task =
301       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
302                                    GNUNET_TIME_UNIT_FOREVER_REL,
303                                    plugin->rs,
304                                    NULL,
305                                    &unix_plugin_select, plugin);
306     plugin->with_ws = GNUNET_NO;
307   }
308 }
309
310 struct LookupCtx
311 {
312   struct Session *s;
313   const struct sockaddr_un *addr;
314 };
315
316 int lookup_session_it (void *cls,
317                        const struct GNUNET_HashCode * key,
318                        void *value)
319 {
320   struct LookupCtx *lctx = cls;
321   struct Session *t = value;
322
323   if (0 == strcmp (t->addr, lctx->addr->sun_path))
324   {
325     lctx->s = t;
326     return GNUNET_NO;
327   }
328   return GNUNET_YES;
329 }
330
331
332 static struct Session *
333 lookup_session (struct Plugin *plugin, struct GNUNET_PeerIdentity *sender, const struct sockaddr_un *addr)
334 {
335   struct LookupCtx lctx;
336
337   GNUNET_assert (NULL != plugin);
338   GNUNET_assert (NULL != sender);
339   GNUNET_assert (NULL != addr);
340
341   lctx.s = NULL;
342   lctx.addr = addr;
343
344   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->session_map, &sender->hashPubKey, &lookup_session_it, &lctx);
345
346   return lctx.s;
347 }
348
349 /**
350  * Functions with this signature are called whenever we need
351  * to close a session due to a disconnect or failure to
352  * establish a connection.
353  *
354  * @param s session to close down
355  */
356 static void
357 disconnect_session (struct Session *s)
358 {
359   struct UNIXMessageWrapper *msgw;
360   struct UNIXMessageWrapper *next;
361   struct Plugin * plugin = s->plugin;
362   int removed;
363   GNUNET_assert (plugin != NULL);
364   GNUNET_assert (s != NULL);
365
366   LOG (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting session for peer `%s' `%s' \n", GNUNET_i2s (&s->target), s->addr);
367   stop_session_timeout (s);
368   plugin->env->session_end (plugin->env->cls, &s->target, s);
369
370   msgw = plugin->msg_head;
371   removed = GNUNET_NO;
372   next = plugin->msg_head;
373   while (NULL != next)
374   {
375     msgw = next;
376     next = msgw->next;
377     if (msgw->session != s)
378       continue;
379     GNUNET_CONTAINER_DLL_remove (plugin->msg_head, plugin->msg_tail, msgw);
380     if (NULL != msgw->cont)
381       msgw->cont (msgw->cont_cls,  &msgw->session->target, GNUNET_SYSERR,
382                   msgw->payload, 0);
383     GNUNET_free (msgw->msg);
384     GNUNET_free (msgw);
385     removed = GNUNET_YES;    
386   }
387   if ((GNUNET_YES == removed) && (NULL == plugin->msg_head))
388     reschedule_select (plugin);
389
390   GNUNET_assert (GNUNET_YES ==
391                  GNUNET_CONTAINER_multihashmap_remove(plugin->session_map, &s->target.hashPubKey, s));
392
393   GNUNET_STATISTICS_set(plugin->env->stats,
394                         "# UNIX sessions active",
395                         GNUNET_CONTAINER_multihashmap_size(plugin->session_map),
396                         GNUNET_NO);
397
398   GNUNET_free (s);
399 }
400
401 static int
402 get_session_delete_it (void *cls, const struct GNUNET_HashCode * key, void *value)
403 {
404   struct Session *s = value;
405   disconnect_session (s);
406   return GNUNET_YES;
407 }
408
409
410 /**
411  * Disconnect from a remote node.  Clean up session if we have one for this peer
412  *
413  * @param cls closure for this call (should be handle to Plugin)
414  * @param target the peeridentity of the peer to disconnect
415  * @return GNUNET_OK on success, GNUNET_SYSERR if the operation failed
416  */
417 static void
418 unix_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
419 {
420   struct Plugin *plugin = cls;
421   GNUNET_assert (plugin != NULL);
422
423   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->session_map, &target->hashPubKey, &get_session_delete_it, plugin);
424   return;
425 }
426
427 /**
428  * Shutdown the server process (stop receiving inbound traffic). Maybe
429  * restarted later!
430  *
431  * @param cls Handle to the plugin for this transport
432  *
433  * @return returns the number of sockets successfully closed,
434  *         should equal the number of sockets successfully opened
435  */
436 static int
437 unix_transport_server_stop (void *cls)
438 {
439   struct Plugin *plugin = cls;
440
441   struct UNIXMessageWrapper * msgw = plugin->msg_head;
442
443   while (NULL != (msgw = plugin->msg_head))
444   {
445     GNUNET_CONTAINER_DLL_remove (plugin->msg_head, plugin->msg_tail, msgw);
446     if (msgw->cont != NULL)
447       msgw->cont (msgw->cont_cls,  &msgw->session->target, GNUNET_SYSERR,
448                   msgw->payload, 0);
449     GNUNET_free (msgw->msg);
450     GNUNET_free (msgw);
451   }
452
453   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
454   {
455     GNUNET_SCHEDULER_cancel (plugin->select_task);
456     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
457   }
458
459   if (NULL != plugin->unix_sock.desc)
460   {
461     GNUNET_break (GNUNET_OK ==
462                   GNUNET_NETWORK_socket_close (plugin->unix_sock.desc));
463     plugin->unix_sock.desc = NULL;
464     plugin->with_ws = GNUNET_NO;
465   }
466   return GNUNET_OK;
467 }
468
469
470 /**
471  * Actually send out the message, assume we've got the address and
472  * send_handle squared away!
473  *
474  * @param cls closure
475  * @param send_handle which handle to send message on
476  * @param target who should receive this message (ignored by UNIX)
477  * @param msgbuf one or more GNUNET_MessageHeader(s) strung together
478  * @param msgbuf_size the size of the msgbuf to send
479  * @param priority how important is the message (ignored by UNIX)
480  * @param timeout when should we time out (give up) if we can not transmit?
481  * @param addr the addr to send the message to, needs to be a sockaddr for us
482  * @param addrlen the len of addr
483  * @param payload bytes payload to send
484  * @param cont continuation to call once the message has
485  *        been transmitted (or if the transport is ready
486  *        for the next transmission call; or if the
487  *        peer disconnected...)
488  * @param cont_cls closure for cont
489  *
490  * @return the number of bytes written, -1 on errors
491  */
492 static ssize_t
493 unix_real_send (void *cls,
494                 struct GNUNET_NETWORK_Handle *send_handle,
495                 const struct GNUNET_PeerIdentity *target, const char *msgbuf,
496                 size_t msgbuf_size, unsigned int priority,
497                 struct GNUNET_TIME_Relative timeout,
498                 const void *addr,
499                 size_t addrlen,
500                 size_t payload,
501                 GNUNET_TRANSPORT_TransmitContinuation cont,
502                 void *cont_cls)
503 {
504   struct Plugin *plugin = cls;
505   ssize_t sent;
506   const void *sb;
507   size_t sbs;
508   struct sockaddr_un un;
509   size_t slen;
510
511   GNUNET_assert (NULL != plugin);
512
513   if (send_handle == NULL)
514   {
515     /* We do not have a send handle */
516     GNUNET_break (0);
517     if (cont != NULL)
518       cont (cont_cls, target, GNUNET_SYSERR, payload, 0);
519     return -1;
520   }
521   if ((addr == NULL) || (addrlen == 0))
522   {
523     /* Can never send if we don't have an address */
524     GNUNET_break (0);
525     if (cont != NULL)
526       cont (cont_cls, target, GNUNET_SYSERR, payload, 0);
527     return -1;
528   }
529
530   /* Prepare address */
531   memset (&un, 0, sizeof (un));
532   un.sun_family = AF_UNIX;
533   slen = strlen (addr) + 1;
534   if (slen >= sizeof (un.sun_path))
535     slen = sizeof (un.sun_path) - 1;
536   GNUNET_assert (slen < sizeof (un.sun_path));
537   memcpy (un.sun_path, addr, slen);
538   un.sun_path[slen] = '\0';
539   slen = sizeof (struct sockaddr_un);
540 #if LINUX
541   un.sun_path[0] = '\0';
542 #endif
543 #if HAVE_SOCKADDR_IN_SIN_LEN
544   un.sun_len = (u_char) slen;
545 #endif
546   sb = (struct sockaddr *) &un;
547   sbs = slen;
548
549   /* Send the data */
550   sent = 0;
551   sent = GNUNET_NETWORK_socket_sendto (send_handle, msgbuf, msgbuf_size, sb, sbs);
552
553   if ((GNUNET_SYSERR == sent) && ((errno == EAGAIN) || (errno == ENOBUFS)))
554   {
555     /* We have to retry later: retry */
556     return 0;
557   }
558
559   if ((GNUNET_SYSERR == sent) && (errno == EMSGSIZE))
560   {
561     socklen_t size = 0;
562     socklen_t len = sizeof (size);
563
564     GNUNET_NETWORK_socket_getsockopt ((struct GNUNET_NETWORK_Handle *)
565                                       send_handle, SOL_SOCKET, SO_SNDBUF, &size,
566                                       &len);
567
568     if (size < msgbuf_size)
569     {
570       LOG (GNUNET_ERROR_TYPE_DEBUG,
571                   "Trying to increase socket buffer size from %i to %i for message size %i\n",
572                   size,
573                   ((msgbuf_size / 1000) + 2) * 1000,
574                   msgbuf_size);
575       size = ((msgbuf_size / 1000) + 2) * 1000;
576       if (GNUNET_NETWORK_socket_setsockopt
577           ((struct GNUNET_NETWORK_Handle *) send_handle, SOL_SOCKET, SO_SNDBUF,
578            &size, sizeof (size)) == GNUNET_OK)
579       {
580         /* Increased buffer size, retry sending */
581         return 0;
582       }
583       else
584       {
585         /* Could not increase buffer size: error, no retry */
586         GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "setsockopt");
587         return -1;
588       }
589     }
590     else
591     {
592       /* Buffer is bigger than message:  error, no retry
593        * This should never happen!*/
594       GNUNET_break (0);
595       return -1;
596     }
597   }
598
599   LOG (GNUNET_ERROR_TYPE_DEBUG,
600               "UNIX transmit %u-byte message to %s (%d: %s)\n",
601               (unsigned int) msgbuf_size, GNUNET_a2s (sb, sbs), (int) sent,
602               (sent < 0) ? STRERROR (errno) : "ok");
603
604   /* Calling continuation */
605   if (cont != NULL)
606   {
607     if (sent == GNUNET_SYSERR)
608       cont (cont_cls, target, GNUNET_SYSERR, payload, 0);
609     if (sent > 0)
610       cont (cont_cls, target, GNUNET_OK, payload, msgbuf_size);
611   }
612
613   /* return number of bytes successfully sent */
614   if (sent > 0)
615     return sent;
616   if (sent == 0)
617   {
618     /* That should never happen */
619     GNUNET_break (0);
620     return -1;
621   }
622   /* failed and retry: return 0 */
623   if (GNUNET_SYSERR == sent)
624     return 0;
625   /* default */
626   return -1;
627 }
628
629 struct gsi_ctx
630 {
631   char *address;
632   size_t addrlen;
633   struct Session *res;
634 };
635
636
637 static int
638 get_session_it (void *cls, const struct GNUNET_HashCode * key, void *value)
639 {
640   struct gsi_ctx *gsi = cls;
641   struct Session *s = value;
642
643   LOG (GNUNET_ERROR_TYPE_DEBUG, "Comparing session %s %s\n", gsi->address, s->addr);
644   if ((gsi->addrlen == s->addrlen) &&
645       (0 == memcmp (gsi->address, s->addr, s->addrlen)))
646   {
647     gsi->res = s;
648     return GNUNET_NO;
649   }
650   return GNUNET_YES;
651 }
652
653 /**
654  * Creates a new outbound session the transport service will use to send data to the
655  * peer
656  *
657  * @param cls the plugin
658  * @param address the address
659  * @return the session or NULL of max connections exceeded
660  */
661 static struct Session *
662 unix_plugin_get_session (void *cls,
663                   const struct GNUNET_HELLO_Address *address)
664 {
665   struct Session * s = NULL;
666   struct Plugin *plugin = cls;
667   struct gsi_ctx gsi;
668
669   /* Checks */
670   GNUNET_assert (plugin != NULL);
671   GNUNET_assert (address != NULL);
672
673   /* Check if already existing */
674   gsi.address = (char *) address->address;
675   gsi.addrlen = address->address_length;
676   gsi.res = NULL;
677   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->session_map, &address->peer.hashPubKey, &get_session_it, &gsi);
678   if (gsi.res != NULL)
679   {
680     LOG (GNUNET_ERROR_TYPE_DEBUG, "Found existing session\n");
681     return gsi.res;
682   }
683
684   /* Create a new session */
685   s = GNUNET_malloc (sizeof (struct Session) + address->address_length);
686   s->addr = &s[1];
687   s->addrlen = address->address_length;
688   s->plugin = plugin;
689   memcpy(s->addr, address->address, s->addrlen);
690   memcpy(&s->target, &address->peer, sizeof (struct GNUNET_PeerIdentity));
691
692   start_session_timeout (s);
693
694   GNUNET_CONTAINER_multihashmap_put (plugin->session_map,
695       &address->peer.hashPubKey, s,
696       GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
697
698   GNUNET_STATISTICS_set(plugin->env->stats,
699                         "# UNIX sessions active",
700                         GNUNET_CONTAINER_multihashmap_size(plugin->session_map),
701                         GNUNET_NO);
702   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating new session\n");
703   return s;
704 }
705
706 /*
707  * @param cls the plugin handle
708  * @param tc the scheduling context (for rescheduling this function again)
709  *
710  * We have been notified that our writeset has something to read.  We don't
711  * know which socket needs to be read, so we have to check each one
712  * Then reschedule this function to be called again once more is available.
713  *
714  */
715 static void
716 unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
717
718 /**
719  * Function that can be used by the transport service to transmit
720  * a message using the plugin.   Note that in the case of a
721  * peer disconnecting, the continuation MUST be called
722  * prior to the disconnect notification itself.  This function
723  * will be called with this peer's HELLO message to initiate
724  * a fresh connection to another peer.
725  *
726  * @param cls closure
727  * @param session which session must be used
728  * @param msgbuf the message to transmit
729  * @param msgbuf_size number of bytes in 'msgbuf'
730  * @param priority how important is the message (most plugins will
731  *                 ignore message priority and just FIFO)
732  * @param to how long to wait at most for the transmission (does not
733  *                require plugins to discard the message after the timeout,
734  *                just advisory for the desired delay; most plugins will ignore
735  *                this as well)
736  * @param cont continuation to call once the message has
737  *        been transmitted (or if the transport is ready
738  *        for the next transmission call; or if the
739  *        peer disconnected...); can be NULL
740  * @param cont_cls closure for cont
741  * @return number of bytes used (on the physical network, with overheads);
742  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
743  *         and does NOT mean that the message was not transmitted (DV)
744  */
745 static ssize_t
746 unix_plugin_send (void *cls,
747                   struct Session *session,
748                   const char *msgbuf, size_t msgbuf_size,
749                   unsigned int priority,
750                   struct GNUNET_TIME_Relative to,
751                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
752 {
753   struct Plugin *plugin = cls;
754   struct UNIXMessageWrapper *wrapper;
755   struct UNIXMessage *message;
756   int ssize;
757   
758   GNUNET_assert (plugin != NULL);
759   GNUNET_assert (session != NULL);
760
761   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_contains_value(plugin->session_map,
762       &session->target.hashPubKey, session))
763   {
764     LOG (GNUNET_ERROR_TYPE_ERROR, "Invalid session for peer `%s' `%s'\n",
765                 GNUNET_i2s (&session->target),
766                 (char *) session->addr);
767     GNUNET_break (0);
768
769     return GNUNET_SYSERR;
770   }
771   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending %u bytes with session for peer `%s' `%s'\n",
772                 msgbuf_size,
773         GNUNET_i2s (&session->target),
774         (char *) session->addr);
775
776   ssize = sizeof (struct UNIXMessage) + msgbuf_size;
777   message = GNUNET_malloc (sizeof (struct UNIXMessage) + msgbuf_size);
778   message->header.size = htons (ssize);
779   message->header.type = htons (0);
780   memcpy (&message->sender, plugin->env->my_identity,
781           sizeof (struct GNUNET_PeerIdentity));
782   memcpy (&message[1], msgbuf, msgbuf_size);
783
784   reschedule_session_timeout (session);
785
786   wrapper = GNUNET_malloc (sizeof (struct UNIXMessageWrapper));
787   wrapper->msg = message;
788   wrapper->msgsize = ssize;
789   wrapper->payload = msgbuf_size;
790   wrapper->priority = priority;
791   wrapper->timeout = to;
792   wrapper->cont = cont;
793   wrapper->cont_cls = cont_cls;
794   wrapper->session = session;
795
796   GNUNET_CONTAINER_DLL_insert(plugin->msg_head, plugin->msg_tail, wrapper);
797
798   plugin->bytes_in_queue += ssize;
799   GNUNET_STATISTICS_set (plugin->env->stats,"# bytes currently in UNIX buffers",
800       plugin->bytes_in_queue, GNUNET_NO);
801
802   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sent %d bytes to `%s'\n", ssize,
803               (char *) session->addr);
804   if (plugin->with_ws == GNUNET_NO)
805   {
806     reschedule_select (plugin);
807   }
808
809   return ssize;
810 }
811
812
813 /**
814  * Demultiplexer for UNIX messages
815  *
816  * @param plugin the main plugin for this transport
817  * @param sender from which peer the message was received
818  * @param currhdr pointer to the header of the message
819  * @param un the address from which the message was received
820  * @param fromlen the length of the address
821  */
822 static void
823 unix_demultiplexer (struct Plugin *plugin, struct GNUNET_PeerIdentity *sender,
824                     const struct GNUNET_MessageHeader *currhdr,
825                     const struct sockaddr_un *un, size_t fromlen)
826 {
827   struct GNUNET_ATS_Information ats[2];
828   struct Session *s = NULL;
829   struct GNUNET_HELLO_Address * addr;
830
831   ats[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
832   ats[0].value = htonl (UNIX_DIRECT_DISTANCE);
833   ats[1] = plugin->ats_network;
834   GNUNET_break (ntohl(plugin->ats_network.value) != GNUNET_ATS_NET_UNSPECIFIED);
835
836   GNUNET_assert (fromlen >= sizeof (struct sockaddr_un));
837
838   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received message from %s\n",
839               un->sun_path);
840
841
842
843   plugin->bytes_in_recv += ntohs(currhdr->size);
844   GNUNET_STATISTICS_set (plugin->env->stats,"# bytes received via UNIX",
845       plugin->bytes_in_recv, GNUNET_NO);
846
847   addr = GNUNET_HELLO_address_allocate(sender, "unix", un->sun_path, strlen (un->sun_path) + 1);
848   s = lookup_session (plugin, sender, un);
849   if (NULL == s)
850     s = unix_plugin_get_session (plugin, addr);
851   reschedule_session_timeout (s);
852
853   plugin->env->receive (plugin->env->cls, sender, currhdr,
854                         (const struct GNUNET_ATS_Information *) &ats, 2,
855                         s, un->sun_path, strlen (un->sun_path) + 1);
856   GNUNET_free (addr);
857 }
858
859
860 static void
861 unix_plugin_select_read (struct Plugin * plugin)
862 {
863   char buf[65536] GNUNET_ALIGN;
864   struct UNIXMessage *msg;
865   struct GNUNET_PeerIdentity sender;
866   struct sockaddr_un un;
867   socklen_t addrlen;
868   ssize_t ret;
869   int offset;
870   int tsize;
871   char *msgbuf;
872   const struct GNUNET_MessageHeader *currhdr;
873   uint16_t csize;
874
875   addrlen = sizeof (un);
876   memset (&un, 0, sizeof (un));
877
878   ret =
879       GNUNET_NETWORK_socket_recvfrom (plugin->unix_sock.desc, buf, sizeof (buf),
880                                       (struct sockaddr *) &un, &addrlen);
881
882   if ((GNUNET_SYSERR == ret) && ((errno == EAGAIN) || (errno == ENOBUFS)))
883     return;
884
885   if (ret == GNUNET_SYSERR)
886   {
887     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "recvfrom");
888     return;
889   }
890   else
891   {
892 #if LINUX
893     un.sun_path[0] = '/';
894 #endif
895     LOG (GNUNET_ERROR_TYPE_DEBUG, "Read %d bytes from socket %s\n", ret,
896                 &un.sun_path[0]);
897   }
898
899   GNUNET_assert (AF_UNIX == (un.sun_family));
900
901   msg = (struct UNIXMessage *) buf;
902   csize = ntohs (msg->header.size);
903   if ((csize < sizeof (struct UNIXMessage)) || (csize > ret))
904   {
905     GNUNET_break_op (0);
906     return;
907   }
908   msgbuf = (char *) &msg[1];
909   memcpy (&sender, &msg->sender, sizeof (struct GNUNET_PeerIdentity));
910   offset = 0;
911   tsize = csize - sizeof (struct UNIXMessage);
912   while (offset + sizeof (struct GNUNET_MessageHeader) <= tsize)
913   {
914     currhdr = (struct GNUNET_MessageHeader *) &msgbuf[offset];
915     csize = ntohs (currhdr->size);
916     if ((csize < sizeof (struct GNUNET_MessageHeader)) ||
917         (csize > tsize - offset))
918     {
919       GNUNET_break_op (0);
920       break;
921     }
922
923     unix_demultiplexer (plugin, &sender, currhdr, &un, sizeof (un));
924     offset += csize;
925   }
926 }
927
928
929 static void
930 unix_plugin_select_write (struct Plugin * plugin)
931 {
932   static int retry_counter;
933   int sent = 0;
934   struct UNIXMessageWrapper * msgw = plugin->msg_head;
935
936   sent = unix_real_send (plugin,
937                          plugin->unix_sock.desc,
938                          &msgw->session->target,
939                          (const char *) msgw->msg,
940                          msgw->msgsize,
941                          msgw->priority,
942                          msgw->timeout,
943                          msgw->session->addr,
944                          msgw->session->addrlen,
945                          msgw->payload,
946                          msgw->cont, msgw->cont_cls);
947
948   if (sent == 0)
949   {
950     /* failed and retry */
951     retry_counter++;
952     GNUNET_STATISTICS_set (plugin->env->stats,"# UNIX retry attempt",
953         retry_counter, GNUNET_NO);
954     return;
955   }
956
957   if (retry_counter > 0 )
958   {
959     /* no retry: reset counter */
960     retry_counter = 0;
961     GNUNET_STATISTICS_set (plugin->env->stats,"# UNIX retry attempt",
962         retry_counter, GNUNET_NO);
963   }
964
965   if (sent == -1)
966   {
967     /* failed and no retry */
968     GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, msgw);
969
970     GNUNET_assert (plugin->bytes_in_queue >= msgw->msgsize);
971     plugin->bytes_in_queue -= msgw->msgsize;
972     GNUNET_STATISTICS_set (plugin->env->stats, "# bytes currently in UNIX buffers",
973         plugin->bytes_in_queue, GNUNET_NO);
974     plugin->bytes_discarded += msgw->msgsize;
975     GNUNET_STATISTICS_set (plugin->env->stats,"# UNIX bytes discarded",
976         plugin->bytes_discarded, GNUNET_NO);
977
978     GNUNET_free (msgw->msg);
979     GNUNET_free (msgw);
980     return;
981   }
982
983   if (sent > 0)
984   {
985     /* successfully sent bytes */
986     GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, msgw);
987
988     GNUNET_assert (plugin->bytes_in_queue >= msgw->msgsize);
989     plugin->bytes_in_queue -= msgw->msgsize;
990     GNUNET_STATISTICS_set (plugin->env->stats,"# bytes currently in UNIX buffers",
991         plugin->bytes_in_queue, GNUNET_NO);
992     plugin->bytes_in_sent += msgw->msgsize;
993     GNUNET_STATISTICS_set (plugin->env->stats,"# bytes transmitted via UNIX",
994         plugin->bytes_in_sent, GNUNET_NO);
995
996     GNUNET_free (msgw->msg);
997     GNUNET_free (msgw);
998     return;
999   }
1000
1001 }
1002
1003
1004 /**
1005  * We have been notified that our writeset has something to read.  We don't
1006  * know which socket needs to be read, so we have to check each one
1007  * Then reschedule this function to be called again once more is available.
1008  *
1009  * @param cls the plugin handle
1010  * @param tc the scheduling context (for rescheduling this function again)
1011  */
1012 static void
1013 unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1014 {
1015   struct Plugin *plugin = cls;
1016
1017   plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
1018   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
1019     return;
1020
1021   if ((tc->reason & GNUNET_SCHEDULER_REASON_WRITE_READY) != 0)
1022   {
1023     /* Ready to send data */
1024     GNUNET_assert (GNUNET_NETWORK_fdset_isset
1025                    (tc->write_ready, plugin->unix_sock.desc));
1026     if (plugin->msg_head != NULL)
1027       unix_plugin_select_write (plugin);
1028   }
1029
1030   if ((tc->reason & GNUNET_SCHEDULER_REASON_READ_READY) != 0)
1031   {
1032     /* Ready to receive data */
1033     GNUNET_assert (GNUNET_NETWORK_fdset_isset
1034                    (tc->read_ready, plugin->unix_sock.desc));
1035     unix_plugin_select_read (plugin);
1036   }
1037
1038   reschedule_select (plugin);
1039 }
1040
1041
1042 /**
1043  * Create a slew of UNIX sockets.  If possible, use IPv6 and IPv4.
1044  *
1045  * @param cls closure for server start, should be a struct Plugin *
1046  * @return number of sockets created or GNUNET_SYSERR on error
1047  */
1048 static int
1049 unix_transport_server_start (void *cls)
1050 {
1051   struct Plugin *plugin = cls;
1052   struct sockaddr *serverAddr;
1053   socklen_t addrlen;
1054   struct sockaddr_un un;
1055   size_t slen;
1056
1057   memset (&un, 0, sizeof (un));
1058   un.sun_family = AF_UNIX;
1059   slen = strlen (plugin->unix_socket_path) + 1;
1060   if (slen >= sizeof (un.sun_path))
1061     slen = sizeof (un.sun_path) - 1;
1062
1063   memcpy (un.sun_path, plugin->unix_socket_path, slen);
1064   un.sun_path[slen] = '\0';
1065   slen = sizeof (struct sockaddr_un);
1066 #if HAVE_SOCKADDR_IN_SIN_LEN
1067   un.sun_len = (u_char) slen;
1068 #endif
1069
1070   serverAddr = (struct sockaddr *) &un;
1071   addrlen = slen;
1072 #if LINUX
1073   un.sun_path[0] = '\0';
1074 #endif
1075   plugin->ats_network = plugin->env->get_address_type (plugin->env->cls, serverAddr, addrlen);
1076   plugin->unix_sock.desc =
1077       GNUNET_NETWORK_socket_create (AF_UNIX, SOCK_DGRAM, 0);
1078   if (NULL == plugin->unix_sock.desc)
1079   {
1080     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "socket");
1081     return GNUNET_SYSERR;
1082   }
1083   if (GNUNET_NETWORK_socket_bind (plugin->unix_sock.desc, serverAddr, addrlen)
1084       != GNUNET_OK)
1085   {
1086     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "bind");
1087     GNUNET_NETWORK_socket_close (plugin->unix_sock.desc);
1088     plugin->unix_sock.desc = NULL;
1089     return GNUNET_SYSERR;
1090   }
1091   LOG (GNUNET_ERROR_TYPE_DEBUG, "Bound to `%s'\n", plugin->unix_socket_path);
1092   plugin->rs = GNUNET_NETWORK_fdset_create ();
1093   plugin->ws = GNUNET_NETWORK_fdset_create ();
1094   GNUNET_NETWORK_fdset_zero (plugin->rs);
1095   GNUNET_NETWORK_fdset_zero (plugin->ws);
1096   GNUNET_NETWORK_fdset_set (plugin->rs, plugin->unix_sock.desc);
1097   GNUNET_NETWORK_fdset_set (plugin->ws, plugin->unix_sock.desc);
1098
1099   reschedule_select (plugin);
1100
1101   return 1;
1102 }
1103
1104
1105 /**
1106  * Function that will be called to check if a binary address for this
1107  * plugin is well-formed and corresponds to an address for THIS peer
1108  * (as per our configuration).  Naturally, if absolutely necessary,
1109  * plugins can be a bit conservative in their answer, but in general
1110  * plugins should make sure that the address does not redirect
1111  * traffic to a 3rd party that might try to man-in-the-middle our
1112  * traffic.
1113  *
1114  * @param cls closure, should be our handle to the Plugin
1115  * @param addr pointer to the address
1116  * @param addrlen length of addr
1117  * @return GNUNET_OK if this is a plausible address for this peer
1118  *         and transport, GNUNET_SYSERR if not
1119  *
1120  */
1121 static int
1122 unix_check_address (void *cls, const void *addr, size_t addrlen)
1123 {
1124   LOG (GNUNET_ERROR_TYPE_DEBUG,
1125               "Informing transport service about my address `%s'\n",
1126               (char *) addr);
1127   return GNUNET_OK;
1128 }
1129
1130
1131 /**
1132  * Convert the transports address to a nice, human-readable
1133  * format.
1134  *
1135  * @param cls closure
1136  * @param type name of the transport that generated the address
1137  * @param addr one of the addresses of the host, NULL for the last address
1138  *        the specific address format depends on the transport
1139  * @param addrlen length of the address
1140  * @param numeric should (IP) addresses be displayed in numeric form?
1141  * @param timeout after how long should we give up?
1142  * @param asc function to call on each string
1143  * @param asc_cls closure for asc
1144  */
1145 static void
1146 unix_plugin_address_pretty_printer (void *cls, const char *type,
1147                                     const void *addr, size_t addrlen,
1148                                     int numeric,
1149                                     struct GNUNET_TIME_Relative timeout,
1150                                     GNUNET_TRANSPORT_AddressStringCallback asc,
1151                                     void *asc_cls)
1152 {
1153   if ((NULL != addr) && (addrlen > 0))
1154   {
1155     asc (asc_cls, (const char *) addr);
1156   }
1157   else
1158   {
1159     GNUNET_break (0);
1160     asc (asc_cls, "<invalid UNIX address>");
1161   }
1162   asc (asc_cls, NULL);
1163 }
1164
1165
1166 /**
1167  * Function called to convert a string address to
1168  * a binary address.
1169  *
1170  * @param cls closure ('struct Plugin*')
1171  * @param addr string address
1172  * @param addrlen length of the address (strlen(addr) + '\0')
1173  * @param buf location to store the buffer
1174  *        If the function returns GNUNET_SYSERR, its contents are undefined.
1175  * @param added length of created address
1176  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
1177  */
1178 static int
1179 unix_string_to_address (void *cls, const char *addr, uint16_t addrlen,
1180     void **buf, size_t *added)
1181 {
1182   if ((NULL == addr) || (0 == addrlen))
1183   {
1184     GNUNET_break (0);
1185     return GNUNET_SYSERR;
1186   }
1187
1188   if ('\0' != addr[addrlen - 1])
1189   {
1190     GNUNET_break (0);
1191     return GNUNET_SYSERR;
1192   }
1193
1194   if (strlen (addr) != addrlen - 1)
1195   {
1196     GNUNET_break (0);
1197     return GNUNET_SYSERR;
1198   }
1199
1200   (*buf) = strdup (addr);
1201   (*added) = strlen (addr) + 1;
1202   return GNUNET_OK;
1203 }
1204
1205
1206 /**
1207  * Function called for a quick conversion of the binary address to
1208  * a numeric address.  Note that the caller must not free the
1209  * address and that the next call to this function is allowed
1210  * to override the address again.
1211  *
1212  * @param cls closure
1213  * @param addr binary address
1214  * @param addrlen length of the address
1215  * @return string representing the same address
1216  */
1217 static const char *
1218 unix_address_to_string (void *cls, const void *addr, size_t addrlen)
1219 {
1220   if ((addr != NULL) && (addrlen > 0))
1221     return (const char *) addr;
1222   return NULL;
1223 }
1224
1225
1226 /**
1227  * Notify transport service about address
1228  *
1229  * @param cls the plugin
1230  * @param tc unused
1231  */
1232 static void
1233 address_notification (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1234 {
1235   struct Plugin *plugin = cls;
1236
1237   plugin->env->notify_address (plugin->env->cls, GNUNET_YES,
1238                                plugin->unix_socket_path,
1239                                strlen (plugin->unix_socket_path) + 1,
1240                                "unix");
1241 }
1242
1243
1244 /**
1245  * Session was idle, so disconnect it
1246  */
1247 static void
1248 session_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1249 {
1250   GNUNET_assert (NULL != cls);
1251   struct Session *s = cls;
1252
1253   s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1254   LOG (GNUNET_ERROR_TYPE_DEBUG,
1255               "Session %p was idle for %llu ms, disconnecting\n",
1256               s, (unsigned long long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1257   /* call session destroy function */
1258   disconnect_session(s);
1259 }
1260
1261
1262 /**
1263  * Start session timeout
1264  */
1265 static void
1266 start_session_timeout (struct Session *s)
1267 {
1268   GNUNET_assert (NULL != s);
1269   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task);
1270   s->timeout_task =  GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1271                                                    &session_timeout,
1272                                                    s);
1273   LOG (GNUNET_ERROR_TYPE_DEBUG,
1274               "Timeout for session %p set to %llu ms\n",
1275               s,  (unsigned long long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1276 }
1277
1278
1279 /**
1280  * Increment session timeout due to activity
1281  */
1282 static void
1283 reschedule_session_timeout (struct Session *s)
1284 {
1285   GNUNET_assert (NULL != s);
1286   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != s->timeout_task);
1287
1288   GNUNET_SCHEDULER_cancel (s->timeout_task);
1289   s->timeout_task =  GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1290                                                    &session_timeout,
1291                                                    s);
1292   LOG (GNUNET_ERROR_TYPE_DEBUG,
1293               "Timeout rescheduled for session %p set to %llu ms\n",
1294               s, (unsigned long long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1295 }
1296
1297
1298 /**
1299  * Cancel timeout
1300  */
1301 static void
1302 stop_session_timeout (struct Session *s)
1303 {
1304   GNUNET_assert (NULL != s);
1305
1306   if (GNUNET_SCHEDULER_NO_TASK != s->timeout_task)
1307   {
1308     GNUNET_SCHEDULER_cancel (s->timeout_task);
1309     s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1310     LOG (GNUNET_ERROR_TYPE_DEBUG,
1311                 "Timeout stopped for session %p canceled\n",
1312                 s, (unsigned long long) GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1313   }
1314 }
1315
1316 /**
1317  * The exported method. Makes the core api available via a global and
1318  * returns the unix transport API.
1319  */
1320 void *
1321 libgnunet_plugin_transport_unix_init (void *cls)
1322 {
1323   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1324   unsigned long long port;
1325   struct GNUNET_TRANSPORT_PluginFunctions *api;
1326   struct Plugin *plugin;
1327   int sockets_created;
1328
1329   if (NULL == env->receive)
1330   {
1331     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
1332        initialze the plugin or the API */
1333     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1334     api->cls = NULL;
1335     api->address_pretty_printer = &unix_plugin_address_pretty_printer;
1336     api->address_to_string = &unix_address_to_string;
1337     api->string_to_address = &unix_string_to_address;
1338     return api;
1339   }
1340   GNUNET_assert( NULL != env->stats);
1341
1342   if (GNUNET_OK !=
1343       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-unix", "PORT",
1344                                              &port))
1345     port = UNIX_NAT_DEFAULT_PORT;
1346   plugin = GNUNET_malloc (sizeof (struct Plugin));
1347   plugin->port = port;
1348   plugin->env = env;
1349   GNUNET_asprintf (&plugin->unix_socket_path, "/tmp/unix-plugin-sock.%d",
1350                    plugin->port);
1351
1352   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1353   api->cls = plugin;
1354
1355   api->get_session = &unix_plugin_get_session;
1356   api->send = &unix_plugin_send;
1357   api->disconnect = &unix_disconnect;
1358   api->address_pretty_printer = &unix_plugin_address_pretty_printer;
1359   api->address_to_string = &unix_address_to_string;
1360   api->check_address = &unix_check_address;
1361   api->string_to_address = &unix_string_to_address;
1362   sockets_created = unix_transport_server_start (plugin);
1363   if (sockets_created == 0)
1364     LOG (GNUNET_ERROR_TYPE_WARNING, _("Failed to open UNIX sockets\n"));
1365
1366   plugin->session_map = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
1367
1368   GNUNET_SCHEDULER_add_now (address_notification, plugin);
1369   return api;
1370 }
1371
1372 void *
1373 libgnunet_plugin_transport_unix_done (void *cls)
1374 {
1375   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1376   struct Plugin *plugin = api->cls;
1377
1378   if (NULL == plugin)
1379   {
1380     GNUNET_free (api);
1381     return NULL;
1382   }
1383
1384   plugin->env->notify_address (plugin->env->cls, GNUNET_NO,
1385                                plugin->unix_socket_path,
1386                                strlen (plugin->unix_socket_path) + 1,
1387                                "unix");
1388
1389   unix_transport_server_stop (plugin);
1390
1391
1392   GNUNET_CONTAINER_multihashmap_iterate (plugin->session_map, &get_session_delete_it, plugin);
1393   GNUNET_CONTAINER_multihashmap_destroy (plugin->session_map);
1394
1395
1396   if (NULL != plugin->rs)
1397     GNUNET_NETWORK_fdset_destroy (plugin->rs);
1398   if (NULL != plugin->ws)
1399     GNUNET_NETWORK_fdset_destroy (plugin->ws);
1400   GNUNET_free (plugin->unix_socket_path);
1401   GNUNET_free (plugin);
1402   GNUNET_free (api);
1403   return NULL;
1404 }
1405
1406 /* end of plugin_transport_unix.c */