Add some audit messages to be logged
[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     fprintf(stderr, "tids_create_response: Error allocating response structure.\n");
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     fprintf(stderr, "tids_create_response: Error allocating fields in response.\n");
65     return NULL;
66   }
67   if (req->orig_coi) {
68     if (NULL == (resp->orig_coi = tr_dup_name(req->orig_coi))) {
69       fprintf(stderr, "tids_create_response: Error allocating fields in response.\n");
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     fprintf (stdout, "tids_listen: TID Server listening on port %d\n", 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     fprintf(stderr, "tids_auth_connection: Error from gsscon_passive_authenticate(), rc = %d.\n", rc);
149     return -1;
150   }
151
152   if (rc = gsscon_authorize(*gssctx, &auth, &autherr)) {
153     fprintf(stderr, "tids_auth_connection: Error from gsscon_authorize, rc = %d, autherr = %d.\n", 
154             rc, autherr);
155     return -1;
156   }
157
158   if (auth)
159     fprintf(stdout, "tids_auth_connection: Connection authenticated, conn = %d.\n", conn);
160   else
161     fprintf(stderr, "tids_auth_connection: Authentication failed, conn %d.\n", 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   fprintf(stdout, "tids_read_request():Request Received, %u bytes.\n", (unsigned) buflen);
179
180   /* Parse request */
181   if (NULL == ((*mreq) = tr_msg_decode(buf, buflen))) {
182     fprintf(stderr, "tids_read_request():Error decoding request.\n");
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     fprintf(stderr, "tids_read_request(): Not a TID Request, dropped.\n");
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     fprintf(stderr, "tids_handle_request():Not a valid TID Request.\n");
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     fprintf(stderr, "tids_send_err_response: Can't create response.\n");
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     fprintf (stderr, "tids_send_response: Invalid parameters.\n");
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     fprintf(stderr, "tids_send_response: Error encoding json response.\n");
270     tr_audit_req(req);
271
272     return -1;
273   }
274
275   fprintf(stderr, "tids_send_response: Encoded response:\n%s\n", resp_buf);
276   
277   /* If external logging is enabled, fire off a message */
278   /* TODO Can be moved to end once segfault in gsscon_write_encrypted_token fixed */
279   tr_audit_resp(resp);
280
281   /* Send the response over the connection */
282   if (err = gsscon_write_encrypted_token (req->conn, req->gssctx, resp_buf, 
283                                           strlen(resp_buf) + 1)) {
284     fprintf(stderr, "tids_send_response: Error sending response over connection.\n");
285
286     tr_audit_req(req);
287
288     return -1;
289   }
290
291   /* indicate that a response has been sent for this request */
292   req->resp_sent = 1;
293
294   free(resp_buf);
295
296   return 0;
297 }
298
299 static void tids_handle_connection (TIDS_INSTANCE *tids, int conn)
300 {
301   TR_MSG *mreq = NULL;
302   TID_RESP *resp = NULL;
303   int rc = 0;
304   gss_ctx_id_t gssctx = GSS_C_NO_CONTEXT;
305
306   if (tids_auth_connection(tids, conn, &gssctx)) {
307     fprintf(stderr, "tids_handle_connection: Error authorizing TID Server connection.\n");
308     close(conn);
309     return;
310   }
311
312   fprintf(stdout, "tids_handle_connection: Connection authorized!\n");
313
314   while (1) {   /* continue until an error breaks us out */
315
316     if (0 > (rc = tids_read_request(tids, conn, &gssctx, &mreq))) {
317       fprintf(stderr, "tids_handle_connection: Error from tids_read_request(), rc = %d.\n", rc);
318       return;
319     } else if (0 == rc) {
320       continue;
321     }
322
323     /* Put connection information into the request structure */
324     tr_msg_get_req(mreq)->conn = conn;
325     tr_msg_get_req(mreq)->gssctx = gssctx;
326
327     /* Allocate a response structure and populate common fields */
328     if (NULL == (resp = tids_create_response (tids, tr_msg_get_req(mreq)))) {
329       fprintf(stderr, "tids_handle_connection: Error creating response structure.\n");
330       /* try to send an error */
331       tids_send_err_response(tids, tr_msg_get_req(mreq), "Error creating response.\n");
332       return;
333     }
334
335     if (0 > (rc = tids_handle_request(tids, mreq, resp))) {
336       fprintf(stderr, "tids_handle_connection: Error from tids_handle_request(), rc = %d.\n", rc);
337       /* Fall through, to send the response, either way */
338     }
339
340     if (0 > (rc = tids_send_response(tids, tr_msg_get_req(mreq), resp))) {
341       fprintf(stderr, "tids_handle_connection: Error from tids_send_response(), rc = %d.\n", rc);
342       /* if we didn't already send a response, try to send a generic error. */
343       if (!tr_msg_get_req(mreq)->resp_sent)
344         tids_send_err_response(tids, tr_msg_get_req(mreq), "Error sending response.\n");
345       /* Fall through to free the response, either way. */
346     }
347     
348     tids_destroy_response(tids, resp);
349     return;
350   } 
351 }
352
353 TIDS_INSTANCE *tids_create (void)
354 {
355   TIDS_INSTANCE *tids = NULL;
356   if (tids = malloc(sizeof(TIDS_INSTANCE)))
357     memset(tids, 0, sizeof(TIDS_INSTANCE));
358   return tids;
359 }
360
361 int tids_start (TIDS_INSTANCE *tids, 
362                 TIDS_REQ_FUNC *req_handler,
363                 tids_auth_func *auth_handler,
364                 const char *hostname,
365                 unsigned int port,
366                 void *cookie)
367 {
368   int listen = -1;
369   int conn = -1;
370   pid_t pid;
371
372   if (0 > (listen = tids_listen(tids, port)))
373     perror ("Error from tids_listen()");
374
375   /* store the caller's request handler & cookie */
376   tids->req_handler = req_handler;
377   tids->auth_handler = auth_handler;
378   tids->hostname = hostname;
379   tids->cookie = cookie;
380
381   tr_info("Trust Path Query Server starting on host %s:%d.", hostname, port);
382
383   while(1) {    /* accept incoming conns until we are stopped */
384
385     if (0 > (conn = accept(listen, NULL, NULL))) {
386       perror("Error from TIDS Server accept()");
387       return 1;
388     }
389
390     if (0 > (pid = fork())) {
391       perror("Error on fork()");
392       return 1;
393     }
394
395     if (pid == 0) {
396       close(listen);
397       tids_handle_connection(tids, conn);
398       close(conn);
399       return 0;
400     } else {
401       close(conn);
402     }
403
404     /* clean up any processes that have completed */
405     while (waitpid(-1, 0, WNOHANG) > 0);
406   }
407
408   return 1;     /* should never get here, loops "forever" */
409 }
410
411 void tids_destroy (TIDS_INSTANCE *tids)
412 {
413   /* close syslog connection if syslog is enabled */
414   tr_log_close();
415
416   if (tids)
417     free(tids);
418 }
419
420