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