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