- fix
[oweals/gnunet.git] / src / transport / plugin_transport_http.h
index 986d7d7975cabb985cdacabae53e990bce9cbf66..94952173c6879ca9c8486a71b1b22450dbb63167 100644 (file)
@@ -1,6 +1,6 @@
 /*
      This file is part of GNUnet
-     (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
+     Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Christian Grothoff (and other contributing authors)
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
@@ -14,8 +14,8 @@
 
      You should have received a copy of the GNU General Public License
      along with GNUnet; see the file COPYING.  If not, write to the
-     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-     Boston, MA 02111-1307, USA.
+     Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+     Boston, MA 02110-1301, USA.
 */
 
 /**
@@ -23,6 +23,8 @@
  * @brief http transport service plugin
  * @author Matthias Wachs
  */
+#ifndef PLUGIN_TRANSPORT_HTTP_H
+#define PLUGIN_TRANSPORT_HTTP_H
 
 #include "platform.h"
 #include "gnunet_common.h"
 #include "gnunet_os_lib.h"
 #include "gnunet_nat_lib.h"
 #include "microhttpd.h"
+#if HAVE_CURL_CURL_H
 #include <curl/curl.h>
+#elif HAVE_GNURL_CURL_H
+#include <gnurl/curl.h>
+#endif
 
 
 #define DEBUG_HTTP GNUNET_EXTRA_LOGGING
  */
 struct Plugin
 {
-  /**
-   * General handles
-   * ---------------
-   */
-
   /**
    * Our environment.
    */
   struct GNUNET_TRANSPORT_PluginEnvironment *env;
 
   /**
-   * Linked list of open sessions.
+   * Head of linked list of open sessions.
    */
-
   struct Session *head;
 
+  /**
+   * Tail of linked list of open sessions.
+   */
   struct Session *tail;
 
   /**
@@ -90,36 +93,39 @@ struct Plugin
   struct GNUNET_NAT_Handle *nat;
 
   /**
-   * List of own addresses
+   * Our own IPv4 addresses DLL head
    */
+  struct HttpAddressWrapper *addr_head;
 
   /**
-   * IPv4 addresses DLL head
+   * Our own IPv4 addresses DLL tail
    */
-  struct IPv4HttpAddressWrapper *ipv4_addr_head;
+  struct HttpAddressWrapper *addr_tail;
 
   /**
-   * IPv4 addresses DLL tail
+   * External hostname the plugin can be connected to, can be different to
+   * the host's FQDN, used e.g. for reverse proxying
    */
-  struct IPv4HttpAddressWrapper *ipv4_addr_tail;
+  char *external_hostname;
 
   /**
-   * IPv6 addresses DLL head
+   * External hostname the plugin can be connected to, can be different to
+   * the host's FQDN, used e.g. for reverse proxying
    */
-  struct IPv6HttpAddressWrapper *ipv6_addr_head;
+  struct HttpAddress *ext_addr;
 
   /**
-   * IPv6 addresses DLL tail
+   * External address length
    */
-  struct IPv6HttpAddressWrapper *ipv6_addr_tail;
+  size_t ext_addr_len;
 
   /**
-   * Plugin configuration
-   * --------------------
+   * Task calling transport service about external address
    */
+  struct GNUNET_SCHEDULER_Task * notify_ext_task;
 
   /**
-   * Plugin name
+   * Plugin name.
    * Equals configuration section: transport-http, transport-https
    */
   char *name;
@@ -131,21 +137,18 @@ struct Plugin
   char *protocol;
 
   /**
-   * Use IPv4?
-   * GNUNET_YES or GNUNET_NO
+   * Use IPv4? #GNUNET_YES or #GNUNET_NO
    */
   int ipv4;
 
   /**
-   * Use IPv6?
-   * GNUNET_YES or GNUNET_NO
+   * Use IPv6? #GNUNET_YES or #GNUNET_NO
    */
   int ipv6;
 
   /**
    * Does plugin just use outbound connections and not accept inbound?
    */
-
   int client_only;
 
   /**
@@ -169,11 +172,6 @@ struct Plugin
    */
   unsigned int inbound_sessions;
 
-  /**
-   * Plugin HTTPS SSL/TLS options
-   * ----------------------------
-   */
-
   /**
    * libCurl TLS crypto init string, can be set to enhance performance
    *
@@ -181,7 +179,6 @@ struct Plugin
    *
    * Use RC4-128 instead of AES:
    * NONE:+VERS-TLS1.0:+ARCFOUR-128:+SHA1:+RSA:+COMP-NULL
-   *
    */
   char *crypto_init;
 
@@ -195,11 +192,6 @@ struct Plugin
    */
   char *cert;
 
-  /**
-   * Plugin values
-   * -------------
-   */
-
   /**
    * Current number of establishes connections
    */
@@ -210,11 +202,6 @@ struct Plugin
    */
   uint32_t last_tag;
 
-  /**
-   * Server handles
-   * --------------
-   */
-
   /**
    * MHD IPv4 daemon
    */
@@ -223,7 +210,7 @@ struct Plugin
   /**
    * MHD IPv4 task
    */
-  GNUNET_SCHEDULER_TaskIdentifier server_v4_task;
+  struct GNUNET_SCHEDULER_Task * server_v4_task;
 
   /**
    * The IPv4 server is scheduled to run asap
@@ -238,12 +225,11 @@ struct Plugin
   /**
    * MHD IPv4 task
    */
-  GNUNET_SCHEDULER_TaskIdentifier server_v6_task;
+  struct GNUNET_SCHEDULER_Task * server_v6_task;
 
   /**
    * The IPv6 server is scheduled to run asap
    */
-
   int server_v6_immediately;
 
   /**
@@ -257,17 +243,18 @@ struct Plugin
   struct sockaddr_in6 *server_addr_v6;
 
   /**
-   * Server semi connections
+   * Head of server semi connections
    * A full session consists of 2 semi-connections: send and receive
    * If not both directions are established the server keeps this sessions here
    */
   struct Session *server_semi_head;
 
-  struct Session *server_semi_tail;
-
-  /*
-   * Client handles
+  /**
+   * Tail of server semi connections
+   * A full session consists of 2 semi-connections: send and receive
+   * If not both directions are established the server keeps this sessions here
    */
+  struct Session *server_semi_tail;
 
   /**
    * cURL Multihandle
@@ -277,12 +264,28 @@ struct Plugin
   /**
    * curl perform task
    */
-  GNUNET_SCHEDULER_TaskIdentifier client_perform_task;
+  struct GNUNET_SCHEDULER_Task * client_perform_task;
 
 };
 
 GNUNET_NETWORK_STRUCT_BEGIN
 
