1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
|
/*-
* Copyright 2016 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef HTTP_H_
#define HTTP_H_
/**
* @file http.h
*
* This is an interface for HTTP client and conn.
* This code uses HTTP parser written by Joyent Inc based on nginx code.
*/
#include "config.h"
#include "http_context.h"
#include "fstring.h"
#include "ref.h"
#include "http_message.h"
#include "http_util.h"
#include "addr.h"
#include "contrib/libev/ev.h"
#ifdef __cplusplus
extern "C" {
#endif
enum rspamd_http_connection_type {
RSPAMD_HTTP_SERVER,
RSPAMD_HTTP_CLIENT
};
struct rspamd_http_header;
struct rspamd_http_message;
struct rspamd_http_connection_private;
struct rspamd_http_connection;
struct rspamd_http_connection_router;
struct rspamd_http_connection_entry;
struct rspamd_keepalive_hash_key;
struct rspamd_storage_shmem {
gchar *shm_name;
ref_entry_t ref;
};
/**
* Legacy spamc protocol
*/
#define RSPAMD_HTTP_FLAG_SPAMC (1 << 0)
/**
* Store body of the message in a shared memory segment
*/
#define RSPAMD_HTTP_FLAG_SHMEM (1 << 2)
/**
* Store body of the message in an immutable shared memory segment
*/
#define RSPAMD_HTTP_FLAG_SHMEM_IMMUTABLE (1 << 3)
/**
* Body has been set for a message
*/
#define RSPAMD_HTTP_FLAG_HAS_BODY (1 << 5)
/**
* Do not verify server's certificate
*/
#define RSPAMD_HTTP_FLAG_SSL_NOVERIFY (1 << 6)
/**
* Body has been set for a message
*/
#define RSPAMD_HTTP_FLAG_HAS_HOST_HEADER (1 << 7)
/**
* Message is intended for SSL connection
*/
#define RSPAMD_HTTP_FLAG_WANT_SSL (1 << 8)
/**
* Options for HTTP connection
*/
enum rspamd_http_options {
RSPAMD_HTTP_BODY_PARTIAL = 1, /**< Call body handler on all body data portions */
RSPAMD_HTTP_CLIENT_SIMPLE = 1u << 1, /**< Read HTTP client reply automatically */
RSPAMD_HTTP_CLIENT_ENCRYPTED = 1u << 2, /**< Encrypt data for client */
RSPAMD_HTTP_CLIENT_SHARED = 1u << 3, /**< Store reply in shared memory */
RSPAMD_HTTP_REQUIRE_ENCRYPTION = 1u << 4,
RSPAMD_HTTP_CLIENT_KEEP_ALIVE = 1u << 5,
RSPAMD_HTTP_CLIENT_SSL = 1u << 6u,
};
typedef int (*rspamd_http_body_handler_t)(struct rspamd_http_connection *conn,
struct rspamd_http_message *msg,
const gchar *chunk,
gsize len);
typedef void (*rspamd_http_error_handler_t)(struct rspamd_http_connection *conn,
GError *err);
typedef int (*rspamd_http_finish_handler_t)(struct rspamd_http_connection *conn,
struct rspamd_http_message *msg);
/**
* HTTP connection structure
*/
struct rspamd_http_connection {
struct rspamd_http_connection_private *priv;
rspamd_http_body_handler_t body_handler;
rspamd_http_error_handler_t error_handler;
rspamd_http_finish_handler_t finish_handler;
gpointer ud;
const gchar *log_tag;
/* Used for keepalive */
struct rspamd_keepalive_hash_key *keepalive_hash_key;
gsize max_size;
unsigned opts;
enum rspamd_http_connection_type type;
gboolean finished;
gint fd;
gint ref;
};
/**
* Creates a new HTTP server connection from an opened FD returned by accept function
* @param ctx
* @param fd
* @param body_handler
* @param error_handler
* @param finish_handler
* @param opts
* @return
*/
struct rspamd_http_connection *rspamd_http_connection_new_server(
struct rspamd_http_context *ctx,
gint fd,
rspamd_http_body_handler_t body_handler,
rspamd_http_error_handler_t error_handler,
rspamd_http_finish_handler_t finish_handler,
unsigned opts);
/**
* Creates or reuses a new keepalive client connection identified by hostname and inet_addr
* @param ctx
* @param body_handler
* @param error_handler
* @param finish_handler
* @param addr
* @param host
* @return
*/
struct rspamd_http_connection *rspamd_http_connection_new_client_keepalive(
struct rspamd_http_context *ctx,
rspamd_http_body_handler_t body_handler,
rspamd_http_error_handler_t error_handler,
rspamd_http_finish_handler_t finish_handler,
unsigned opts,
rspamd_inet_addr_t *addr,
const gchar *host);
/**
* Creates an ordinary connection using the address specified (if proxy is not set)
* @param ctx
* @param body_handler
* @param error_handler
* @param finish_handler
* @param opts
* @param addr
* @return
*/
struct rspamd_http_connection *rspamd_http_connection_new_client(
struct rspamd_http_context *ctx,
rspamd_http_body_handler_t body_handler,
rspamd_http_error_handler_t error_handler,
rspamd_http_finish_handler_t finish_handler,
unsigned opts,
rspamd_inet_addr_t *addr);
/**
* Creates an ordinary client connection using ready file descriptor (ignores proxy)
* @param ctx
* @param body_handler
* @param error_handler
* @param finish_handler
* @param opts
* @param addr
* @return
*/
struct rspamd_http_connection *rspamd_http_connection_new_client_socket(
struct rspamd_http_context *ctx,
rspamd_http_body_handler_t body_handler,
rspamd_http_error_handler_t error_handler,
rspamd_http_finish_handler_t finish_handler,
unsigned opts,
gint fd);
/**
* Set key pointed by an opaque pointer
* @param conn connection structure
* @param key opaque key structure
*/
void rspamd_http_connection_set_key(struct rspamd_http_connection *conn,
struct rspamd_cryptobox_keypair *key);
/**
* Transfer ownership on socket to an HTTP connection
* @param conn
*/
void rspamd_http_connection_own_socket(struct rspamd_http_connection *conn);
/**
* Get peer's public key
* @param conn connection structure
* @return pubkey structure or NULL
*/
const struct rspamd_cryptobox_pubkey *rspamd_http_connection_get_peer_key(
struct rspamd_http_connection *conn);
/**
* Returns TRUE if a connection is encrypted
* @param conn
* @return
*/
gboolean rspamd_http_connection_is_encrypted(struct rspamd_http_connection *conn);
/**
* Handle a request using socket fd and user data ud
* @param conn connection structure
* @param ud opaque user data
* @param fd fd to read/write
*/
void rspamd_http_connection_read_message(
struct rspamd_http_connection *conn,
gpointer ud,
ev_tstamp timeout);
void rspamd_http_connection_read_message_shared(
struct rspamd_http_connection *conn,
gpointer ud,
ev_tstamp timeout);
/**
* Send reply using initialised connection
* @param conn connection structure
* @param msg HTTP message
* @param ud opaque user data
* @param fd fd to read/write
*/
gboolean rspamd_http_connection_write_message(
struct rspamd_http_connection *conn,
struct rspamd_http_message *msg,
const gchar *host,
const gchar *mime_type,
gpointer ud,
ev_tstamp timeout);
gboolean rspamd_http_connection_write_message_shared(
struct rspamd_http_connection *conn,
struct rspamd_http_message *msg,
const gchar *host,
const gchar *mime_type,
gpointer ud,
ev_tstamp timeout);
/**
* Free connection structure
* @param conn
*/
void rspamd_http_connection_free(struct rspamd_http_connection *conn);
/**
* Increase refcount for a connection
* @param conn
* @return
*/
static inline struct rspamd_http_connection *
rspamd_http_connection_ref(struct rspamd_http_connection *conn)
{
conn->ref++;
return conn;
}
/**
* Decrease a refcount for a connection and free it if refcount is equal to zero
* @param conn
*/
static void
rspamd_http_connection_unref(struct rspamd_http_connection *conn)
{
if (--conn->ref <= 0) {
rspamd_http_connection_free(conn);
}
}
/**
* Reset connection for a new request
* @param conn
*/
void rspamd_http_connection_reset(struct rspamd_http_connection *conn);
/**
* Sets global maximum size for HTTP message being processed
* @param sz
*/
void rspamd_http_connection_set_max_size(struct rspamd_http_connection *conn,
gsize sz);
void rspamd_http_connection_disable_encryption(struct rspamd_http_connection *conn);
#ifdef __cplusplus
}
#endif
#endif /* HTTP_H_ */
|