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