first steps to transport_api 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
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
538   /* look for existing connection */
539   s = lookup_session (plugin, target, session, addr, addrlen, 1);
540 #if DEBUG_HTTP
541   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
542                    "%s existing session: %s\n",
543                    (s != NULL) ? "Found" : "NOT Found", ((s != NULL) &&
544                                                          (s->inbound ==
545                                                           GNUNET_YES)) ?
546                    "inbound" : "outbound");
547 #endif
548
549   /* create new outbound connection */
550   if (s == NULL)
551   {
552     if (plugin->max_connections <= plugin->cur_connections)
553     {
554       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
555                        "Maximum number of connections reached, "
556                        "cannot connect to peer `%s'\n", GNUNET_i2s (target));
557       return res;
558     }
559
560 #if DEBUG_HTTP
561     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
562                      "Initiiating new connection to peer `%s'\n",
563                      GNUNET_i2s (target));
564 #endif
565     int res = GNUNET_OK;
566     if (addrlen == sizeof (struct IPv4HttpAddress))
567     {
568       struct IPv4HttpAddress * a4 = (struct IPv4HttpAddress *) addr;
569       if ((ntohs(a4->u4_port) == 0) || (plugin->ipv4 == GNUNET_NO))
570           res = GNUNET_SYSERR;
571     }
572     if (addrlen == sizeof (struct IPv6HttpAddress))
573     {
574       struct IPv6HttpAddress * a6 = (struct IPv6HttpAddress *) addr;
575       if ((ntohs(a6->u6_port) == 0) || (plugin->ipv6 == GNUNET_NO))
576           res = GNUNET_SYSERR;
577     }
578     if (res == GNUNET_OK)
579     {
580       s = create_session (plugin, target, addr, addrlen, cont, cont_cls);
581       GNUNET_CONTAINER_DLL_insert (plugin->head, plugin->tail, s);
582       // initiate new connection
583       res = client_connect (s);
584     }
585     if (res == GNUNET_SYSERR)
586     {
587       if (s != NULL)
588       {
589         GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
590         delete_session (s);
591       }
592       return GNUNET_SYSERR;
593     }
594   }
595
596   msg = GNUNET_malloc (sizeof (struct HTTP_Message) + msgbuf_size);
597   msg->next = NULL;
598   msg->size = msgbuf_size;
599   msg->pos = 0;
600   msg->buf = (char *) &msg[1];
601   msg->transmit_cont = cont;
602   msg->transmit_cont_cls = cont_cls;
603   memcpy (msg->buf, msgbuf, msgbuf_size);
604
605   if (s->inbound == GNUNET_NO)
606   {
607 #if DEBUG_HTTP
608     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
609                      "Using outbound client session %p to send to `%s'\n",
610                      s,
611                      GNUNET_i2s (target));
612 #endif
613
614     client_send (s, msg);
615     res = msgbuf_size;
616   }
617   if (s->inbound == GNUNET_YES)
618   {
619 #if DEBUG_HTTP
620     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
621                      "Using inbound server %p session to send to `%s'\n",
622                      s,
623                      GNUNET_i2s (target));
624 #endif
625
626     server_send (s, msg);
627     res = msgbuf_size;
628   }
629   return res;
630 }
631
632
633 /**
634  * Function that can be used to force the plugin to disconnect
635  * from the given peer and cancel all previous transmissions
636  * (and their continuationc).
637  *
638  * @param cls closure
639  * @param target peer from which to disconnect
640  */
641 static void
642 http_plugin_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
643 {
644   struct Plugin *plugin = cls;
645   struct Session *next = NULL;
646   struct Session *s = plugin->head;
647
648   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
649                    "Transport tells me to disconnect `%s'\n",
650                    GNUNET_i2s (target));
651   while (s != NULL)
652   {
653     next = s->next;
654     if (0 == memcmp (target, &s->target, sizeof (struct GNUNET_PeerIdentity)))
655     {
656       if (s->inbound == GNUNET_NO)
657         GNUNET_assert (GNUNET_OK == client_disconnect (s));
658       else
659         GNUNET_assert (GNUNET_OK == server_disconnect (s));
660       GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
661
662       struct HTTP_Message * msg = s->msg_head;
663       struct HTTP_Message * tmp = s->msg_head;
664       while (msg != NULL)
665       {
666         tmp = msg->next;
667
668         GNUNET_CONTAINER_DLL_remove(s->msg_head,s->msg_tail, msg);
669         if (msg->transmit_cont != NULL)
670         {
671           msg->transmit_cont(msg->transmit_cont_cls, target, GNUNET_SYSERR);
672         }
673         GNUNET_free (msg);
674         msg = tmp;
675       }
676
677       delete_session (s);
678     }
679     s = next;
680   }
681 }
682
683 static void
684 nat_add_address (void *cls, int add_remove, const struct sockaddr *addr,
685                  socklen_t addrlen)
686 {
687   struct Plugin *plugin = cls;
688   struct IPv4HttpAddressWrapper *w_t4 = NULL;
689   struct IPv6HttpAddressWrapper *w_t6 = NULL;
690   int af;
691
692   af = addr->sa_family;
693   switch (af)
694   {
695   case AF_INET:
696     w_t4 = plugin->ipv4_addr_head;
697     struct sockaddr_in *a4 = (struct sockaddr_in *) addr;
698
699     while (w_t4 != NULL)
700     {
701       int res = memcmp (&w_t4->addr.ipv4_addr,
702                         &a4->sin_addr,
703                         sizeof (struct in_addr));
704
705       if (res == 0)
706       {
707         if (a4->sin_port != w_t4->addr.u4_port)
708           res = -1;
709       }
710
711       if (0 == res)
712         break;
713       w_t4 = w_t4->next;
714     }
715     if (w_t4 == NULL)
716     {
717       w_t4 = GNUNET_malloc (sizeof (struct IPv4HttpAddressWrapper));
718       memcpy (&w_t4->addr.ipv4_addr, &a4->sin_addr, sizeof (struct in_addr));
719       w_t4->addr.u4_port = a4->sin_port;
720
721       GNUNET_CONTAINER_DLL_insert (plugin->ipv4_addr_head,
722                                    plugin->ipv4_addr_tail, w_t4);
723     }
724 #if DEBUG_HTTP
725     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
726                      "Notifying transport to add IPv4 address `%s'\n",
727                      http_plugin_address_to_string (NULL, &w_t4->addr,
728                                                     sizeof (struct
729                                                             IPv4HttpAddress)));
730 #endif
731     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t4->addr,
732                                  sizeof (struct IPv4HttpAddress));
733
734     break;
735   case AF_INET6:
736     w_t6 = plugin->ipv6_addr_head;
737     struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) addr;
738
739     while (w_t6)
740     {
741       int res = memcmp (&w_t6->addr6.ipv6_addr, &a6->sin6_addr,
742                         sizeof (struct in6_addr));
743
744       if (res == 0)
745       {
746         if (a6->sin6_port != w_t6->addr6.u6_port)
747           res = -1;
748       }
749       if (0 == res)
750         break;
751       w_t6 = w_t6->next;
752     }
753     if (w_t6 == NULL)
754     {
755       w_t6 = GNUNET_malloc (sizeof (struct IPv6HttpAddressWrapper));
756
757       memcpy (&w_t6->addr6.ipv6_addr, &a6->sin6_addr, sizeof (struct in6_addr));
758       w_t6->addr6.u6_port = a6->sin6_port;
759
760       GNUNET_CONTAINER_DLL_insert (plugin->ipv6_addr_head,
761                                    plugin->ipv6_addr_tail, w_t6);
762     }
763 #if DEBUG_HTTP
764     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
765                      "Notifying transport to add IPv6 address `%s'\n",
766                      http_plugin_address_to_string (NULL, &w_t6->addr6,
767                                                     sizeof (struct
768                                                             IPv6HttpAddress)));
769 #endif
770     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t6->addr6,
771                                  sizeof (struct IPv6HttpAddress));
772     break;
773   default:
774     return;
775   }
776
777 }
778
779 static void
780 nat_remove_address (void *cls, int add_remove, const struct sockaddr *addr,
781                     socklen_t addrlen)
782 {
783   struct Plugin *plugin = cls;
784   struct IPv4HttpAddressWrapper *w_t4 = NULL;
785   struct IPv6HttpAddressWrapper *w_t6 = NULL;
786   int af;
787
788   af = addr->sa_family;
789   switch (af)
790   {
791   case AF_INET:
792     w_t4 = plugin->ipv4_addr_head;
793     struct sockaddr_in *a4 = (struct sockaddr_in *) addr;
794
795     while (w_t4 != NULL)
796     {
797       int res = memcmp (&w_t4->addr.ipv4_addr,
798                         &a4->sin_addr,
799                         sizeof (struct in_addr));
800
801       if (res == 0)
802       {
803         if (a4->sin_port != w_t4->addr.u4_port)
804           res = -1;
805       }
806
807       if (0 == res)
808         break;
809       w_t4 = w_t4->next;
810     }
811     if (w_t4 == NULL)
812       return;
813
814 #if DEBUG_HTTP
815     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
816                      "Notifying transport to remove IPv4 address `%s'\n",
817                      http_plugin_address_to_string (NULL, &w_t4->addr,
818                                                     sizeof (struct
819                                                             IPv4HttpAddress)));
820 #endif
821     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t4->addr,
822                                  sizeof (struct IPv4HttpAddress));
823
824     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_addr_head, plugin->ipv4_addr_tail,
825                                  w_t4);
826     GNUNET_free (w_t4);
827     break;
828   case AF_INET6:
829     w_t6 = plugin->ipv6_addr_head;
830     struct sockaddr_in6 *a6 = (struct sockaddr_in6 *) addr;
831
832     while (w_t6)
833     {
834       int res = memcmp (&w_t6->addr6.ipv6_addr, &a6->sin6_addr,
835                         sizeof (struct in6_addr));
836
837       if (res == 0)
838       {
839         if (a6->sin6_port != w_t6->addr6.u6_port)
840           res = -1;
841       }
842       if (0 == res)
843         break;
844       w_t6 = w_t6->next;
845     }
846     if (w_t6 == NULL)
847       return;
848 #if DEBUG_HTTP
849     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
850                      "Notifying transport to remove IPv6 address `%s'\n",
851                      http_plugin_address_to_string (NULL, &w_t6->addr6,
852                                                     sizeof (struct
853                                                             IPv6HttpAddress)));
854 #endif
855     plugin->env->notify_address (plugin->env->cls, add_remove, &w_t6->addr6,
856                                  sizeof (struct IPv6HttpAddress));
857
858     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_addr_head, plugin->ipv6_addr_tail,
859                                  w_t6);
860     GNUNET_free (w_t6);
861     break;
862   default:
863     return;
864   }
865
866 }
867
868 /**
869  * Our external IP address/port mapping has changed.
870  *
871  * @param cls closure, the 'struct LocalAddrList'
872  * @param add_remove GNUNET_YES to mean the new public IP address, GNUNET_NO to mean
873  *     the previous (now invalid) one
874  * @param addr either the previous or the new public IP address
875  * @param addrlen actual lenght of the address
876  */
877 static void
878 nat_port_map_callback (void *cls, int add_remove, const struct sockaddr *addr,
879                        socklen_t addrlen)
880 {
881   GNUNET_assert (cls != NULL);
882 #if DEBUG_HTTP
883   struct Plugin *plugin = cls;
884 #endif
885 #if DEBUG_HTTP
886   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
887                    "NPMC called %s to address `%s'\n",
888                    (add_remove == GNUNET_NO) ? "remove" : "add",
889                    GNUNET_a2s (addr, addrlen));
890 #endif
891   switch (add_remove)
892   {
893   case GNUNET_YES:
894     nat_add_address (cls, add_remove, addr, addrlen);
895     break;
896   case GNUNET_NO:
897     nat_remove_address (cls, add_remove, addr, addrlen);
898     break;
899   }
900 }
901
902 void
903 http_check_ipv6 (struct Plugin *plugin)
904 {
905   struct GNUNET_NETWORK_Handle *desc = NULL;
906
907   if (plugin->ipv6 == GNUNET_YES)
908   {
909     /* probe IPv6 support */
910     desc = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_STREAM, 0);
911     if (NULL == desc)
912     {
913       if ((errno == ENOBUFS) || (errno == ENOMEM) || (errno == ENFILE) ||
914           (errno == EACCES))
915       {
916         GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "socket");
917       }
918       GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING, plugin->name,
919                        _
920                        ("Disabling IPv6 since it is not supported on this system!\n"));
921       plugin->ipv6 = GNUNET_NO;
922     }
923     else
924     {
925       GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (desc));
926       desc = NULL;
927     }
928
929     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
930                      "Testing IPv6 on this system: %s\n",
931                      (plugin->ipv6 == GNUNET_YES) ? "successful" : "failed");
932   }
933 }
934
935 int
936 http_get_addresses (struct Plugin *plugin, const char *serviceName,
937                     const struct GNUNET_CONFIGURATION_Handle *cfg,
938                     struct sockaddr ***addrs, socklen_t ** addr_lens)
939 {
940   int disablev6;
941   unsigned long long port;
942   struct addrinfo hints;
943   struct addrinfo *res;
944   struct addrinfo *pos;
945   struct addrinfo *next;
946   unsigned int i;
947   int resi;
948   int ret;
949   struct sockaddr **saddrs;
950   socklen_t *saddrlens;
951   char *hostname;
952
953   *addrs = NULL;
954   *addr_lens = NULL;
955
956   disablev6 = !plugin->ipv6;
957
958   port = 0;
959   if (GNUNET_CONFIGURATION_have_value (cfg, serviceName, "PORT"))
960   {
961     GNUNET_break (GNUNET_OK ==
962                   GNUNET_CONFIGURATION_get_value_number (cfg, serviceName,
963                                                          "PORT", &port));
964     if (port > 65535)
965     {
966       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
967                   _
968                   ("Require valid port number for service in configuration!\n"));
969       return GNUNET_SYSERR;
970     }
971   }
972
973   if (GNUNET_CONFIGURATION_have_value (cfg, serviceName, "BINDTO"))
974   {
975     GNUNET_break (GNUNET_OK ==
976                   GNUNET_CONFIGURATION_get_value_string (cfg, serviceName,
977                                                          "BINDTO", &hostname));
978   }
979   else
980     hostname = NULL;
981
982   if (hostname != NULL)
983   {
984     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
985                      "Resolving `%s' since that is where `%s' will bind to.\n",
986                      hostname, serviceName);
987     memset (&hints, 0, sizeof (struct addrinfo));
988     if (disablev6)
989       hints.ai_family = AF_INET;
990     if ((0 != (ret = getaddrinfo (hostname, NULL, &hints, &res))) ||
991         (res == NULL))
992     {
993       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Failed to resolve `%s': %s\n"),
994                   hostname, gai_strerror (ret));
995       GNUNET_free (hostname);
996       return GNUNET_SYSERR;
997     }
998     next = res;
999     i = 0;
1000     while (NULL != (pos = next))
1001     {
1002       next = pos->ai_next;
1003       if ((disablev6) && (pos->ai_family == AF_INET6))
1004         continue;
1005       i++;
1006     }
1007     if (0 == i)
1008     {
1009       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1010                   _("Failed to find %saddress for `%s'.\n"),
1011                   disablev6 ? "IPv4 " : "", hostname);
1012       freeaddrinfo (res);
1013       GNUNET_free (hostname);
1014       return GNUNET_SYSERR;
1015     }
1016     resi = i;
1017     saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1018     saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1019     i = 0;
1020     next = res;
1021     while (NULL != (pos = next))
1022     {
1023       next = pos->ai_next;
1024       if ((disablev6) && (pos->ai_family == AF_INET6))
1025         continue;
1026       if ((pos->ai_protocol != IPPROTO_TCP) && (pos->ai_protocol != 0))
1027         continue;               /* not TCP */
1028       if ((pos->ai_socktype != SOCK_STREAM) && (pos->ai_socktype != 0))
1029         continue;               /* huh? */
1030       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1031                        "Service will bind to `%s'\n", GNUNET_a2s (pos->ai_addr,
1032                                                                   pos->ai_addrlen));
1033       if (pos->ai_family == AF_INET)
1034       {
1035         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in));
1036         saddrlens[i] = pos->ai_addrlen;
1037         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1038         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1039         ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1040       }
1041       else
1042       {
1043         GNUNET_assert (pos->ai_family == AF_INET6);
1044         GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in6));
1045         saddrlens[i] = pos->ai_addrlen;
1046         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1047         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1048         ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1049       }
1050       i++;
1051     }
1052     GNUNET_free (hostname);
1053     freeaddrinfo (res);
1054     resi = i;
1055   }
1056   else
1057   {
1058     /* will bind against everything, just set port */
1059     if (disablev6)
1060     {
1061       /* V4-only */
1062       resi = 1;
1063       i = 0;
1064       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1065       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1066
1067       saddrlens[i] = sizeof (struct sockaddr_in);
1068       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1069 #if HAVE_SOCKADDR_IN_SIN_LEN
1070       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
1071 #endif
1072       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1073       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1074     }
1075     else
1076     {
1077       /* dual stack */
1078       resi = 2;
1079       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1080       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1081       i = 0;
1082       saddrlens[i] = sizeof (struct sockaddr_in6);
1083       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1084 #if HAVE_SOCKADDR_IN_SIN_LEN
1085       ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
1086 #endif
1087       ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
1088       ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1089       i++;
1090       saddrlens[i] = sizeof (struct sockaddr_in);
1091       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1092 #if HAVE_SOCKADDR_IN_SIN_LEN
1093       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
1094 #endif
1095       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1096       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1097     }
1098   }
1099   *addrs = saddrs;
1100   *addr_lens = saddrlens;
1101   return resi;
1102 }
1103
1104 static void
1105 start_report_addresses (struct Plugin *plugin)
1106 {
1107   int res = GNUNET_OK;
1108   struct sockaddr **addrs;
1109   socklen_t *addrlens;
1110
1111   res =
1112       http_get_addresses (plugin, plugin->name, plugin->env->cfg, &addrs,
1113                           &addrlens);
1114   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1115                    _("Found %u addresses to report to NAT service\n"), res);
1116
1117   if (res != GNUNET_SYSERR)
1118   {
1119     plugin->nat =
1120         GNUNET_NAT_register (plugin->env->cfg, GNUNET_YES, plugin->port,
1121                              (unsigned int) res,
1122                              (const struct sockaddr **) addrs, addrlens,
1123                              &nat_port_map_callback, NULL, plugin);
1124     while (res > 0)
1125     {
1126       res--;
1127 #if 0
1128       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name, _("FREEING %s\n"),
1129                        GNUNET_a2s (addrs[res], addrlens[res]));
1130 #endif
1131       GNUNET_assert (addrs[res] != NULL);
1132       GNUNET_free (addrs[res]);
1133     }
1134     GNUNET_free_non_null (addrs);
1135     GNUNET_free_non_null (addrlens);
1136   }
1137   else
1138   {
1139     plugin->nat =
1140         GNUNET_NAT_register (plugin->env->cfg, GNUNET_YES, 0, 0, NULL, NULL,
1141                              NULL, NULL, plugin);
1142   }
1143 }
1144
1145 static void
1146 stop_report_addresses (struct Plugin *plugin)
1147 {
1148   /* Stop NAT handle */
1149   GNUNET_NAT_unregister (plugin->nat);
1150
1151   /* Clean up addresses */
1152   struct IPv4HttpAddressWrapper *w_t4;
1153   struct IPv6HttpAddressWrapper *w_t6;
1154
1155   while (plugin->ipv4_addr_head != NULL)
1156   {
1157     w_t4 = plugin->ipv4_addr_head;
1158     GNUNET_CONTAINER_DLL_remove (plugin->ipv4_addr_head, plugin->ipv4_addr_tail,
1159                                  w_t4);
1160     GNUNET_free (w_t4);
1161   }
1162
1163   while (plugin->ipv6_addr_head != NULL)
1164   {
1165     w_t6 = plugin->ipv6_addr_head;
1166     GNUNET_CONTAINER_DLL_remove (plugin->ipv6_addr_head, plugin->ipv6_addr_tail,
1167                                  w_t6);
1168     GNUNET_free (w_t6);
1169   }
1170 }
1171
1172 static int
1173 configure_plugin (struct Plugin *plugin)
1174 {
1175   int res = GNUNET_OK;
1176
1177   /* Use IPv4? */
1178   if (GNUNET_CONFIGURATION_have_value
1179       (plugin->env->cfg, plugin->name, "USE_IPv4"))
1180   {
1181     plugin->ipv4 =
1182         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, plugin->name,
1183                                               "USE_IPv4");
1184   }
1185   else
1186     plugin->ipv4 = GNUNET_YES;
1187
1188   /* Use IPv6? */
1189   if (GNUNET_CONFIGURATION_have_value
1190       (plugin->env->cfg, plugin->name, "USE_IPv6"))
1191   {
1192     plugin->ipv6 =
1193         GNUNET_CONFIGURATION_get_value_yesno (plugin->env->cfg, plugin->name,
1194                                               "USE_IPv6");
1195   }
1196   else
1197     plugin->ipv6 = GNUNET_YES;
1198
1199   if ((plugin->ipv4 == GNUNET_NO) && (plugin->ipv6 == GNUNET_NO))
1200   {
1201     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1202                      _
1203                      ("Neither IPv4 nor IPv6 are enabled! Fix in configuration\n"),
1204                      plugin->name);
1205     res = GNUNET_SYSERR;
1206   }
1207
1208   /* Reading port number from config file */
1209   unsigned long long port;
1210
1211   if ((GNUNET_OK !=
1212        GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg, plugin->name,
1213                                               "PORT", &port)) || (port > 65535))
1214   {
1215     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1216                      _("Port is required! Fix in configuration\n"),
1217                      plugin->name);
1218     res = GNUNET_SYSERR;
1219     goto fail;
1220   }
1221   plugin->port = port;
1222
1223   plugin->client_only = GNUNET_NO;
1224   if (plugin->port == 0)
1225   {
1226     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1227                      _("Port 0, client only mode\n"));
1228     plugin->client_only = GNUNET_YES;
1229   }
1230
1231   char *bind4_address = NULL;
1232
1233   if ((plugin->ipv4 == GNUNET_YES) &&
1234       (GNUNET_YES ==
1235        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, plugin->name,
1236                                               "BINDTO", &bind4_address)))
1237   {
1238     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1239                      "Binding %s plugin to specific IPv4 address: `%s'\n",
1240                      plugin->protocol, bind4_address);
1241     plugin->server_addr_v4 = GNUNET_malloc (sizeof (struct sockaddr_in));
1242     if (1 !=
1243         inet_pton (AF_INET, bind4_address, &plugin->server_addr_v4->sin_addr))
1244     {
1245       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1246                        _
1247                        ("Specific IPv4 address `%s' for plugin %s in configuration file is invalid! Binding to all addresses!\n"),
1248                        bind4_address, plugin->protocol);
1249       GNUNET_free (plugin->server_addr_v4);
1250       plugin->server_addr_v4 = NULL;
1251     }
1252     else
1253     {
1254       plugin->server_addr_v4->sin_family = AF_INET;
1255       plugin->server_addr_v4->sin_port = htons (plugin->port);
1256     }
1257     GNUNET_free (bind4_address);
1258   }
1259
1260
1261   char *bind6_address = NULL;
1262
1263   if ((plugin->ipv6 == GNUNET_YES) &&
1264       (GNUNET_YES ==
1265        GNUNET_CONFIGURATION_get_value_string (plugin->env->cfg, plugin->name,
1266                                               "BINDTO6", &bind6_address)))
1267   {
1268     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1269                      "Binding %s plugin to specific IPv6 address: `%s'\n",
1270                      plugin->protocol, bind6_address);
1271     plugin->server_addr_v6 = GNUNET_malloc (sizeof (struct sockaddr_in6));
1272     if (1 !=
1273         inet_pton (AF_INET6, bind6_address, &plugin->server_addr_v6->sin6_addr))
1274     {
1275       GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1276                        _
1277                        ("Specific IPv6 address `%s' for plugin %s in configuration file is invalid! Binding to all addresses!\n"),
1278                        bind6_address, plugin->protocol);
1279       GNUNET_free (plugin->server_addr_v6);
1280       plugin->server_addr_v6 = NULL;
1281     }
1282     else
1283     {
1284       plugin->server_addr_v6->sin6_family = AF_INET6;
1285       plugin->server_addr_v6->sin6_port = htons (plugin->port);
1286     }
1287     GNUNET_free (bind6_address);
1288   }
1289
1290
1291   /* Optional parameters */
1292   unsigned long long maxneigh;
1293
1294   if (GNUNET_OK !=
1295       GNUNET_CONFIGURATION_get_value_number (plugin->env->cfg, plugin->name,
1296                                              "MAX_CONNECTIONS", &maxneigh))
1297     maxneigh = 128;
1298   plugin->max_connections = maxneigh;
1299
1300 fail:
1301   return res;
1302 }
1303
1304 /**
1305  * Entry point for the plugin.
1306  */
1307 void *
1308 LIBGNUNET_PLUGIN_TRANSPORT_INIT (void *cls)
1309 {
1310   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
1311   struct GNUNET_TRANSPORT_PluginFunctions *api;
1312   struct Plugin *plugin;
1313   int res;
1314
1315   plugin = GNUNET_malloc (sizeof (struct Plugin));
1316   plugin->env = env;
1317   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
1318   api->cls = plugin;
1319   api->send = &http_plugin_send;
1320   api->disconnect = &http_plugin_disconnect;
1321   api->address_pretty_printer = &http_plugin_address_pretty_printer;
1322   api->check_address = &http_plugin_address_suggested;
1323   api->address_to_string = &http_plugin_address_to_string;
1324
1325 #if BUILD_HTTPS
1326   plugin->name = "transport-https";
1327   plugin->protocol = "https";
1328 #else
1329   plugin->name = "transport-http";
1330   plugin->protocol = "http";
1331 #endif
1332   /* Configure plugin from configuration */
1333   res = configure_plugin (plugin);
1334   if (res == GNUNET_SYSERR)
1335   {
1336     GNUNET_free_non_null (plugin->server_addr_v4);
1337     GNUNET_free_non_null (plugin->server_addr_v6);
1338     GNUNET_free (plugin);
1339     GNUNET_free (api);
1340     return NULL;
1341   }
1342
1343   /* checking IPv6 support */
1344   http_check_ipv6 (plugin);
1345
1346   /* Start client */
1347   res = client_start (plugin);
1348   if (res == GNUNET_SYSERR)
1349   {
1350     GNUNET_free_non_null (plugin->server_addr_v4);
1351     GNUNET_free_non_null (plugin->server_addr_v6);
1352     GNUNET_free (plugin);
1353     GNUNET_free (api);
1354     return NULL;
1355   }
1356
1357   /* Start server */
1358   if (plugin->client_only == GNUNET_NO)
1359   {
1360     res = server_start (plugin);
1361     if (res == GNUNET_SYSERR)
1362     {
1363       server_stop (plugin);
1364       client_stop (plugin);
1365
1366       GNUNET_free_non_null (plugin->server_addr_v4);
1367       GNUNET_free_non_null (plugin->server_addr_v6);
1368       GNUNET_free (plugin);
1369       GNUNET_free (api);
1370       return NULL;
1371     }
1372   }
1373   /* Report addresses to transport service */
1374   start_report_addresses (plugin);
1375
1376 #if DEBUG_HTTP
1377   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1378                    "Plugin `%s' loaded\n", plugin->name);
1379 #endif
1380
1381   return api;
1382 }
1383
1384
1385 /**
1386  * Exit point from the plugin.
1387  */
1388 void *
1389 LIBGNUNET_PLUGIN_TRANSPORT_DONE (void *cls)
1390 {
1391   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
1392   struct Plugin *plugin = api->cls;
1393   struct Session *s = NULL;
1394
1395   /* Stop reporting addresses to transport service */
1396   stop_report_addresses (plugin);
1397
1398   /* cleaning up sessions */
1399   s = plugin->head;
1400   while (s != NULL)
1401   {
1402 #if DEBUG_HTTP
1403     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1404                      "Disconnecting `%s' \n", GNUNET_i2s (&s->target));
1405 #endif
1406     if (s->inbound == GNUNET_NO)
1407       GNUNET_assert (GNUNET_OK == client_disconnect (s));
1408     else
1409       GNUNET_assert (GNUNET_OK == server_disconnect (s));
1410     s = s->next;
1411   }
1412
1413 #if DEBUG_HTTP
1414   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Stopping server\n");
1415 #endif
1416   /* Stop server */
1417   server_stop (plugin);
1418
1419 #if DEBUG_HTTP
1420   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, "Stopping client\n");
1421 #endif
1422   /* Stop client */
1423   client_stop (plugin);
1424
1425   /* deleting up sessions */
1426   s = plugin->head;
1427   while (s != NULL)
1428   {
1429     struct Session *t = s->next;
1430     GNUNET_CONTAINER_DLL_remove (plugin->head, plugin->tail, s);
1431
1432     struct HTTP_Message * msg = s->msg_head;
1433     struct HTTP_Message * tmp = s->msg_head;
1434     while (msg != NULL)
1435     {
1436       tmp = msg->next;
1437
1438       GNUNET_CONTAINER_DLL_remove(s->msg_head,s->msg_tail, msg);
1439       if (msg->transmit_cont != NULL)
1440       {
1441         msg->transmit_cont(msg->transmit_cont_cls, &s->target, GNUNET_SYSERR);
1442       }
1443       GNUNET_free (msg);
1444       msg = tmp;
1445     }
1446
1447     delete_session (s);
1448     s = t;
1449   }
1450
1451
1452 #if DEBUG_HTTP
1453   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name,
1454                    "Plugin `%s' unloaded\n", plugin->name);
1455 #endif
1456
1457   GNUNET_free_non_null (plugin->server_addr_v4);
1458   GNUNET_free_non_null (plugin->server_addr_v6);
1459   GNUNET_free (plugin);
1460   GNUNET_free (api);
1461
1462   return NULL;
1463 }
1464
1465 /* end of plugin_transport_http.c */