summaryrefslogtreecommitdiff
path: root/server/src/server.cc
blob: 4283a11402d0356fd89dddbe4091240ec6a578ea (plain)
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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            server.cc
 *
 *  Wed Aug 22 12:16:03 CEST 2007
 *  Copyright 2007 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of Pracro.
 *
 *  Pracro is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  Pracro is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Pracro; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "server.h"

#include <config.h>

#include "tcpsocket.h"
#include <errno.h>

#include <stdlib.h>

// For fork
#include <sys/types.h>
#include <unistd.h>
#include <string.h>

#include <microhttpd.h>

#include "configuration.h"
#include "transaction.h"
#include "transactionparser.h"
#include "database.h"
#include "log.h"
#include "environment.h"
#include "transactionhandler.h"
#include "connectionpool.h"
#include "session.h"
#include "xml_encode_decode.h"

static std::string error_box(std::string message)
{
  std::string errorbox =
    "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
    "<pracro version=\"1.0\">\n"
    "  <error>" + message + "</error>\n"
    "</pracro>\n";
  return errorbox;
}

static std::string handleConnection(const std::string &data,
                                    Environment &env,
                                    std::string &sessionid,
                                    bool sessioncommit)
{
  std::string res;

  Session *session = NULL;
  if(sessionid == "") {
    session = env.sessions.newSession();
  } else {
    session = env.sessions.session(sessionid);
    if(session == NULL) session = env.sessions.newSession();
  }

  if(session == NULL) {
    PRACRO_ERR(server, "New session could not be created.");
    return error_box(xml_encode("New session could not be created."));
  }

  sessionid = session->id();

  {
    SessionAutolock lock(*session);

    if(data.length()) {
      Transaction transaction;
      TransactionParser parser(&transaction);
      
      if(!parser.parse(data.c_str(), data.length())) {
        PRACRO_ERR(server, "Failed to parse data!\n");
        PRACRO_ERR(server, "DATA:[[%s]]\n", data.c_str());
        res = error_box(xml_encode("XML Parse error."));
      } else {
        res = handleTransaction(transaction, env, *session);
      }
    }

  }

  if(sessioncommit) {
    session->commit();
    env.sessions.deleteSession(session->id());
  }

  return res;
}

struct condata {
  std::map<std::string, std::string> headers;
  std::string data;
  size_t data_size;
  std::string url;
  std::string method;
  std::string version;
};

//static std::map<struct MHD_Connection *, struct condata> condata;

static int handle_request_callback(void *cls,
                                   struct MHD_Connection *con,
                                   const char *url,
                                   const char *method,
                                   const char *version,
                                   const char *data,
                                   unsigned int *data_size,
                                   void **con_cls)
{
  PRACRO_DEBUG(httpd, "handle_request_callback con:%p condata:%p\n",
               con, *con_cls);

  // Test for new connection
  if(*con_cls == NULL) {
    PRACRO_DEBUG(httpd,
                 "handle_request(url=\"%s\", method=\"%s\","
                 " version=\"%s\", data_size=\"%d\")\n",
                 url, method, version, *data_size);

    struct condata *cd = new struct condata;
    cd->url = url;
    cd->method = method;
    cd->version = version;
    cd->data_size = 0;
    cd->data = "";

    const char *sid = MHD_lookup_connection_value(con, MHD_HEADER_KIND,
                                                  "SessionID");
    if(sid) cd->headers["SessionID"] = sid;

    const char *scm = MHD_lookup_connection_value(con, MHD_HEADER_KIND,
                                                  "SessionCommit");
    if(scm) cd->headers["SessionCommit"] = scm;

    const char *csz = MHD_lookup_connection_value(con, MHD_HEADER_KIND,
                                                  "Content-Length");
    if(csz) {
      cd->headers["Content-Length"] = csz;
      cd->data_size = atol(csz);
      PRACRO_DEBUG(httpd, "Content-Length: %s (%d)\n", csz, cd->data_size);
    }

    *con_cls = cd;
  }

  struct condata *cd = (struct condata*)*con_cls;
  cd->data.append(data, *data_size);

  int ret = MHD_YES;

  PRACRO_DEBUG(httpd, "Waiting for %d bytes of data. Got %d (total %d)\n",
               cd->data_size, *data_size, cd->data.length());

  if(cd->data.length() >= cd->data_size) {

    Environment *env = (Environment *)cls;

    const char *sid = MHD_lookup_connection_value(con, MHD_HEADER_KIND,
                                                  "SessionID");
    std::string sessionid;
    if(sid) sessionid = sid;
    
    const char *sessioncommit =
      MHD_lookup_connection_value(con, MHD_HEADER_KIND, "SessionCommit");
    
    PRACRO_DEBUG(httpd, "Starting to handle SessionID: %s%s\n",
                 sessionid.c_str(),
                 sessioncommit != NULL?" COMMIT":"");
    
    PRACRO_DEBUG(httpd, "Data: [%s]\n", cd->data.c_str());
    
    std::string reply =
      handleConnection(cd->data, *env, sessionid, sessioncommit != NULL);
    
    struct MHD_Response *rsp =
      MHD_create_response_from_data(reply.length(), (char*)reply.c_str(),
                                    MHD_NO, MHD_YES);
    MHD_add_response_header(rsp, MHD_HTTP_HEADER_CONTENT_TYPE,
                            "text/plain; charset=UTF-8");
    
    if(sessionid != "") {
      MHD_add_response_header(rsp, "SessionID", sessionid.c_str());
    }
    
    ret = MHD_queue_response(con, MHD_HTTP_OK, rsp);
    MHD_destroy_response(rsp);
    
    PRACRO_DEBUG(httpd, "Finished handling SessionID: %s%s\n",
                 sessionid.c_str(),
                 sessioncommit != NULL?" COMMIT":"");


    delete cd;
    *con_cls = NULL;

  }

  *data_size = 0;

  return ret;
}

