- fix
[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 #define MAX_RETRIES 3
47 #define RETRY 0
48
49 #define LOG(kind,...) GNUNET_log_from (kind, "transport-unix",__VA_ARGS__)
50
51 /*
52  * Transport cost to peer, always 1 for UNIX (direct connection)
53  */
54 #define UNIX_DIRECT_DISTANCE 1
55
56 #define DEFAULT_NAT_PORT 0
57
58 /**
59  * How long until we give up on transmitting the welcome message?
60  */
61 #define HOSTNAME_RESOLVE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
62
63 /**
64  * Starting port for listening and sending, eventually a config value
65  */
66 #define UNIX_NAT_DEFAULT_PORT 22086
67
68 GNUNET_NETWORK_STRUCT_BEGIN
69
70 /**
71  * UNIX Message-Packet header.
72  */
73 struct UNIXMessage
74 {
75   /**
76    * Message header.
77    */
78   struct GNUNET_MessageHeader header;
79
80   /**
81    * What is the identity of the sender (GNUNET_hash of public key)
82    */
83   struct GNUNET_PeerIdentity sender;
84
85 };
86
87 struct Session
88 {
89   struct GNUNET_PeerIdentity target;
90
91   void *addr;
92   size_t addrlen;
93
94   /**
95    * Session timeout task
96    */
97   GNUNET_SCHEDULER_TaskIdentifier timeout_task;
98
99   struct Plugin * plugin;
100 };
101
102 struct UNIXMessageWrapper
103 {
104   struct UNIXMessageWrapper *next;
105   struct UNIXMessageWrapper *prev;
106
107   struct UNIXMessage * msg;
108   size_t msgsize;
109   size_t payload;
110
111   struct GNUNET_TIME_Absolute timeout;
112   unsigned int priority;
113
114   struct Session *session;
115   GNUNET_TRANSPORT_TransmitContinuation cont;
116   void *cont_cls;
117 };
118
119 /* Forward definition */
120 struct Plugin;
121
122
123 /**
124  * UNIX NAT "Session"
125  */
126 struct PeerSession
127 {
128
129   /**
130    * Stored in a linked list.
131    */
132   struct PeerSession *next;
133
134   /**
135    * Pointer to the global plugin struct.
136    */
137   struct Plugin *plugin;
138
139   /**
140    * To whom are we talking to (set to our identity
141    * if we are still waiting for the welcome message)
142    */
143   struct GNUNET_PeerIdentity target;
144
145   /**
146    * Address of the other peer (either based on our 'connect'
147    * call or on our 'accept' call).
148    */
149   void *connect_addr;
150
151   /**
152    * Length of connect_addr.
153    */
154   size_t connect_alen;
155
156   /**
157    * Are we still expecting the welcome message? (GNUNET_YES/GNUNET_NO)
158    */
159   int expecting_welcome;
160
161   /**
162    * From which socket do we need to send to this peer?
163    */
164   struct GNUNET_NETWORK_Handle *sock;
165
166   /*
167    * Queue of messages for this peer, in the case that
168    * we have to await a connection...
169    */
170   struct MessageQueue *messages;
171
172 };
173
174 /**
175  * Information we keep for each of our listen sockets.
176  */
177 struct UNIX_Sock_Info
178 {
179   /**
180    * The network handle
181    */
182   struct GNUNET_NETWORK_Handle *desc;
183
184   /**
185    * The port we bound to
186    */
187   uint16_t port;
188 };
189
190
191 /**
192  * Encapsulation of all of the state of the plugin.
193  */
194 struct Plugin
195 {
196   /**
197    * Our environment.
198    */
199   struct GNUNET_TRANSPORT_PluginEnvironment *env;
200
201   /**
202    * Sessions
203    */
204   struct GNUNET_CONTAINER_MultiHashMap *session_map;
205
206   /**
207    * ID of task used to update our addresses when one expires.
208    */
209   GNUNET_SCHEDULER_TaskIdentifier address_update_task;
210
211   /**
212    * ID of select task
213    */
214   GNUNET_SCHEDULER_TaskIdentifier select_task;
215
216   /**
217    * Integer to append to unix domain socket.
218    */
219   uint16_t port;
220
221   /**
222    * FD Read set
223    */
224   struct GNUNET_NETWORK_FDSet *rs;
225
226   /**
227    * FD Write set
228    */
229   struct GNUNET_NETWORK_FDSet *ws;
230
231   int with_ws;
232
233   /**
234    * socket that we transmit all data with
235    */
236   struct UNIX_Sock_Info unix_sock;
237
238   /**
239    * Path of our unix domain socket (/tmp/unix-plugin-PORT)
240    */
241   char *unix_socket_path;
242
243   struct UNIXMessageWrapper *msg_head;
244   struct UNIXMessageWrapper *msg_tail;
245
246   /**
247    * ATS network
248    */
249   struct GNUNET_ATS_Information ats_network;
250
251   unsigned int bytes_in_queue;
252   unsigned int bytes_in_sent;
253   unsigned int bytes_in_recv;
254   unsigned int bytes_discarded;
255 };
256
257 /**
258  * Start session timeout
259  */
260 static void
261 start_session_timeout (struct Session *s);
262
263 /**
264  * Increment session timeout due to activity
265  */
266 static void
267 reschedule_session_timeout (struct Session *s);
268
269 /**
270  * Cancel timeout
271  */
272 static void
273 stop_session_timeout (struct Session *s);
274
275
276 static void
277 unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
278
279
280 static void
281 reschedule_select (struct Plugin * plugin)
282 {
283
284   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
285   {
286     GNUNET_SCHEDULER_cancel (plugin->select_task);
287     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
288   }
289
290   if (NULL != plugin->msg_head)
291   {
292     plugin->select_task =
293       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
294                                    GNUNET_TIME_UNIT_FOREVER_REL,
295                                    plugin->rs,
296                                    plugin->ws,
297                                    &unix_plugin_select, plugin);
298     plugin->with_ws = GNUNET_YES;
299   }
300   else
301   {
302     plugin->select_task =
303       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_DEFAULT,
304                                    GNUNET_TIME_UNIT_FOREVER_REL,
305                                    plugin->rs,
306                                    NULL,
307                                    &unix_plugin_select, plugin);
308     plugin->with_ws = GNUNET_NO;
309   }
310 }
311
312 struct LookupCtx
313 {
314   struct Session *s;
315   const struct sockaddr_un *addr;
316 };
317
318 int lookup_session_it (void *cls,
319                        const struct GNUNET_HashCode * key,
320                        void *value)
321 {
322   struct LookupCtx *lctx = cls;
323   struct Session *t = value;
324
325   if (0 == strcmp (t->addr, lctx->addr->sun_path))
326   {
327     lctx->s = t;
328     return GNUNET_NO;
329   }
330   return GNUNET_YES;
331 }
332
333
334 static struct Session *
335 lookup_session (struct Plugin *plugin, struct GNUNET_PeerIdentity *sender, const struct sockaddr_un *addr)
336 {
337   struct LookupCtx lctx;
338
339   GNUNET_assert (NULL != plugin);
340   GNUNET_assert (NULL != sender);
341   GNUNET_assert (NULL != addr);
342
343   lctx.s = NULL;
344   lctx.addr = addr;
345
346   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->session_map, &sender->hashPubKey, &lookup_session_it, &lctx);
347
348   return lctx.s;
349 }
350
351 /**
352  * Functions with this signature are called whenever we need
353  * to close a session due to a disconnect or failure to
354  * establish a connection.
355  *
356  * @param s session to close down
357  */
358 static void
359 disconnect_session (struct Session *s)
360 {
361   struct UNIXMessageWrapper *msgw;
362   struct UNIXMessageWrapper *next;
363   struct Plugin * plugin = s->plugin;
364   int removed;
365   GNUNET_assert (plugin != NULL);
366   GNUNET_assert (s != NULL);
367
368   LOG (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting session for peer `%s' `%s' \n", GNUNET_i2s (&s->target), s->addr);
369   stop_session_timeout (s);
370   plugin->env->session_end (plugin->env->cls, &s->target, s);
371
372   msgw = plugin->msg_head;
373   removed = GNUNET_NO;
374   next = plugin->msg_head;
375   while (NULL != next)
376   {
377     msgw = next;
378     next = msgw->next;
379     if (msgw->session != s)
380       continue;
381     GNUNET_CONTAINER_DLL_remove (plugin->msg_head, plugin->msg_tail, msgw);
382     if (NULL != msgw->cont)
383       msgw->cont (msgw->cont_cls,  &msgw->session->target, GNUNET_SYSERR,
384                   msgw->payload, 0);
385     GNUNET_free (msgw->msg);
386     GNUNET_free (msgw);
387     removed = GNUNET_YES;    
388   }
389   if ((GNUNET_YES == removed) && (NULL == plugin->msg_head))
390     reschedule_select (plugin);
391
392   GNUNET_assert (GNUNET_YES ==
393                  GNUNET_CONTAINER_multihashmap_remove(plugin->session_map, &s->target.hashPubKey, s));
394
395   GNUNET_STATISTICS_set(plugin->env->stats,
396                         "# UNIX sessions active",
397                         GNUNET_CONTAINER_multihashmap_size(plugin->session_map),
398                         GNUNET_NO);
399
400   GNUNET_free (s);
401 }
402
403 static int
404 get_session_delete_it (void *cls, const struct GNUNET_HashCode * key, void *value)
405 {
406   struct Session *s = value;
407   disconnect_session (s);
408   return GNUNET_YES;
409 }
410
411
412 /**
413  * Disconnect from a remote node.  Clean up session if we have one for this peer
414  *
415  * @param cls closure for this call (should be handle to Plugin)
416  * @param target the peeridentity of the peer to disconnect
417  * @return GNUNET_OK on success, GNUNET_SYSERR if the operation failed
418  */
419 static void
420 unix_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
421 {
422   struct Plugin *plugin = cls;
423   GNUNET_assert (plugin != NULL);
424
425   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->session_map, &target->hashPubKey, &get_session_delete_it, plugin);
426   return;
427 }
428
429 /**
430  * Shutdown the server process (stop receiving inbound traffic). Maybe
431  * restarted later!
432  *
433  * @param cls Handle to the plugin for this transport
434  *
435  * @return returns the number of sockets successfully closed,
436  *         should equal the number of sockets successfully opened
437  */
438 static int
439 unix_transport_server_stop (void *cls)
440 {
441   struct Plugin *plugin = cls;
442   struct UNIXMessageWrapper * msgw;
443
444   while (NULL != (msgw = plugin->msg_head))
445   {
446     GNUNET_CONTAINER_DLL_remove (plugin->msg_head, plugin->msg_tail, msgw);
447     if (msgw->cont != NULL)
448       msgw->cont (msgw->cont_cls,  &msgw->session->target, GNUNET_SYSERR,
449                   msgw->payload, 0);
450     GNUNET_free (msgw->msg);
451     GNUNET_free (msgw);
452   }
453
454   if (plugin->select_task != GNUNET_SCHEDULER_NO_TASK)
455   {
456     GNUNET_SCHEDULER_cancel (plugin->select_task);
457     plugin->select_task = GNUNET_SCHEDULER_NO_TASK;
458   }
459
460   if (NULL != plugin->unix_sock.desc)
461   {
462     GNUNET_break (GNUNET_OK ==
463                   GNUNET_NETWORK_socket_close (plugin->unix_sock.desc));
464     plugin->unix_sock.desc = NULL;
465     plugin->with_ws = GNUNET_NO;
466   }
467   return GNUNET_OK;
468 }
469
470
471 /**
472  * Actually send out the message, assume we've got the address and
473  * send_handle squared away!
474  *
475  * @param cls closure
476  * @param send_handle which handle to send message on
477  * @param target who should receive this message (ignored by UNIX)
478  * @param msgbuf one or more GNUNET_MessageHeader(s) strung together
479  * @param msgbuf_size the size of the msgbuf to send
480  * @param priority how important is the message (ignored by UNIX)
481  * @param timeout when should we time out (give up) if we can not transmit?
482  * @param addr the addr to send the message to, needs to be a sockaddr for us
483  * @param addrlen the len of addr
484  * @param payload bytes payload to send
485  * @param cont continuation to call once the message has
486  *        been transmitted (or if the transport is ready
487  *        for the next transmission call; or if the
488  *        peer disconnected...)
489  * @param cont_cls closure for cont
490  *
491  * @return on success : the number of bytes written, 0 n retry, -1 on errors
492  */
493 static ssize_t
494 unix_real_send (void *cls,
495                 struct GNUNET_NETWORK_Handle *send_handle,
496                 const struct GNUNET_PeerIdentity *target, const char *msgbuf,
497                 size_t msgbuf_size, unsigned int priority,
498                 struct GNUNET_TIME_Absolute timeout,
499                 const void *addr,
500                 size_t addrlen,
501                 size_t payload,
502                 GNUNET_TRANSPORT_TransmitContinuation cont,
503                 void *cont_cls)
504 {
505   struct Plugin *plugin = cls;
506   ssize_t sent;
507   const void *sb;
508   size_t sbs;
509   struct sockaddr_un un;
510   size_t slen;
511
512   GNUNET_assert (NULL != plugin);
513
514   if (send_handle == NULL)
515   {
516     GNUNET_break (0); /* We do not have a send handle */
517     return GNUNET_SYSERR;
518   }
519   if ((addr == NULL) || (addrlen == 0))
520   {
521     GNUNET_break (0); /* Can never send if we don't have an address */
522     return GNUNET_SYSERR;
523   }
524
525   /* Prepare address */
526   memset (&un, 0, sizeof (un));
527   un.sun_family = AF_UNIX;
528   slen = strlen (addr) + 1;
529   if (slen >= sizeof (un.sun_path))
530     slen = sizeof (un.sun_path) - 1;
531   GNUNET_assert (slen < sizeof (un.sun_path));
532   memcpy (un.sun_path, addr, slen);
533   un.sun_path[slen] = '\0';
534   slen = sizeof (struct sockaddr_un);
535 #if LINUX
536   un.sun_path[0] = '\0';
537 #endif
538 #if HAVE_SOCKADDR_IN_SIN_LEN
539   un.sun_len = (u_char) slen;
540 #endif
541   sb = (struct sockaddr *) &un;
542   sbs = slen;
543
544 resend:
545   /* Send the data */
546   sent = 0;
547   sent = GNUNET_NETWORK_socket_sendto (send_handle, msgbuf, msgbuf_size, sb, sbs);
548
549   if (GNUNET_SYSERR == sent)
550   {
551     if (errno == EAGAIN)
552     {
553       return RETRY; /* We have to retry later  */
554     }
555     if (errno == ENOBUFS)
556     {
557       return RETRY; /* We have to retry later  */
558     }
559     if (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       if (size < msgbuf_size)
568       {
569         LOG (GNUNET_ERROR_TYPE_DEBUG,
570                     "Trying to increase socket buffer size from %i to %i for message size %i\n",
571                     size, ((msgbuf_size / 1000) + 2) * 1000, msgbuf_size);
572         size = ((msgbuf_size / 1000) + 2) * 1000;
573         if (GNUNET_OK == GNUNET_NETWORK_socket_setsockopt
574             ((struct GNUNET_NETWORK_Handle *) send_handle, SOL_SOCKET, SO_SNDBUF,
575              &size, sizeof (size)))
576           goto resend; /* Increased buffer size, retry sending */
577         else
578         {
579           /* Could not increase buffer size: error, no retry */
580           GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "setsockopt");
581           return GNUNET_SYSERR;
582         }
583       }
584       else
585       {
586         /* Buffer is bigger than message:  error, no retry
587          * This should never happen!*/
588         GNUNET_break (0);
589         return GNUNET_SYSERR;
590       }
591     }
592   }
593
594   LOG (GNUNET_ERROR_TYPE_DEBUG,
595               "UNIX transmit %u-byte message to %s (%d: %s)\n",
596               (unsigned int) msgbuf_size, GNUNET_a2s (sb, sbs), (int) sent,
597               (sent < 0) ? STRERROR (errno) : "ok");
598   return sent;
599 }
600
601 struct gsi_ctx
602 {
603   char *address;
604   size_t addrlen;
605   struct Session *res;
606 };
607
608
609 static int
610 get_session_it (void *cls, const struct GNUNET_HashCode * key, void *value)
611 {
612   struct gsi_ctx *gsi = cls;
613   struct Session *s = value;
614
615   LOG (GNUNET_ERROR_TYPE_DEBUG, "Comparing session %s %s\n", gsi->address, s->addr);
616   if ((gsi->addrlen == s->addrlen) &&
617       (0 == memcmp (gsi->address, s->addr, s->addrlen)))
618   {
619     gsi->res = s;
620     return GNUNET_NO;
621   }
622   return GNUNET_YES;
623 }
624
625 /**
626  * Creates a new outbound session the transport service will use to send data to the
627  * peer
628  *
629  * @param cls the plugin
630  * @param address the address
631  * @return the session or NULL of max connections exceeded
632  */
633 static struct Session *
634 unix_plugin_get_session (void *cls,
635                   const struct GNUNET_HELLO_Address *address)
636 {
637   struct Session * s = NULL;
638   struct Plugin *plugin = cls;
639   struct gsi_ctx gsi;
640
641   /* Checks */
642   GNUNET_assert (plugin != NULL);
643   GNUNET_assert (address != NULL);
644
645   /* Check if already existing */
646   gsi.address = (char *) address->address;
647   gsi.addrlen = address->address_length;
648   gsi.res = NULL;
649   GNUNET_CONTAINER_multihashmap_get_multiple (plugin->session_map, &address->peer.hashPubKey, &get_session_it, &gsi);
650   if (gsi.res != NULL)
651   {
652     LOG (GNUNET_ERROR_TYPE_DEBUG, "Found existing session\n");
653     return gsi.res;
654   }
655
656   /* Create a new session */
657   s = GNUNET_malloc (sizeof (struct Session) + address->address_length);
658   s->addr = &s[1];
659   s->addrlen = address->address_length;
660   s->plugin = plugin;
661   memcpy(s->addr, address->address, s->addrlen);
662   memcpy(&s->target, &address->peer, sizeof (struct GNUNET_PeerIdentity));
663
664   start_session_timeout (s);
665
666   GNUNET_CONTAINER_multihashmap_put (plugin->session_map,
667       &address->peer.hashPubKey, s,
668       GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
669
670   GNUNET_STATISTICS_set(plugin->env->stats,
671                         "# UNIX sessions active",
672                         GNUNET_CONTAINER_multihashmap_size(plugin->session_map),
673                         GNUNET_NO);
674   LOG (GNUNET_ERROR_TYPE_DEBUG, "Creating new session\n");
675   return s;
676 }
677
678 /*
679  * @param cls the plugin handle
680  * @param tc the scheduling context (for rescheduling this function again)
681  *
682  * We have been notified that our writeset has something to read.  We don't
683  * know which socket needs to be read, so we have to check each one
684  * Then reschedule this function to be called again once more is available.
685  *
686  */
687 static void
688 unix_plugin_select (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
689
690 /**
691  * Function that can be used by the transport service to transmit
692  * a message using the plugin.   Note that in the case of a
693  * peer disconnecting, the continuation MUST be called
694  * prior to the disconnect notification itself.  This function
695  * will be called with this peer's HELLO message to initiate
696  * a fresh connection to another peer.
697  *
698  * @param cls closure
699  * @param session which session must be used
700  * @param msgbuf the message to transmit
701  * @param msgbuf_size number of bytes in 'msgbuf'
702  * @param priority how important is the message (most plugins will
703  *                 ignore message priority and just FIFO)
704  * @param to how long to wait at most for the transmission (does not
705  *                require plugins to discard the message after the timeout,
706  *                just advisory for the desired delay; most plugins will ignore
707  *                this as well)
708  * @param cont continuation to call once the message has
709  *        been transmitted (or if the transport is ready
710  *        for the next transmission call; or if the
711  *        peer disconnected...); can be NULL
712  * @param cont_cls closure for cont
713  * @return number of bytes used (on the physical network, with overheads);
714  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
715  *         and does NOT mean that the message was not transmitted (DV)
716  */
717 static ssize_t
718 unix_plugin_send (void *cls,
719                   struct Session *session,
720                   const char *msgbuf, size_t msgbuf_size,
721                   unsigned int priority,
722                   struct GNUNET_TIME_Relative to,
723                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
724 {
725   struct Plugin *plugin = cls;
726   struct UNIXMessageWrapper *wrapper;
727   struct UNIXMessage *message;
728   int ssize;
729   
730   GNUNET_assert (plugin != NULL);
731   GNUNET_assert (session != NULL);
732
733   if (GNUNET_OK != GNUNET_CONTAINER_multihashmap_contains_value(plugin->session_map,
734       &session->target.hashPubKey, session))
735   {
736     LOG (GNUNET_ERROR_TYPE_ERROR, "Invalid session for peer `%s' `%s'\n",
737                 GNUNET_i2s (&session->target),
738                 (char *) session->addr);
739     GNUNET_break (0);
740
741     return GNUNET_SYSERR;
742   }
743   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sending %u bytes with session for peer `%s' `%s'\n",
744                 msgbuf_size,
745         GNUNET_i2s (&session->target),
746         (char *) session->addr);
747
748   ssize = sizeof (struct UNIXMessage) + msgbuf_size;
749   message = GNUNET_malloc (sizeof (struct UNIXMessage) + msgbuf_size);
750   message->header.size = htons (ssize);
751   message->header.type = htons (0);
752   memcpy (&message->sender, plugin->env->my_identity,
753           sizeof (struct GNUNET_PeerIdentity));
754   memcpy (&message[1], msgbuf, msgbuf_size);
755
756   reschedule_session_timeout (session);
757
758   wrapper = GNUNET_malloc (sizeof (struct UNIXMessageWrapper));
759   wrapper->msg = message;
760   wrapper->msgsize = ssize;
761   wrapper->payload = msgbuf_size;
762   wrapper->priority = priority;
763   wrapper->timeout = GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(), to);
764   wrapper->cont = cont;
765   wrapper->cont_cls = cont_cls;
766   wrapper->session = session;
767
768   GNUNET_CONTAINER_DLL_insert(plugin->msg_head, plugin->msg_tail, wrapper);
769
770   plugin->bytes_in_queue += ssize;
771   GNUNET_STATISTICS_set (plugin->env->stats,"# bytes currently in UNIX buffers",
772       plugin->bytes_in_queue, GNUNET_NO);
773
774   LOG (GNUNET_ERROR_TYPE_DEBUG, "Sent %d bytes to `%s'\n", ssize,
775               (char *) session->addr);
776   if (plugin->with_ws == GNUNET_NO)
777   {
778     reschedule_select (plugin);
779   }
780
781   return ssize;
782 }
783
784
785 /**
786  * Demultiplexer for UNIX messages
787  *
788  * @param plugin the main plugin for this transport
789  * @param sender from which peer the message was received
790  * @param currhdr pointer to the header of the message
791  * @param un the address from which the message was received
792  * @param fromlen the length of the address
793  */
794 static void
795 unix_demultiplexer (struct Plugin *plugin, struct GNUNET_PeerIdentity *sender,
796                     const struct GNUNET_MessageHeader *currhdr,
797                     const struct sockaddr_un *un, size_t fromlen)
798 {
799   struct GNUNET_ATS_Information ats[2];
800   struct Session *s = NULL;
801   struct GNUNET_HELLO_Address * addr;
802
803   ats[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
804   ats[0].value = htonl (UNIX_DIRECT_DISTANCE);
805   ats[1] = plugin->ats_network;
806   GNUNET_break (ntohl(plugin->ats_network.value) != GNUNET_ATS_NET_UNSPECIFIED);
807
808   GNUNET_assert (fromlen >= sizeof (struct sockaddr_un));
809
810   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received message from %s\n",
811               un->sun_path);
812
813
814
815   plugin->bytes_in_recv += ntohs(currhdr->size);
816   GNUNET_STATISTICS_set (plugin->env->stats,"# bytes received via UNIX",
817       plugin->bytes_in_recv, GNUNET_NO);
818
819   addr = GNUNET_HELLO_address_allocate(sender, "unix", un->sun_path, strlen (un->sun_path) + 1);
820   s = lookup_session (plugin, sender, un);
821   if (NULL == s)
822     s = unix_plugin_get_session (plugin, addr);
823   reschedule_session_timeout (s);
824
825   plugin->env->receive (plugin->env->cls, sender, currhdr,
826                         s, un->sun_path, strlen (un->sun_path) + 1);
827
828   plugin->env->update_address_metrics (plugin->env->cls,
829                 sender,
830                 un->sun_path,
831                 strlen (un->sun_path) + 1,
832       s,
833       (struct GNUNET_ATS_Information *) &ats, 2);
834
835   GNUNET_free (addr);
836 }
837
838
839 static void
840 unix_plugin_select_read (struct Plugin * plugin)
841 {
842   char buf[65536] GNUNET_ALIGN;
843   struct UNIXMessage *msg;
844   struct GNUNET_PeerIdentity sender;
845   struct sockaddr_un un;
846   socklen_t addrlen;
847   ssize_t ret;
848   int offset;
849   int tsize;
850   char *msgbuf;
851   const struct GNUNET_MessageHeader *currhdr;
852   uint16_t csize;
853
854   addrlen = sizeof (un);
855   memset (&un, 0, sizeof (un));
856
857   ret =
858       GNUNET_NETWORK_socket_recvfrom (plugin->unix_sock.desc, buf, sizeof (buf),
859                                       (struct sockaddr *) &un, &addrlen);
860
861   if ((GNUNET_SYSERR == ret) && ((errno == EAGAIN) || (errno == ENOBUFS)))
862     return;
863
864   if (ret == GNUNET_SYSERR)
865   {
866     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "recvfrom");
867     return;
868   }
869   else
870   {
871 #if LINUX
872     un.sun_path[0] = '/';
873 #endif
874     LOG (GNUNET_ERROR_TYPE_DEBUG, "Read %d bytes from socket %s\n", ret,
875                 &un.sun_path[0]);
876   }
877
878   GNUNET_assert (AF_UNIX == (un.sun_family));
879
880   msg = (struct UNIXMessage *) buf;
881   csize = ntohs (msg->header.size);
882   if ((csize < sizeof (struct UNIXMessage)) || (csize > ret))
883   {
884     GNUNET_break_op (0);
885     return;
886   }
887   msgbuf = (char *) &msg[1];
888   memcpy (&sender, &msg->sender, sizeof (struct GNUNET_PeerIdentity));
889   offset = 0;
890   tsize = csize - sizeof (struct UNIXMessage);
891   while (offset + sizeof (struct GNUNET_MessageHeader) <= tsize)
892   {
893     currhdr = (struct GNUNET_MessageHeader *) &msgbuf[offset];
894     csize = ntohs (currhdr->size);
895     if ((csize < sizeof (struct GNUNET_MessageHeader)) ||
896         (csize > tsize - offset))
897     {
898       GNUNET_break_op (0);
899       break;
900     }
901
902     unix_demultiplexer (plugin, &sender, currhdr, &un, sizeof (un));
903     offset += csize;
904   }
905 }
906
907
908 static void
909 unix_plugin_select_write (struct Plugin * plugin)
910 {
911   int sent = 0;
912
913   struct UNIXMessageWrapper * msgw = plugin->msg_tail;
914   while (NULL != msgw)
915   {
916       if (GNUNET_TIME_absolute_get_remaining (msgw->timeout).rel_value > 0)
917         break; /* Message is ready for sending */
918       else
919       {
920           /* Message has a timeout */
921             LOG (GNUNET_ERROR_TYPE_DEBUG,
922               "Timeout for message with %llu bytes \n", msgw->msgsize);
923           GNUNET_CONTAINER_DLL_remove (plugin->msg_head, plugin->msg_tail, msgw);
924           if (NULL != msgw->cont)
925             msgw->cont (msgw->cont_cls, &msgw->session->target, GNUNET_SYSERR, msgw->payload, 0);
926
927           plugin->bytes_in_queue -= msgw->msgsize;
928           GNUNET_STATISTICS_set (plugin->env->stats, "# bytes currently in UNIX buffers",
929               plugin->bytes_in_queue, GNUNET_NO);
930
931           plugin->bytes_discarded += msgw->msgsize;
932           GNUNET_STATISTICS_set (plugin->env->stats,"# UNIX bytes discarded",
933               plugin->bytes_discarded, GNUNET_NO);
934
935           GNUNET_free (msgw->msg);
936           GNUNET_free (msgw);
937       }
938       msgw = plugin->msg_tail;
939   }
940   if (NULL == msgw)
941     return; /* Nothing to send at the moment */
942
943   sent = unix_real_send (plugin,
944                          plugin->unix_sock.desc,
945                          &msgw->session->target,
946                          (const char *) msgw->msg,
947                          msgw->msgsize,
948                          msgw->priority,
949                          msgw->timeout,
950                          msgw->session->addr,
951                          msgw->session->addrlen,
952                          msgw->payload,
953                          msgw->cont, msgw->cont_cls);
954
955   if (RETRY == sent)
956   {
957     GNUNET_STATISTICS_update (plugin->env->stats,"# UNIX retry attempts",
958           1, GNUNET_NO);
959
960   }
961   else if (GNUNET_SYSERR == sent)
962   {
963     /* failed and no retry */
964     if (NULL != msgw->cont)
965       msgw->cont (msgw->cont_cls, &msgw->session->target, GNUNET_SYSERR, msgw->payload, 0);
966
967     GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, msgw);
968
969     GNUNET_assert (plugin->bytes_in_queue >= msgw->msgsize);
970     plugin->bytes_in_queue -= msgw->msgsize;
971     GNUNET_STATISTICS_set (plugin->env->stats, "# bytes currently in UNIX buffers",
972         plugin->bytes_in_queue, GNUNET_NO);
973     plugin->bytes_discarded += msgw->msgsize;
974     GNUNET_STATISTICS_set (plugin->env->stats,"# UNIX bytes discarded",
975         plugin->bytes_discarded, GNUNET_NO);
976
977     GNUNET_free (msgw->msg);
978     GNUNET_free (msgw);
979     return;
980   }
981   else if (sent > 0)
982   {
983     /* successfully sent bytes */
984     if (NULL != msgw->cont)
985       msgw->cont (msgw->cont_cls, &msgw->session->target, GNUNET_OK, msgw->payload, msgw->msgsize);
986
987     GNUNET_CONTAINER_DLL_remove(plugin->msg_head, plugin->msg_tail, msgw);
988
989     GNUNET_assert (plugin->bytes_in_queue >= msgw->msgsize);
990     plugin->bytes_in_queue -= msgw->msgsize;
991     GNUNET_STATISTICS_set (plugin->env->stats,"# bytes currently in UNIX buffers",
992         plugin->bytes_in_queue, GNUNET_NO);
993     plugin->bytes_in_sent += msgw->msgsize;
994     GNUNET_STATISTICS_set (plugin->env->stats,"# bytes transmitted via UNIX",
995         plugin->bytes_in_sent, GNUNET_NO);
996
997     GNUNET_free (msgw->msg);
998     GNUNET_free (msgw);
999     return;
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   if (GNUNET_OK !=
1341       GNUNET_CONFIGURATION_get_value_number (env->cfg, "transport-unix", "PORT",
1342                                              &port))
1343     port = UNIX_NAT_DEFAULT_PORT;
1344   plugin = GNUNET_malloc (sizeof (struct Plugin));
1345   plugin->port = port;
1346   plugin->env = env;
1347   GNUNET_asprintf (&plugin->unix_socket_path, "/tmp/unix-plugin-sock.%d",
1348                    plugin->port);
1349
1350   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1351   api->cls = plugin;
1352
1353   api->get_session = &unix_plugin_get_session;
1354   api->send = &unix_plugin_send;
1355   api->disconnect = &unix_disconnect;
1356   api->address_pretty_printer = &unix_plugin_address_pretty_printer;
1357   api->address_to_string = &unix_address_to_string;
1358   api->check_address = &unix_check_address;
1359   api->string_to_address = &unix_string_to_address;
1360   sockets_created = unix_transport_server_start (plugin);
1361   if (sockets_created == 0)
1362     LOG (GNUNET_ERROR_TYPE_WARNING, _("Failed to open UNIX sockets\n"));
1363
1364   plugin->session_map = GNUNET_CONTAINER_multihashmap_create (10, GNUNET_NO);
1365
1366   GNUNET_SCHEDULER_add_now (address_notification, plugin);
1367   return api;
1368 }
1369
1370 void *
1371 libgnunet_plugin_transport_unix_done (void *cls)
1372 {
1373   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1374   struct Plugin *plugin = api->cls;
1375
1376   if (NULL == plugin)
1377   {
1378     GNUNET_free (api);
1379     return NULL;
1380   }
1381
1382   plugin->env->notify_address (plugin->env->cls, GNUNET_NO,
1383                                plugin->unix_socket_path,
1384                                strlen (plugin->unix_socket_path) + 1,
1385                                "unix");
1386
1387   unix_transport_server_stop (plugin);
1388
1389
1390   GNUNET_CONTAINER_multihashmap_iterate (plugin->session_map, &get_session_delete_it, plugin);
1391   GNUNET_CONTAINER_multihashmap_destroy (plugin->session_map);
1392
1393
1394   if (NULL != plugin->rs)
1395     GNUNET_NETWORK_fdset_destroy (plugin->rs);
1396   if (NULL != plugin->ws)
1397     GNUNET_NETWORK_fdset_destroy (plugin->ws);
1398   GNUNET_free (plugin->unix_socket_path);
1399   GNUNET_free (plugin);
1400   GNUNET_free (api);
1401   return NULL;
1402 }
1403
1404 /* end of plugin_transport_unix.c */