xref: /freebsd/contrib/libevent/evrpc.c (revision b50261e21f39a6c7249a49e7b60aa878c98512a8)
1c43e99fdSEd Maste /*
2c43e99fdSEd Maste  * Copyright (c) 2000-2007 Niels Provos <provos@citi.umich.edu>
3c43e99fdSEd Maste  * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
4c43e99fdSEd Maste  *
5c43e99fdSEd Maste  * Redistribution and use in source and binary forms, with or without
6c43e99fdSEd Maste  * modification, are permitted provided that the following conditions
7c43e99fdSEd Maste  * are met:
8c43e99fdSEd Maste  * 1. Redistributions of source code must retain the above copyright
9c43e99fdSEd Maste  *    notice, this list of conditions and the following disclaimer.
10c43e99fdSEd Maste  * 2. Redistributions in binary form must reproduce the above copyright
11c43e99fdSEd Maste  *    notice, this list of conditions and the following disclaimer in the
12c43e99fdSEd Maste  *    documentation and/or other materials provided with the distribution.
13c43e99fdSEd Maste  * 3. The name of the author may not be used to endorse or promote products
14c43e99fdSEd Maste  *    derived from this software without specific prior written permission.
15c43e99fdSEd Maste  *
16c43e99fdSEd Maste  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17c43e99fdSEd Maste  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18c43e99fdSEd Maste  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19c43e99fdSEd Maste  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20c43e99fdSEd Maste  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21c43e99fdSEd Maste  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22c43e99fdSEd Maste  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23c43e99fdSEd Maste  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24c43e99fdSEd Maste  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25c43e99fdSEd Maste  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26c43e99fdSEd Maste  */
27c43e99fdSEd Maste #include "event2/event-config.h"
28c43e99fdSEd Maste #include "evconfig-private.h"
29c43e99fdSEd Maste 
30c43e99fdSEd Maste #ifdef _WIN32
31c43e99fdSEd Maste #define WIN32_LEAN_AND_MEAN
32c43e99fdSEd Maste #include <winsock2.h>
33c43e99fdSEd Maste #include <windows.h>
34c43e99fdSEd Maste #undef WIN32_LEAN_AND_MEAN
35c43e99fdSEd Maste #endif
36c43e99fdSEd Maste 
37c43e99fdSEd Maste #include <sys/types.h>
38c43e99fdSEd Maste #ifndef _WIN32
39c43e99fdSEd Maste #include <sys/socket.h>
40c43e99fdSEd Maste #endif
41c43e99fdSEd Maste #ifdef EVENT__HAVE_SYS_TIME_H
42c43e99fdSEd Maste #include <sys/time.h>
43c43e99fdSEd Maste #endif
44c43e99fdSEd Maste #include <sys/queue.h>
45c43e99fdSEd Maste #include <stdio.h>
46c43e99fdSEd Maste #include <stdlib.h>
47c43e99fdSEd Maste #ifndef _WIN32
48c43e99fdSEd Maste #include <unistd.h>
49c43e99fdSEd Maste #endif
50c43e99fdSEd Maste #include <errno.h>
51c43e99fdSEd Maste #include <signal.h>
52c43e99fdSEd Maste #include <string.h>
53c43e99fdSEd Maste 
54c43e99fdSEd Maste #include <sys/queue.h>
55c43e99fdSEd Maste 
56c43e99fdSEd Maste #include "event2/event.h"
57c43e99fdSEd Maste #include "event2/event_struct.h"
58c43e99fdSEd Maste #include "event2/rpc.h"
59c43e99fdSEd Maste #include "event2/rpc_struct.h"
60c43e99fdSEd Maste #include "evrpc-internal.h"
61c43e99fdSEd Maste #include "event2/http.h"
62c43e99fdSEd Maste #include "event2/buffer.h"
63c43e99fdSEd Maste #include "event2/tag.h"
64c43e99fdSEd Maste #include "event2/http_struct.h"
65c43e99fdSEd Maste #include "event2/http_compat.h"
66c43e99fdSEd Maste #include "event2/util.h"
67c43e99fdSEd Maste #include "util-internal.h"
68c43e99fdSEd Maste #include "log-internal.h"
69c43e99fdSEd Maste #include "mm-internal.h"
70c43e99fdSEd Maste 
71c43e99fdSEd Maste struct evrpc_base *
evrpc_init(struct evhttp * http_server)72c43e99fdSEd Maste evrpc_init(struct evhttp *http_server)
73c43e99fdSEd Maste {
74c43e99fdSEd Maste 	struct evrpc_base* base = mm_calloc(1, sizeof(struct evrpc_base));
75c43e99fdSEd Maste 	if (base == NULL)
76c43e99fdSEd Maste 		return (NULL);
77c43e99fdSEd Maste 
78c43e99fdSEd Maste 	/* we rely on the tagging sub system */
79c43e99fdSEd Maste 	evtag_init();
80c43e99fdSEd Maste 
81c43e99fdSEd Maste 	TAILQ_INIT(&base->registered_rpcs);
82c43e99fdSEd Maste 	TAILQ_INIT(&base->input_hooks);
83c43e99fdSEd Maste 	TAILQ_INIT(&base->output_hooks);
84c43e99fdSEd Maste 
85c43e99fdSEd Maste 	TAILQ_INIT(&base->paused_requests);
86c43e99fdSEd Maste 
87c43e99fdSEd Maste 	base->http_server = http_server;
88c43e99fdSEd Maste 
89c43e99fdSEd Maste 	return (base);
90c43e99fdSEd Maste }
91c43e99fdSEd Maste 
92c43e99fdSEd Maste void
evrpc_free(struct evrpc_base * base)93c43e99fdSEd Maste evrpc_free(struct evrpc_base *base)
94c43e99fdSEd Maste {
95c43e99fdSEd Maste 	struct evrpc *rpc;
96c43e99fdSEd Maste 	struct evrpc_hook *hook;
97c43e99fdSEd Maste 	struct evrpc_hook_ctx *pause;
98c43e99fdSEd Maste 	int r;
99c43e99fdSEd Maste 
100c43e99fdSEd Maste 	while ((rpc = TAILQ_FIRST(&base->registered_rpcs)) != NULL) {
101c43e99fdSEd Maste 		r = evrpc_unregister_rpc(base, rpc->uri);
102c43e99fdSEd Maste 		EVUTIL_ASSERT(r == 0);
103c43e99fdSEd Maste 	}
104c43e99fdSEd Maste 	while ((pause = TAILQ_FIRST(&base->paused_requests)) != NULL) {
105c43e99fdSEd Maste 		TAILQ_REMOVE(&base->paused_requests, pause, next);
106c43e99fdSEd Maste 		mm_free(pause);
107c43e99fdSEd Maste 	}
108c43e99fdSEd Maste 	while ((hook = TAILQ_FIRST(&base->input_hooks)) != NULL) {
109c43e99fdSEd Maste 		r = evrpc_remove_hook(base, EVRPC_INPUT, hook);
110c43e99fdSEd Maste 		EVUTIL_ASSERT(r);
111c43e99fdSEd Maste 	}
112c43e99fdSEd Maste 	while ((hook = TAILQ_FIRST(&base->output_hooks)) != NULL) {
113c43e99fdSEd Maste 		r = evrpc_remove_hook(base, EVRPC_OUTPUT, hook);
114c43e99fdSEd Maste 		EVUTIL_ASSERT(r);
115c43e99fdSEd Maste 	}
116c43e99fdSEd Maste 	mm_free(base);
117c43e99fdSEd Maste }
118c43e99fdSEd Maste 
119c43e99fdSEd Maste void *
evrpc_add_hook(void * vbase,enum EVRPC_HOOK_TYPE hook_type,int (* cb)(void *,struct evhttp_request *,struct evbuffer *,void *),void * cb_arg)120c43e99fdSEd Maste evrpc_add_hook(void *vbase,
121c43e99fdSEd Maste     enum EVRPC_HOOK_TYPE hook_type,
122c43e99fdSEd Maste     int (*cb)(void *, struct evhttp_request *, struct evbuffer *, void *),
123c43e99fdSEd Maste     void *cb_arg)
124c43e99fdSEd Maste {
125c43e99fdSEd Maste 	struct evrpc_hooks_ *base = vbase;
126c43e99fdSEd Maste 	struct evrpc_hook_list *head = NULL;
127c43e99fdSEd Maste 	struct evrpc_hook *hook = NULL;
128c43e99fdSEd Maste 	switch (hook_type) {
129c43e99fdSEd Maste 	case EVRPC_INPUT:
130c43e99fdSEd Maste 		head = &base->in_hooks;
131c43e99fdSEd Maste 		break;
132c43e99fdSEd Maste 	case EVRPC_OUTPUT:
133c43e99fdSEd Maste 		head = &base->out_hooks;
134c43e99fdSEd Maste 		break;
135c43e99fdSEd Maste 	default:
136c43e99fdSEd Maste 		EVUTIL_ASSERT(hook_type == EVRPC_INPUT || hook_type == EVRPC_OUTPUT);
137c43e99fdSEd Maste 	}
138c43e99fdSEd Maste 
139c43e99fdSEd Maste 	hook = mm_calloc(1, sizeof(struct evrpc_hook));
140c43e99fdSEd Maste 	EVUTIL_ASSERT(hook != NULL);
141c43e99fdSEd Maste 
142c43e99fdSEd Maste 	hook->process = cb;
143c43e99fdSEd Maste 	hook->process_arg = cb_arg;
144c43e99fdSEd Maste 	TAILQ_INSERT_TAIL(head, hook, next);
145c43e99fdSEd Maste 
146c43e99fdSEd Maste 	return (hook);
147c43e99fdSEd Maste }
148c43e99fdSEd Maste 
149c43e99fdSEd Maste static int
evrpc_remove_hook_internal(struct evrpc_hook_list * head,void * handle)150c43e99fdSEd Maste evrpc_remove_hook_internal(struct evrpc_hook_list *head, void *handle)
151c43e99fdSEd Maste {
152c43e99fdSEd Maste 	struct evrpc_hook *hook = NULL;
153c43e99fdSEd Maste 	TAILQ_FOREACH(hook, head, next) {
154c43e99fdSEd Maste 		if (hook == handle) {
155c43e99fdSEd Maste 			TAILQ_REMOVE(head, hook, next);
156c43e99fdSEd Maste 			mm_free(hook);
157c43e99fdSEd Maste 			return (1);
158c43e99fdSEd Maste 		}
159c43e99fdSEd Maste 	}
160c43e99fdSEd Maste 
161c43e99fdSEd Maste 	return (0);
162c43e99fdSEd Maste }
163c43e99fdSEd Maste 
164c43e99fdSEd Maste /*
165c43e99fdSEd Maste  * remove the hook specified by the handle
166c43e99fdSEd Maste  */
167c43e99fdSEd Maste 
168c43e99fdSEd Maste int
evrpc_remove_hook(void * vbase,enum EVRPC_HOOK_TYPE hook_type,void * handle)169c43e99fdSEd Maste evrpc_remove_hook(void *vbase, enum EVRPC_HOOK_TYPE hook_type, void *handle)
170c43e99fdSEd Maste {
171c43e99fdSEd Maste 	struct evrpc_hooks_ *base = vbase;
172c43e99fdSEd Maste 	struct evrpc_hook_list *head = NULL;
173c43e99fdSEd Maste 	switch (hook_type) {
174c43e99fdSEd Maste 	case EVRPC_INPUT:
175c43e99fdSEd Maste 		head = &base->in_hooks;
176c43e99fdSEd Maste 		break;
177c43e99fdSEd Maste 	case EVRPC_OUTPUT:
178c43e99fdSEd Maste 		head = &base->out_hooks;
179c43e99fdSEd Maste 		break;
180c43e99fdSEd Maste 	default:
181c43e99fdSEd Maste 		EVUTIL_ASSERT(hook_type == EVRPC_INPUT || hook_type == EVRPC_OUTPUT);
182c43e99fdSEd Maste 	}
183c43e99fdSEd Maste 
184c43e99fdSEd Maste 	return (evrpc_remove_hook_internal(head, handle));
185c43e99fdSEd Maste }
186c43e99fdSEd Maste 
187c43e99fdSEd Maste static int
evrpc_process_hooks(struct evrpc_hook_list * head,void * ctx,struct evhttp_request * req,struct evbuffer * evbuf)188c43e99fdSEd Maste evrpc_process_hooks(struct evrpc_hook_list *head, void *ctx,
189c43e99fdSEd Maste     struct evhttp_request *req, struct evbuffer *evbuf)
190c43e99fdSEd Maste {
191c43e99fdSEd Maste 	struct evrpc_hook *hook;
192c43e99fdSEd Maste 	TAILQ_FOREACH(hook, head, next) {
193c43e99fdSEd Maste 		int res = hook->process(ctx, req, evbuf, hook->process_arg);
194c43e99fdSEd Maste 		if (res != EVRPC_CONTINUE)
195c43e99fdSEd Maste 			return (res);
196c43e99fdSEd Maste 	}
197c43e99fdSEd Maste 
198c43e99fdSEd Maste 	return (EVRPC_CONTINUE);
199c43e99fdSEd Maste }
200c43e99fdSEd Maste 
201c43e99fdSEd Maste static void evrpc_pool_schedule(struct evrpc_pool *pool);
202c43e99fdSEd Maste static void evrpc_request_cb(struct evhttp_request *, void *);
203c43e99fdSEd Maste 
204c43e99fdSEd Maste /*
205c43e99fdSEd Maste  * Registers a new RPC with the HTTP server.   The evrpc object is expected
206c43e99fdSEd Maste  * to have been filled in via the EVRPC_REGISTER_OBJECT macro which in turn
207c43e99fdSEd Maste  * calls this function.
208c43e99fdSEd Maste  */
209c43e99fdSEd Maste 
210c43e99fdSEd Maste static char *
evrpc_construct_uri(const char * uri)211c43e99fdSEd Maste evrpc_construct_uri(const char *uri)
212c43e99fdSEd Maste {
213c43e99fdSEd Maste 	char *constructed_uri;
214c43e99fdSEd Maste 	size_t constructed_uri_len;
215c43e99fdSEd Maste 
216c43e99fdSEd Maste 	constructed_uri_len = strlen(EVRPC_URI_PREFIX) + strlen(uri) + 1;
217c43e99fdSEd Maste 	if ((constructed_uri = mm_malloc(constructed_uri_len)) == NULL)
218c43e99fdSEd Maste 		event_err(1, "%s: failed to register rpc at %s",
219c43e99fdSEd Maste 		    __func__, uri);
220c43e99fdSEd Maste 	memcpy(constructed_uri, EVRPC_URI_PREFIX, strlen(EVRPC_URI_PREFIX));
221c43e99fdSEd Maste 	memcpy(constructed_uri + strlen(EVRPC_URI_PREFIX), uri, strlen(uri));
222c43e99fdSEd Maste 	constructed_uri[constructed_uri_len - 1] = '\0';
223c43e99fdSEd Maste 
224c43e99fdSEd Maste 	return (constructed_uri);
225c43e99fdSEd Maste }
226c43e99fdSEd Maste 
227c43e99fdSEd Maste int
evrpc_register_rpc(struct evrpc_base * base,struct evrpc * rpc,void (* cb)(struct evrpc_req_generic *,void *),void * cb_arg)228c43e99fdSEd Maste evrpc_register_rpc(struct evrpc_base *base, struct evrpc *rpc,
229c43e99fdSEd Maste     void (*cb)(struct evrpc_req_generic *, void *), void *cb_arg)
230c43e99fdSEd Maste {
231c43e99fdSEd Maste 	char *constructed_uri = evrpc_construct_uri(rpc->uri);
232c43e99fdSEd Maste 
233c43e99fdSEd Maste 	rpc->base = base;
234c43e99fdSEd Maste 	rpc->cb = cb;
235c43e99fdSEd Maste 	rpc->cb_arg = cb_arg;
236c43e99fdSEd Maste 
237c43e99fdSEd Maste 	TAILQ_INSERT_TAIL(&base->registered_rpcs, rpc, next);
238c43e99fdSEd Maste 
239c43e99fdSEd Maste 	evhttp_set_cb(base->http_server,
240c43e99fdSEd Maste 	    constructed_uri,
241c43e99fdSEd Maste 	    evrpc_request_cb,
242c43e99fdSEd Maste 	    rpc);
243c43e99fdSEd Maste 
244c43e99fdSEd Maste 	mm_free(constructed_uri);
245c43e99fdSEd Maste 
246c43e99fdSEd Maste 	return (0);
247c43e99fdSEd Maste }
248c43e99fdSEd Maste 
249c43e99fdSEd Maste int
evrpc_unregister_rpc(struct evrpc_base * base,const char * name)250c43e99fdSEd Maste evrpc_unregister_rpc(struct evrpc_base *base, const char *name)
251c43e99fdSEd Maste {
252c43e99fdSEd Maste 	char *registered_uri = NULL;
253c43e99fdSEd Maste 	struct evrpc *rpc;
254c43e99fdSEd Maste 	int r;
255c43e99fdSEd Maste 
256c43e99fdSEd Maste 	/* find the right rpc; linear search might be slow */
257c43e99fdSEd Maste 	TAILQ_FOREACH(rpc, &base->registered_rpcs, next) {
258c43e99fdSEd Maste 		if (strcmp(rpc->uri, name) == 0)
259c43e99fdSEd Maste 			break;
260c43e99fdSEd Maste 	}
261c43e99fdSEd Maste 	if (rpc == NULL) {
262c43e99fdSEd Maste 		/* We did not find an RPC with this name */
263c43e99fdSEd Maste 		return (-1);
264c43e99fdSEd Maste 	}
265c43e99fdSEd Maste 	TAILQ_REMOVE(&base->registered_rpcs, rpc, next);
266c43e99fdSEd Maste 
267c43e99fdSEd Maste 	registered_uri = evrpc_construct_uri(name);
268c43e99fdSEd Maste 
269c43e99fdSEd Maste 	/* remove the http server callback */
270c43e99fdSEd Maste 	r = evhttp_del_cb(base->http_server, registered_uri);
271c43e99fdSEd Maste 	EVUTIL_ASSERT(r == 0);
272c43e99fdSEd Maste 
273c43e99fdSEd Maste 	mm_free(registered_uri);
274c43e99fdSEd Maste 
275c43e99fdSEd Maste 	mm_free((char *)rpc->uri);
276c43e99fdSEd Maste 	mm_free(rpc);
277c43e99fdSEd Maste 	return (0);
278c43e99fdSEd Maste }
279c43e99fdSEd Maste 
280c43e99fdSEd Maste static int evrpc_pause_request(void *vbase, void *ctx,
281c43e99fdSEd Maste     void (*cb)(void *, enum EVRPC_HOOK_RESULT));
282c43e99fdSEd Maste static void evrpc_request_cb_closure(void *, enum EVRPC_HOOK_RESULT);
283c43e99fdSEd Maste 
284c43e99fdSEd Maste static void
evrpc_request_cb(struct evhttp_request * req,void * arg)285c43e99fdSEd Maste evrpc_request_cb(struct evhttp_request *req, void *arg)
286c43e99fdSEd Maste {
287c43e99fdSEd Maste 	struct evrpc *rpc = arg;
288c43e99fdSEd Maste 	struct evrpc_req_generic *rpc_state = NULL;
289c43e99fdSEd Maste 
290c43e99fdSEd Maste 	/* let's verify the outside parameters */
291c43e99fdSEd Maste 	if (req->type != EVHTTP_REQ_POST ||
292c43e99fdSEd Maste 	    evbuffer_get_length(req->input_buffer) <= 0)
293c43e99fdSEd Maste 		goto error;
294c43e99fdSEd Maste 
295c43e99fdSEd Maste 	rpc_state = mm_calloc(1, sizeof(struct evrpc_req_generic));
296c43e99fdSEd Maste 	if (rpc_state == NULL)
297c43e99fdSEd Maste 		goto error;
298c43e99fdSEd Maste 	rpc_state->rpc = rpc;
299c43e99fdSEd Maste 	rpc_state->http_req = req;
300c43e99fdSEd Maste 	rpc_state->rpc_data = NULL;
301c43e99fdSEd Maste 
302c43e99fdSEd Maste 	if (TAILQ_FIRST(&rpc->base->input_hooks) != NULL) {
303c43e99fdSEd Maste 		int hook_res;
304c43e99fdSEd Maste 
305c43e99fdSEd Maste 		evrpc_hook_associate_meta_(&rpc_state->hook_meta, req->evcon);
306c43e99fdSEd Maste 
307c43e99fdSEd Maste 		/*
308c43e99fdSEd Maste 		 * allow hooks to modify the outgoing request
309c43e99fdSEd Maste 		 */
310c43e99fdSEd Maste 		hook_res = evrpc_process_hooks(&rpc->base->input_hooks,
311c43e99fdSEd Maste 		    rpc_state, req, req->input_buffer);
312c43e99fdSEd Maste 		switch (hook_res) {
313c43e99fdSEd Maste 		case EVRPC_TERMINATE:
314c43e99fdSEd Maste 			goto error;
315c43e99fdSEd Maste 		case EVRPC_PAUSE:
316c43e99fdSEd Maste 			evrpc_pause_request(rpc->base, rpc_state,
317c43e99fdSEd Maste 			    evrpc_request_cb_closure);
318c43e99fdSEd Maste 			return;
319c43e99fdSEd Maste 		case EVRPC_CONTINUE:
320c43e99fdSEd Maste 			break;
321c43e99fdSEd Maste 		default:
322c43e99fdSEd Maste 			EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE ||
323c43e99fdSEd Maste 			    hook_res == EVRPC_CONTINUE ||
324c43e99fdSEd Maste 			    hook_res == EVRPC_PAUSE);
325c43e99fdSEd Maste 		}
326c43e99fdSEd Maste 	}
327c43e99fdSEd Maste 
328c43e99fdSEd Maste 	evrpc_request_cb_closure(rpc_state, EVRPC_CONTINUE);
329c43e99fdSEd Maste 	return;
330c43e99fdSEd Maste 
331c43e99fdSEd Maste error:
332*b50261e2SCy Schubert 	if (rpc_state)
333c43e99fdSEd Maste 		evrpc_reqstate_free_(rpc_state);
334c43e99fdSEd Maste 	evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL);
335c43e99fdSEd Maste 	return;
336c43e99fdSEd Maste }
337c43e99fdSEd Maste 
338c43e99fdSEd Maste static void
evrpc_request_cb_closure(void * arg,enum EVRPC_HOOK_RESULT hook_res)339c43e99fdSEd Maste evrpc_request_cb_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res)
340c43e99fdSEd Maste {
341c43e99fdSEd Maste 	struct evrpc_req_generic *rpc_state = arg;
342c43e99fdSEd Maste 	struct evrpc *rpc;
343c43e99fdSEd Maste 	struct evhttp_request *req;
344c43e99fdSEd Maste 
345c43e99fdSEd Maste 	EVUTIL_ASSERT(rpc_state);
346c43e99fdSEd Maste 	rpc = rpc_state->rpc;
347c43e99fdSEd Maste 	req = rpc_state->http_req;
348c43e99fdSEd Maste 
349c43e99fdSEd Maste 	if (hook_res == EVRPC_TERMINATE)
350c43e99fdSEd Maste 		goto error;
351c43e99fdSEd Maste 
352c43e99fdSEd Maste 	/* let's check that we can parse the request */
353c43e99fdSEd Maste 	rpc_state->request = rpc->request_new(rpc->request_new_arg);
354c43e99fdSEd Maste 	if (rpc_state->request == NULL)
355c43e99fdSEd Maste 		goto error;
356c43e99fdSEd Maste 
357c43e99fdSEd Maste 	if (rpc->request_unmarshal(
358c43e99fdSEd Maste 		    rpc_state->request, req->input_buffer) == -1) {
359c43e99fdSEd Maste 		/* we failed to parse the request; that's a bummer */
360c43e99fdSEd Maste 		goto error;
361c43e99fdSEd Maste 	}
362c43e99fdSEd Maste 
363c43e99fdSEd Maste 	/* at this point, we have a well formed request, prepare the reply */
364c43e99fdSEd Maste 
365c43e99fdSEd Maste 	rpc_state->reply = rpc->reply_new(rpc->reply_new_arg);
366c43e99fdSEd Maste 	if (rpc_state->reply == NULL)
367c43e99fdSEd Maste 		goto error;
368c43e99fdSEd Maste 
369c43e99fdSEd Maste 	/* give the rpc to the user; they can deal with it */
370c43e99fdSEd Maste 	rpc->cb(rpc_state, rpc->cb_arg);
371c43e99fdSEd Maste 
372c43e99fdSEd Maste 	return;
373c43e99fdSEd Maste 
374c43e99fdSEd Maste error:
375c43e99fdSEd Maste 	evrpc_reqstate_free_(rpc_state);
376c43e99fdSEd Maste 	evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL);
377c43e99fdSEd Maste 	return;
378c43e99fdSEd Maste }
379c43e99fdSEd Maste 
380c43e99fdSEd Maste 
381c43e99fdSEd Maste void
evrpc_reqstate_free_(struct evrpc_req_generic * rpc_state)382c43e99fdSEd Maste evrpc_reqstate_free_(struct evrpc_req_generic* rpc_state)
383c43e99fdSEd Maste {
384c43e99fdSEd Maste 	struct evrpc *rpc;
385c43e99fdSEd Maste 	EVUTIL_ASSERT(rpc_state != NULL);
386c43e99fdSEd Maste 	rpc = rpc_state->rpc;
387c43e99fdSEd Maste 
388c43e99fdSEd Maste 	/* clean up all memory */
389c43e99fdSEd Maste 	if (rpc_state->hook_meta != NULL)
390c43e99fdSEd Maste 		evrpc_hook_context_free_(rpc_state->hook_meta);
391c43e99fdSEd Maste 	if (rpc_state->request != NULL)
392c43e99fdSEd Maste 		rpc->request_free(rpc_state->request);
393c43e99fdSEd Maste 	if (rpc_state->reply != NULL)
394c43e99fdSEd Maste 		rpc->reply_free(rpc_state->reply);
395c43e99fdSEd Maste 	if (rpc_state->rpc_data != NULL)
396c43e99fdSEd Maste 		evbuffer_free(rpc_state->rpc_data);
397c43e99fdSEd Maste 	mm_free(rpc_state);
398c43e99fdSEd Maste }
399c43e99fdSEd Maste 
400c43e99fdSEd Maste static void
401c43e99fdSEd Maste evrpc_request_done_closure(void *, enum EVRPC_HOOK_RESULT);
402c43e99fdSEd Maste 
403c43e99fdSEd Maste void
evrpc_request_done(struct evrpc_req_generic * rpc_state)404c43e99fdSEd Maste evrpc_request_done(struct evrpc_req_generic *rpc_state)
405c43e99fdSEd Maste {
406c43e99fdSEd Maste 	struct evhttp_request *req;
407c43e99fdSEd Maste 	struct evrpc *rpc;
408c43e99fdSEd Maste 
409c43e99fdSEd Maste 	EVUTIL_ASSERT(rpc_state);
410c43e99fdSEd Maste 
411c43e99fdSEd Maste 	req = rpc_state->http_req;
412c43e99fdSEd Maste 	rpc = rpc_state->rpc;
413c43e99fdSEd Maste 
414c43e99fdSEd Maste 	if (rpc->reply_complete(rpc_state->reply) == -1) {
415c43e99fdSEd Maste 		/* the reply was not completely filled in.  error out */
416c43e99fdSEd Maste 		goto error;
417c43e99fdSEd Maste 	}
418c43e99fdSEd Maste 
419c43e99fdSEd Maste 	if ((rpc_state->rpc_data = evbuffer_new()) == NULL) {
420c43e99fdSEd Maste 		/* out of memory */
421c43e99fdSEd Maste 		goto error;
422c43e99fdSEd Maste 	}
423c43e99fdSEd Maste 
424c43e99fdSEd Maste 	/* serialize the reply */
425c43e99fdSEd Maste 	rpc->reply_marshal(rpc_state->rpc_data, rpc_state->reply);
426c43e99fdSEd Maste 
427c43e99fdSEd Maste 	if (TAILQ_FIRST(&rpc->base->output_hooks) != NULL) {
428c43e99fdSEd Maste 		int hook_res;
429c43e99fdSEd Maste 
430c43e99fdSEd Maste 		evrpc_hook_associate_meta_(&rpc_state->hook_meta, req->evcon);
431c43e99fdSEd Maste 
432c43e99fdSEd Maste 		/* do hook based tweaks to the request */
433c43e99fdSEd Maste 		hook_res = evrpc_process_hooks(&rpc->base->output_hooks,
434c43e99fdSEd Maste 		    rpc_state, req, rpc_state->rpc_data);
435c43e99fdSEd Maste 		switch (hook_res) {
436c43e99fdSEd Maste 		case EVRPC_TERMINATE:
437c43e99fdSEd Maste 			goto error;
438c43e99fdSEd Maste 		case EVRPC_PAUSE:
439c43e99fdSEd Maste 			if (evrpc_pause_request(rpc->base, rpc_state,
440c43e99fdSEd Maste 				evrpc_request_done_closure) == -1)
441c43e99fdSEd Maste 				goto error;
442c43e99fdSEd Maste 			return;
443c43e99fdSEd Maste 		case EVRPC_CONTINUE:
444c43e99fdSEd Maste 			break;
445c43e99fdSEd Maste 		default:
446c43e99fdSEd Maste 			EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE ||
447c43e99fdSEd Maste 			    hook_res == EVRPC_CONTINUE ||
448c43e99fdSEd Maste 			    hook_res == EVRPC_PAUSE);
449c43e99fdSEd Maste 		}
450c43e99fdSEd Maste 	}
451c43e99fdSEd Maste 
452c43e99fdSEd Maste 	evrpc_request_done_closure(rpc_state, EVRPC_CONTINUE);
453c43e99fdSEd Maste 	return;
454c43e99fdSEd Maste 
455c43e99fdSEd Maste error:
456c43e99fdSEd Maste 	evrpc_reqstate_free_(rpc_state);
457c43e99fdSEd Maste 	evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL);
458c43e99fdSEd Maste 	return;
459c43e99fdSEd Maste }
460c43e99fdSEd Maste 
461c43e99fdSEd Maste void *
evrpc_get_request(struct evrpc_req_generic * req)462c43e99fdSEd Maste evrpc_get_request(struct evrpc_req_generic *req)
463c43e99fdSEd Maste {
464c43e99fdSEd Maste 	return req->request;
465c43e99fdSEd Maste }
466c43e99fdSEd Maste 
467c43e99fdSEd Maste void *
evrpc_get_reply(struct evrpc_req_generic * req)468c43e99fdSEd Maste evrpc_get_reply(struct evrpc_req_generic *req)
469c43e99fdSEd Maste {
470c43e99fdSEd Maste 	return req->reply;
471c43e99fdSEd Maste }
472c43e99fdSEd Maste 
473c43e99fdSEd Maste static void
evrpc_request_done_closure(void * arg,enum EVRPC_HOOK_RESULT hook_res)474c43e99fdSEd Maste evrpc_request_done_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res)
475c43e99fdSEd Maste {
476c43e99fdSEd Maste 	struct evrpc_req_generic *rpc_state = arg;
477c43e99fdSEd Maste 	struct evhttp_request *req;
478c43e99fdSEd Maste 	EVUTIL_ASSERT(rpc_state);
479c43e99fdSEd Maste 	req = rpc_state->http_req;
480c43e99fdSEd Maste 
481c43e99fdSEd Maste 	if (hook_res == EVRPC_TERMINATE)
482c43e99fdSEd Maste 		goto error;
483c43e99fdSEd Maste 
484c43e99fdSEd Maste 	/* on success, we are going to transmit marshaled binary data */
485c43e99fdSEd Maste 	if (evhttp_find_header(req->output_headers, "Content-Type") == NULL) {
486c43e99fdSEd Maste 		evhttp_add_header(req->output_headers,
487c43e99fdSEd Maste 		    "Content-Type", "application/octet-stream");
488c43e99fdSEd Maste 	}
489c43e99fdSEd Maste 	evhttp_send_reply(req, HTTP_OK, "OK", rpc_state->rpc_data);
490c43e99fdSEd Maste 
491c43e99fdSEd Maste 	evrpc_reqstate_free_(rpc_state);
492c43e99fdSEd Maste 
493c43e99fdSEd Maste 	return;
494c43e99fdSEd Maste 
495c43e99fdSEd Maste error:
496c43e99fdSEd Maste 	evrpc_reqstate_free_(rpc_state);
497c43e99fdSEd Maste 	evhttp_send_error(req, HTTP_SERVUNAVAIL, NULL);
498c43e99fdSEd Maste 	return;
499c43e99fdSEd Maste }
500c43e99fdSEd Maste 
501c43e99fdSEd Maste 
502c43e99fdSEd Maste /* Client implementation of RPC site */
503c43e99fdSEd Maste 
504c43e99fdSEd Maste static int evrpc_schedule_request(struct evhttp_connection *connection,
505c43e99fdSEd Maste     struct evrpc_request_wrapper *ctx);
506c43e99fdSEd Maste 
507c43e99fdSEd Maste struct evrpc_pool *
evrpc_pool_new(struct event_base * base)508c43e99fdSEd Maste evrpc_pool_new(struct event_base *base)
509c43e99fdSEd Maste {
510c43e99fdSEd Maste 	struct evrpc_pool *pool = mm_calloc(1, sizeof(struct evrpc_pool));
511c43e99fdSEd Maste 	if (pool == NULL)
512c43e99fdSEd Maste 		return (NULL);
513c43e99fdSEd Maste 
514c43e99fdSEd Maste 	TAILQ_INIT(&pool->connections);
515c43e99fdSEd Maste 	TAILQ_INIT(&pool->requests);
516c43e99fdSEd Maste 
517c43e99fdSEd Maste 	TAILQ_INIT(&pool->paused_requests);
518c43e99fdSEd Maste 
519c43e99fdSEd Maste 	TAILQ_INIT(&pool->input_hooks);
520c43e99fdSEd Maste 	TAILQ_INIT(&pool->output_hooks);
521c43e99fdSEd Maste 
522c43e99fdSEd Maste 	pool->base = base;
523c43e99fdSEd Maste 	pool->timeout = -1;
524c43e99fdSEd Maste 
525c43e99fdSEd Maste 	return (pool);
526c43e99fdSEd Maste }
527c43e99fdSEd Maste 
528c43e99fdSEd Maste static void
evrpc_request_wrapper_free(struct evrpc_request_wrapper * request)529c43e99fdSEd Maste evrpc_request_wrapper_free(struct evrpc_request_wrapper *request)
530c43e99fdSEd Maste {
531c43e99fdSEd Maste 	if (request->hook_meta != NULL)
532c43e99fdSEd Maste 		evrpc_hook_context_free_(request->hook_meta);
533c43e99fdSEd Maste 	mm_free(request->name);
534c43e99fdSEd Maste 	mm_free(request);
535c43e99fdSEd Maste }
536c43e99fdSEd Maste 
537c43e99fdSEd Maste void
evrpc_pool_free(struct evrpc_pool * pool)538c43e99fdSEd Maste evrpc_pool_free(struct evrpc_pool *pool)
539c43e99fdSEd Maste {
540c43e99fdSEd Maste 	struct evhttp_connection *connection;
541c43e99fdSEd Maste 	struct evrpc_request_wrapper *request;
542c43e99fdSEd Maste 	struct evrpc_hook_ctx *pause;
543c43e99fdSEd Maste 	struct evrpc_hook *hook;
544c43e99fdSEd Maste 	int r;
545c43e99fdSEd Maste 
546c43e99fdSEd Maste 	while ((request = TAILQ_FIRST(&pool->requests)) != NULL) {
547c43e99fdSEd Maste 		TAILQ_REMOVE(&pool->requests, request, next);
548c43e99fdSEd Maste 		evrpc_request_wrapper_free(request);
549c43e99fdSEd Maste 	}
550c43e99fdSEd Maste 
551c43e99fdSEd Maste 	while ((pause = TAILQ_FIRST(&pool->paused_requests)) != NULL) {
552c43e99fdSEd Maste 		TAILQ_REMOVE(&pool->paused_requests, pause, next);
553c43e99fdSEd Maste 		mm_free(pause);
554c43e99fdSEd Maste 	}
555c43e99fdSEd Maste 
556c43e99fdSEd Maste 	while ((connection = TAILQ_FIRST(&pool->connections)) != NULL) {
557c43e99fdSEd Maste 		TAILQ_REMOVE(&pool->connections, connection, next);
558c43e99fdSEd Maste 		evhttp_connection_free(connection);
559c43e99fdSEd Maste 	}
560c43e99fdSEd Maste 
561c43e99fdSEd Maste 	while ((hook = TAILQ_FIRST(&pool->input_hooks)) != NULL) {
562c43e99fdSEd Maste 		r = evrpc_remove_hook(pool, EVRPC_INPUT, hook);
563c43e99fdSEd Maste 		EVUTIL_ASSERT(r);
564c43e99fdSEd Maste 	}
565c43e99fdSEd Maste 
566c43e99fdSEd Maste 	while ((hook = TAILQ_FIRST(&pool->output_hooks)) != NULL) {
567c43e99fdSEd Maste 		r = evrpc_remove_hook(pool, EVRPC_OUTPUT, hook);
568c43e99fdSEd Maste 		EVUTIL_ASSERT(r);
569c43e99fdSEd Maste 	}
570c43e99fdSEd Maste 
571c43e99fdSEd Maste 	mm_free(pool);
572c43e99fdSEd Maste }
573c43e99fdSEd Maste 
574c43e99fdSEd Maste /*
575c43e99fdSEd Maste  * Add a connection to the RPC pool.   A request scheduled on the pool
576c43e99fdSEd Maste  * may use any available connection.
577c43e99fdSEd Maste  */
578c43e99fdSEd Maste 
579c43e99fdSEd Maste void
evrpc_pool_add_connection(struct evrpc_pool * pool,struct evhttp_connection * connection)580c43e99fdSEd Maste evrpc_pool_add_connection(struct evrpc_pool *pool,
581c43e99fdSEd Maste     struct evhttp_connection *connection)
582c43e99fdSEd Maste {
583c43e99fdSEd Maste 	EVUTIL_ASSERT(connection->http_server == NULL);
584c43e99fdSEd Maste 	TAILQ_INSERT_TAIL(&pool->connections, connection, next);
585c43e99fdSEd Maste 
586c43e99fdSEd Maste 	/*
587c43e99fdSEd Maste 	 * associate an event base with this connection
588c43e99fdSEd Maste 	 */
589c43e99fdSEd Maste 	if (pool->base != NULL)
590c43e99fdSEd Maste 		evhttp_connection_set_base(connection, pool->base);
591c43e99fdSEd Maste 
592c43e99fdSEd Maste 	/*
593c43e99fdSEd Maste 	 * unless a timeout was specifically set for a connection,
594c43e99fdSEd Maste 	 * the connection inherits the timeout from the pool.
595c43e99fdSEd Maste 	 */
596c43e99fdSEd Maste 	if (!evutil_timerisset(&connection->timeout))
597c43e99fdSEd Maste 		evhttp_connection_set_timeout(connection, pool->timeout);
598c43e99fdSEd Maste 
599c43e99fdSEd Maste 	/*
600c43e99fdSEd Maste 	 * if we have any requests pending, schedule them with the new
601c43e99fdSEd Maste 	 * connections.
602c43e99fdSEd Maste 	 */
603c43e99fdSEd Maste 
604c43e99fdSEd Maste 	if (TAILQ_FIRST(&pool->requests) != NULL) {
605c43e99fdSEd Maste 		struct evrpc_request_wrapper *request =
606c43e99fdSEd Maste 		    TAILQ_FIRST(&pool->requests);
607c43e99fdSEd Maste 		TAILQ_REMOVE(&pool->requests, request, next);
608c43e99fdSEd Maste 		evrpc_schedule_request(connection, request);
609c43e99fdSEd Maste 	}
610c43e99fdSEd Maste }
611c43e99fdSEd Maste 
612c43e99fdSEd Maste void
evrpc_pool_remove_connection(struct evrpc_pool * pool,struct evhttp_connection * connection)613c43e99fdSEd Maste evrpc_pool_remove_connection(struct evrpc_pool *pool,
614c43e99fdSEd Maste     struct evhttp_connection *connection)
615c43e99fdSEd Maste {
616c43e99fdSEd Maste 	TAILQ_REMOVE(&pool->connections, connection, next);
617c43e99fdSEd Maste }
618c43e99fdSEd Maste 
619c43e99fdSEd Maste void
evrpc_pool_set_timeout(struct evrpc_pool * pool,int timeout_in_secs)620c43e99fdSEd Maste evrpc_pool_set_timeout(struct evrpc_pool *pool, int timeout_in_secs)
621c43e99fdSEd Maste {
622c43e99fdSEd Maste 	struct evhttp_connection *evcon;
623c43e99fdSEd Maste 	TAILQ_FOREACH(evcon, &pool->connections, next) {
624c43e99fdSEd Maste 		evhttp_connection_set_timeout(evcon, timeout_in_secs);
625c43e99fdSEd Maste 	}
626c43e99fdSEd Maste 	pool->timeout = timeout_in_secs;
627c43e99fdSEd Maste }
628c43e99fdSEd Maste 
629c43e99fdSEd Maste 
630c43e99fdSEd Maste static void evrpc_reply_done(struct evhttp_request *, void *);
631c43e99fdSEd Maste static void evrpc_request_timeout(evutil_socket_t, short, void *);
632c43e99fdSEd Maste 
633c43e99fdSEd Maste /*
634c43e99fdSEd Maste  * Finds a connection object associated with the pool that is currently
635c43e99fdSEd Maste  * idle and can be used to make a request.
636c43e99fdSEd Maste  */
637c43e99fdSEd Maste static struct evhttp_connection *
evrpc_pool_find_connection(struct evrpc_pool * pool)638c43e99fdSEd Maste evrpc_pool_find_connection(struct evrpc_pool *pool)
639c43e99fdSEd Maste {
640c43e99fdSEd Maste 	struct evhttp_connection *connection;
641c43e99fdSEd Maste 	TAILQ_FOREACH(connection, &pool->connections, next) {
642c43e99fdSEd Maste 		if (TAILQ_FIRST(&connection->requests) == NULL)
643c43e99fdSEd Maste 			return (connection);
644c43e99fdSEd Maste 	}
645c43e99fdSEd Maste 
646c43e99fdSEd Maste 	return (NULL);
647c43e99fdSEd Maste }
648c43e99fdSEd Maste 
649c43e99fdSEd Maste /*
650c43e99fdSEd Maste  * Prototypes responsible for evrpc scheduling and hooking
651c43e99fdSEd Maste  */
652c43e99fdSEd Maste 
653c43e99fdSEd Maste static void evrpc_schedule_request_closure(void *ctx, enum EVRPC_HOOK_RESULT);
654c43e99fdSEd Maste 
655c43e99fdSEd Maste /*
656c43e99fdSEd Maste  * We assume that the ctx is no longer queued on the pool.
657c43e99fdSEd Maste  */
658c43e99fdSEd Maste static int
evrpc_schedule_request(struct evhttp_connection * connection,struct evrpc_request_wrapper * ctx)659c43e99fdSEd Maste evrpc_schedule_request(struct evhttp_connection *connection,
660c43e99fdSEd Maste     struct evrpc_request_wrapper *ctx)
661c43e99fdSEd Maste {
662c43e99fdSEd Maste 	struct evhttp_request *req = NULL;
663c43e99fdSEd Maste 	struct evrpc_pool *pool = ctx->pool;
664c43e99fdSEd Maste 	struct evrpc_status status;
665c43e99fdSEd Maste 
666c43e99fdSEd Maste 	if ((req = evhttp_request_new(evrpc_reply_done, ctx)) == NULL)
667c43e99fdSEd Maste 		goto error;
668c43e99fdSEd Maste 
669c43e99fdSEd Maste 	/* serialize the request data into the output buffer */
670c43e99fdSEd Maste 	ctx->request_marshal(req->output_buffer, ctx->request);
671c43e99fdSEd Maste 
672c43e99fdSEd Maste 	/* we need to know the connection that we might have to abort */
673c43e99fdSEd Maste 	ctx->evcon = connection;
674c43e99fdSEd Maste 
675c43e99fdSEd Maste 	/* if we get paused we also need to know the request */
676c43e99fdSEd Maste 	ctx->req = req;
677c43e99fdSEd Maste 
678c43e99fdSEd Maste 	if (TAILQ_FIRST(&pool->output_hooks) != NULL) {
679c43e99fdSEd Maste 		int hook_res;
680c43e99fdSEd Maste 
681c43e99fdSEd Maste 		evrpc_hook_associate_meta_(&ctx->hook_meta, connection);
682c43e99fdSEd Maste 
683c43e99fdSEd Maste 		/* apply hooks to the outgoing request */
684c43e99fdSEd Maste 		hook_res = evrpc_process_hooks(&pool->output_hooks,
685c43e99fdSEd Maste 		    ctx, req, req->output_buffer);
686c43e99fdSEd Maste 
687c43e99fdSEd Maste 		switch (hook_res) {
688c43e99fdSEd Maste 		case EVRPC_TERMINATE:
689c43e99fdSEd Maste 			goto error;
690c43e99fdSEd Maste 		case EVRPC_PAUSE:
691c43e99fdSEd Maste 			/* we need to be explicitly resumed */
692c43e99fdSEd Maste 			if (evrpc_pause_request(pool, ctx,
693c43e99fdSEd Maste 				evrpc_schedule_request_closure) == -1)
694c43e99fdSEd Maste 				goto error;
695c43e99fdSEd Maste 			return (0);
696c43e99fdSEd Maste 		case EVRPC_CONTINUE:
697c43e99fdSEd Maste 			/* we can just continue */
698c43e99fdSEd Maste 			break;
699c43e99fdSEd Maste 		default:
700c43e99fdSEd Maste 			EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE ||
701c43e99fdSEd Maste 			    hook_res == EVRPC_CONTINUE ||
702c43e99fdSEd Maste 			    hook_res == EVRPC_PAUSE);
703c43e99fdSEd Maste 		}
704c43e99fdSEd Maste 	}
705c43e99fdSEd Maste 
706c43e99fdSEd Maste 	evrpc_schedule_request_closure(ctx, EVRPC_CONTINUE);
707c43e99fdSEd Maste 	return (0);
708c43e99fdSEd Maste 
709c43e99fdSEd Maste error:
710c43e99fdSEd Maste 	memset(&status, 0, sizeof(status));
711c43e99fdSEd Maste 	status.error = EVRPC_STATUS_ERR_UNSTARTED;
712c43e99fdSEd Maste 	(*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg);
713c43e99fdSEd Maste 	evrpc_request_wrapper_free(ctx);
714c43e99fdSEd Maste 	return (-1);
715c43e99fdSEd Maste }
716c43e99fdSEd Maste 
717c43e99fdSEd Maste static void
evrpc_schedule_request_closure(void * arg,enum EVRPC_HOOK_RESULT hook_res)718c43e99fdSEd Maste evrpc_schedule_request_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res)
719c43e99fdSEd Maste {
720c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx = arg;
721c43e99fdSEd Maste 	struct evhttp_connection *connection = ctx->evcon;
722c43e99fdSEd Maste 	struct evhttp_request *req = ctx->req;
723c43e99fdSEd Maste 	struct evrpc_pool *pool = ctx->pool;
724c43e99fdSEd Maste 	struct evrpc_status status;
725c43e99fdSEd Maste 	char *uri = NULL;
726c43e99fdSEd Maste 	int res = 0;
727c43e99fdSEd Maste 
728c43e99fdSEd Maste 	if (hook_res == EVRPC_TERMINATE)
729c43e99fdSEd Maste 		goto error;
730c43e99fdSEd Maste 
731c43e99fdSEd Maste 	uri = evrpc_construct_uri(ctx->name);
732c43e99fdSEd Maste 	if (uri == NULL)
733c43e99fdSEd Maste 		goto error;
734c43e99fdSEd Maste 
735c43e99fdSEd Maste 	if (pool->timeout > 0) {
736c43e99fdSEd Maste 		/*
737c43e99fdSEd Maste 		 * a timeout after which the whole rpc is going to be aborted.
738c43e99fdSEd Maste 		 */
739c43e99fdSEd Maste 		struct timeval tv;
740c43e99fdSEd Maste 		evutil_timerclear(&tv);
741c43e99fdSEd Maste 		tv.tv_sec = pool->timeout;
742c43e99fdSEd Maste 		evtimer_add(&ctx->ev_timeout, &tv);
743c43e99fdSEd Maste 	}
744c43e99fdSEd Maste 
745c43e99fdSEd Maste 	/* start the request over the connection */
746c43e99fdSEd Maste 	res = evhttp_make_request(connection, req, EVHTTP_REQ_POST, uri);
747c43e99fdSEd Maste 	mm_free(uri);
748c43e99fdSEd Maste 
749c43e99fdSEd Maste 	if (res == -1)
750c43e99fdSEd Maste 		goto error;
751c43e99fdSEd Maste 
752c43e99fdSEd Maste 	return;
753c43e99fdSEd Maste 
754c43e99fdSEd Maste error:
755c43e99fdSEd Maste 	memset(&status, 0, sizeof(status));
756c43e99fdSEd Maste 	status.error = EVRPC_STATUS_ERR_UNSTARTED;
757c43e99fdSEd Maste 	(*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg);
758c43e99fdSEd Maste 	evrpc_request_wrapper_free(ctx);
759c43e99fdSEd Maste }
760c43e99fdSEd Maste 
761c43e99fdSEd Maste /* we just queue the paused request on the pool under the req object */
762c43e99fdSEd Maste static int
evrpc_pause_request(void * vbase,void * ctx,void (* cb)(void *,enum EVRPC_HOOK_RESULT))763c43e99fdSEd Maste evrpc_pause_request(void *vbase, void *ctx,
764c43e99fdSEd Maste     void (*cb)(void *, enum EVRPC_HOOK_RESULT))
765c43e99fdSEd Maste {
766c43e99fdSEd Maste 	struct evrpc_hooks_ *base = vbase;
767c43e99fdSEd Maste 	struct evrpc_hook_ctx *pause = mm_malloc(sizeof(*pause));
768c43e99fdSEd Maste 	if (pause == NULL)
769c43e99fdSEd Maste 		return (-1);
770c43e99fdSEd Maste 
771c43e99fdSEd Maste 	pause->ctx = ctx;
772c43e99fdSEd Maste 	pause->cb = cb;
773c43e99fdSEd Maste 
774c43e99fdSEd Maste 	TAILQ_INSERT_TAIL(&base->pause_requests, pause, next);
775c43e99fdSEd Maste 	return (0);
776c43e99fdSEd Maste }
777c43e99fdSEd Maste 
778c43e99fdSEd Maste int
evrpc_resume_request(void * vbase,void * ctx,enum EVRPC_HOOK_RESULT res)779c43e99fdSEd Maste evrpc_resume_request(void *vbase, void *ctx, enum EVRPC_HOOK_RESULT res)
780c43e99fdSEd Maste {
781c43e99fdSEd Maste 	struct evrpc_hooks_ *base = vbase;
782c43e99fdSEd Maste 	struct evrpc_pause_list *head = &base->pause_requests;
783c43e99fdSEd Maste 	struct evrpc_hook_ctx *pause;
784c43e99fdSEd Maste 
785c43e99fdSEd Maste 	TAILQ_FOREACH(pause, head, next) {
786c43e99fdSEd Maste 		if (pause->ctx == ctx)
787c43e99fdSEd Maste 			break;
788c43e99fdSEd Maste 	}
789c43e99fdSEd Maste 
790c43e99fdSEd Maste 	if (pause == NULL)
791c43e99fdSEd Maste 		return (-1);
792c43e99fdSEd Maste 
793c43e99fdSEd Maste 	(*pause->cb)(pause->ctx, res);
794c43e99fdSEd Maste 	TAILQ_REMOVE(head, pause, next);
795c43e99fdSEd Maste 	mm_free(pause);
796c43e99fdSEd Maste 	return (0);
797c43e99fdSEd Maste }
798c43e99fdSEd Maste 
799c43e99fdSEd Maste int
evrpc_make_request(struct evrpc_request_wrapper * ctx)800c43e99fdSEd Maste evrpc_make_request(struct evrpc_request_wrapper *ctx)
801c43e99fdSEd Maste {
802c43e99fdSEd Maste 	struct evrpc_pool *pool = ctx->pool;
803c43e99fdSEd Maste 
804c43e99fdSEd Maste 	/* initialize the event structure for this rpc */
805c43e99fdSEd Maste 	evtimer_assign(&ctx->ev_timeout, pool->base, evrpc_request_timeout, ctx);
806c43e99fdSEd Maste 
807c43e99fdSEd Maste 	/* we better have some available connections on the pool */
808c43e99fdSEd Maste 	EVUTIL_ASSERT(TAILQ_FIRST(&pool->connections) != NULL);
809c43e99fdSEd Maste 
810c43e99fdSEd Maste 	/*
811c43e99fdSEd Maste 	 * if no connection is available, we queue the request on the pool,
812c43e99fdSEd Maste 	 * the next time a connection is empty, the rpc will be send on that.
813c43e99fdSEd Maste 	 */
814c43e99fdSEd Maste 	TAILQ_INSERT_TAIL(&pool->requests, ctx, next);
815c43e99fdSEd Maste 
816c43e99fdSEd Maste 	evrpc_pool_schedule(pool);
817c43e99fdSEd Maste 
818c43e99fdSEd Maste 	return (0);
819c43e99fdSEd Maste }
820c43e99fdSEd Maste 
821c43e99fdSEd Maste 
822c43e99fdSEd Maste struct evrpc_request_wrapper *
evrpc_make_request_ctx(struct evrpc_pool * pool,void * request,void * reply,const char * rpcname,void (* req_marshal)(struct evbuffer *,void *),void (* rpl_clear)(void *),int (* rpl_unmarshal)(void *,struct evbuffer *),void (* cb)(struct evrpc_status *,void *,void *,void *),void * cbarg)823c43e99fdSEd Maste evrpc_make_request_ctx(
824c43e99fdSEd Maste 	struct evrpc_pool *pool, void *request, void *reply,
825c43e99fdSEd Maste 	const char *rpcname,
826c43e99fdSEd Maste 	void (*req_marshal)(struct evbuffer*, void *),
827c43e99fdSEd Maste 	void (*rpl_clear)(void *),
828c43e99fdSEd Maste 	int (*rpl_unmarshal)(void *, struct evbuffer *),
829c43e99fdSEd Maste 	void (*cb)(struct evrpc_status *, void *, void *, void *),
830c43e99fdSEd Maste 	void *cbarg)
831c43e99fdSEd Maste {
832c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx = (struct evrpc_request_wrapper *)
833c43e99fdSEd Maste 	    mm_malloc(sizeof(struct evrpc_request_wrapper));
834c43e99fdSEd Maste 	if (ctx == NULL)
835c43e99fdSEd Maste 		return (NULL);
836c43e99fdSEd Maste 
837c43e99fdSEd Maste 	ctx->pool = pool;
838c43e99fdSEd Maste 	ctx->hook_meta = NULL;
839c43e99fdSEd Maste 	ctx->evcon = NULL;
840c43e99fdSEd Maste 	ctx->name = mm_strdup(rpcname);
841c43e99fdSEd Maste 	if (ctx->name == NULL) {
842c43e99fdSEd Maste 		mm_free(ctx);
843c43e99fdSEd Maste 		return (NULL);
844c43e99fdSEd Maste 	}
845c43e99fdSEd Maste 	ctx->cb = cb;
846c43e99fdSEd Maste 	ctx->cb_arg = cbarg;
847c43e99fdSEd Maste 	ctx->request = request;
848c43e99fdSEd Maste 	ctx->reply = reply;
849c43e99fdSEd Maste 	ctx->request_marshal = req_marshal;
850c43e99fdSEd Maste 	ctx->reply_clear = rpl_clear;
851c43e99fdSEd Maste 	ctx->reply_unmarshal = rpl_unmarshal;
852c43e99fdSEd Maste 
853c43e99fdSEd Maste 	return (ctx);
854c43e99fdSEd Maste }
855c43e99fdSEd Maste 
856c43e99fdSEd Maste static void
857c43e99fdSEd Maste evrpc_reply_done_closure(void *, enum EVRPC_HOOK_RESULT);
858c43e99fdSEd Maste 
859c43e99fdSEd Maste static void
evrpc_reply_done(struct evhttp_request * req,void * arg)860c43e99fdSEd Maste evrpc_reply_done(struct evhttp_request *req, void *arg)
861c43e99fdSEd Maste {
862c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx = arg;
863c43e99fdSEd Maste 	struct evrpc_pool *pool = ctx->pool;
864c43e99fdSEd Maste 	int hook_res = EVRPC_CONTINUE;
865c43e99fdSEd Maste 
866c43e99fdSEd Maste 	/* cancel any timeout we might have scheduled */
867c43e99fdSEd Maste 	event_del(&ctx->ev_timeout);
868c43e99fdSEd Maste 
869c43e99fdSEd Maste 	ctx->req = req;
870c43e99fdSEd Maste 
871c43e99fdSEd Maste 	/* we need to get the reply now */
872c43e99fdSEd Maste 	if (req == NULL) {
873c43e99fdSEd Maste 		evrpc_reply_done_closure(ctx, EVRPC_CONTINUE);
874c43e99fdSEd Maste 		return;
875c43e99fdSEd Maste 	}
876c43e99fdSEd Maste 
877c43e99fdSEd Maste 	if (TAILQ_FIRST(&pool->input_hooks) != NULL) {
878c43e99fdSEd Maste 		evrpc_hook_associate_meta_(&ctx->hook_meta, ctx->evcon);
879c43e99fdSEd Maste 
880c43e99fdSEd Maste 		/* apply hooks to the incoming request */
881c43e99fdSEd Maste 		hook_res = evrpc_process_hooks(&pool->input_hooks,
882c43e99fdSEd Maste 		    ctx, req, req->input_buffer);
883c43e99fdSEd Maste 
884c43e99fdSEd Maste 		switch (hook_res) {
885c43e99fdSEd Maste 		case EVRPC_TERMINATE:
886c43e99fdSEd Maste 		case EVRPC_CONTINUE:
887c43e99fdSEd Maste 			break;
888c43e99fdSEd Maste 		case EVRPC_PAUSE:
889c43e99fdSEd Maste 			/*
890c43e99fdSEd Maste 			 * if we get paused we also need to know the
891c43e99fdSEd Maste 			 * request.  unfortunately, the underlying
892c43e99fdSEd Maste 			 * layer is going to free it.  we need to
893c43e99fdSEd Maste 			 * request ownership explicitly
894c43e99fdSEd Maste 			 */
895c43e99fdSEd Maste 			evhttp_request_own(req);
896c43e99fdSEd Maste 
897c43e99fdSEd Maste 			evrpc_pause_request(pool, ctx,
898c43e99fdSEd Maste 			    evrpc_reply_done_closure);
899c43e99fdSEd Maste 			return;
900c43e99fdSEd Maste 		default:
901c43e99fdSEd Maste 			EVUTIL_ASSERT(hook_res == EVRPC_TERMINATE ||
902c43e99fdSEd Maste 			    hook_res == EVRPC_CONTINUE ||
903c43e99fdSEd Maste 			    hook_res == EVRPC_PAUSE);
904c43e99fdSEd Maste 		}
905c43e99fdSEd Maste 	}
906c43e99fdSEd Maste 
907c43e99fdSEd Maste 	evrpc_reply_done_closure(ctx, hook_res);
908c43e99fdSEd Maste 
909c43e99fdSEd Maste 	/* http request is being freed by underlying layer */
910c43e99fdSEd Maste }
911c43e99fdSEd Maste 
912c43e99fdSEd Maste static void
evrpc_reply_done_closure(void * arg,enum EVRPC_HOOK_RESULT hook_res)913c43e99fdSEd Maste evrpc_reply_done_closure(void *arg, enum EVRPC_HOOK_RESULT hook_res)
914c43e99fdSEd Maste {
915c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx = arg;
916c43e99fdSEd Maste 	struct evhttp_request *req = ctx->req;
917c43e99fdSEd Maste 	struct evrpc_pool *pool = ctx->pool;
918c43e99fdSEd Maste 	struct evrpc_status status;
919c43e99fdSEd Maste 	int res = -1;
920c43e99fdSEd Maste 
921c43e99fdSEd Maste 	memset(&status, 0, sizeof(status));
922c43e99fdSEd Maste 	status.http_req = req;
923c43e99fdSEd Maste 
924c43e99fdSEd Maste 	/* we need to get the reply now */
925c43e99fdSEd Maste 	if (req == NULL) {
926c43e99fdSEd Maste 		status.error = EVRPC_STATUS_ERR_TIMEOUT;
927c43e99fdSEd Maste 	} else if (hook_res == EVRPC_TERMINATE) {
928c43e99fdSEd Maste 		status.error = EVRPC_STATUS_ERR_HOOKABORTED;
929c43e99fdSEd Maste 	} else {
930c43e99fdSEd Maste 		res = ctx->reply_unmarshal(ctx->reply, req->input_buffer);
931c43e99fdSEd Maste 		if (res == -1)
932c43e99fdSEd Maste 			status.error = EVRPC_STATUS_ERR_BADPAYLOAD;
933c43e99fdSEd Maste 	}
934c43e99fdSEd Maste 
935c43e99fdSEd Maste 	if (res == -1) {
936c43e99fdSEd Maste 		/* clear everything that we might have written previously */
937c43e99fdSEd Maste 		ctx->reply_clear(ctx->reply);
938c43e99fdSEd Maste 	}
939c43e99fdSEd Maste 
940c43e99fdSEd Maste 	(*ctx->cb)(&status, ctx->request, ctx->reply, ctx->cb_arg);
941c43e99fdSEd Maste 
942c43e99fdSEd Maste 	evrpc_request_wrapper_free(ctx);
943c43e99fdSEd Maste 
944c43e99fdSEd Maste 	/* the http layer owned the original request structure, but if we
945c43e99fdSEd Maste 	 * got paused, we asked for ownership and need to free it here. */
946c43e99fdSEd Maste 	if (req != NULL && evhttp_request_is_owned(req))
947c43e99fdSEd Maste 		evhttp_request_free(req);
948c43e99fdSEd Maste 
949c43e99fdSEd Maste 	/* see if we can schedule another request */
950c43e99fdSEd Maste 	evrpc_pool_schedule(pool);
951c43e99fdSEd Maste }
952c43e99fdSEd Maste 
953c43e99fdSEd Maste static void
evrpc_pool_schedule(struct evrpc_pool * pool)954c43e99fdSEd Maste evrpc_pool_schedule(struct evrpc_pool *pool)
955c43e99fdSEd Maste {
956c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx = TAILQ_FIRST(&pool->requests);
957c43e99fdSEd Maste 	struct evhttp_connection *evcon;
958c43e99fdSEd Maste 
959c43e99fdSEd Maste 	/* if no requests are pending, we have no work */
960c43e99fdSEd Maste 	if (ctx == NULL)
961c43e99fdSEd Maste 		return;
962c43e99fdSEd Maste 
963c43e99fdSEd Maste 	if ((evcon = evrpc_pool_find_connection(pool)) != NULL) {
964c43e99fdSEd Maste 		TAILQ_REMOVE(&pool->requests, ctx, next);
965c43e99fdSEd Maste 		evrpc_schedule_request(evcon, ctx);
966c43e99fdSEd Maste 	}
967c43e99fdSEd Maste }
968c43e99fdSEd Maste 
969c43e99fdSEd Maste static void
evrpc_request_timeout(evutil_socket_t fd,short what,void * arg)970c43e99fdSEd Maste evrpc_request_timeout(evutil_socket_t fd, short what, void *arg)
971c43e99fdSEd Maste {
972c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx = arg;
973c43e99fdSEd Maste 	struct evhttp_connection *evcon = ctx->evcon;
974c43e99fdSEd Maste 	EVUTIL_ASSERT(evcon != NULL);
975c43e99fdSEd Maste 
976c43e99fdSEd Maste 	evhttp_connection_fail_(evcon, EVREQ_HTTP_TIMEOUT);
977c43e99fdSEd Maste }
978c43e99fdSEd Maste 
979c43e99fdSEd Maste /*
980c43e99fdSEd Maste  * frees potential meta data associated with a request.
981c43e99fdSEd Maste  */
982c43e99fdSEd Maste 
983c43e99fdSEd Maste static void
evrpc_meta_data_free(struct evrpc_meta_list * meta_data)984c43e99fdSEd Maste evrpc_meta_data_free(struct evrpc_meta_list *meta_data)
985c43e99fdSEd Maste {
986c43e99fdSEd Maste 	struct evrpc_meta *entry;
987c43e99fdSEd Maste 	EVUTIL_ASSERT(meta_data != NULL);
988c43e99fdSEd Maste 
989c43e99fdSEd Maste 	while ((entry = TAILQ_FIRST(meta_data)) != NULL) {
990c43e99fdSEd Maste 		TAILQ_REMOVE(meta_data, entry, next);
991c43e99fdSEd Maste 		mm_free(entry->key);
992c43e99fdSEd Maste 		mm_free(entry->data);
993c43e99fdSEd Maste 		mm_free(entry);
994c43e99fdSEd Maste 	}
995c43e99fdSEd Maste }
996c43e99fdSEd Maste 
997c43e99fdSEd Maste static struct evrpc_hook_meta *
evrpc_hook_meta_new_(void)998c43e99fdSEd Maste evrpc_hook_meta_new_(void)
999c43e99fdSEd Maste {
1000c43e99fdSEd Maste 	struct evrpc_hook_meta *ctx;
1001c43e99fdSEd Maste 	ctx = mm_malloc(sizeof(struct evrpc_hook_meta));
1002c43e99fdSEd Maste 	EVUTIL_ASSERT(ctx != NULL);
1003c43e99fdSEd Maste 
1004c43e99fdSEd Maste 	TAILQ_INIT(&ctx->meta_data);
1005c43e99fdSEd Maste 	ctx->evcon = NULL;
1006c43e99fdSEd Maste 
1007c43e99fdSEd Maste 	return (ctx);
1008c43e99fdSEd Maste }
1009c43e99fdSEd Maste 
1010c43e99fdSEd Maste static void
evrpc_hook_associate_meta_(struct evrpc_hook_meta ** pctx,struct evhttp_connection * evcon)1011c43e99fdSEd Maste evrpc_hook_associate_meta_(struct evrpc_hook_meta **pctx,
1012c43e99fdSEd Maste     struct evhttp_connection *evcon)
1013c43e99fdSEd Maste {
1014c43e99fdSEd Maste 	struct evrpc_hook_meta *ctx = *pctx;
1015c43e99fdSEd Maste 	if (ctx == NULL)
1016c43e99fdSEd Maste 		*pctx = ctx = evrpc_hook_meta_new_();
1017c43e99fdSEd Maste 	ctx->evcon = evcon;
1018c43e99fdSEd Maste }
1019c43e99fdSEd Maste 
1020c43e99fdSEd Maste static void
evrpc_hook_context_free_(struct evrpc_hook_meta * ctx)1021c43e99fdSEd Maste evrpc_hook_context_free_(struct evrpc_hook_meta *ctx)
1022c43e99fdSEd Maste {
1023c43e99fdSEd Maste 	evrpc_meta_data_free(&ctx->meta_data);
1024c43e99fdSEd Maste 	mm_free(ctx);
1025c43e99fdSEd Maste }
1026c43e99fdSEd Maste 
1027c43e99fdSEd Maste /* Adds meta data */
1028c43e99fdSEd Maste void
evrpc_hook_add_meta(void * ctx,const char * key,const void * data,size_t data_size)1029c43e99fdSEd Maste evrpc_hook_add_meta(void *ctx, const char *key,
1030c43e99fdSEd Maste     const void *data, size_t data_size)
1031c43e99fdSEd Maste {
1032c43e99fdSEd Maste 	struct evrpc_request_wrapper *req = ctx;
1033c43e99fdSEd Maste 	struct evrpc_hook_meta *store = NULL;
1034c43e99fdSEd Maste 	struct evrpc_meta *meta = NULL;
1035c43e99fdSEd Maste 
1036c43e99fdSEd Maste 	if ((store = req->hook_meta) == NULL)
1037c43e99fdSEd Maste 		store = req->hook_meta = evrpc_hook_meta_new_();
1038c43e99fdSEd Maste 
1039c43e99fdSEd Maste 	meta = mm_malloc(sizeof(struct evrpc_meta));
1040c43e99fdSEd Maste 	EVUTIL_ASSERT(meta != NULL);
1041c43e99fdSEd Maste 	meta->key = mm_strdup(key);
1042c43e99fdSEd Maste 	EVUTIL_ASSERT(meta->key != NULL);
1043c43e99fdSEd Maste 	meta->data_size = data_size;
1044c43e99fdSEd Maste 	meta->data = mm_malloc(data_size);
1045c43e99fdSEd Maste 	EVUTIL_ASSERT(meta->data != NULL);
1046c43e99fdSEd Maste 	memcpy(meta->data, data, data_size);
1047c43e99fdSEd Maste 
1048c43e99fdSEd Maste 	TAILQ_INSERT_TAIL(&store->meta_data, meta, next);
1049c43e99fdSEd Maste }
1050c43e99fdSEd Maste 
1051c43e99fdSEd Maste int
evrpc_hook_find_meta(void * ctx,const char * key,void ** data,size_t * data_size)1052c43e99fdSEd Maste evrpc_hook_find_meta(void *ctx, const char *key, void **data, size_t *data_size)
1053c43e99fdSEd Maste {
1054c43e99fdSEd Maste 	struct evrpc_request_wrapper *req = ctx;
1055c43e99fdSEd Maste 	struct evrpc_meta *meta = NULL;
1056c43e99fdSEd Maste 
1057c43e99fdSEd Maste 	if (req->hook_meta == NULL)
1058c43e99fdSEd Maste 		return (-1);
1059c43e99fdSEd Maste 
1060c43e99fdSEd Maste 	TAILQ_FOREACH(meta, &req->hook_meta->meta_data, next) {
1061c43e99fdSEd Maste 		if (strcmp(meta->key, key) == 0) {
1062c43e99fdSEd Maste 			*data = meta->data;
1063c43e99fdSEd Maste 			*data_size = meta->data_size;
1064c43e99fdSEd Maste 			return (0);
1065c43e99fdSEd Maste 		}
1066c43e99fdSEd Maste 	}
1067c43e99fdSEd Maste 
1068c43e99fdSEd Maste 	return (-1);
1069c43e99fdSEd Maste }
1070c43e99fdSEd Maste 
1071c43e99fdSEd Maste struct evhttp_connection *
evrpc_hook_get_connection(void * ctx)1072c43e99fdSEd Maste evrpc_hook_get_connection(void *ctx)
1073c43e99fdSEd Maste {
1074c43e99fdSEd Maste 	struct evrpc_request_wrapper *req = ctx;
1075c43e99fdSEd Maste 	return (req->hook_meta != NULL ? req->hook_meta->evcon : NULL);
1076c43e99fdSEd Maste }
1077c43e99fdSEd Maste 
1078c43e99fdSEd Maste int
evrpc_send_request_generic(struct evrpc_pool * pool,void * request,void * reply,void (* cb)(struct evrpc_status *,void *,void *,void *),void * cb_arg,const char * rpcname,void (* req_marshal)(struct evbuffer *,void *),void (* rpl_clear)(void *),int (* rpl_unmarshal)(void *,struct evbuffer *))1079c43e99fdSEd Maste evrpc_send_request_generic(struct evrpc_pool *pool,
1080c43e99fdSEd Maste     void *request, void *reply,
1081c43e99fdSEd Maste     void (*cb)(struct evrpc_status *, void *, void *, void *),
1082c43e99fdSEd Maste     void *cb_arg,
1083c43e99fdSEd Maste     const char *rpcname,
1084c43e99fdSEd Maste     void (*req_marshal)(struct evbuffer *, void *),
1085c43e99fdSEd Maste     void (*rpl_clear)(void *),
1086c43e99fdSEd Maste     int (*rpl_unmarshal)(void *, struct evbuffer *))
1087c43e99fdSEd Maste {
1088c43e99fdSEd Maste 	struct evrpc_status status;
1089c43e99fdSEd Maste 	struct evrpc_request_wrapper *ctx;
1090c43e99fdSEd Maste 	ctx = evrpc_make_request_ctx(pool, request, reply,
1091c43e99fdSEd Maste 	    rpcname, req_marshal, rpl_clear, rpl_unmarshal, cb, cb_arg);
1092c43e99fdSEd Maste 	if (ctx == NULL)
1093c43e99fdSEd Maste 		goto error;
1094c43e99fdSEd Maste 	return (evrpc_make_request(ctx));
1095c43e99fdSEd Maste error:
1096c43e99fdSEd Maste 	memset(&status, 0, sizeof(status));
1097c43e99fdSEd Maste 	status.error = EVRPC_STATUS_ERR_UNSTARTED;
1098c43e99fdSEd Maste 	(*(cb))(&status, request, reply, cb_arg);
1099c43e99fdSEd Maste 	return (-1);
1100c43e99fdSEd Maste }
1101c43e99fdSEd Maste 
1102c43e99fdSEd Maste /** Takes a request object and fills it in with the right magic */
1103c43e99fdSEd Maste static struct evrpc *
evrpc_register_object(const char * name,void * (* req_new)(void *),void * req_new_arg,void (* req_free)(void *),int (* req_unmarshal)(void *,struct evbuffer *),void * (* rpl_new)(void *),void * rpl_new_arg,void (* rpl_free)(void *),int (* rpl_complete)(void *),void (* rpl_marshal)(struct evbuffer *,void *))1104c43e99fdSEd Maste evrpc_register_object(const char *name,
1105c43e99fdSEd Maste     void *(*req_new)(void*), void *req_new_arg, void (*req_free)(void *),
1106c43e99fdSEd Maste     int (*req_unmarshal)(void *, struct evbuffer *),
1107c43e99fdSEd Maste     void *(*rpl_new)(void*), void *rpl_new_arg, void (*rpl_free)(void *),
1108c43e99fdSEd Maste     int (*rpl_complete)(void *),
1109c43e99fdSEd Maste     void (*rpl_marshal)(struct evbuffer *, void *))
1110c43e99fdSEd Maste {
1111c43e99fdSEd Maste 	struct evrpc* rpc = (struct evrpc *)mm_calloc(1, sizeof(struct evrpc));
1112c43e99fdSEd Maste 	if (rpc == NULL)
1113c43e99fdSEd Maste 		return (NULL);
1114c43e99fdSEd Maste 	rpc->uri = mm_strdup(name);
1115c43e99fdSEd Maste 	if (rpc->uri == NULL) {
1116c43e99fdSEd Maste 		mm_free(rpc);
1117c43e99fdSEd Maste 		return (NULL);
1118c43e99fdSEd Maste 	}
1119c43e99fdSEd Maste 	rpc->request_new = req_new;
1120c43e99fdSEd Maste 	rpc->request_new_arg = req_new_arg;
1121c43e99fdSEd Maste 	rpc->request_free = req_free;
1122c43e99fdSEd Maste 	rpc->request_unmarshal = req_unmarshal;
1123c43e99fdSEd Maste 	rpc->reply_new = rpl_new;
1124c43e99fdSEd Maste 	rpc->reply_new_arg = rpl_new_arg;
1125c43e99fdSEd Maste 	rpc->reply_free = rpl_free;
1126c43e99fdSEd Maste 	rpc->reply_complete = rpl_complete;
1127c43e99fdSEd Maste 	rpc->reply_marshal = rpl_marshal;
1128c43e99fdSEd Maste 	return (rpc);
1129c43e99fdSEd Maste }
1130c43e99fdSEd Maste 
1131c43e99fdSEd Maste int
evrpc_register_generic(struct evrpc_base * base,const char * name,void (* callback)(struct evrpc_req_generic *,void *),void * cbarg,void * (* req_new)(void *),void * req_new_arg,void (* req_free)(void *),int (* req_unmarshal)(void *,struct evbuffer *),void * (* rpl_new)(void *),void * rpl_new_arg,void (* rpl_free)(void *),int (* rpl_complete)(void *),void (* rpl_marshal)(struct evbuffer *,void *))1132c43e99fdSEd Maste evrpc_register_generic(struct evrpc_base *base, const char *name,
1133c43e99fdSEd Maste     void (*callback)(struct evrpc_req_generic *, void *), void *cbarg,
1134c43e99fdSEd Maste     void *(*req_new)(void *), void *req_new_arg, void (*req_free)(void *),
1135c43e99fdSEd Maste     int (*req_unmarshal)(void *, struct evbuffer *),
1136c43e99fdSEd Maste     void *(*rpl_new)(void *), void *rpl_new_arg, void (*rpl_free)(void *),
1137c43e99fdSEd Maste     int (*rpl_complete)(void *),
1138c43e99fdSEd Maste     void (*rpl_marshal)(struct evbuffer *, void *))
1139c43e99fdSEd Maste {
1140c43e99fdSEd Maste 	struct evrpc* rpc =
1141c43e99fdSEd Maste 	    evrpc_register_object(name, req_new, req_new_arg, req_free, req_unmarshal,
1142c43e99fdSEd Maste 		rpl_new, rpl_new_arg, rpl_free, rpl_complete, rpl_marshal);
1143c43e99fdSEd Maste 	if (rpc == NULL)
1144c43e99fdSEd Maste 		return (-1);
1145c43e99fdSEd Maste 	evrpc_register_rpc(base, rpc,
1146c43e99fdSEd Maste 	    (void (*)(struct evrpc_req_generic*, void *))callback, cbarg);
1147c43e99fdSEd Maste 	return (0);
1148c43e99fdSEd Maste }
1149c43e99fdSEd Maste 
1150c43e99fdSEd Maste /** accessors for obscure and undocumented functionality */
1151c43e99fdSEd Maste struct evrpc_pool *
evrpc_request_get_pool(struct evrpc_request_wrapper * ctx)1152c43e99fdSEd Maste evrpc_request_get_pool(struct evrpc_request_wrapper *ctx)
1153c43e99fdSEd Maste {
1154c43e99fdSEd Maste 	return (ctx->pool);
1155c43e99fdSEd Maste }
1156c43e99fdSEd Maste 
1157c43e99fdSEd Maste void
evrpc_request_set_pool(struct evrpc_request_wrapper * ctx,struct evrpc_pool * pool)1158c43e99fdSEd Maste evrpc_request_set_pool(struct evrpc_request_wrapper *ctx,
1159c43e99fdSEd Maste     struct evrpc_pool *pool)
1160c43e99fdSEd Maste {
1161c43e99fdSEd Maste 	ctx->pool = pool;
1162c43e99fdSEd Maste }
1163c43e99fdSEd Maste 
1164c43e99fdSEd Maste void
evrpc_request_set_cb(struct evrpc_request_wrapper * ctx,void (* cb)(struct evrpc_status *,void * request,void * reply,void * arg),void * cb_arg)1165c43e99fdSEd Maste evrpc_request_set_cb(struct evrpc_request_wrapper *ctx,
1166c43e99fdSEd Maste     void (*cb)(struct evrpc_status*, void *request, void *reply, void *arg),
1167c43e99fdSEd Maste     void *cb_arg)
1168c43e99fdSEd Maste {
1169c43e99fdSEd Maste 	ctx->cb = cb;
1170c43e99fdSEd Maste 	ctx->cb_arg = cb_arg;
1171c43e99fdSEd Maste }
1172