- implementented string to address
[oweals/gnunet.git] / src / transport / plugin_transport_http.c
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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_http.c
23  * @brief http transport service plugin
24  * @author Matthias Wachs
25  */
26
27 #include "plugin_transport_http.h"
28
29 /**
30  * After how long do we expire an address that we
31  * learned from another peer if it is not reconfirmed
32  * by anyone?
33  */
34 #define LEARNED_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
35
36 /**
37  * Wrapper to manage IPv4 addresses
38  */
39 struct IPv4HttpAddressWrapper
40 {
41   /**
42    * Linked list next
43    */
44   struct IPv4HttpAddressWrapper *next;
45
46   /**
47    * Linked list previous
48    */
49   struct IPv4HttpAddressWrapper *prev;
50
51   struct IPv4HttpAddress addr;
52 };
53
54 /**
55  * Wrapper for IPv4 addresses.
56  */
57 struct IPv6HttpAddressWrapper
58 {
59   /**
60    * Linked list next
61    */
62   struct IPv6HttpAddressWrapper *next;
63
64   /**
65    * Linked list previous
66    */
67   struct IPv6HttpAddressWrapper *prev;
68
69   struct IPv6HttpAddress addr6;
70 };
71
72
73 /**
74  * Context for address to string conversion.
75  */
76 struct PrettyPrinterContext
77 {
78   /**
79    * Function to call with the result.
80    */
81   GNUNET_TRANSPORT_AddressStringCallback asc;
82
83   /**
84    * Plugin
85    */
86   struct Plugin *plugin;
87
88   /**
89    * Clsoure for 'asc'.
90    */
91   void *asc_cls;
92
93   /**
94    * Port to add after the IP address.
95    */
96   uint16_t port;
97
98   uint32_t addrlen;
99
100   int numeric;
101 };
102
103
104 /**
105  * Encapsulation of all of the state of the plugin.
106  */
107 struct Plugin;
108
109
110
111 /**
112  * Append our port and forward the result.
113  *
114  * @param cls the 'struct PrettyPrinterContext*'
115  * @param hostname hostname part of the address
116  */
117 static void
118 append_port (void *cls, const char *hostname)
119 {
120   struct PrettyPrinterContext *ppc = cls;
121   static char rbuf[INET6_ADDRSTRLEN + 13];
122
123   if (hostname == NULL)
124   {
125     ppc->asc (ppc->asc_cls, NULL);
126     GNUNET_free (ppc);
127     return;
128   }
129
130 #if !BUILD_HTTPS
131   const char *protocol = "http";
132 #else
133   const char *protocol = "https";
134 #endif
135   GNUNET_assert ((strlen (hostname) + 7) < (INET6_ADDRSTRLEN + 13));
136   if (ppc->addrlen == sizeof (struct IPv6HttpAddress))
137   {
138     if (ppc->numeric == GNUNET_YES)
139       GNUNET_snprintf (rbuf, sizeof (rbuf), "%s://[%s]:%u/", protocol, hostname, ppc->port);
140     else
141     {
142       if (strchr(hostname, ':') != NULL)
143         GNUNET_snprintf (rbuf, sizeof (rbuf), "%s://[%s]:%u/", protocol, hostname, ppc->port);
144       else
145         GNUNET_snprintf (rbuf, sizeof (rbuf), "%s://%s:%u/", protocol, hostname, ppc->port);
146     }
147   }
148   else if (ppc->addrlen == sizeof (struct IPv4HttpAddress))
149     GNUNET_snprintf (rbuf, sizeof (rbuf), "%s://%s:%u/", protocol, hostname, ppc->port);
150   ppc->asc (ppc->asc_cls, rbuf);
151 }
152
153
154
155
156
157 /**
158  * Convert the transports address to a nice, human-readable
159  * format.
160  *
161  * @param cls closure
162  * @param type name of the transport that generated the address
163  * @param addr one of the addresses of the host, NULL for the last address
164  *        the specific address format depends on the transport
165  * @param addrlen length of the address
166  * @param numeric should (IP) addresses be displayed in numeric form?
167  * @param timeout after how long should we give up?
168  * @param asc function to call on each string
169  * @param asc_cls closure for asc
170  */
171 static void
172 http_plugin_address_pretty_printer (void *cls, const char *type,
173                                     const void *addr, size_t addrlen,
174                                     int numeric,
175                                     struct GNUNET_TIME_Relative timeout,
176                                     GNUNET_TRANSPORT_AddressStringCallback asc,
177                                     void *asc_cls)
178 {
179   GNUNET_assert (cls != NULL);
180   struct PrettyPrinterContext *ppc;
181   const void *sb;
182   struct sockaddr_in s4;
183   struct sockaddr_in6 s6;
184   size_t sbs;
185   uint16_t port = 0;
186
187   if ((addrlen == sizeof (struct IPv6HttpAddress))  && (addr != NULL))
188   {
189     struct IPv6HttpAddress *a6 = (struct IPv6HttpAddress *) addr;
190     s6.sin6_family = AF_INET6;
191     s6.sin6_addr = a6->ipv6_addr;
192     s6.sin6_port = a6->u6_port;
193 #if HAVE_SOCKADDR_IN_SIN_LEN
194     s6.sin6_len = sizeof (struct sockaddr_in6);
195 #endif
196     sb = &s6;
197     sbs = sizeof (struct sockaddr_in6);
198     port = ntohs (a6->u6_port);
199
200   }
201   else if ((addrlen == sizeof (struct IPv4HttpAddress))  && (addr != NULL))
202   {
203     struct IPv4HttpAddress *a4 = (struct IPv4HttpAddress *) addr;
204
205     s4.sin_family = AF_INET;
206     s4.sin_addr.s_addr = a4->ipv4_addr;
207     s4.sin_port = a4->u4_port;
208 #if HAVE_SOCKADDR_IN_SIN_LEN
209     s4.sin_len = sizeof (struct sockaddr_in);
210 #endif
211     sb = &s4;
212     sbs = sizeof (struct sockaddr_in);
213     port = ntohs (a4->u4_port);
214   }
215   else
216   {
217     /* invalid address */
218     GNUNET_break_op (0);
219     asc (asc_cls, NULL);
220     return;
221   }
222   ppc = GNUNET_malloc (sizeof (struct PrettyPrinterContext));
223   ppc->asc = asc;
224   ppc->asc_cls = asc_cls;
225   ppc->port = port;
226   ppc->plugin = cls;
227   ppc->addrlen = addrlen;
228   ppc->numeric = numeric;
229   GNUNET_RESOLVER_hostname_get (sb, sbs, !numeric, timeout, &append_port, ppc);
230 }
231
232
233
234 /**
235  * Another peer has suggested an address for this
236  * peer and transport plugin.  Check that this could be a valid
237  * address.  If so, consider adding it to the list
238  * of addresses.
239  *
240  * @param cls closure
241  * @param addr pointer to the address
242  * @param addrlen length of addr
243  * @return GNUNET_OK if this is a plausible address for this peer
244  *         and transport
245  */
246 static int
247 http_plugin_address_suggested (void *cls, const void *addr, size_t addrlen)
248 {
249
250   struct Plugin *plugin = cls;
251   struct IPv4HttpAddressWrapper *w_tv4 = plugin->ipv4_addr_head;
252   struct IPv6HttpAddressWrapper *w_tv6 = plugin->ipv6_addr_head;
253
254
255
256   GNUNET_assert (cls != NULL);
257   if ((addrlen != sizeof (struct sockaddr_in)) ||
258       (addrlen != sizeof (struct sockaddr_in6)))
259     return GNUNET_SYSERR;
260
261   if (addrlen == sizeof (struct IPv4HttpAddress))
262   {
263     struct IPv4HttpAddress *a4 = (struct IPv4HttpAddress *) addr;
264
265     while (w_tv4 != NULL)
266     {
267       if ((0 ==
268            memcmp (&w_tv4->addr.ipv4_addr, &a4->ipv4_addr,
269                    sizeof (struct in_addr))) &&
270           (w_tv4->addr.u4_port == a4->u4_port))
271         break;
272       w_tv4 = w_tv4->next;
273     }
274     if (w_tv4 != NULL)
275       return GNUNET_OK;
276     else
277       return GNUNET_SYSERR;
278   }
279   if (addrlen == sizeof (struct sockaddr_in6))
280   {
281     struct IPv6HttpAddress *a6 = (struct IPv6HttpAddress *) addr;
282
283     while (w_tv6 != NULL)
284     {
285       if ((0 ==
286            memcmp (&w_tv6->addr6.ipv6_addr, &a6->ipv6_addr,
287                    sizeof (struct in6_addr))) &&
288           (w_tv6->addr6.u6_port == a6->u6_port))
289         break;
290       w_tv6 = w_tv6->next;
291     }
292     if (w_tv6 != NULL)
293       return GNUNET_OK;
294     else
295       return GNUNET_SYSERR;
296   }
297   return GNUNET_OK;
298 }
299
300 struct GNUNET_TIME_Relative
301 http_plugin_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
302                      const struct GNUNET_MessageHeader *message,
303                      struct Session *session, const char *sender_address,
304                      uint16_t sender_address_len)
305 {
306   struct Session *s = cls;
307   struct Plugin *plugin = s->plugin;
308   struct GNUNET_TIME_Relative delay;
309   struct GNUNET_ATS_Information atsi[2];
310
311   atsi[0].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
312   atsi[0].value = htonl (1);
313   atsi[1].type = htonl (GNUNET_ATS_NETWORK_TYPE);
314   atsi[1].value = session->ats_address_network_type;
315   GNUNET_break (session->ats_address_network_type != ntohl (GNUNET_ATS_NET_UNSPECIFIED));
316
317   delay =
318       plugin->env->receive (plugin->env->cls, &s->target, message,
319                             (const struct GNUNET_ATS_Information *) &atsi,
320                             2, s, s->addr, s->addrlen);
321   return delay;
322 }
323
324
325 /**
326  * Function called to convert a string address to
327  * a binary address.
328  *
329  * @param cls closure ('struct Plugin*')
330  * @param addr string address
331  * @param addrlen length of the address
332  * @param buf location to store the buffer
333  *        If the function returns GNUNET_SYSERR, its contents are undefined.
334  * @param added length of created address
335  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
336  */
337 int http_string_to_address (void *cls,
338                            const char *addr,
339                            uint16_t addrlen,
340                            void **buf,
341                            size_t *added)
342 {
343 #if !BUILD_HTTPS
344   char *protocol = "http";
345 #else
346   char *protocol = "https";
347 #endif
348   char *addr_str = NULL;
349   struct sockaddr_in addr_4;
350   struct sockaddr_in6 addr_6;
351   struct IPv4HttpAddress * http_4addr;
352   struct IPv6HttpAddress * http_6addr;
353   GNUNET_break (0);
354   if ((addr == NULL) || (addrlen == 0) || (buf == NULL))
355     return GNUNET_SYSERR;
356
357   /* protocoll + "://" + ":" */
358   if (addrlen <= strlen (protocol) + 4);
359     return GNUNET_SYSERR;
360
361   if (NULL == (addr = strstr(addr_str, "://")))
362       return GNUNET_SYSERR;
363
364   addr_str = &addr_str[3];
365
366   if (GNUNET_OK == GNUNET_STRINGS_to_address_ipv4(addr, strlen(addr_str), &addr_4))
367   {
368     http_4addr = GNUNET_malloc (sizeof (struct IPv4HttpAddress));
369     http_4addr = GNUNET_malloc (sizeof (struct IPv6HttpAddress));
370     http_4addr->u4_port = addr_4.sin_port;
371     http_4addr->ipv4_addr = (uint32_t) addr_4.sin_addr.s_addr;
372
373     (*buf) = http_4addr;
374     (*added) = sizeof (struct IPv4HttpAddress);
375     GNUNET_break (0);
376     return GNUNET_OK;
377   }
378   else if (GNUNET_OK == GNUNET_STRINGS_to_address_ipv6(addr, strlen(addr_str), &addr_6))
379   {
380     http_6addr = GNUNET_malloc (sizeof (struct IPv6HttpAddress));
381     http_6addr->u6_port = addr_6.sin6_port;
382     http_6addr->ipv6_addr = addr_6.sin6_addr;
383
384     (*buf) = http_6addr;
385     (*added) = sizeof (struct IPv6HttpAddress);
386     GNUNET_break (0);
387     return GNUNET_OK;
388
389   }
390   else
391   {
392     return GNUNET_SYSERR;
393   }
394 }
395
396
397
398 /**
399  * Function called for a quick conversion of the binary address to
400  * a numeric address.  Note that the caller must not free the
401  * address and that the next call to this function is allowed
402  * to override the address again.
403  *
404  * @param cls closure
405  * @param addr binary address
406  * @param addrlen length of the address
407  * @return string representing the same address
408  */
409 const char *
410 http_plugin_address_to_string (void *cls, const void *addr, size_t addrlen)
411 {
412
413   struct IPv4HttpAddress *a4;
414   struct IPv6HttpAddress *a6;
415   char *address;
416   static char rbuf[INET6_ADDRSTRLEN + 13];
417   uint16_t port;
418   int res = 0;
419
420   if (addrlen == sizeof (struct IPv6HttpAddress))
421   {
422     a6 = (struct IPv6HttpAddress *) addr;
423     address = GNUNET_malloc (INET6_ADDRSTRLEN);
424     GNUNET_assert (NULL !=
425                    inet_ntop (AF_INET6, &a6->ipv6_addr, address,
426                               INET6_ADDRSTRLEN));
427     port = ntohs (a6->u6_port);
428   }
429   else if (addrlen == sizeof (struct IPv4HttpAddress))
430   {
431     a4 = (struct IPv4HttpAddress *) addr;
432     address = GNUNET_malloc (INET_ADDRSTRLEN);
433     GNUNET_assert (NULL !=
434                    inet_ntop (AF_INET, &(a4->ipv4_addr), address,
435                               INET_ADDRSTRLEN));
436     port = ntohs (a4->u4_port);
437   }
438   else
439   {
440     /* invalid address */
441     GNUNET_break (0);
442     return NULL;
443   }
444 #if !BUILD_HTTPS
445   char *protocol = "http";
446 #else
447   char *protocol = "https";
448 #endif
449
450   GNUNET_assert (strlen (address) + 7 < (INET6_ADDRSTRLEN + 13));
451   if (addrlen == sizeof (struct IPv6HttpAddress))
452     res =
453         GNUNET_snprintf (rbuf, sizeof (rbuf), "%s://[%s]:%u/", protocol,
454                          address, port);
455   else if (addrlen == sizeof (struct IPv4HttpAddress))
456     res =
457         GNUNET_snprintf (rbuf, sizeof (rbuf), "%s://%s:%u/", protocol, address,
458                          port);
459
460   GNUNET_free (address);
461   GNUNET_assert (res != 0);
462   return rbuf;
463 }
464
465 struct Session *
466 lookup_session_old (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target,
467                 struct Session *session, const void *addr, size_t addrlen,
468                 int force_address)
469 {
470   struct Session *t;
471   int e_peer;
472   int e_addr;
473
474   for (t = plugin->head; NULL != t; t = t->next)
475   {
476 #if 0
477     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
478                      "Comparing peer `%s' address `%s' len %i session %X to \n",
479                      GNUNET_i2s (target), GNUNET_a2s (addr, addrlen), addrlen,
480                      session);
481     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
482                      "peer `%s' address `%s' len %i session %X \n\n",
483                      GNUNET_i2s (&t->target), GNUNET_a2s (t->addr, t->addrlen),
484                      t->addrlen, t);
485     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name, "memcmp %i \n",
486                      memcmp (addr, t->addr, addrlen));
487 #endif
488     e_peer = GNUNET_NO;
489     e_addr = GNUNET_NO;
490     if (0 == memcmp (target, &t->target, sizeof (struct GNUNET_PeerIdentity)))
491     {
492       e_peer = GNUNET_YES;
493       if ( (addrlen == t->addrlen) &&
494            (0 == memcmp (addr, t->addr, addrlen)) )
495         e_addr = GNUNET_YES;    
496       if ( (t == session) &&
497            (t->addrlen == session->addrlen) &&
498            (0 == memcmp (session->addr, t->addr, t->addrlen)) )
499         e_addr = GNUNET_YES;
500     }
501
502     if ( ((e_peer == GNUNET_YES) && (force_address == GNUNET_NO)) ||
503          ((e_peer == GNUNET_YES) && (force_address == GNUNET_YES) && (e_addr == GNUNET_YES)) ||
504          ((e_peer == GNUNET_YES) && (force_address == GNUNET_SYSERR)) )
505       return t;
506   }
507   return NULL;
508 }
509
510 struct Session *
511 lookup_session (struct Plugin *plugin,
512                 const struct GNUNET_HELLO_Address *address)
513 {
514   struct Session *pos;
515
516   for (pos = plugin->head; NULL != pos; pos = pos->next)
517     if ( (0 == memcmp (&address->peer, &pos->target, sizeof (struct GNUNET_PeerIdentity))) &&
518          (address->address_length == pos->addrlen) &&
519          (0 == memcmp (address->address, pos->addr, pos->addrlen)) )
520       return pos;
521   return NULL;
522 }
523
524
525 void
526 delete_session (struct Session *s)
527 {
528   if (s->msg_tk != NULL)
529   {
530     GNUNET_SERVER_mst_destroy (s->msg_tk);
531     s->msg_tk = NULL;
532   }
533   GNUNET_free (s->addr);
534   GNUNET_free_non_null (s->server_recv);
535   GNUNET_free_non_null (s->server_send);
536   GNUNET_free (s);
537 }
538
539 struct Session *
540 create_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target,
541                 const void *addr, size_t addrlen,
542                 GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
543 {
544   struct Session *s = NULL;
545
546   GNUNET_assert ((addrlen == sizeof (struct IPv6HttpAddress)) ||
547                  (addrlen == sizeof (struct IPv4HttpAddress)));
548   s = GNUNET_malloc (sizeof (struct Session));
549   memcpy (&s->target, target, sizeof (struct GNUNET_PeerIdentity));
550   s->plugin = plugin;
551   s->addr = GNUNET_malloc (addrlen);
552   memcpy (s->addr, addr, addrlen);
553   s->addrlen = addrlen;
554   s->next = NULL;
555   s->next_receive = GNUNET_TIME_absolute_get_zero ();
556   s->ats_address_network_type = htonl (GNUNET_ATS_NET_UNSPECIFIED);
557   return s;
558 }
559
560 void
561 notify_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
562                     struct Session *s)
563 {
564   struct Plugin *plugin = cls;
565
566   plugin->env->session_end (plugin->env->cls, peer, s);
567   GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
568   delete_session (s);
569 }
570
571 /**
572  * Creates a new outbound session the transport service will use to send data to the
573  * peer
574  *
575  * @param cls the plugin
576  * @param address the address
577  * @return the session or NULL of max connections exceeded
578  */
579
580 static struct Session *
581 http_get_session (void *cls,
582                   const struct GNUNET_HELLO_Address *address)
583 {
584   struct Plugin *plugin = cls;
585   struct Session * s = NULL;
586   struct GNUNET_ATS_Information ats;
587   size_t addrlen;
588
589   GNUNET_assert (plugin != NULL);
590   GNUNET_assert (address != NULL);
591   GNUNET_assert (address->address != NULL);
592
593   ats.type = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
594   ats.value = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
595
596   /* find existing session */
597   s = lookup_session (plugin, address);
598   if (s != NULL)
599     return s;
600
601   if (plugin->max_connections <= plugin->cur_connections)
602   {
603     GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
604                      "Maximum number of connections reached, "
605                      "cannot connect to peer `%s'\n", GNUNET_i2s (&address->peer));
606     return NULL;
607   }
608
609   /* create new session */
610   addrlen = address->address_length;
611
612   GNUNET_assert ((addrlen == sizeof (struct IPv6HttpAddress)) ||
613                  (addrlen == sizeof (struct IPv4HttpAddress)));
614
615   s = GNUNET_malloc (sizeof (struct Session));
616   memcpy (&s->target, &address->peer, sizeof (struct GNUNET_PeerIdentity));
617   s->plugin = plugin;
618   s->addr = GNUNET_malloc (address->address_length);
619   memcpy (s->addr, address->address, address->address_length);
620   s->addrlen = addrlen;
621   s->next = NULL;
622   s->next_receive = GNUNET_TIME_absolute_get_zero ();
623   s->inbound = GNUNET_NO;
624   s->ats_address_network_type = htonl (GNUNET_ATS_NET_UNSPECIFIED);
625
626   /* Get ATS type */
627   if (addrlen == sizeof (struct IPv4HttpAddress))
628   {
629     struct IPv4HttpAddress *a4 = (struct IPv4HttpAddress *) address->address;
630     struct sockaddr_in s4;
631
632     s4.sin_family = AF_INET;
633     s4.sin_addr.s_addr = a4->ipv4_addr;
634     s4.sin_port = a4->u4_port;
635 #if HAVE_SOCKADDR_IN_SIN_LEN
636     s4.sin_len = sizeof (struct sockaddr_in);
637 #endif
638     ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) &s4, sizeof (struct sockaddr_in));
639   }
640   if (addrlen == sizeof (struct IPv6HttpAddress))
641   {
642     struct IPv6HttpAddress *a6 = (struct IPv6HttpAddress *) address->address;
643     struct sockaddr_in6 s6;
644
645     s6.sin6_family = AF_INET6;
646     s6.sin6_addr = a6->ipv6_addr;
647     s6.sin6_port = a6->u6_port;
648 #if HAVE_SOCKADDR_IN_SIN_LEN
649     s6.sin6_len = sizeof (struct sockaddr_in6);
650 #endif
651     ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) &s6, sizeof (struct sockaddr_in6));
652   }
653   s->ats_address_network_type = ats.value;
654
655   /* add new session */
656   GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
657   /* initiate new connection */
658   if (GNUNET_SYSERR == client_connect (s))
659   {
660     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
661                      "Cannot connect to peer `%s' address `%s''\n",
662                      http_plugin_address_to_string(NULL, s->addr, s->addrlen),
663                      GNUNET_i2s (&s->target));
664     GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
665     delete_session (s);
666     return NULL;
667   }
668
669   return s;
670 }
671
672 /**
673  * Function that can be used by the transport service to transmit
674  * a message using the plugin.   Note that in the case of a
675  * peer disconnecting, the continuation MUST be called
676  * prior to the disconnect notification itself.  This function
677  * will be called with this peer's HELLO message to initiate
678  * a fresh connection to another peer.
679  *
680  * @param cls closure
681  * @param session which session must be used
682  * @param msgbuf the message to transmit
683  * @param msgbuf_size number of bytes in 'msgbuf'
684  * @param priority how important is the message (most plugins will
685  *                 ignore message priority and just FIFO)
686  * @param to how long to wait at most for the transmission (does not
687  *                require plugins to discard the message after the timeout,
688  *                just advisory for the desired delay; most plugins will ignore
689  *                this as well)
690  * @param cont continuation to call once the message has
691  *        been transmitted (or if the transport is ready
692  *        for the next transmission call; or if the
693  *        peer disconnected...); can be NULL
694  * @param cont_cls closure for cont
695  * @return number of bytes used (on the physical network, with overheads);
696  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
697  *         and does NOT mean that the message was not transmitted (DV)
698  */
699 static ssize_t
700 http_plugin_send (void *cls,
701                   struct Session *session,
702                   const char *msgbuf, size_t msgbuf_size,
703                   unsigned int priority,
704                   struct GNUNET_TIME_Relative to,
705                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
706 {
707   struct Plugin *plugin = cls;
708   struct HTTP_Message *msg;
709   struct Session *tmp;
710   size_t res = -1;
711
712   GNUNET_assert (plugin != NULL);
713   GNUNET_assert (session != NULL);
714
715   /* lookup if session is really existing */
716   tmp = plugin->head;
717   while (tmp != NULL)
718   {
719     if ((tmp == session) &&
720        (0 == memcmp (&session->target, &tmp->target, sizeof (struct GNUNET_PeerIdentity))) &&
721        (session->addrlen == tmp->addrlen) &&
722        (0 == memcmp (session->addr, tmp->addr, tmp->addrlen)))
723       break;
724     tmp = tmp->next;
725   }
726   if (tmp == NULL)
727   {
728     GNUNET_break_op (0);
729     return res;
730   }
731
732   /* create new message and schedule */
733
734   msg = GNUNET_malloc (sizeof (struct HTTP_Message) + msgbuf_size);
735   msg->next = NULL;
736   msg->size = msgbuf_size;
737   msg->pos = 0;
738   msg->buf = (char *) &msg[1];
739   msg->transmit_cont = cont;
740   msg->transmit_cont_cls = cont_cls;
741   memcpy (msg->buf, msgbuf, msgbuf_size);
742
743   if (session->inbound == GNUNET_NO)
744   {
745 #if DEBUG_HTTP
746     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
747                      "Using outbound client session %p to send to `%session'\n", session,
748                      GNUNET_i2s (&session->target));
749 #endif
750
751     client_send (session, msg);
752     res = msgbuf_size;
753   }
754   if (session->inbound == GNUNET_YES)
755   {
756 #if DEBUG_HTTP
757     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
758                      "Using inbound server %p session to send to `%session'\n", session,
759                      GNUNET_i2s (&session->target));
760 #endif
761
762     server_send (session, msg);
763     res = msgbuf_size;
764   }
765   return res;
766
767 }
768
769
770 /**
771  * Function that can be used to force the plugin to disconnect
772  * from the given peer and cancel all previous transmissions
773  * (and their continuationc).
774  *
775  * @param cls closure
776  * @param target peer from which to disconnect
777  */
778 static void
779 http_plugin_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
780 {
781   struct Plugin *plugin = cls;
782   struct Session *next = NULL;
783   struct Session *s = plugin->head;
784
785   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
786                    "Transport tells me to disconnect `%s'\n",
787                    GNUNET_i2s (target));
788   while (s != NULL)
789   {
790     next = s->next;
791     if (0 == memcmp (target, &s->target, sizeof (struct GNUNET_PeerIdentity)))
792     {
793       if (s->inbound == GNUNET_NO)
794         GNUNET_assert (GNUNET_OK == client_disconnect (s));
795       else
796         GNUNET_assert (GNUNET_OK == server_disconnect (s));
797       GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
798
799       struct HTTP_Message *msg = s->msg_head;
800       struct HTTP_Message *tmp = NULL;
801
802       while (msg != NULL)
803       {
804         tmp = msg->next;
805
806         GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
807         if (msg->transmit_cont != NULL)
808         {
809           msg->transmit_cont (msg->transmit_cont_cls, target, GNUNET_SYSERR);
810         }
811         GNUNET_free (msg);
812         msg = tmp;
813       }
814
815       delete_session (s);
816     }
817     s = next;
818   }
819 }
820
821 static void *
822 find_address (struct Plugin *plugin, const struct sockaddr *addr, socklen_t addrlen)
823 {
824   int af;
825   struct IPv4HttpAddressWrapper *w_t4 = NULL;
826   struct IPv6HttpAddressWrapper *w_t6 = NULL;
827
828   af = addr->sa_family;
829   switch (af)
830   {
831   case AF_INET:
832     w_t4 = plugin->ipv4_addr_head;
833     struct sockaddr_in *a4 = (struct sockaddr_in *) addr;
834
835     while (w_t4 != NULL)
836     {
837       int res = memcmp (&w_t4->addr.ipv4_addr,
838                         &a4->sin_addr,
839                         sizeof (struct in_addr));
840
841       if (res == 0)
842       {
843         if (a4->sin_port != w_t4->addr.u4_port)
844           res = -1;
845       }
846
847       if (0 == res)
848         break;
849       w_t4 = w_t4->next;
850     }
851     return w_t4;
852     break;
853   case AF_INET6:
854     w_t6 = plugin->ipv6_addr_head;
855     struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) addr;
856
857     while (w_t6)
858     {
859       int res = memcmp (&w_t6->addr6.ipv6_addr, &a6->sin6_addr,
860                         sizeof (struct in6_addr));
861
862       if (res == 0)
863       {
864         if (a6->sin6_port != w_t6->addr6.u6_port)
865           res = -1;
866       }
867       if (0 == res)
868         break;
869       w_t6 = w_t6->next;
870     }
871     return w_t6;
872     break;
873   default:
874     return NULL;
875   }
876
877
878 }
879
880 static void
881 nat_add_address (void *cls, int add_remove, const struct sockaddr *addr,
882                  socklen_t addrlen)
883 {
884   struct Plugin *plugin = cls;
885   struct IPv4HttpAddressWrapper *w_t4 = NULL;
886   struct IPv6HttpAddressWrapper *w_t6 = NULL;
887   int af;
888
889   af = addr->sa_family;
890   switch (af)
891   {
892   case AF_INET:
893     w_t4 = find_address (plugin, addr, addrlen);
894     if (w_t4 == NULL)
895     {
896       struct sockaddr_in *a4 = (struct sockaddr_in *) addr;
897       w_t4 = GNUNET_malloc (sizeof (struct IPv4HttpAddressWrapper));
898       memcpy (&w_t4->addr.ipv4_addr, &a4->sin_addr, sizeof (struct in_addr));
899       w_t4->addr.u4_port = a4->sin_port;
900
901       GNUNET_CONTAINER_DLL_insert (plugin->ipv4_addr_head,
902                                    plugin->ipv4_addr_tail, w_t4);
903     }
904 #if DEBUG_HTTP
905     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
906                      "Notifying transport to add IPv4 address `%s'\n",
907                      http_plugin_address_to_string (NULL, &w_t4->addr,
908                                                     sizeof (struct
909                                                             IPv4HttpAddress)));
910 #endif
911     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t4->addr,
912                                  sizeof (struct IPv4HttpAddress));
913
914     break;
915   case AF_INET6:
916     w_t6 = find_address (plugin, addr, addrlen);
917     if (w_t6 == NULL)
918     {
919       w_t6 = GNUNET_malloc (sizeof (struct IPv6HttpAddressWrapper));
920       struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) addr;
921       memcpy (&w_t6->addr6.ipv6_addr, &a6->sin6_addr, sizeof (struct in6_addr));
922       w_t6->addr6.u6_port = a6->sin6_port;
923
924       GNUNET_CONTAINER_DLL_insert (plugin->ipv6_addr_head,
925                                    plugin->ipv6_addr_tail, w_t6);
926     }
927 #if DEBUG_HTTP
928     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
929                      "Notifying transport to add IPv6 address `%s'\n",
930                      http_plugin_address_to_string (NULL, &w_t6->addr6,
931                                                     sizeof (struct
932                                                             IPv6HttpAddress)));
933 #endif
934     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t6->addr6,
935                                  sizeof (struct IPv6HttpAddress));
936     break;
937   default:
938     return;
939   }
940
941 }
942
943 static void
944 nat_remove_address (void *cls, int add_remove, const struct sockaddr *addr,
945                     socklen_t addrlen)
946 {
947   struct Plugin *plugin = cls;
948   struct IPv4HttpAddressWrapper *w_t4 = NULL;
949   struct IPv6HttpAddressWrapper *w_t6 = NULL;
950   int af;
951
952   af = addr->sa_family;
953   switch (af)
954   {
955   case AF_INET:
956     w_t4 = find_address (plugin, addr, addrlen);
957       return;
958
959 #if DEBUG_HTTP
960     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
961                      "Notifying transport to remove IPv4 address `%s'\n",
962                      http_plugin_address_to_string (NULL, &w_t4->addr,
963                                                     sizeof (struct
964                                                             IPv4HttpAddress)));
965 #endif
966     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t4->addr,
967                                  sizeof (struct IPv4HttpAddress));
968
969     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_addr_head, plugin->ipv4_addr_tail,
970                                  w_t4);
971     GNUNET_free (w_t4);
972     break;
973   case AF_INET6:
974     w_t6 = find_address (plugin, addr, addrlen);
975     if (w_t6 == NULL)
976       return;
977 #if DEBUG_HTTP
978     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
979                      "Notifying transport to remove IPv6 address `%s'\n",
980                      http_plugin_address_to_string (NULL, &w_t6->addr6,
981                                                     sizeof (struct
982                                                             IPv6HttpAddress)));
983 #endif
984     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t6->addr6,
985                                  sizeof (struct IPv6HttpAddress));
986
987     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_addr_head, plugin->ipv6_addr_tail,
988                                  w_t6);
989     GNUNET_free (w_t6);
990     break;
991   default:
992     return;
993   }
994
995 }
996
997 /**
998  * Our external IP address/port mapping has changed.
999  *
1000  * @param cls closure, the 'struct LocalAddrList'
1001  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
1002  *     the previous (now invalid) one
1003  * @param addr either the previous or the new public IP address
1004  * @param addrlen actual lenght of the address
1005  */
1006 static void
1007 nat_port_map_callback (void *cls, int add_remove, const struct sockaddr *addr,
1008                        socklen_t addrlen)
1009 {
1010   GNUNET_assert (cls != NULL);
1011 #if DEBUG_HTTP
1012   struct Plugin *plugin = cls;
1013 #endif
1014 #if DEBUG_HTTP
1015   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1016                    "NPMC called %s to address `%s'\n",
1017                    (add_remove == GNUNET_NO) ? "remove" : "add",
1018                    GNUNET_a2s (addr, addrlen));
1019 #endif
1020   switch (add_remove)
1021   {
1022   case GNUNET_YES:
1023     nat_add_address (cls, add_remove, addr, addrlen);
1024     break;
1025   case GNUNET_NO:
1026     nat_remove_address (cls, add_remove, addr, addrlen);
1027     break;
1028   }
1029 }
1030
1031 void
1032 http_check_ipv6 (struct Plugin *plugin)
1033 {
1034   struct GNUNET_NETWORK_Handle *desc = NULL;
1035
1036   if (plugin->ipv6 == GNUNET_YES)
1037   {
1038     /* probe IPv6 support */
1039     desc = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_STREAM, 0);
1040     if (NULL == desc)
1041     {
1042       if ((errno == ENOBUFS) || (errno == ENOMEM) || (errno == ENFILE) ||
1043           (errno == EACCES))
1044       {
1045         GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "socket");
1046       }
1047       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
1048                        _
1049                        ("Disabling IPv6 since it is not supported on this system!\n"));
1050       plugin->ipv6 = GNUNET_NO;
1051     }
1052     else
1053     {
1054       GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (desc));
1055       desc = NULL;
1056     }
1057
1058     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1059                      "Testing IPv6 on this system: %s\n",
1060                      (plugin->ipv6 == GNUNET_YES) ? "successful" : "failed");
1061   }
1062 }
1063
1064 int
1065 http_get_addresses (struct Plugin *plugin, const char *serviceName,
1066                     const struct GNUNET_CONFIGURATION_Handle *cfg,
1067                     struct sockaddr ***addrs, socklen_t ** addr_lens)
1068 {
1069   int disablev6;
1070   unsigned long long port;
1071   struct addrinfo hints;
1072   struct addrinfo *res;
1073   struct addrinfo *pos;
1074   struct addrinfo *next;
1075   unsigned int i;
1076   int resi;
1077   int ret;
1078   struct sockaddr **saddrs;
1079   socklen_t *saddrlens;
1080   char *hostname;
1081
1082   *addrs = NULL;
1083   *addr_lens = NULL;
1084
1085   disablev6 = !plugin->ipv6;
1086
1087   port = 0;
1088   if (GNUNET_CONFIGURATION_have_value (cfg, serviceName, "PORT"))
1089   {
1090     GNUNET_break (GNUNET_OK ==
1091                   GNUNET_CONFIGURATION_get_value_number (cfg, serviceName,
1092                                                          "PORT", &port));
1093     if (port > 65535)
1094     {
1095       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1096                   _
1097                   ("Require valid port number for service in configuration!\n"));
1098       return GNUNET_SYSERR;
1099     }
1100   }
1101
1102   if (GNUNET_CONFIGURATION_have_value (cfg, serviceName, "BINDTO"))
1103   {
1104     GNUNET_break (GNUNET_OK ==
1105                   GNUNET_CONFIGURATION_get_value_string (cfg, serviceName,
1106                                                          "BINDTO", &hostname));
1107   }
1108   else
1109     hostname = NULL;
1110
1111   if (hostname != NULL)
1112   {
1113     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1114                      "Resolving `%s' since that is where `%s' will bind to.\n",
1115                      hostname, serviceName);
1116     memset (&hints, 0, sizeof (struct addrinfo));
1117     if (disablev6)
1118       hints.ai_family = AF_INET;
1119     if ((0 != (ret = getaddrinfo (hostname, NULL, &hints, &res))) ||
1120         (res == NULL))
1121     {
1122       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to resolve `%s': %s\n"),
1123                   hostname, gai_strerror (ret));
1124       GNUNET_free (hostname);
1125       return GNUNET_SYSERR;
1126     }
1127     next = res;
1128     i = 0;
1129     while (NULL != (pos = next))
1130     {
1131       next = pos->ai_next;
1132       if ((disablev6) && (pos->ai_family == AF_INET6))
1133         continue;
1134       i++;
1135     }
1136     if (0 == i)
1137     {
1138       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1139                   _("Failed to find %saddress for `%s'.\n"),
1140                   disablev6 ? "IPv4 " : "", hostname);
1141       freeaddrinfo (res);
1142       GNUNET_free (hostname);
1143       return GNUNET_SYSERR;
1144     }
1145     resi = i;
1146     saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1147     saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1148     i = 0;
1149     next = res;
1150     while (NULL != (pos = next))
1151     {
1152       next = pos->ai_next;
1153       if ((disablev6) && (pos->ai_family == AF_INET6))
1154         continue;
1155       if ((pos->ai_protocol != IPPROTO_TCP) && (pos->ai_protocol != 0))
1156         continue;               /* not TCP */
1157       if ((pos->ai_socktype != SOCK_STREAM) && (pos->ai_socktype != 0))
1158         continue;               /* huh? */
1159       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1160                        "Service will bind to `%s'\n", GNUNET_a2s (pos->ai_addr,
1161                                                                   pos->ai_addrlen));
1162       if (pos->ai_family == AF_INET)
1163       {
1164         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in));
1165         saddrlens[i] = pos->ai_addrlen;
1166         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1167         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1168         ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1169       }
1170       else
1171       {
1172         GNUNET_assert (pos->ai_family == AF_INET6);
1173         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in6));
1174         saddrlens[i] = pos->ai_addrlen;
1175         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1176         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1177         ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1178       }
1179       i++;
1180     }
1181     GNUNET_free (hostname);
1182     freeaddrinfo (res);
1183     resi = i;
1184   }
1185   else
1186   {
1187     /* will bind against everything, just set port */
1188     if (disablev6)
1189     {
1190       /* V4-only */
1191       resi = 1;
1192       i = 0;
1193       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1194       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1195
1196       saddrlens[i] = sizeof (struct sockaddr_in);
1197       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1198 #if HAVE_SOCKADDR_IN_SIN_LEN
1199       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
1200 #endif
1201       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1202       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1203     }
1204     else
1205     {
1206       /* dual stack */
1207       resi = 2;
1208       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1209       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1210       i = 0;
1211       saddrlens[i] = sizeof (struct sockaddr_in6);
1212       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1213 #if HAVE_SOCKADDR_IN_SIN_LEN
1214       ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
1215 #endif
1216       ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
1217       ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1218       i++;
1219       saddrlens[i] = sizeof (struct sockaddr_in);
1220       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1221 #if HAVE_SOCKADDR_IN_SIN_LEN
1222       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
1223 #endif
1224       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1225       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1226     }
1227   }
1228   *addrs = saddrs;
1229   *addr_lens = saddrlens;
1230   return resi;
1231 }
1232
1233 static void
1234 start_report_addresses (struct Plugin *plugin)
1235 {
1236   int res = GNUNET_OK;
1237   struct sockaddr **addrs;
1238   socklen_t *addrlens;
1239
1240   res =
1241       http_get_addresses (plugin, plugin->name, plugin->env->cfg, &addrs,
1242                           &addrlens);
1243   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1244                    _("Found %u addresses to report to NAT service\n"), res);
1245
1246   if (res != GNUNET_SYSERR)
1247   {
1248     plugin->nat =
1249         GNUNET_NAT_register (plugin->env->cfg, GNUNET_YES, plugin->port,
1250                              (unsigned int) res,
1251                              (const struct sockaddr **) addrs, addrlens,
1252                              &nat_port_map_callback, NULL, plugin);
1253     while (res > 0)
1254     {
1255       res--;
1256 #if 0
1257       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name, _("FREEING %s\n"),
1258                        GNUNET_a2s (addrs[res], addrlens[res]));
1259 #endif
1260       GNUNET_assert (addrs[res] != NULL);
1261       GNUNET_free (addrs[res]);
1262     }
1263     GNUNET_free_non_null (addrs);
1264     GNUNET_free_non_null (addrlens);
1265   }
1266   else
1267   {
1268     plugin->nat =
1269         GNUNET_NAT_register (plugin->env->cfg, GNUNET_YES, 0, 0, NULL, NULL,
1270                              NULL, NULL, plugin);
1271   }
1272 }
1273
1274 static void
1275 stop_report_addresses (struct Plugin *plugin)
1276 {
1277   /* Stop NAT handle */
1278   GNUNET_NAT_unregister (plugin->nat);
1279
1280   /* Clean up addresses */
1281   struct IPv4HttpAddressWrapper *w_t4;
1282   struct IPv6HttpAddressWrapper *w_t6;
1283
1284   while (plugin->ipv4_addr_head != NULL)
1285   {
1286     w_t4 = plugin->ipv4_addr_head;
1287     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_addr_head, plugin->ipv4_addr_tail,
1288                                  w_t4);
1289     GNUNET_free (w_t4);
1290   }
1291
1292   while (plugin->ipv6_addr_head != NULL)
1293   {
1294     w_t6 = plugin->ipv6_addr_head;
1295     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_addr_head, plugin->ipv6_addr_tail,
1296                                  w_t6);
1297     GNUNET_free (w_t6);
1298   }
1299 }
1300
1301 static int
1302 configure_plugin (struct Plugin *plugin)
1303 {
1304   int res = GNUNET_OK;
1305
1306   /* Use IPv4? */
1307   if (GNUNET_CONFIGURATION_have_value
1308       (plugin->env->cfg, plugin->name, "USE_IPv4"))
1309   {
1310     plugin->ipv4 =
1311         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, plugin->name,
1312                                               "USE_IPv4");
1313   }
1314   else
1315     plugin->ipv4 = GNUNET_YES;
1316
1317   /* Use IPv6? */
1318   if (GNUNET_CONFIGURATION_have_value
1319       (plugin->env->cfg, plugin->name, "USE_IPv6"))
1320   {
1321     plugin->ipv6 =
1322         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, plugin->name,
1323                                               "USE_IPv6");
1324   }
1325   else
1326     plugin->ipv6 = GNUNET_YES;
1327
1328   if ((plugin->ipv4 == GNUNET_NO) && (plugin->ipv6 == GNUNET_NO))
1329   {
1330     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1331                      _
1332                      ("Neither IPv4 nor IPv6 are enabled! Fix in configuration\n"),
1333                      plugin->name);
1334     res = GNUNET_SYSERR;
1335   }
1336
1337   /* Reading port number from config file */
1338   unsigned long long port;
1339
1340   if ((GNUNET_OK !=
1341        GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg, plugin->name,
1342                                               "PORT", &port)) || (port > 65535))
1343   {
1344     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1345                      _("Port is required! Fix in configuration\n"),
1346                      plugin->name);
1347     res = GNUNET_SYSERR;
1348     goto fail;
1349   }
1350   plugin->port = port;
1351
1352   plugin->client_only = GNUNET_NO;
1353   if (plugin->port == 0)
1354   {
1355     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1356                      _("Port 0, client only mode\n"));
1357     plugin->client_only = GNUNET_YES;
1358   }
1359
1360   char *bind4_address = NULL;
1361
1362   if ((plugin->ipv4 == GNUNET_YES) &&
1363       (GNUNET_YES ==
1364        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, plugin->name,
1365                                               "BINDTO", &bind4_address)))
1366   {
1367     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1368                      "Binding %s plugin to specific IPv4 address: `%s'\n",
1369                      plugin->protocol, bind4_address);
1370     plugin->server_addr_v4 = GNUNET_malloc (sizeof (struct sockaddr_in));
1371     if (1 !=
1372         inet_pton (AF_INET, bind4_address, &plugin->server_addr_v4->sin_addr))
1373     {
1374       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1375                        _
1376                        ("Specific IPv4 address `%s' for plugin %s in configuration file is invalid! Binding to all addresses!\n"),
1377                        bind4_address, plugin->protocol);
1378       GNUNET_free (plugin->server_addr_v4);
1379       plugin->server_addr_v4 = NULL;
1380     }
1381     else
1382     {
1383       plugin->server_addr_v4->sin_family = AF_INET;
1384       plugin->server_addr_v4->sin_port = htons (plugin->port);
1385     }
1386     GNUNET_free (bind4_address);
1387   }
1388
1389
1390   char *bind6_address = NULL;
1391
1392   if ((plugin->ipv6 == GNUNET_YES) &&
1393       (GNUNET_YES ==
1394        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, plugin->name,
1395                                               "BINDTO6", &bind6_address)))
1396   {
1397     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1398                      "Binding %s plugin to specific IPv6 address: `%s'\n",
1399                      plugin->protocol, bind6_address);
1400     plugin->server_addr_v6 = GNUNET_malloc (sizeof (struct sockaddr_in6));
1401     if (1 !=
1402         inet_pton (AF_INET6, bind6_address, &plugin->server_addr_v6->sin6_addr))
1403     {
1404       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1405                        _
1406                        ("Specific IPv6 address `%s' for plugin %s in configuration file is invalid! Binding to all addresses!\n"),
1407                        bind6_address, plugin->protocol);
1408       GNUNET_free (plugin->server_addr_v6);
1409       plugin->server_addr_v6 = NULL;
1410     }
1411     else
1412     {
1413       plugin->server_addr_v6->sin6_family = AF_INET6;
1414       plugin->server_addr_v6->sin6_port = htons (plugin->port);
1415     }
1416     GNUNET_free (bind6_address);
1417   }
1418
1419
1420   /* Optional parameters */
1421   unsigned long long maxneigh;
1422
1423   if (GNUNET_OK !=
1424       GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg, plugin->name,
1425                                              "MAX_CONNECTIONS", &maxneigh))
1426     maxneigh = 128;
1427   plugin->max_connections = maxneigh;
1428
1429 fail:
1430   return res;
1431 }
1432
1433 /**
1434  * Entry point for the plugin.
1435  */
1436 void *
1437 LIBGNUNET_PLUGIN_TRANSPORT_INIT (void *cls)
1438 {
1439   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1440   struct GNUNET_TRANSPORT_PluginFunctions *api;
1441   struct Plugin *plugin;
1442   int res;
1443
1444   if (NULL == env->receive)
1445   {
1446     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
1447        initialze the plugin or the API */
1448     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1449     api->cls = NULL;
1450     api->address_pretty_printer = &http_plugin_address_pretty_printer;
1451     api->address_to_string = &http_plugin_address_to_string;
1452     api->string_to_address = NULL; // FIXME!
1453     return api;
1454   }
1455
1456   plugin = GNUNET_malloc (sizeof (struct Plugin));
1457   plugin->env = env;
1458   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1459   api->cls = plugin;
1460   api->disconnect = &http_plugin_disconnect;
1461   api->address_pretty_printer = &http_plugin_address_pretty_printer;
1462   api->check_address = &http_plugin_address_suggested;
1463   api->address_to_string = &http_plugin_address_to_string;
1464   api->string_to_address = &http_string_to_address;
1465   api->get_session = &http_get_session;
1466   api->send = &http_plugin_send;
1467
1468 #if BUILD_HTTPS
1469   plugin->name = "transport-https";
1470   plugin->protocol = "https";
1471 #else
1472   plugin->name = "transport-http";
1473   plugin->protocol = "http";
1474 #endif
1475   /* Configure plugin from configuration */
1476   res = configure_plugin (plugin);
1477   if (res == GNUNET_SYSERR)
1478   {
1479     GNUNET_free_non_null (plugin->server_addr_v4);
1480     GNUNET_free_non_null (plugin->server_addr_v6);
1481     GNUNET_free (plugin);
1482     GNUNET_free (api);
1483     return NULL;
1484   }
1485
1486   /* checking IPv6 support */
1487   http_check_ipv6 (plugin);
1488
1489   /* Start client */
1490   res = client_start (plugin);
1491   if (res == GNUNET_SYSERR)
1492   {
1493     GNUNET_free_non_null (plugin->server_addr_v4);
1494     GNUNET_free_non_null (plugin->server_addr_v6);
1495     GNUNET_free (plugin);
1496     GNUNET_free (api);
1497     return NULL;
1498   }
1499
1500   /* Start server */
1501   if (plugin->client_only == GNUNET_NO)
1502   {
1503     res = server_start (plugin);
1504     if (res == GNUNET_SYSERR)
1505     {
1506       server_stop (plugin);
1507       client_stop (plugin);
1508
1509       GNUNET_free_non_null (plugin->server_addr_v4);
1510       GNUNET_free_non_null (plugin->server_addr_v6);
1511       GNUNET_free (plugin);
1512       GNUNET_free (api);
1513       return NULL;
1514     }
1515   }
1516   /* Report addresses to transport service */
1517   start_report_addresses (plugin);
1518
1519 #if DEBUG_HTTP
1520   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1521                    "Plugin `%s' loaded\n", plugin->name);
1522 #endif
1523
1524   return api;
1525 }
1526
1527
1528 /**
1529  * Exit point from the plugin.
1530  */
1531 void *
1532 LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
1533 {
1534   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1535   struct Plugin *plugin = api->cls;
1536   struct Session *s;
1537
1538   if (NULL == plugin)
1539   {
1540     GNUNET_free (api);
1541     return NULL;
1542   }
1543
1544   /* Stop reporting addresses to transport service */
1545   stop_report_addresses (plugin);
1546
1547   /* cleaning up sessions */
1548   s = plugin->head;
1549   while (s != NULL)
1550   {
1551 #if DEBUG_HTTP
1552     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1553                      "Disconnecting `%s' \n", GNUNET_i2s (&s->target));
1554 #endif
1555     if (s->inbound == GNUNET_NO)
1556       GNUNET_assert (GNUNET_OK == client_disconnect (s));
1557     else
1558       GNUNET_assert (GNUNET_OK == server_disconnect (s));
1559     s = s->next;
1560   }
1561
1562 #if DEBUG_HTTP
1563   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Stopping server\n");
1564 #endif
1565   /* Stop server */
1566   server_stop (plugin);
1567
1568 #if DEBUG_HTTP
1569   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Stopping client\n");
1570 #endif
1571   /* Stop client */
1572   client_stop (plugin);
1573
1574   /* deleting up sessions */
1575   s = plugin->head;
1576   while (s != NULL)
1577   {
1578     struct Session *t = s->next;
1579
1580     GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
1581
1582     struct HTTP_Message *msg = s->msg_head;
1583     struct HTTP_Message *tmp = NULL;
1584
1585     while (msg != NULL)
1586     {
1587       tmp = msg->next;
1588
1589       GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
1590       if (msg->transmit_cont != NULL)
1591       {
1592         msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
1593       }
1594       GNUNET_free (msg);
1595       msg = tmp;
1596     }
1597
1598     delete_session (s);
1599     s = t;
1600   }
1601
1602
1603 #if DEBUG_HTTP
1604   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1605                    "Plugin `%s' unloaded\n", plugin->name);
1606 #endif
1607
1608   GNUNET_free_non_null (plugin->server_addr_v4);
1609   GNUNET_free_non_null (plugin->server_addr_v6);
1610   GNUNET_free (plugin);
1611   GNUNET_free (api);
1612
1613   return NULL;
1614 }
1615
1616 /* end of plugin_transport_http.c */