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