+/**
+ * HTTP addresses including a full URI
+ */
+struct HttpAddress
+{
+  /**
+   * Length of the address following in NBO
+   */
+  uint32_t addr_len GNUNET_PACKED;
+
+  /**
+   * Address following
+   */
+  void *addr GNUNET_PACKED;
+};
+
 /**
  * IPv4 addresses
  */
@@ -317,28 +320,39 @@ struct IPv6HttpAddress
 GNUNET_NETWORK_STRUCT_END
 
 
-struct ServerConnection
+struct ServerRequest
 {
-  /* _RECV or _SEND */
+  /**
+   * _RECV or _SEND
+   */
   int direction;
 
-  /* Should this connection get disconnected? GNUNET_YES/NO  */
+  /**
+   * Should this connection get disconnected? #GNUNET_YES / #GNUNET_NO
+   */
   int disconnect;
 
-  /* The session this server connection belongs to */
+  /**
+   * The session this server connection belongs to
+   */
   struct Session *session;
 
-  /* The MHD connection */
+  /**
+   * The MHD connection
+   */
   struct MHD_Connection *mhd_conn;
 };
 
 
-
 /**
  * Session handle for connections.
  */
 struct Session
 {
+  /**
+   * To whom are we talking to
+   */
+  struct GNUNET_PeerIdentity target;
 
   /**
    * Stored in a linked list.
@@ -370,11 +384,6 @@ struct Session
    */
   uint32_t ats_address_network_type;
 
-  /**
-   * To whom are we talking to
-   */
-  struct GNUNET_PeerIdentity target;
-
   /**
    * next pointer for double linked list
    */
@@ -385,7 +394,6 @@ struct Session
    */
   struct HTTP_Message *msg_tail;
 
-
   /**
    * Message stream tokenizer for incoming data
    */
@@ -399,8 +407,8 @@ struct Session
 
   /**
    * Inbound or outbound connection
-   * Outbound: GNUNET_NO (client is used to send and receive)
-   * Inbound : GNUNET_YES (server is used to send and receive)
+   * Outbound: #GNUNET_NO (client is used to send and receive)
+   * Inbound : #GNUNET_YES (server is used to send and receive)
    */
   int inbound;
 
@@ -409,10 +417,6 @@ struct Session
    */
   uint32_t tag;
 
-  /**
-   * Client handles
-   */
-
   /**
    * Client send handle
    */
@@ -426,34 +430,31 @@ struct Session
   /**
    * Task to wake up client receive handle when receiving is allowed again
    */
-  GNUNET_SCHEDULER_TaskIdentifier recv_wakeup_task;
+  struct GNUNET_SCHEDULER_Task * recv_wakeup_task;
 
   /**
    * Session timeout task
    */
-  GNUNET_SCHEDULER_TaskIdentifier timeout_task;
+  struct GNUNET_SCHEDULER_Task * timeout_task;
 
   /**
    * Is client send handle paused since there are no data to send?
-   * GNUNET_YES/NO
+   * #GNUNET_YES or #GNUNET_NO
    */
   int client_put_paused;
 
-  /**
-   * Server handles
-   */
-
   /**
    * Client send handle
    */
-  struct ServerConnection *server_recv;
+  struct ServerRequest *server_recv;
 
   /**
    * Client send handle
    */
-  struct ServerConnection *server_send;
+  struct ServerRequest *server_send;
 };
 
