Real syslog support for trust router
[trust_router.git] / tid / tids.c
1 /*
2  * Copyright (c) 2012, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
25  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
26  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
29  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
31  * OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  */
34
35 #include <assert.h>
36 #include <stdlib.h>
37 #include <unistd.h>
38 #include <string.h>
39 #include <stdio.h>
40 #include <errno.h>
41 #include <sys/socket.h>
42 #include <sys/wait.h>
43 #include <netinet/in.h>
44 #include <jansson.h>
45 #include <talloc.h>
46 #include <tid_internal.h>
47 #include <gsscon.h>
48 #include <tr_debug.h>
49 #include <tr_msg.h>
50
51 static TID_RESP *tids_create_response (TIDS_INSTANCE *tids, TID_REQ *req) 
52 {
53   TID_RESP *resp;
54
55   if ((NULL == (resp = talloc_zero(req, TID_RESP)))) {
56     tr_crit("tids_create_response: Error allocating response structure.");
57     return NULL;
58   }
59   
60   resp->result = TID_SUCCESS; /* presume success */
61   if ((NULL == (resp->rp_realm = tr_dup_name(req->rp_realm))) ||
62       (NULL == (resp->realm = tr_dup_name(req->realm))) ||
63       (NULL == (resp->comm = tr_dup_name(req->comm)))) {
64     tr_crit("tids_create_response: Error allocating fields in response.");
65     return NULL;
66   }
67   if (req->orig_coi) {
68     if (NULL == (resp->orig_coi = tr_dup_name(req->orig_coi))) {
69       tr_crit("tids_create_response: Error allocating fields in response.");
70       return NULL;
71     }
72   }
73   return resp;
74 }
75
76 static void tids_destroy_response(TIDS_INSTANCE *tids, TID_RESP *resp) 
77 {
78   if (resp) {
79     if (resp->err_msg)
80       tr_free_name(resp->err_msg);
81     if (resp->rp_realm)
82       tr_free_name(resp->rp_realm);
83     if (resp->realm)
84       tr_free_name(resp->realm);
85     if (resp->comm)
86       tr_free_name(resp->comm);
87     if (resp->orig_coi)
88       tr_free_name(resp->orig_coi);
89     talloc_free(resp);
90   }
91 }
92
93 static int tids_listen (TIDS_INSTANCE *tids, int port) 
94 {
95     int rc = 0;
96     int conn = -1;
97     int optval = 1;
98
99     union {
100       struct sockaddr_storage storage;
101       struct sockaddr_in in4;
102     } addr;
103
104     struct sockaddr_in *saddr = (struct sockaddr_in *) &addr.in4;
105
106     saddr->sin_port = htons (port);
107     saddr->sin_family = AF_INET;
108     saddr->sin_addr.s_addr = INADDR_ANY;
109
110     if (0 > (conn = socket (AF_INET, SOCK_STREAM, 0)))
111       return conn;
112
113     setsockopt(conn, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval));
114
115     if (0 > (rc = bind (conn, (struct sockaddr *) saddr, sizeof(struct sockaddr_in))))
116       return rc;
117
118     if (0 > (rc = listen(conn, 512)))
119       return rc;
120
121     tr_debug("tids_listen: TID Server listening on port %d", port);
122     return conn;
123 }
124
125 static int tids_auth_cb(gss_name_t clientName, gss_buffer_t displayName,
126                         void *data)
127 {
128   struct tids_instance *inst = (struct tids_instance *) data;
129   TR_NAME name ={(char *) displayName->value,
130                  displayName->length};
131   return inst->auth_handler(clientName, &name, inst->cookie);
132 }
133
134 static int tids_auth_connection (struct tids_instance *inst,
135                                  int conn, gss_ctx_id_t *gssctx)
136 {
137   int rc = 0;
138   int auth, autherr = 0;
139   gss_buffer_desc nameBuffer = {0, NULL};
140   char *name = 0;
141   int nameLen = 0;
142
143   nameLen = asprintf(&name, "trustidentity@%s", inst->hostname);
144   nameBuffer.length = nameLen;
145   nameBuffer.value = name;
146   
147   if (rc = gsscon_passive_authenticate(conn, nameBuffer, gssctx, tids_auth_cb, inst)) {
148     tr_debug("tids_auth_connection: Error from gsscon_passive_authenticate(), rc = %d.", rc);
149     return -1;
150   }
151
152   if (rc = gsscon_authorize(*gssctx, &auth, &autherr)) {
153     tr_debug("tids_auth_connection: Error from gsscon_authorize, rc = %d, autherr = %d.", 
154             rc, autherr);
155     return -1;
156   }
157
158   if (auth)
159     tr_debug("tids_auth_connection: Connection authenticated, conn = %d.", conn);
160   else
161     tr_debug("tids_auth_connection: Authentication failed, conn %d.", conn);
162
163   return !auth;
164 }
165
166 static int tids_read_request (TIDS_INSTANCE *tids, int conn, gss_ctx_id_t *gssctx, TR_MSG **mreq)
167 {
168   int err;
169   char *buf;
170   size_t buflen = 0;
171
172   if (err = gsscon_read_encrypted_token(conn, *gssctx, &buf, &buflen)) {
173     if (buf)
174       free(buf);
175     return -1;
176   }
177
178   tr_debug("tids_read_request():Request Received, %u bytes.", (unsigned) buflen);
179
180   /* Parse request */
181   if (NULL == ((*mreq) = tr_msg_decode(buf, buflen))) {
182     tr_debug("tids_read_request():Error decoding request.");
183     free (buf);
184     return -1;
185   }
186
187   /* If this isn't a TID Request, just drop it. */
188   if (TID_REQUEST != (*mreq)->msg_type) {
189     tr_debug("tids_read_request(): Not a TID Request, dropped.");
190     return -1;
191   }
192
193   free (buf);
194   return buflen;
195 }
196
197 static int tids_handle_request (TIDS_INSTANCE *tids, TR_MSG *mreq, TID_RESP *resp) 
198 {
199   int rc;
200
201   /* Check that this is a valid TID Request.  If not, send an error return. */
202   if ((!tr_msg_get_req(mreq)) ||
203       (!tr_msg_get_req(mreq)->rp_realm) ||
204       (!tr_msg_get_req(mreq)->realm) ||
205       (!tr_msg_get_req(mreq)->comm)) {
206     tr_notice("tids_handle_request(): Not a valid TID Request.");
207     resp->result = TID_ERROR;
208     resp->err_msg = tr_new_name("Bad request format");
209     return -1;
210   }
211
212   /* Call the caller's request handler */
213   /* TBD -- Handle different error returns/msgs */
214   if (0 > (rc = (*tids->req_handler)(tids, tr_msg_get_req(mreq), resp, tids->cookie))) {
215     /* set-up an error response */
216     resp->result = TID_ERROR;
217     if (!resp->err_msg) /* Use msg set by handler, if any */
218       resp->err_msg = tr_new_name("Internal processing error");
219   }
220   else {
221     /* set-up a success response */
222     resp->result = TID_SUCCESS;
223     resp->err_msg = NULL;       /* No error msg on successful return */
224   }
225     
226   return rc;
227 }
228
229 int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg) {
230   TID_RESP *resp = NULL;
231   int rc = 0;
232
233   /* If we already sent a response, don't send another no matter what. */
234   if (req->resp_sent)
235     return 0;
236
237   if (NULL == (resp = tids_create_response(tids, req))) {
238     tr_crit("tids_send_err_response: Can't create response.");
239     return -1;
240   }
241
242   /* mark this as an error response, and include the error message */
243   resp->result = TID_ERROR;
244   resp->err_msg = tr_new_name((char *)err_msg);
245
246   rc = tids_send_response(tids, req, resp);
247   
248   tids_destroy_response(tids, resp);
249   return rc;
250 }
251
252 int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp)
253 {
254   int err;
255   TR_MSG mresp;
256   char *resp_buf;
257
258   if ((!tids) || (!req) || (!resp))
259     tr_debug("tids_send_response: Invalid parameters.");
260
261   /* Never send a second response if we already sent one. */
262   if (req->resp_sent)
263     return 0;
264
265   mresp.msg_type = TID_RESPONSE;
266   tr_msg_set_resp(&mresp, resp);
267
268   if (NULL == (resp_buf = tr_msg_encode(&mresp))) {
269
270     fprintf(stderr, "tids_send_response: Error encoding json response.\n");
271     tr_audit_req(req);
272
273     return -1;
274   }
275
276   tr_debug("tids_send_response: Encoded response: %s", resp_buf);
277
278   /* If external logging is enabled, fire off a message */
279   /* TODO Can be moved to end once segfault in gsscon_write_encrypted_token fixed */
280   tr_audit_resp(resp);
281
282   /* Send the response over the connection */
283   if (err = gsscon_write_encrypted_token (req->conn, req->gssctx, resp_buf, 
284                                           strlen(resp_buf) + 1)) {
285     tr_notice("tids_send_response: Error sending response over connection.");
286
287     tr_audit_req(req);
288
289     return -1;
290   }
291
292   /* indicate that a response has been sent for this request */
293   req->resp_sent = 1;
294
295   free(resp_buf);
296
297   return 0;
298 }
299
300 static void tids_handle_connection (TIDS_INSTANCE *tids, int conn)
301 {
302   TR_MSG *mreq = NULL;
303   TID_RESP *resp = NULL;
304   int rc = 0;
305   gss_ctx_id_t gssctx = GSS_C_NO_CONTEXT;
306
307   if (tids_auth_connection(tids, conn, &gssctx)) {
308     tr_notice("tids_handle_connection: Error authorizing TID Server connection.");
309     close(conn);
310     return;
311   }
312
313   tr_debug("tids_handle_connection: Connection authorized!");
314
315   while (1) {   /* continue until an error breaks us out */
316
317     if (0 > (rc = tids_read_request(tids, conn, &gssctx, &mreq))) {
318       tr_debug("tids_handle_connection: Error from tids_read_request(), rc = %d.", rc);
319       return;
320     } else if (0 == rc) {
321       continue;
322     }
323
324     /* Put connection information into the request structure */
325     tr_msg_get_req(mreq)->conn = conn;
326     tr_msg_get_req(mreq)->gssctx = gssctx;
327
328     /* Allocate a response structure and populate common fields */
329     if (NULL == (resp = tids_create_response (tids, tr_msg_get_req(mreq)))) {
330       tr_crit("tids_handle_connection: Error creating response structure.");
331       /* try to send an error */
332       tids_send_err_response(tids, tr_msg_get_req(mreq), "Error creating response.");
333       return;
334     }
335
336     if (0 > (rc = tids_handle_request(tids, mreq, resp))) {
337       tr_debug("tids_handle_connection: Error from tids_handle_request(), rc = %d.", rc);
338       /* Fall through, to send the response, either way */
339     }
340
341     if (0 > (rc = tids_send_response(tids, tr_msg_get_req(mreq), resp))) {
342       tr_debug("tids_handle_connection: Error from tids_send_response(), rc = %d.", rc);
343       /* if we didn't already send a response, try to send a generic error. */
344       if (!tr_msg_get_req(mreq)->resp_sent)
345         tids_send_err_response(tids, tr_msg_get_req(mreq), "Error sending response.");
346       /* Fall through to free the response, either way. */
347     }
348     
349     tids_destroy_response(tids, resp);
350     return;
351   } 
352 }
353
354 TIDS_INSTANCE *tids_create (void)
355 {
356   TIDS_INSTANCE *tids = NULL;
357   if (tids = malloc(sizeof(TIDS_INSTANCE)))
358     memset(tids, 0, sizeof(TIDS_INSTANCE));
359   return tids;
360 }
361
362 int tids_start (TIDS_INSTANCE *tids, 
363                 TIDS_REQ_FUNC *req_handler,
364                 tids_auth_func *auth_handler,
365                 const char *hostname,
366                 unsigned int port,
367                 void *cookie)
368 {
369   int listen = -1;
370   int conn = -1;
371   pid_t pid;
372
373   if (0 > (listen = tids_listen(tids, port)))
374     perror ("Error from tids_listen()");
375
376   /* store the caller's request handler & cookie */
377   tids->req_handler = req_handler;
378   tids->auth_handler = auth_handler;
379   tids->hostname = hostname;
380   tids->cookie = cookie;
381
382   tr_info("Trust Path Query Server starting on host %s:%d.", hostname, port);
383
384   while(1) {    /* accept incoming conns until we are stopped */
385
386     if (0 > (conn = accept(listen, NULL, NULL))) {
387       perror("Error from TIDS Server accept()");
388       return 1;
389     }
390
391     if (0 > (pid = fork())) {
392       perror("Error on fork()");
393       return 1;
394     }
395
396     if (pid == 0) {
397       close(listen);
398       tids_handle_connection(tids, conn);
399       close(conn);
400       return 0;
401     } else {
402       close(conn);
403     }
404
405     /* clean up any processes that have completed */
406     while (waitpid(-1, 0, WNOHANG) > 0);
407   }
408
409   return 1;     /* should never get here, loops "forever" */
410 }
411
412 void tids_destroy (TIDS_INSTANCE *tids)
413 {
414   /* clean up logfiles */
415   tr_log_close();
416
417   if (tids)
418     free(tids);
419 }