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