+
 /**
  *  Message to send using http
  */
@@ -492,62 +493,90 @@ struct HTTP_Message
   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
 
   /**
-   * Closure for transmit_cont.
+   * Closure for @e transmit_cont.
    */
   void *transmit_cont_cls;
 };
 
+
 struct Session *
-create_session (struct Plugin *plugin, const struct GNUNET_PeerIdentity *target,
-                const void *addr, size_t addrlen);
+create_session (struct Plugin *plugin,
+                const struct GNUNET_PeerIdentity *target,
+                const void *addr,
+                size_t addrlen);
+
 
 int
-exist_session (struct Plugin *plugin, struct Session *s);
+exist_session (struct Plugin *plugin,
+               struct Session *s);
+
 
 void
 delete_session (struct Session *s);
 
+
 int
-exist_session (struct Plugin *plugin, struct Session *s);
+exist_session (struct Plugin *plugin,
+               struct Session *s);
+
 
 struct GNUNET_TIME_Relative
-http_plugin_receive (void *cls, const struct GNUNET_PeerIdentity *peer,
+http_plugin_receive (void *cls,
+                     const struct GNUNET_PeerIdentity *peer,
                      const struct GNUNET_MessageHeader *message,
-                     struct Session *session, const char *sender_address,
+                     struct Session *session,
+                     const char *sender_address,
                      uint16_t sender_address_len);
 
+
 const char *
-http_plugin_address_to_string (void *cls, const void *addr, size_t addrlen);
+http_plugin_address_to_string (void *cls,
+                               const void *addr,
+                               size_t addrlen);
+
 
 int
 client_disconnect (struct Session *s);
 
+
 int
 client_connect (struct Session *s);
 
+
 int
 client_send (struct Session *s, struct HTTP_Message *msg);
 
+
 int
 client_start (struct Plugin *plugin);
 
+
 void
 client_stop (struct Plugin *plugin);
 
+
 int
 server_disconnect (struct Session *s);
 
+
 int
 server_send (struct Session *s, struct HTTP_Message *msg);
 
+
 int
 server_start (struct Plugin *plugin);
 
+
 void
 server_stop (struct Plugin *plugin);
 
+
 void
-notify_session_end (void *cls, const struct GNUNET_PeerIdentity *peer,
+notify_session_end (void *cls,
+                    const struct GNUNET_PeerIdentity *peer,
                     struct Session *s);
 
+
+/*#ifndef PLUGIN_TRANSPORT_HTTP_H*/
+#endif
 /* end of plugin_transport_http.h */