-fixing minor bugs, code cleanup
[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
612   GNUNET_assert ((addrlen == sizeof (struct IPv6HttpAddress)) ||
613                  (addrlen == sizeof (struct IPv4HttpAddress)));
614   s = GNUNET_malloc (sizeof (struct Session));
615   memcpy (&s->target, target, sizeof (struct GNUNET_PeerIdentity));
616   s->plugin = plugin;
617   s->addr = GNUNET_malloc (addrlen);
618   memcpy (s->addr, addr, addrlen);
619   s->addrlen = addrlen;
620   s->ats_address_network_type = htonl (GNUNET_ATS_NET_UNSPECIFIED);
621   start_session_timeout(s);
622   return s;
623 }
624
625
626 void
627 notify_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
628                     struct Session *s)
629 {
630   struct Plugin *plugin = cls;
631
632   plugin->env->session_end (plugin->env->cls, peer, s);
633   GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
634   delete_session (s);
635 }
636
637
638 /**
639  * Creates a new outbound session the transport service will use to send data to the
640  * peer
641  *
642  * @param cls the plugin
643  * @param address the address
644  * @return the session or NULL of max connections exceeded
645  */
646 static struct Session *
647 http_get_session (void *cls,
648                   const struct GNUNET_HELLO_Address *address)
649 {
650   struct Plugin *plugin = cls;
651   struct Session * s = NULL;
652   struct GNUNET_ATS_Information ats;
653   size_t addrlen;
654
655   GNUNET_assert (plugin != NULL);
656   GNUNET_assert (address != NULL);
657   GNUNET_assert (address->address != NULL);
658
659   ats.type = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
660   ats.value = htonl (GNUNET_ATS_ARRAY_TERMINATOR);
661
662   /* find existing session */
663   s = lookup_session (plugin, address);
664   if (s != NULL)
665     return s;
666
667   if (plugin->max_connections <= plugin->cur_connections)
668   {
669     GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
670                      "Maximum number of connections reached, "
671                      "cannot connect to peer `%s'\n", GNUNET_i2s (&address->peer));
672     return NULL;
673   }
674
675   /* create new session */
676   addrlen = address->address_length;
677
678   GNUNET_assert ((addrlen == sizeof (struct IPv6HttpAddress)) ||
679                  (addrlen == sizeof (struct IPv4HttpAddress)));
680
681   s = create_session (plugin, &address->peer, address->address, address->address_length);
682
683   /* Get ATS type */
684   if (addrlen == sizeof (struct IPv4HttpAddress))
685   {
686     struct IPv4HttpAddress *a4 = (struct IPv4HttpAddress *) address->address;
687     struct sockaddr_in s4;
688
689     s4.sin_family = AF_INET;
690     s4.sin_addr.s_addr = a4->ipv4_addr;
691     s4.sin_port = a4->u4_port;
692 #if HAVE_SOCKADDR_IN_SIN_LEN
693     s4.sin_len = sizeof (struct sockaddr_in);
694 #endif
695     ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) &s4, sizeof (struct sockaddr_in));
696   }
697   if (addrlen == sizeof (struct IPv6HttpAddress))
698   {
699     struct IPv6HttpAddress *a6 = (struct IPv6HttpAddress *) address->address;
700     struct sockaddr_in6 s6;
701
702     s6.sin6_family = AF_INET6;
703     s6.sin6_addr = a6->ipv6_addr;
704     s6.sin6_port = a6->u6_port;
705 #if HAVE_SOCKADDR_IN_SIN_LEN
706     s6.sin6_len = sizeof (struct sockaddr_in6);
707 #endif
708     ats = plugin->env->get_address_type (plugin->env->cls, (const struct sockaddr *) &s6, sizeof (struct sockaddr_in6));
709   }
710   s->ats_address_network_type = ats.value;
711
712   /* add new session */
713   GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
714   /* initiate new connection */
715   if (GNUNET_SYSERR == client_connect (s))
716   {
717     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
718                      "Cannot connect to peer `%s' address `%s''\n",
719                      http_plugin_address_to_string(NULL, s->addr, s->addrlen),
720                      GNUNET_i2s (&s->target));
721     GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
722     delete_session (s);
723     return NULL;
724   }
725
726   return s;
727 }
728
729
730 /**
731  * Function that can be used by the transport service to transmit
732  * a message using the plugin.   Note that in the case of a
733  * peer disconnecting, the continuation MUST be called
734  * prior to the disconnect notification itself.  This function
735  * will be called with this peer's HELLO message to initiate
736  * a fresh connection to another peer.
737  *
738  * @param cls closure
739  * @param session which session must be used
740  * @param msgbuf the message to transmit
741  * @param msgbuf_size number of bytes in 'msgbuf'
742  * @param priority how important is the message (most plugins will
743  *                 ignore message priority and just FIFO)
744  * @param to how long to wait at most for the transmission (does not
745  *                require plugins to discard the message after the timeout,
746  *                just advisory for the desired delay; most plugins will ignore
747  *                this as well)
748  * @param cont continuation to call once the message has
749  *        been transmitted (or if the transport is ready
750  *        for the next transmission call; or if the
751  *        peer disconnected...); can be NULL
752  * @param cont_cls closure for cont
753  * @return number of bytes used (on the physical network, with overheads);
754  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
755  *         and does NOT mean that the message was not transmitted (DV)
756  */
757 static ssize_t
758 http_plugin_send (void *cls,
759                   struct Session *session,
760                   const char *msgbuf, size_t msgbuf_size,
761                   unsigned int priority,
762                   struct GNUNET_TIME_Relative to,
763                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
764 {
765   struct Plugin *plugin = cls;
766   struct HTTP_Message *msg;
767   struct Session *tmp;
768   size_t res = -1;
769
770   GNUNET_assert (plugin != NULL);
771   GNUNET_assert (session != NULL);
772
773   /* lookup if session is really existing */
774   tmp = plugin->head;
775   while (tmp != NULL)
776   {
777     if ((tmp == session) &&
778        (0 == memcmp (&session->target, &tmp->target, sizeof (struct GNUNET_PeerIdentity))) &&
779        (session->addrlen == tmp->addrlen) &&
780        (0 == memcmp (session->addr, tmp->addr, tmp->addrlen)))
781       break;
782     tmp = tmp->next;
783   }
784   if (tmp == NULL)
785   {
786     GNUNET_break_op (0);
787     return res;
788   }
789
790   /* create new message and schedule */
791   msg = GNUNET_malloc (sizeof (struct HTTP_Message) + msgbuf_size);
792   msg->next = NULL;
793   msg->size = msgbuf_size;
794   msg->pos = 0;
795   msg->buf = (char *) &msg[1];
796   msg->transmit_cont = cont;
797   msg->transmit_cont_cls = cont_cls;
798   memcpy (msg->buf, msgbuf, msgbuf_size);
799
800   reschedule_session_timeout (session);
801
802   if (session->inbound == GNUNET_NO)
803   {
804     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
805                      "Using outbound client session %p to send to `%s'\n", session,
806                      GNUNET_i2s (&session->target));
807     client_send (session, msg);
808     res = msgbuf_size;
809   }
810   if (session->inbound == GNUNET_YES)
811   {
812     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
813                      "Using inbound server %p session to send to `%s'\n", session,
814                      GNUNET_i2s (&session->target));
815     server_send (session, msg);
816     res = msgbuf_size;
817   }
818   return res;
819
820 }
821
822
823 /**
824  * Function that can be used to force the plugin to disconnect
825  * from the given peer and cancel all previous transmissions
826  * (and their continuationc).
827  *
828  * @param cls closure
829  * @param target peer from which to disconnect
830  */
831 static void
832 http_plugin_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
833 {
834   struct Plugin *plugin = cls;
835   struct Session *next = NULL;
836   struct Session *s = plugin->head;
837
838   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
839                    "Transport tells me to disconnect `%s'\n",
840                    GNUNET_i2s (target));
841   while (s != NULL)
842   {
843     next = s->next;
844     if (0 == memcmp (target, &s->target, sizeof (struct GNUNET_PeerIdentity)))
845     {
846       if (s->inbound == GNUNET_NO)
847         GNUNET_assert (GNUNET_OK == client_disconnect (s));
848       else
849         GNUNET_assert (GNUNET_OK == server_disconnect (s));
850       GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
851
852       struct HTTP_Message *msg = s->msg_head;
853       struct HTTP_Message *tmp = NULL;
854
855       while (msg != NULL)
856       {
857         tmp = msg->next;
858
859         GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
860         if (msg->transmit_cont != NULL)
861         {
862           msg->transmit_cont (msg->transmit_cont_cls, target, GNUNET_SYSERR);
863         }
864         GNUNET_free (msg);
865         msg = tmp;
866       }
867
868       delete_session (s);
869     }
870     s = next;
871   }
872 }
873
874
875 static void *
876 find_address (struct Plugin *plugin, const struct sockaddr *addr, socklen_t addrlen)
877 {
878   int af;
879   struct IPv4HttpAddressWrapper *w_t4 = NULL;
880   struct IPv6HttpAddressWrapper *w_t6 = NULL;
881
882   af = addr->sa_family;
883   switch (af)
884   {
885   case AF_INET:
886     w_t4 = plugin->ipv4_addr_head;
887     struct sockaddr_in *a4 = (struct sockaddr_in *) addr;
888
889     while (w_t4 != NULL)
890     {
891       int res = memcmp (&w_t4->addr.ipv4_addr,
892                         &a4->sin_addr,
893                         sizeof (struct in_addr));
894
895       if (res == 0)
896       {
897         if (a4->sin_port != w_t4->addr.u4_port)
898           res = -1;
899       }
900
901       if (0 == res)
902         break;
903       w_t4 = w_t4->next;
904     }
905     return w_t4;
906     break;
907   case AF_INET6:
908     w_t6 = plugin->ipv6_addr_head;
909     struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) addr;
910
911     while (w_t6)
912     {
913       int res = memcmp (&w_t6->addr6.ipv6_addr, &a6->sin6_addr,
914                         sizeof (struct in6_addr));
915
916       if (res == 0)
917       {
918         if (a6->sin6_port != w_t6->addr6.u6_port)
919           res = -1;
920       }
921       if (0 == res)
922         break;
923       w_t6 = w_t6->next;
924     }
925     return w_t6;
926     break;
927   default:
928     return NULL;
929   }
930   return NULL;
931 }
932
933
934 static void
935 nat_add_address (void *cls, int add_remove, const struct sockaddr *addr,
936                  socklen_t addrlen)
937 {
938   struct Plugin *plugin = cls;
939   struct IPv4HttpAddressWrapper *w_t4 = NULL;
940   struct IPv6HttpAddressWrapper *w_t6 = NULL;
941   int af;
942
943   af = addr->sa_family;
944   switch (af)
945   {
946   case AF_INET:
947     w_t4 = find_address (plugin, addr, addrlen);
948     if (w_t4 == NULL)
949     {
950       struct sockaddr_in *a4 = (struct sockaddr_in *) addr;
951       w_t4 = GNUNET_malloc (sizeof (struct IPv4HttpAddressWrapper));
952       memcpy (&w_t4->addr.ipv4_addr, &a4->sin_addr, sizeof (struct in_addr));
953       w_t4->addr.u4_port = a4->sin_port;
954
955       GNUNET_CONTAINER_DLL_insert (plugin->ipv4_addr_head,
956                                    plugin->ipv4_addr_tail, w_t4);
957
958     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
959                      "Notifying transport to add IPv4 address `%s'\n",
960                      http_plugin_address_to_string (NULL, &w_t4->addr,
961                                                     sizeof (struct
962                                                             IPv4HttpAddress)));
963     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t4->addr,
964                                  sizeof (struct IPv4HttpAddress));
965     }
966     break;
967   case AF_INET6:
968     w_t6 = find_address (plugin, addr, addrlen);
969     if (w_t6 == NULL)
970     {
971       w_t6 = GNUNET_malloc (sizeof (struct IPv6HttpAddressWrapper));
972       struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) addr;
973       memcpy (&w_t6->addr6.ipv6_addr, &a6->sin6_addr, sizeof (struct in6_addr));
974       w_t6->addr6.u6_port = a6->sin6_port;
975
976       GNUNET_CONTAINER_DLL_insert (plugin->ipv6_addr_head,
977                                    plugin->ipv6_addr_tail, w_t6);
978
979       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
980                      "Notifying transport to add IPv6 address `%s'\n",
981                      http_plugin_address_to_string (NULL, &w_t6->addr6,
982                                                     sizeof (struct
983                                                             IPv6HttpAddress)));
984       plugin->env->notify_address (plugin->env->cls, add_remove, &w_t6->addr6,
985                                  sizeof (struct IPv6HttpAddress));
986     }
987     break;
988   default:
989     return;
990   }
991
992 }
993
994
995 static void
996 nat_remove_address (void *cls, int add_remove, const struct sockaddr *addr,
997                     socklen_t addrlen)
998 {
999   struct Plugin *plugin = cls;
1000   struct IPv4HttpAddressWrapper *w_t4 = NULL;
1001   struct IPv6HttpAddressWrapper *w_t6 = NULL;
1002   int af;
1003
1004   af = addr->sa_family;
1005   switch (af)
1006   {
1007   case AF_INET:
1008     w_t4 = find_address (plugin, addr, addrlen);
1009     if (w_t4 == NULL)
1010       return;
1011
1012
1013     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1014                      "Notifying transport to remove IPv4 address `%s'\n",
1015                      http_plugin_address_to_string (NULL, &w_t4->addr,
1016                                                     sizeof (struct
1017                                                             IPv4HttpAddress)));
1018     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t4->addr,
1019                                  sizeof (struct IPv4HttpAddress));
1020
1021     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_addr_head, plugin->ipv4_addr_tail,
1022                                  w_t4);
1023     GNUNET_free (w_t4);
1024     break;
1025   case AF_INET6:
1026     w_t6 = find_address (plugin, addr, addrlen);
1027     if (w_t6 == NULL)
1028       return;
1029
1030     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1031                      "Notifying transport to remove IPv6 address `%s'\n",
1032                      http_plugin_address_to_string (NULL, &w_t6->addr6,
1033                                                     sizeof (struct
1034                                                             IPv6HttpAddress)));
1035
1036     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t6->addr6,
1037                                  sizeof (struct IPv6HttpAddress));
1038
1039     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_addr_head, plugin->ipv6_addr_tail,
1040                                  w_t6);
1041     GNUNET_free (w_t6);
1042     break;
1043   default:
1044     return;
1045   }
1046 }
1047
1048
1049 /**
1050  * Our external IP address/port mapping has changed.
1051  *
1052  * @param cls closure, the 'struct LocalAddrList'
1053  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
1054  *     the previous (now invalid) one
1055  * @param addr either the previous or the new public IP address
1056  * @param addrlen actual lenght of the address
1057  */
1058 static void
1059 nat_port_map_callback (void *cls, int add_remove, const struct sockaddr *addr,
1060                        socklen_t addrlen)
1061 {
1062   GNUNET_assert (cls != NULL);
1063   struct Plugin *plugin = cls;
1064
1065   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1066                    "NPMC called %s to address `%s'\n",
1067                    (add_remove == GNUNET_NO) ? "remove" : "add",
1068                    GNUNET_a2s (addr, addrlen));
1069
1070   switch (add_remove)
1071   {
1072   case GNUNET_YES:
1073     nat_add_address (cls, add_remove, addr, addrlen);
1074     break;
1075   case GNUNET_NO:
1076     nat_remove_address (cls, add_remove, addr, addrlen);
1077     break;
1078   }
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
1116 int
1117 http_get_addresses (struct Plugin *plugin, const char *serviceName,
1118                     const struct GNUNET_CONFIGURATION_Handle *cfg,
1119                     struct sockaddr ***addrs, socklen_t ** addr_lens)
1120 {
1121   int disablev6;
1122   unsigned long long port;
1123   struct addrinfo hints;
1124   struct addrinfo *res;
1125   struct addrinfo *pos;
1126   struct addrinfo *next;
1127   unsigned int i;
1128   int resi;
1129   int ret;
1130   struct sockaddr **saddrs;
1131   socklen_t *saddrlens;
1132   char *hostname;
1133
1134   *addrs = NULL;
1135   *addr_lens = NULL;
1136
1137   disablev6 = !plugin->ipv6;
1138
1139   port = 0;
1140   if (GNUNET_CONFIGURATION_have_value (cfg, serviceName, "PORT"))
1141   {
1142     GNUNET_break (GNUNET_OK ==
1143                   GNUNET_CONFIGURATION_get_value_number (cfg, serviceName,
1144                                                          "PORT", &port));
1145     if (port > 65535)
1146     {
1147       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1148                   _
1149                   ("Require valid port number for service in configuration!\n"));
1150       return GNUNET_SYSERR;
1151     }
1152   }
1153
1154   if (GNUNET_CONFIGURATION_have_value (cfg, serviceName, "BINDTO"))
1155   {
1156     GNUNET_break (GNUNET_OK ==
1157                   GNUNET_CONFIGURATION_get_value_string (cfg, serviceName,
1158                                                          "BINDTO", &hostname));
1159   }
1160   else
1161     hostname = NULL;
1162
1163   if (hostname != NULL)
1164   {
1165     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1166                      "Resolving `%s' since that is where `%s' will bind to.\n",
1167                      hostname, serviceName);
1168     memset (&hints, 0, sizeof (struct addrinfo));
1169     if (disablev6)
1170       hints.ai_family = AF_INET;
1171     if ((0 != (ret = getaddrinfo (hostname, NULL, &hints, &res))) ||
1172         (res == NULL))
1173     {
1174       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to resolve `%s': %s\n"),
1175                   hostname, gai_strerror (ret));
1176       GNUNET_free (hostname);
1177       return GNUNET_SYSERR;
1178     }
1179     next = res;
1180     i = 0;
1181     while (NULL != (pos = next))
1182     {
1183       next = pos->ai_next;
1184       if ((disablev6) && (pos->ai_family == AF_INET6))
1185         continue;
1186       i++;
1187     }
1188     if (0 == i)
1189     {
1190       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1191                   _("Failed to find %saddress for `%s'.\n"),
1192                   disablev6 ? "IPv4 " : "", hostname);
1193       freeaddrinfo (res);
1194       GNUNET_free (hostname);
1195       return GNUNET_SYSERR;
1196     }
1197     resi = i;
1198     saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1199     saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1200     i = 0;
1201     next = res;
1202     while (NULL != (pos = next))
1203     {
1204       next = pos->ai_next;
1205       if ((disablev6) && (pos->ai_family == AF_INET6))
1206         continue;
1207       if ((pos->ai_protocol != IPPROTO_TCP) && (pos->ai_protocol != 0))
1208         continue;               /* not TCP */
1209       if ((pos->ai_socktype != SOCK_STREAM) && (pos->ai_socktype != 0))
1210         continue;               /* huh? */
1211       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1212                        "Service will bind to `%s'\n", GNUNET_a2s (pos->ai_addr,
1213                                                                   pos->ai_addrlen));
1214       if (pos->ai_family == AF_INET)
1215       {
1216         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in));
1217         saddrlens[i] = pos->ai_addrlen;
1218         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1219         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1220         ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1221       }
1222       else
1223       {
1224         GNUNET_assert (pos->ai_family == AF_INET6);
1225         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in6));
1226         saddrlens[i] = pos->ai_addrlen;
1227         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1228         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1229         ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1230       }
1231       i++;
1232     }
1233     GNUNET_free (hostname);
1234     freeaddrinfo (res);
1235     resi = i;
1236   }
1237   else
1238   {
1239     /* will bind against everything, just set port */
1240     if (disablev6)
1241     {
1242       /* V4-only */
1243       resi = 1;
1244       i = 0;
1245       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1246       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1247
1248       saddrlens[i] = sizeof (struct sockaddr_in);
1249       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1250 #if HAVE_SOCKADDR_IN_SIN_LEN
1251       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
1252 #endif
1253       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1254       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1255     }
1256     else
1257     {
1258       /* dual stack */
1259       resi = 2;
1260       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1261       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1262       i = 0;
1263       saddrlens[i] = sizeof (struct sockaddr_in6);
1264       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1265 #if HAVE_SOCKADDR_IN_SIN_LEN
1266       ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
1267 #endif
1268       ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
1269       ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1270       i++;
1271       saddrlens[i] = sizeof (struct sockaddr_in);
1272       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1273 #if HAVE_SOCKADDR_IN_SIN_LEN
1274       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
1275 #endif
1276       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1277       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1278     }
1279   }
1280   *addrs = saddrs;
1281   *addr_lens = saddrlens;
1282   return resi;
1283 }
1284
1285 static void
1286 start_report_addresses (struct Plugin *plugin)
1287 {
1288   int res = GNUNET_OK;
1289   struct sockaddr **addrs;
1290   socklen_t *addrlens;
1291
1292   res =
1293       http_get_addresses (plugin, plugin->name, plugin->env->cfg, &addrs,
1294                           &addrlens);
1295   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1296                    _("Found %u addresses to report to NAT service\n"), res);
1297
1298   if (res != GNUNET_SYSERR)
1299   {
1300     plugin->nat =
1301         GNUNET_NAT_register (plugin->env->cfg, GNUNET_YES, plugin->port,
1302                              (unsigned int) res,
1303                              (const struct sockaddr **) addrs, addrlens,
1304                              &nat_port_map_callback, NULL, plugin);
1305     while (res > 0)
1306     {
1307       res--;
1308 #if 0
1309       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name, _("FREEING %s\n"),
1310                        GNUNET_a2s (addrs[res], addrlens[res]));
1311 #endif
1312       GNUNET_assert (addrs[res] != NULL);
1313       GNUNET_free (addrs[res]);
1314     }
1315     GNUNET_free_non_null (addrs);
1316     GNUNET_free_non_null (addrlens);
1317   }
1318   else
1319   {
1320     plugin->nat =
1321         GNUNET_NAT_register (plugin->env->cfg, GNUNET_YES, 0, 0, NULL, NULL,
1322                              NULL, NULL, plugin);
1323   }
1324 }
1325
1326
1327 static void
1328 stop_report_addresses (struct Plugin *plugin)
1329 {
1330   /* Stop NAT handle */
1331   GNUNET_NAT_unregister (plugin->nat);
1332
1333   /* Clean up addresses */
1334   struct IPv4HttpAddressWrapper *w_t4;
1335   struct IPv6HttpAddressWrapper *w_t6;
1336
1337   while (plugin->ipv4_addr_head != NULL)
1338   {
1339     w_t4 = plugin->ipv4_addr_head;
1340     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_addr_head, plugin->ipv4_addr_tail,
1341                                  w_t4);
1342     GNUNET_free (w_t4);
1343   }
1344
1345   while (plugin->ipv6_addr_head != NULL)
1346   {
1347     w_t6 = plugin->ipv6_addr_head;
1348     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_addr_head, plugin->ipv6_addr_tail,
1349                                  w_t6);
1350     GNUNET_free (w_t6);
1351   }
1352 }
1353
1354
1355 static int
1356 configure_plugin (struct Plugin *plugin)
1357 {
1358   int res = GNUNET_OK;
1359
1360   /* Use IPv4? */
1361   if (GNUNET_CONFIGURATION_have_value
1362       (plugin->env->cfg, plugin->name, "USE_IPv4"))
1363   {
1364     plugin->ipv4 =
1365         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, plugin->name,
1366                                               "USE_IPv4");
1367   }
1368   else
1369     plugin->ipv4 = GNUNET_YES;
1370
1371   /* Use IPv6? */
1372   if (GNUNET_CONFIGURATION_have_value
1373       (plugin->env->cfg, plugin->name, "USE_IPv6"))
1374   {
1375     plugin->ipv6 =
1376         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, plugin->name,
1377                                               "USE_IPv6");
1378   }
1379   else
1380     plugin->ipv6 = GNUNET_YES;
1381
1382   if ((plugin->ipv4 == GNUNET_NO) && (plugin->ipv6 == GNUNET_NO))
1383   {
1384     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1385                      _
1386                      ("Neither IPv4 nor IPv6 are enabled! Fix in configuration\n"),
1387                      plugin->name);
1388     res = GNUNET_SYSERR;
1389   }
1390
1391   /* Reading port number from config file */
1392   unsigned long long port;
1393
1394   if ((GNUNET_OK !=
1395        GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg, plugin->name,
1396                                               "PORT", &port)) || (port > 65535))
1397   {
1398     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1399                      _("Port is required! Fix in configuration\n"),
1400                      plugin->name);
1401     res = GNUNET_SYSERR;
1402     goto fail;
1403   }
1404   plugin->port = port;
1405
1406   plugin->client_only = GNUNET_NO;
1407   if (plugin->port == 0)
1408   {
1409     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1410                      _("Port 0, client only mode\n"));
1411     plugin->client_only = GNUNET_YES;
1412   }
1413
1414   char *bind4_address = NULL;
1415
1416   if ((plugin->ipv4 == GNUNET_YES) &&
1417       (GNUNET_YES ==
1418        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, plugin->name,
1419                                               "BINDTO", &bind4_address)))
1420   {
1421     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1422                      "Binding %s plugin to specific IPv4 address: `%s'\n",
1423                      plugin->protocol, bind4_address);
1424     plugin->server_addr_v4 = GNUNET_malloc (sizeof (struct sockaddr_in));
1425     if (1 !=
1426         inet_pton (AF_INET, bind4_address, &plugin->server_addr_v4->sin_addr))
1427     {
1428       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1429                        _
1430                        ("Specific IPv4 address `%s' for plugin %s in configuration file is invalid! Binding to all addresses!\n"),
1431                        bind4_address, plugin->protocol);
1432       GNUNET_free (plugin->server_addr_v4);
1433       plugin->server_addr_v4 = NULL;
1434     }
1435     else
1436     {
1437       plugin->server_addr_v4->sin_family = AF_INET;
1438       plugin->server_addr_v4->sin_port = htons (plugin->port);
1439     }
1440     GNUNET_free (bind4_address);
1441   }
1442
1443
1444   char *bind6_address = NULL;
1445
1446   if ((plugin->ipv6 == GNUNET_YES) &&
1447       (GNUNET_YES ==
1448        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, plugin->name,
1449                                               "BINDTO6", &bind6_address)))
1450   {
1451     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1452                      "Binding %s plugin to specific IPv6 address: `%s'\n",
1453                      plugin->protocol, bind6_address);
1454     plugin->server_addr_v6 = GNUNET_malloc (sizeof (struct sockaddr_in6));
1455     if (1 !=
1456         inet_pton (AF_INET6, bind6_address, &plugin->server_addr_v6->sin6_addr))
1457     {
1458       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1459                        _
1460                        ("Specific IPv6 address `%s' for plugin %s in configuration file is invalid! Binding to all addresses!\n"),
1461                        bind6_address, plugin->protocol);
1462       GNUNET_free (plugin->server_addr_v6);
1463       plugin->server_addr_v6 = NULL;
1464     }
1465     else
1466     {
1467       plugin->server_addr_v6->sin6_family = AF_INET6;
1468       plugin->server_addr_v6->sin6_port = htons (plugin->port);
1469     }
1470     GNUNET_free (bind6_address);
1471   }
1472
1473
1474   /* Optional parameters */
1475   unsigned long long maxneigh;
1476
1477   if (GNUNET_OK !=
1478       GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg, plugin->name,
1479                                              "MAX_CONNECTIONS", &maxneigh))
1480     maxneigh = 128;
1481   plugin->max_connections = maxneigh;
1482
1483 fail:
1484   return res;
1485 }
1486
1487
1488 /**
1489  * Session was idle, so disconnect it
1490  */
1491 static void
1492 session_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1493 {
1494   GNUNET_assert (NULL != cls);
1495   struct Session *s = cls;
1496
1497   s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1498
1499   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Session %p was idle for %llu, disconnecting\n",
1500       s, GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1501
1502   /* call session destroy function */
1503   if (s->inbound == GNUNET_NO)
1504     GNUNET_assert (GNUNET_OK == client_disconnect (s));
1505   else
1506     GNUNET_assert (GNUNET_OK == server_disconnect (s));
1507
1508 }
1509
1510
1511 /**
1512  * Start session timeout
1513  */
1514 static void
1515 start_session_timeout (struct Session *s)
1516 {
1517   GNUNET_assert (NULL != s);
1518   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task);
1519
1520   s->timeout_task =  GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1521                                                    &session_timeout,
1522                                                    s);
1523
1524   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Timeout for session %p set to %llu\n",
1525       s, GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1526 }
1527
1528
1529 /**
1530  * Increment session timeout due to activity
1531  */
1532 static void
1533 reschedule_session_timeout (struct Session *s)
1534 {
1535   GNUNET_assert (NULL != s);
1536   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK != s->timeout_task);
1537
1538   GNUNET_SCHEDULER_cancel (s->timeout_task);
1539   s->timeout_task =  GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
1540                                                    &session_timeout,
1541                                                    s);
1542
1543   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Timeout rescheduled for session %p set to %llu\n",
1544       s, GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1545 }
1546
1547
1548 /**
1549  * Cancel timeout
1550  */
1551 static void
1552 stop_session_timeout (struct Session *s)
1553 {
1554   GNUNET_assert (NULL != s);
1555
1556   if (GNUNET_SCHEDULER_NO_TASK != s->timeout_task)
1557   {
1558     GNUNET_SCHEDULER_cancel (s->timeout_task);
1559     s->timeout_task = GNUNET_SCHEDULER_NO_TASK;
1560
1561     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Timeout rescheduled for session %p canceled\n",
1562       s, GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value);
1563   }
1564   else
1565   {
1566     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Timeout for session %p was not active\n",
1567       s);
1568   }
1569 }
1570
1571
1572 /**
1573  * Entry point for the plugin.
1574  */
1575 void *
1576 LIBGNUNET_PLUGIN_TRANSPORT_INIT (void *cls)
1577 {
1578   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1579   struct GNUNET_TRANSPORT_PluginFunctions *api;
1580   struct Plugin *plugin;
1581   int res;
1582
1583   if (NULL == env->receive)
1584   {
1585     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
1586        initialze the plugin or the API */
1587     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1588     api->cls = NULL;
1589     api->address_pretty_printer = &http_plugin_address_pretty_printer;
1590     api->address_to_string = &http_plugin_address_to_string;
1591     api->string_to_address = &http_string_to_address;
1592     return api;
1593   }
1594
1595   plugin = GNUNET_malloc (sizeof (struct Plugin));
1596   plugin->env = env;
1597   plugin->outbound_sessions = 0;
1598   plugin->inbound_sessions = 0;
1599   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1600   api->cls = plugin;
1601   api->disconnect = &http_plugin_disconnect;
1602   api->address_pretty_printer = &http_plugin_address_pretty_printer;
1603   api->check_address = &http_plugin_address_suggested;
1604   api->address_to_string = &http_plugin_address_to_string;
1605   api->string_to_address = &http_string_to_address;
1606   api->get_session = &http_get_session;
1607   api->send = &http_plugin_send;
1608
1609 #if BUILD_HTTPS
1610   plugin->name = "transport-https";
1611   plugin->protocol = "https";
1612 #else
1613   plugin->name = "transport-http";
1614   plugin->protocol = "http";
1615 #endif
1616   /* Configure plugin from configuration */
1617   res = configure_plugin (plugin);
1618   if (res == GNUNET_SYSERR)
1619   {
1620     GNUNET_free_non_null (plugin->server_addr_v4);
1621     GNUNET_free_non_null (plugin->server_addr_v6);
1622     GNUNET_free (plugin);
1623     GNUNET_free (api);
1624     return NULL;
1625   }
1626
1627   /* checking IPv6 support */
1628   http_check_ipv6 (plugin);
1629
1630   /* Start client */
1631   res = client_start (plugin);
1632   if (res == GNUNET_SYSERR)
1633   {
1634     GNUNET_free_non_null (plugin->server_addr_v4);
1635     GNUNET_free_non_null (plugin->server_addr_v6);
1636     GNUNET_free (plugin);
1637     GNUNET_free (api);
1638     return NULL;
1639   }
1640
1641   /* Start server */
1642   if (plugin->client_only == GNUNET_NO)
1643   {
1644     res = server_start (plugin);
1645     if (res == GNUNET_SYSERR)
1646     {
1647       server_stop (plugin);
1648       client_stop (plugin);
1649
1650       GNUNET_free_non_null (plugin->server_addr_v4);
1651       GNUNET_free_non_null (plugin->server_addr_v6);
1652       GNUNET_free (plugin);
1653       GNUNET_free (api);
1654       return NULL;
1655     }
1656   }
1657   /* Report addresses to transport service */
1658   start_report_addresses (plugin);
1659
1660   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1661                    "Plugin `%s' loaded\n", plugin->name);
1662   return api;
1663 }
1664
1665
1666 /**
1667  * Exit point from the plugin.
1668  */
1669 void *
1670 LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
1671 {
1672   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1673   struct Plugin *plugin = api->cls;
1674   struct Session *s;
1675
1676   if (NULL == plugin)
1677   {
1678     GNUNET_free (api);
1679     return NULL;
1680   }
1681
1682   /* Stop reporting addresses to transport service */
1683   stop_report_addresses (plugin);
1684
1685   /* cleaning up sessions */
1686   s = plugin->head;
1687   while (s != NULL)
1688   {
1689     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1690                      "Disconnecting `%s' \n", GNUNET_i2s (&s->target));
1691     if (s->inbound == GNUNET_NO)
1692       GNUNET_assert (GNUNET_OK == client_disconnect (s));
1693     else
1694       GNUNET_assert (GNUNET_OK == server_disconnect (s));
1695     s = s->next;
1696   }
1697
1698   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Stopping server\n");
1699   /* Stop server */
1700   server_stop (plugin);
1701
1702   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Stopping client\n");
1703   /* Stop client */
1704   client_stop (plugin);
1705
1706   /* deleting up sessions */
1707   s = plugin->head;
1708   while (s != NULL)
1709   {
1710     struct Session *t = s->next;
1711
1712     GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
1713
1714     struct HTTP_Message *msg = s->msg_head;
1715     struct HTTP_Message *tmp = NULL;
1716
1717     while (msg != NULL)
1718     {
1719       tmp = msg->next;
1720
1721       GNUNET_CONTAINER_DLL_remove (s->msg_head, s->msg_tail, msg);
1722       if (msg->transmit_cont != NULL)
1723       {
1724         msg->transmit_cont (msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
1725       }
1726       GNUNET_free (msg);
1727       msg = tmp;
1728     }
1729
1730     delete_session (s);
1731     s = t;
1732   }
1733
1734   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1735                    "Plugin `%s' unloaded\n", plugin->name);
1736   GNUNET_free_non_null (plugin->server_addr_v4);
1737   GNUNET_free_non_null (plugin->server_addr_v6);
1738   GNUNET_free (plugin);
1739   GNUNET_free (api);
1740   return NULL;
1741 }
1742
1743 /* end of plugin_transport_http.c */