void requestCompletedCallback(void *cls,
                              struct MHD_Connection *con,
                              void **con_cls,
                              enum MHD_RequestTerminationCode toe)
{
  PRACRO_DEBUG(httpd, "requestCompletedCallback %p\n", con);

  // If connection was interrupted prematurely delete the content data here.
  if(*con_cls) {
    struct condata *cd = (struct condata*)*con_cls;
    delete cd;
    *con_cls = NULL;
  }
}

static void httpderr(void *arg, const char *fmt, va_list ap)
{
  PRACRO_ERR_VA(server, fmt, ap);
}

extern bool pracro_is_running;
void server()
{
  srand(time(NULL));

  bool forceshutdown = false;
  port_t port = Conf::server_port;

  int flags = MHD_USE_DEBUG | MHD_USE_SELECT_INTERNALLY;
  // | MHD_USE_PEDANTIC_CHECKS
#ifndef WITHOUT_SSL
  if(Conf::use_ssl) flags |= MHD_USE_SSL;
#endif

  PRACRO_DEBUG(server, "Server running on port %d.\n", port);

  Environment env;

  struct MHD_Daemon *d;
  d = MHD_start_daemon(flags, port, NULL, NULL,
                       handle_request_callback, &env,
                       MHD_OPTION_NOTIFY_COMPLETED,
                          requestCompletedCallback, NULL,
                       MHD_OPTION_CONNECTION_LIMIT, Conf::connection_limit,
#ifndef WITHOUT_SSL
                       MHD_OPTION_HTTPS_MEM_KEY, Conf::ssl_key.c_str(),
                       MHD_OPTION_HTTPS_MEM_CERT, Conf::ssl_cert.c_str(),
#endif
                       MHD_OPTION_CONNECTION_TIMEOUT, Conf::connection_timeout,
                       MHD_OPTION_EXTERNAL_LOGGER, httpderr, NULL,
                       MHD_OPTION_END);

  if(!d) {
    PRACRO_ERR(server, "Failed to initialise MHD_start_daemon!\n");
    return;
  }
 again:
  while(pracro_is_running) sleep(1);

  if(!forceshutdown && env.sessions.size() != 0) {
    char *errbuf;
    if(asprintf(&errbuf, "There are %d live sessions."
                " Kill again to force shutdown.\n",
                env.sessions.size()) != -1) {
      PRACRO_ERR_LOG(server, "%s", errbuf);
      log(errbuf);
      free(errbuf);
    }
    pracro_is_running = true;
    forceshutdown = true;
    goto again;
  }

  MHD_stop_daemon(d);

  PRACRO_DEBUG(server, "Server gracefully shut down.\n");
}


#ifdef TEST_SERVER

#include <sys/types.h>
#include <signal.h>

bool pracro_is_running = true;

char request[] = 
  "<?xml version='1.0' encoding='UTF-8'?>\n"
  "<pracro cpr=\"2003791613\" version=\"1.0\">\n"
  "  <request macro=\"example\" template=\"example\"/>\n"
  "</pracro>\n";

int main()
{
  Conf::xml_basedir = "../xml/";
  // Make sure wo don't interrupt an already running server.
  Conf::server_port = 32100;
  Conf::database_backend = "testdb";
  pid_t pid = fork();

  switch(pid) {
  case -1: // error
    perror("fork() failed!\n");
    return 1;
    
  case 0: // child
    try {
      server();
    } catch(Exception &e) {
      printf(e.what());
      return 1;
    }
    return 0;
    
  default: // parent
    try {
      //      sleep(1); // Make sure the server is started.
      TCPSocket socket;
      socket.connect("localhost", Conf::server_port);
      
      socket.write(request);

      //      sleep(1); // Make sure the server has handled the request.
      char buf[32];
      memset(buf, 0, sizeof(buf));
      //      while(socket.read(buf, 31, 1000)) {
      while(socket.read(buf, 31, 1000000)) {
        printf(buf); fflush(stdout);
        memset(buf, 0, sizeof(buf));
      }
    } catch(Exception &e) {
      printf(e.what());
      kill(pid, SIGKILL); // Kill the server again.
      return 1;
    }
    kill(pid, SIGKILL); // Kill the server again.
    return 0;
  }
  
  return 1;
}

#endif/*TEST_SERVER*/