chiark / gitweb /
build: Enable gcc warnings to detect non-portable code.
[gnupg2.git] / dirmngr / http.h
1 /* http.h  -  HTTP protocol handler
2  * Copyright (C) 1999, 2000, 2001, 2003, 2006,
3  *               2010 Free Software Foundation, Inc.
4  * Copyright (C) 2015  g10 Code GmbH
5  *
6  * This file is part of GnuPG.
7  *
8  * This file is free software; you can redistribute it and/or modify
9  * it under the terms of either
10  *
11  *   - the GNU Lesser General Public License as published by the Free
12  *     Software Foundation; either version 3 of the License, or (at
13  *     your option) any later version.
14  *
15  * or
16  *
17  *   - the GNU General Public License as published by the Free
18  *     Software Foundation; either version 2 of the License, or (at
19  *     your option) any later version.
20  *
21  * or both in parallel, as here.
22  *
23  * This file is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program; if not, see <https://www.gnu.org/licenses/>.
30  */
31 #ifndef GNUPG_COMMON_HTTP_H
32 #define GNUPG_COMMON_HTTP_H
33
34 #include <gpg-error.h>
35
36 struct uri_tuple_s
37 {
38   struct uri_tuple_s *next;
39   const char *name;     /* A pointer into name. */
40   char  *value;         /* A pointer to value (a Nul is always appended). */
41   size_t valuelen;      /* The real length of the value; we need it
42                            because the value may contain embedded Nuls. */
43   int no_value;         /* True if no value has been given in the URL. */
44 };
45 typedef struct uri_tuple_s *uri_tuple_t;
46
47 struct parsed_uri_s
48 {
49   /* All these pointers point into BUFFER; most stuff is not escaped. */
50   char *scheme;         /* Pointer to the scheme string (always lowercase). */
51   unsigned int is_http:1; /* This is a HTTP style URI.   */
52   unsigned int use_tls:1; /* Whether TLS should be used. */
53   unsigned int opaque:1;/* Unknown scheme; PATH has the rest.  */
54   unsigned int v6lit:1; /* Host was given as a literal v6 address.  */
55   unsigned int onion:1; /* .onion address given.  */
56   char *auth;           /* username/password for basic auth.  */
57   char *host;           /* Host (converted to lowercase). */
58   unsigned short port;  /* Port (always set if the host is set). */
59   char *path;           /* Path. */
60   uri_tuple_t params;   /* ";xxxxx" */
61   uri_tuple_t query;    /* "?xxx=yyy" */
62   char buffer[1];       /* Buffer which holds a (modified) copy of the URI. */
63 };
64 typedef struct parsed_uri_s *parsed_uri_t;
65
66 struct uri_tuple_s *uri_query_lookup (parsed_uri_t uri, const char *key);
67
68 typedef enum
69   {
70     HTTP_REQ_GET  = 1,
71     HTTP_REQ_HEAD = 2,
72     HTTP_REQ_POST = 3,
73     HTTP_REQ_OPAQUE = 4  /* Internal use.  */
74   }
75 http_req_t;
76
77 /* We put the flag values into an enum, so that gdb can display them. */
78 enum
79   {
80     HTTP_FLAG_TRY_PROXY = 1,     /* Try to use a proxy.  */
81     HTTP_FLAG_SHUTDOWN = 2,      /* Close sending end after the request.  */
82     HTTP_FLAG_FORCE_TOR = 4,     /* Force a TOR connection.  */
83     HTTP_FLAG_LOG_RESP = 8,      /* Log the server response.  */
84     HTTP_FLAG_FORCE_TLS = 16,    /* Force the use of TLS.  */
85     HTTP_FLAG_IGNORE_CL = 32,    /* Ignore content-length.  */
86     HTTP_FLAG_IGNORE_IPv4 = 64,  /* Do not use IPv4.  */
87     HTTP_FLAG_IGNORE_IPv6 = 128, /* Do not use IPv6.  */
88     HTTP_FLAG_TRUST_DEF   = 256, /* Use the default CAs.  */
89     HTTP_FLAG_TRUST_SYS   = 512  /* Also use the system defined CAs.  */
90   };
91
92
93 struct http_session_s;
94 typedef struct http_session_s *http_session_t;
95
96 struct http_context_s;
97 typedef struct http_context_s *http_t;
98
99 void http_register_tls_callback (gpg_error_t (*cb)(http_t,http_session_t,int));
100 void http_register_tls_ca (const char *fname);
101 void http_register_netactivity_cb (void (*cb)(void));
102
103
104 gpg_error_t http_session_new (http_session_t *r_session,
105                               const char *tls_priority,
106                               const char *intended_hostname,
107                               unsigned int flags);
108 http_session_t http_session_ref (http_session_t sess);
109 void http_session_release (http_session_t sess);
110
111 void http_session_set_log_cb (http_session_t sess,
112                               void (*cb)(http_session_t, gpg_error_t,
113                                          const char *,
114                                          const void **, size_t *));
115
116
117 gpg_error_t http_parse_uri (parsed_uri_t *ret_uri, const char *uri,
118                             int no_scheme_check);
119
120 void http_release_parsed_uri (parsed_uri_t uri);
121
122 gpg_error_t http_raw_connect (http_t *r_hd,
123                               const char *server, unsigned short port,
124                               unsigned int flags, const char *srvtag);
125
126 gpg_error_t http_open (http_t *r_hd, http_req_t reqtype,
127                        const char *url,
128                        const char *httphost,
129                        const char *auth,
130                        unsigned int flags,
131                        const char *proxy,
132                        http_session_t session,
133                        const char *srvtag,
134                        strlist_t headers);
135
136 void http_start_data (http_t hd);
137
138 gpg_error_t http_wait_response (http_t hd);
139
140 void http_close (http_t hd, int keep_read_stream);
141
142 gpg_error_t http_open_document (http_t *r_hd,
143                                 const char *document,
144                                 const char *auth,
145                                 unsigned int flags,
146                                 const char *proxy,
147                                 http_session_t session,
148                                 const char *srvtag,
149                                 strlist_t headers);
150
151 estream_t http_get_read_ptr (http_t hd);
152 estream_t http_get_write_ptr (http_t hd);
153 unsigned int http_get_status_code (http_t hd);
154 const char *http_get_tls_info (http_t hd, const char *what);
155 const char *http_get_header (http_t hd, const char *name);
156 const char **http_get_header_names (http_t hd);
157 gpg_error_t http_verify_server_credentials (http_session_t sess);
158
159 char *http_escape_string (const char *string, const char *specials);
160 char *http_escape_data (const void *data, size_t datalen, const char *specials);
161
162
163 #endif /*GNUPG_COMMON_HTTP_H*/