]> git.evergreen-ils.org Git - OpenSRF.git/blob - src/gateway/osrf_http_translator.c
87c12e9aed76e5ea6f778654e53c0f87ca9219a6
[OpenSRF.git] / src / gateway / osrf_http_translator.c
1 #include <sys/time.h>
2 #include <sys/resource.h>
3 #include <unistd.h>
4 #include <strings.h>
5 #include "apachetools.h"
6 #include <opensrf/osrf_app_session.h>
7 #include <opensrf/osrf_system.h>
8 #include <opensrf/osrfConfig.h>
9 #include <opensrf/osrf_json.h>
10 #include <opensrf/osrf_cache.h>
11
12 #define MODULE_NAME "osrf_http_translator_module"
13 #define OSRF_TRANSLATOR_CONFIG_FILE "OSRFTranslatorConfig"
14 #define OSRF_TRANSLATOR_CONFIG_CTX "OSRFTranslatorConfigContext"
15 #define OSRF_TRANSLATOR_CACHE_SERVER "OSRFTranslatorCacheServer"
16
17 #define DEFAULT_TRANSLATOR_CONFIG_CTX "gateway"
18 #define DEFAULT_TRANSLATOR_CONFIG_FILE "/openils/conf/opensrf_core.xml"
19 #define DEFAULT_TRANSLATOR_TIMEOUT 1200
20 #define DEFAULT_TRANSLATOR_CACHE_SERVERS "127.0.0.1:11211"
21
22 #define MULTIPART_CONTENT_TYPE "multipart/x-mixed-replace;boundary=\"%s\""
23 #define JSON_CONTENT_TYPE "text/plain"
24 #define MAX_MSGS_PER_PACKET 256
25 #define CACHE_TIME 300
26
27 #define OSRF_HTTP_HEADER_TO "X-OpenSRF-to"
28 #define OSRF_HTTP_HEADER_XID "X-OpenSRF-xid"
29 #define OSRF_HTTP_HEADER_FROM "X-OpenSRF-from"
30 #define OSRF_HTTP_HEADER_THREAD "X-OpenSRF-thread"
31 #define OSRF_HTTP_HEADER_TIMEOUT "X-OpenSRF-timeout"
32 #define OSRF_HTTP_HEADER_SERVICE "X-OpenSRF-service"
33 #define OSRF_HTTP_HEADER_MULTIPART "X-OpenSRF-multipart"
34
35 char* configFile = DEFAULT_TRANSLATOR_CONFIG_FILE;
36 char* configCtx = DEFAULT_TRANSLATOR_CONFIG_CTX;
37 char* cacheServers = DEFAULT_TRANSLATOR_CACHE_SERVERS;
38
39 char* routerName = NULL;
40 char* domainName = NULL;
41 int osrfConnected = 0;
42 char recipientBuf[128];
43 char contentTypeBuf[80];
44
45 // for development only, writes to apache error log
46 static void _dbg(char* s, ...) {
47     VA_LIST_TO_STRING(s);
48     fprintf(stderr, "%s\n", VA_BUF);
49     fflush(stderr);
50 }
51
52 // Translator struct
53 typedef struct {
54     request_rec* apreq;
55     transport_client* handle;
56     osrfList* messages;
57     char* body;
58     char* delim;
59     const char* recipient;
60     const char* service;
61     const char* thread;
62     const char* remoteHost;
63     int complete;
64     int timeout;
65     int multipart;
66     int connectOnly; // there is only 1 message, a CONNECT
67     int disconnectOnly; // there is only 1 message, a DISCONNECT
68     int connecting; // there is a connect message in this batch
69     int disconnecting; // there is a connect message in this batch
70     int localXid;
71 } osrfHttpTranslator;
72
73
74 static const char* osrfHttpTranslatorGetConfigFile(cmd_parms *parms, void *config, const char *arg) {
75     configFile = (char*) arg;
76         return NULL;
77 }
78 static const char* osrfHttpTranslatorGetConfigFileCtx(cmd_parms *parms, void *config, const char *arg) {
79     configCtx = (char*) arg;
80         return NULL;
81 }
82 static const char* osrfHttpTranslatorGetCacheServer(cmd_parms *parms, void *config, const char *arg) {
83     cacheServers = (char*) arg;
84         return NULL;
85 }
86
87 /** set up the configuratoin handlers */
88 static const command_rec osrf_json_gateway_cmds[] = {
89         AP_INIT_TAKE1( OSRF_TRANSLATOR_CONFIG_FILE, osrfHttpTranslatorGetConfigFile,
90                         NULL, RSRC_CONF, "osrf translator config file"),
91         AP_INIT_TAKE1( OSRF_TRANSLATOR_CONFIG_CTX, osrfHttpTranslatorGetConfigFileCtx,
92                         NULL, RSRC_CONF, "osrf translator config file context"),
93         AP_INIT_TAKE1( OSRF_TRANSLATOR_CACHE_SERVER, osrfHttpTranslatorGetCacheServer,
94                         NULL, RSRC_CONF, "osrf translator cache server"),
95     {NULL}
96 };
97
98
99 // there can only be one, so use a global static one
100 static osrfHttpTranslator globalTranslator;
101
102 /*
103  * Constructs a new translator object based on the current apache 
104  * request_rec.  Reads the request body and headers.
105  */
106 static osrfHttpTranslator* osrfNewHttpTranslator(request_rec* apreq) {
107     osrfHttpTranslator* trans = &globalTranslator;
108     trans->apreq = apreq;
109     trans->complete = 0;
110     trans->connectOnly = 0;
111     trans->disconnectOnly = 0;
112     trans->connecting = 0;
113     trans->disconnecting = 0;
114     trans->remoteHost = apreq->connection->remote_ip;
115     trans->messages = NULL;
116
117     /* load the message body */
118         osrfStringArray* params = apacheParseParms(apreq);
119     trans->body = apacheGetFirstParamValue(params, "osrf-msg");
120     osrfStringArrayFree(params);
121
122     /* load the request headers */
123     if (apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_XID)) // force our log xid to match the caller
124             osrfLogForceXid(strdup(apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_XID)));
125
126     trans->handle = osrfSystemGetTransportClient();
127     trans->recipient = apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_TO);
128     trans->service = apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_SERVICE);
129     trans->thread = apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_THREAD); /* XXX create thread if necessary */
130
131     const char* timeout = apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_TIMEOUT);
132     if(timeout) 
133         trans->timeout = atoi(timeout);
134     else 
135         trans->timeout = DEFAULT_TRANSLATOR_TIMEOUT;
136
137     const char* multipart = apr_table_get(apreq->headers_in, OSRF_HTTP_HEADER_MULTIPART);
138     if(multipart && !strcasecmp(multipart, "true"))
139         trans->multipart = 1;
140     else
141         trans->multipart = 0;
142
143     char buf[32];
144     snprintf(buf, sizeof(buf), "%d%ld", getpid(), time(NULL));
145     trans->delim = md5sum(buf);
146
147     return trans;
148 }
149
150 static void osrfHttpTranslatorFree(osrfHttpTranslator* trans) {
151     if(!trans) return;
152     if(trans->body)
153         free(trans->body);
154     if(trans->delim)
155         free(trans->delim);
156     osrfListFree(trans->messages);
157 }
158
159 static void osrfHttpTranslatorDebug(osrfHttpTranslator* trans) {
160     _dbg("-----------------------------------");
161     _dbg("body = %s", trans->body);
162     _dbg("service = %s", trans->service);
163     _dbg("thread = %s", trans->thread);
164     _dbg("multipart = %d", trans->multipart);
165     _dbg("recipient = %s", trans->recipient);
166 }
167
168 /**
169  * Determines the correct recipient address based on the requested 
170  * service or recipient address.  
171  */
172 static int osrfHttpTranslatorSetTo(osrfHttpTranslator* trans) {
173     int stat = 0;
174     jsonObject* sessionCache = NULL;
175
176     if(trans->service) {
177         if(trans->recipient) {
178             osrfLogError(OSRF_LOG_MARK, "Specifying both SERVICE and TO are not allowed");
179
180         } else {
181             // service is specified, build a recipient address 
182             // from the router, domain, and service
183             int size = snprintf(recipientBuf, 128, "%s@%s/%s", routerName, domainName, trans->service);
184             recipientBuf[size] = '\0';
185             osrfLogDebug(OSRF_LOG_MARK, "Set recipient to %s", recipientBuf);
186             trans->recipient = recipientBuf;
187             stat = 1;
188         }
189
190     } else {
191
192         if(trans->recipient) {
193             sessionCache = osrfCacheGetObject(trans->thread);
194
195             if(sessionCache) {
196                 char* ipAddr = jsonObjectGetString(jsonObjectGetKey(sessionCache, "ip"));
197                 char* recipient = jsonObjectGetString(jsonObjectGetKey(sessionCache, "jid"));
198
199                 // choosing a specific recipient address requires that the recipient and 
200                 // thread be cached on the server (so drone processes cannot be hijacked)
201                 if(!strcmp(ipAddr, trans->remoteHost) && !strcmp(recipient, trans->recipient)) {
202                     osrfLogDebug(OSRF_LOG_MARK, "Found cached session from host %s and recipient %s", 
203                         trans->remoteHost, trans->recipient);
204                     stat = 1;
205                     trans->service = jsonObjectGetString(jsonObjectGetKey(sessionCache, "service"));
206
207                 } else {
208                     osrfLogError(OSRF_LOG_MARK, 
209                         "Session cache for thread %s does not match request", trans->thread);
210                 }
211             }  else {
212                 osrfLogError(OSRF_LOG_MARK, 
213                     "attempt to send directly to %s without a session", trans->recipient);
214             }
215         } else {
216             osrfLogError(OSRF_LOG_MARK, "No SERVICE or RECIPIENT defined");
217         } 
218     }
219
220     jsonObjectFree(sessionCache);
221     return stat;
222 }
223
224 /**
225  * Parses the request body and logs any REQUEST messages to the activity log
226  */
227 static int osrfHttpTranslatorParseRequest(osrfHttpTranslator* trans) {
228     osrfMessage* msg;
229     osrfMessage* msgList[MAX_MSGS_PER_PACKET];
230     int numMsgs = osrf_message_deserialize(trans->body, msgList, MAX_MSGS_PER_PACKET);
231     osrfLogDebug(OSRF_LOG_MARK, "parsed %d opensrf messages in this packet", numMsgs);
232
233     if(numMsgs == 0)
234         return 0;
235
236     if(numMsgs == 1) {
237         msg = msgList[0];
238         if(msg->m_type == CONNECT) {
239             trans->connectOnly = 1;
240             return 1;
241         }
242         if(msg->m_type == DISCONNECT) {
243             trans->disconnectOnly = 1;
244             return 1;
245         }
246     }
247
248     // log request messages to the activity log
249     int i;
250     for(i = 0; i < numMsgs; i++) {
251         msg = msgList[i];
252
253         switch(msg->m_type) {
254
255             case REQUEST: {
256                 jsonObject* params = msg->_params;
257                 growing_buffer* act = buffer_init(128); 
258                 buffer_fadd(act, "[%s] [%s] %s %s", trans->remoteHost, "", trans->service, msg->method_name);
259
260                 char* str; 
261                 int i = 0;
262                 while((str = jsonObjectGetString(jsonObjectGetIndex(params, i++)))) {
263                     if( i == 1 )
264                         OSRF_BUFFER_ADD(act, " ");
265                     else 
266                         OSRF_BUFFER_ADD(act, ", ");
267                     OSRF_BUFFER_ADD(act, str);
268                 }
269                 osrfLogActivity(OSRF_LOG_MARK, act->buf);
270                 buffer_free(act);
271                 break;
272             }
273
274             case CONNECT:
275                 trans->connecting = 1;
276                 break;
277
278             case DISCONNECT:
279                 trans->disconnecting = 1;
280                 break;
281         }
282     }
283
284     return 1;
285 }
286
287 static int osrfHttpTranslatorCheckStatus(osrfHttpTranslator* trans, transport_message* msg) {
288     osrfMessage* omsgList[MAX_MSGS_PER_PACKET];
289     int numMsgs = osrf_message_deserialize(msg->body, omsgList, MAX_MSGS_PER_PACKET);
290     osrfLogDebug(OSRF_LOG_MARK, "parsed %d response messages", numMsgs);
291     if(numMsgs == 0) return 0;
292
293     osrfMessage* last = omsgList[numMsgs-1];
294     if(last->m_type == STATUS) {
295         if(last->status_code == OSRF_STATUS_TIMEOUT) {
296             osrfLogDebug(OSRF_LOG_MARK, "removing cached session on request timeout");
297             osrfCacheRemove(trans->thread);
298             return 0;
299         }
300         // XXX hm, check for explicit status=COMPLETE message instead??
301         if(last->status_code != OSRF_STATUS_CONTINUE)
302             trans->complete = 1;
303     }
304
305     return 1;
306 }
307
308 static void osrfHttpTranslatorInitHeaders(osrfHttpTranslator* trans, transport_message* msg) {
309     apr_table_set(trans->apreq->headers_out, OSRF_HTTP_HEADER_FROM, msg->sender);
310     apr_table_set(trans->apreq->headers_out, OSRF_HTTP_HEADER_THREAD, trans->thread);
311     if(trans->multipart) {
312         sprintf(contentTypeBuf, MULTIPART_CONTENT_TYPE, trans->delim);
313         contentTypeBuf[79] = '\0';
314         osrfLogDebug(OSRF_LOG_MARK, "content type %s : %s : %s", MULTIPART_CONTENT_TYPE, trans->delim, contentTypeBuf);
315             ap_set_content_type(trans->apreq, contentTypeBuf);
316         ap_rprintf(trans->apreq, "--%s\n", trans->delim);
317     } else {
318             ap_set_content_type(trans->apreq, JSON_CONTENT_TYPE);
319     }
320 }
321
322 /**
323  * Cache the transaction with the JID of the backend process we are talking to
324  */
325 static void osrfHttpTranslatorCacheSession(osrfHttpTranslator* trans, const char* jid) {
326     jsonObject* cacheObj = jsonNewObject(NULL);
327     jsonObjectSetKey(cacheObj, "ip", jsonNewObject(trans->remoteHost));
328     jsonObjectSetKey(cacheObj, "jid", jsonNewObject(jid));
329     jsonObjectSetKey(cacheObj, "service", jsonNewObject(trans->service));
330     osrfCachePutObject((char*) trans->thread, cacheObj, CACHE_TIME);
331 }
332
333            
334 /**
335  * Writes a single chunk of multipart/x-mixed-replace content
336  */
337 static void osrfHttpTranslatorWriteChunk(osrfHttpTranslator* trans, transport_message* msg) {
338     osrfLogInternal(OSRF_LOG_MARK, "sending multipart chunk %s", msg->body);
339     ap_rprintf(trans->apreq, 
340         "Content-type: %s\n\n%s\n\n", JSON_CONTENT_TYPE, msg->body);
341     //osrfLogInternal(OSRF_LOG_MARK, "Apache sending data: Content-type: %s\n\n%s\n\n", JSON_CONTENT_TYPE, msg->body);
342     if(trans->complete) {
343         ap_rprintf(trans->apreq, "--%s--\n", trans->delim);
344         //osrfLogInternal(OSRF_LOG_MARK, "Apache sending data: --%s--\n", trans->delim);
345     } else {
346         ap_rprintf(trans->apreq, "--%s\n", trans->delim);
347         //osrfLogInternal(OSRF_LOG_MARK, "Apache sending data: --%s\n", trans->delim);
348     }
349     ap_rflush(trans->apreq);
350 }
351
352 static int osrfHttpTranslatorProcess(osrfHttpTranslator* trans) {
353     if(trans->body == NULL)
354         return HTTP_BAD_REQUEST;
355
356     if(!osrfHttpTranslatorSetTo(trans))
357         return HTTP_BAD_REQUEST;
358
359     if(!osrfHttpTranslatorParseRequest(trans))
360         return HTTP_BAD_REQUEST;
361
362     while(client_recv(trans->handle, 0))
363         continue; // discard any old status messages in the recv queue
364
365     // send the message to the recipient
366     transport_message* tmsg = message_init(
367         trans->body, NULL, trans->thread, trans->recipient, NULL);
368     message_set_osrf_xid(tmsg, osrfLogGetXid());
369     client_send_message(trans->handle, tmsg);
370     message_free(tmsg); 
371
372     if(trans->disconnectOnly) {
373         osrfLogDebug(OSRF_LOG_MARK, "exiting early on disconnect");
374         osrfCacheRemove(trans->thread);
375         return OK;
376     }
377
378     // process the response from the opensrf service
379     int firstWrite = 1;
380     while(!trans->complete) {
381         transport_message* msg = client_recv(trans->handle, trans->timeout);
382
383         if(trans->handle->error) {
384             osrfLogError(OSRF_LOG_MARK, "Transport error");
385             osrfCacheRemove(trans->thread);
386             return HTTP_INTERNAL_SERVER_ERROR;
387         }
388
389         if(msg == NULL)
390             return HTTP_GATEWAY_TIME_OUT;
391
392         if(msg->is_error) {
393             osrfLogError(OSRF_LOG_MARK, "XMPP message resulted in error code %d", msg->error_code);
394             osrfCacheRemove(trans->thread);
395             return HTTP_NOT_FOUND;
396         }
397
398         if(!osrfHttpTranslatorCheckStatus(trans, msg))
399             continue;
400
401         if(firstWrite) {
402             osrfHttpTranslatorInitHeaders(trans, msg);
403             if(trans->connecting)
404                 osrfHttpTranslatorCacheSession(trans, msg->sender);
405             firstWrite = 0;
406         }
407
408         if(trans->multipart) {
409             osrfHttpTranslatorWriteChunk(trans, msg);
410             if(trans->connectOnly)
411                 break;
412         } else {
413             if(!trans->messages)
414                 trans->messages = osrfNewList();
415             osrfListPush(trans->messages, msg->body);
416
417             if(trans->complete || trans->connectOnly) {
418                 growing_buffer* buf = buffer_init(128);
419                 int i;
420                 OSRF_BUFFER_ADD(buf, osrfListGetIndex(trans->messages, 0));
421                 for(i = 1; i < trans->messages->size; i++) {
422                     buffer_chomp(buf); // chomp off the closing array bracket
423                     char* body = osrfListGetIndex(trans->messages, i);
424                     char newbuf[strlen(body)];
425                     sprintf(newbuf, body+1); // chomp off the opening array bracket
426                     OSRF_BUFFER_ADD_CHAR(buf, ',');
427                     OSRF_BUFFER_ADD(buf, newbuf);
428                 }
429                 
430                 ap_rputs(buf->buf, trans->apreq);
431                 buffer_free(buf);
432             }
433         }
434     }
435
436     if(trans->disconnecting) // DISCONNECT within a multi-message batch
437         osrfCacheRemove(trans->thread);
438
439     return OK;
440 }
441
442 static void testConnection(request_rec* r) {
443         if(!osrfConnected || !osrfSystemGetTransportClient()) {
444         osrfLogError(OSRF_LOG_MARK, "We're not connected to OpenSRF");
445                 ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, "We're not connected to OpenSRF");
446                 usleep(100000); // .1 second to prevent process die/start overload
447                 exit(1);
448         }
449 }
450
451 // it's dead, Jim
452 static apr_status_t childExit(void* data) {
453     osrf_system_shutdown();
454     return OK;
455 }
456
457 static void childInit(apr_pool_t *p, server_rec *s) {
458         if(!osrfSystemBootstrapClientResc(configFile, configCtx, "translator")) {
459                 ap_log_error( APLOG_MARK, APLOG_ERR, 0, s, 
460                         "Unable to Bootstrap OpenSRF Client with config %s..", configFile);
461                 return;
462         }
463
464     routerName = osrfConfigGetValue(NULL, "/router_name");
465     domainName = osrfConfigGetValue(NULL, "/domain");
466     const char* servers[] = {cacheServers};
467     osrfCacheInit(servers, 1, 86400);
468         osrfConnected = 1;
469
470     // at pool destroy time (= child exit time), cleanup
471     // XXX causes us to disconnect even for clone()'d process cleanup (as in mod_cgi)
472     //apr_pool_cleanup_register(p, NULL, childExit, apr_pool_cleanup_null);
473 }
474
475 static int handler(request_rec *r) {
476     int stat = OK;
477         if(strcmp(r->handler, MODULE_NAME)) return DECLINED;
478     if(r->header_only) return stat;
479
480         r->allowed |= (AP_METHOD_BIT << M_GET);
481         r->allowed |= (AP_METHOD_BIT << M_POST);
482
483         osrfLogSetAppname("osrf_http_translator");
484     testConnection(r);
485
486     osrfHttpTranslator* trans = osrfNewHttpTranslator(r);
487         osrfLogMkXid();
488     if(trans->body) {
489         stat = osrfHttpTranslatorProcess(trans);
490         //osrfHttpTranslatorDebug(trans);
491         osrfLogInfo(OSRF_LOG_MARK, "translator resulted in status %d", stat);
492     } else {
493         osrfLogWarning(OSRF_LOG_MARK, "no message body to process");
494     }
495     osrfHttpTranslatorFree(trans);
496         return stat;
497 }
498
499
500 static void registerHooks (apr_pool_t *p) {
501         ap_hook_handler(handler, NULL, NULL, APR_HOOK_MIDDLE);
502         ap_hook_child_init(childInit, NULL, NULL, APR_HOOK_MIDDLE);
503 }
504
505
506 module AP_MODULE_DECLARE_DATA osrf_http_translator_module = {
507         STANDARD20_MODULE_STUFF,
508     NULL,
509         NULL,
510     NULL,
511         NULL,
512     NULL,
513         registerHooks,
514 };
515
516
517
518