tid: implement GSS name callback
[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 <netinet/in.h>
43 #include <jansson.h>
44
45 #include <trust_router/tid.h>
46 #include <gsscon.h>
47 #include <tr_msg.h>
48
49 static TID_RESP *tids_create_response (TIDS_INSTANCE *tids, TID_REQ *req) 
50 {
51   TID_RESP *resp;
52
53   if ((NULL == (resp = calloc(sizeof(TID_RESP), 1)))) {
54     fprintf(stderr, "tids_create_response: Error allocating response structure.\n");
55     return NULL;
56   }
57   
58   resp->result = TID_SUCCESS; /* presume success */
59   if ((NULL == (resp->rp_realm = tr_dup_name(req->rp_realm))) ||
60       (NULL == (resp->realm = tr_dup_name(req->realm))) ||
61       (NULL == (resp->comm = tr_dup_name(req->comm)))) {
62     fprintf(stderr, "tids_create_response: Error allocating fields in response.\n");
63     return NULL;
64   }
65   if (req->orig_coi) {
66     if (NULL == (resp->orig_coi = tr_dup_name(req->orig_coi))) {
67       fprintf(stderr, "tids_create_response: Error allocating fields in response.\n");
68       return NULL;
69     }
70   }
71   return resp;
72 }
73
74 static void tids_destroy_response(TIDS_INSTANCE *tids, TID_RESP *resp) 
75 {
76   if (resp) {
77     if (resp->err_msg)
78       tr_free_name(resp->err_msg);
79     if (resp->rp_realm)
80       tr_free_name(resp->rp_realm);
81     if (resp->realm)
82       tr_free_name(resp->realm);
83     if (resp->comm)
84       tr_free_name(resp->comm);
85     if (resp->orig_coi)
86       tr_free_name(resp->orig_coi);
87     free (resp);
88   }
89 }
90
91 static int tids_listen (TIDS_INSTANCE *tids, int port) 
92 {
93     int rc = 0;
94     int conn = -1;
95     int optval = 1;
96
97     union {
98       struct sockaddr_storage storage;
99       struct sockaddr_in in4;
100     } addr;
101
102     struct sockaddr_in *saddr = (struct sockaddr_in *) &addr.in4;
103     
104     saddr->sin_port = htons (port);
105     saddr->sin_family = AF_INET;
106     saddr->sin_addr.s_addr = INADDR_ANY;
107
108     if (0 > (conn = socket (AF_INET, SOCK_STREAM, 0)))
109       return conn;
110         
111     setsockopt(conn, SOL_SOCKET, SO_REUSEADDR, &optval, sizeof(optval));
112
113     if (0 > (rc = bind (conn, (struct sockaddr *) saddr, sizeof(struct sockaddr_in))))
114       return rc;
115         
116     if (0 > (rc = listen(conn, 512)))
117       return rc;
118     
119     fprintf (stdout, "tids_listen: TID Server listening on port %d\n", port);
120     return conn; 
121 }
122
123 static int tids_auth_cb(gss_name_t clientName, gss_buffer_t displayName,
124                         void *data)
125 {
126   struct tids_instance *inst = (struct tids_instance *) data;
127   TR_NAME name ={(char *) displayName->value,
128                  displayName->length};
129   return inst->auth_handler(clientName, &name, inst->cookie);
130 }
131
132 static int tids_auth_connection (struct tids_instance *inst,
133                                  int conn, gss_ctx_id_t *gssctx)
134 {
135   int rc = 0;
136   int auth, autherr = 0;
137
138   if (rc = gsscon_passive_authenticate(conn, gssctx, tids_auth_cb, inst)) {
139     fprintf(stderr, "tids_auth_connection: Error from gsscon_passive_authenticate(), rc = %d.\n", rc);
140     return -1;
141   }
142
143   if (rc = gsscon_authorize(*gssctx, &auth, &autherr)) {
144     fprintf(stderr, "tids_auth_connection: Error from gsscon_authorize, rc = %d, autherr = %d.\n", 
145             rc, autherr);
146     return -1;
147   }
148
149   if (auth)
150     fprintf(stdout, "tids_auth_connection: Connection authenticated, conn = %d.\n", conn);
151   else
152     fprintf(stderr, "tids_auth_connection: Authentication failed, conn %d.\n", conn);
153
154   return !auth;
155 }
156
157 static int tids_read_request (TIDS_INSTANCE *tids, int conn, gss_ctx_id_t *gssctx, TR_MSG **mreq)
158 {
159   int err;
160   char *buf;
161   size_t buflen = 0;
162
163   if (err = gsscon_read_encrypted_token(conn, *gssctx, &buf, &buflen)) {
164     if (buf)
165       free(buf);
166     return -1;
167   }
168
169   fprintf(stdout, "tids_read_request():Request Received, %u bytes.\n", (unsigned) buflen);
170
171   /* Parse request */
172   if (NULL == ((*mreq) = tr_msg_decode(buf, buflen))) {
173     fprintf(stderr, "tids_read_request():Error decoding request.\n");
174     free (buf);
175     return -1;
176   }
177
178   /* If this isn't a TID Request, just drop it. */
179   if (TID_REQUEST != (*mreq)->msg_type) {
180     fprintf(stderr, "tids_read_request(): Not a TID Request, dropped.\n");
181     return -1;
182   }
183
184   free (buf);
185   return buflen;
186 }
187
188 static int tids_handle_request (TIDS_INSTANCE *tids, TR_MSG *mreq, TID_RESP **resp) 
189 {
190   int rc;
191
192   /* Check that this is a valid TID Request.  If not, send an error return. */
193   if ((!mreq->tid_req) ||
194       (!mreq->tid_req->rp_realm) ||
195       (!mreq->tid_req->realm) ||
196       (!mreq->tid_req->comm)) {
197     fprintf(stderr, "tids_handle_request():Not a valid TID Request.\n");
198     (*resp)->result = TID_ERROR;
199     (*resp)->err_msg = tr_new_name("Bad request format");
200     return -1;
201   }
202
203   /* Call the caller's request handler */
204   /* TBD -- Handle different error returns/msgs */
205   if (0 > (rc = (*tids->req_handler)(tids, mreq->tid_req, &(*resp), tids->cookie))) {
206     /* set-up an error response */
207     (*resp)->result = TID_ERROR;
208     if (!(*resp)->err_msg)      /* Use msg set by handler, if any */
209       (*resp)->err_msg = tr_new_name("Internal processing error");
210   }
211   else {
212     /* set-up a success response */
213     (*resp)->result = TID_SUCCESS;
214     (*resp)->err_msg = NULL;    /* No error msg on successful return */
215   }
216     
217   return rc;
218 }
219
220 int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg) {
221   TID_RESP *resp = NULL;
222   int rc = 0;
223
224   /* If we already sent a response, don't send another no matter what. */
225   if (req->resp_sent)
226     return 0;
227
228   if (NULL == (resp = tids_create_response(tids, req))) {
229     fprintf(stderr, "tids_send_err_response: Can't create response.\n");
230     return -1;
231   }
232
233   /* mark this as an error response, and include the error message */
234   resp->result = TID_ERROR;
235   resp->err_msg = tr_new_name((char *)err_msg);
236
237   rc = tids_send_response(tids, req, resp);
238   
239   tids_destroy_response(tids, resp);
240   return rc;
241 }
242
243 int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp)
244 {
245   int err;
246   TR_MSG mresp;
247   char *resp_buf;
248
249   if ((!tids) || (!req) || (!resp))
250     fprintf (stderr, "tids_send_response: Invalid parameters.\n");
251
252   /* Never send a second response if we already sent one. */
253   if (req->resp_sent)
254     return 0;
255
256   mresp.msg_type = TID_RESPONSE;
257   mresp.tid_resp = resp;
258   
259   if (NULL == (resp_buf = tr_msg_encode(&mresp))) {
260     fprintf(stderr, "tids_send_response: Error encoding json response.\n");
261     return -1;
262   }
263
264   fprintf(stderr, "tids_send_response: Encoded response:\n%s\n", resp_buf);
265   
266   /* Send the response over the connection */
267   if (err = gsscon_write_encrypted_token (req->conn, req->gssctx, resp_buf, 
268                                           strlen(resp_buf) + 1)) {
269     fprintf(stderr, "tids_send_response: Error sending response over connection.\n");
270     return -1;
271   }
272
273   /* indicate that a response has been sent for this request */
274   req->resp_sent = 1;
275
276   free(resp_buf);
277
278   return 0;
279 }
280
281 static void tids_handle_connection (TIDS_INSTANCE *tids, int conn)
282 {
283   TR_MSG *mreq = NULL;
284   TID_RESP *resp = NULL;
285   int rc = 0;
286   gss_ctx_id_t gssctx = GSS_C_NO_CONTEXT;
287
288   if (tids_auth_connection(tids, conn, &gssctx)) {
289     fprintf(stderr, "tids_handle_connection: Error authorizing TID Server connection.\n");
290     close(conn);
291     return;
292   }
293
294   fprintf(stdout, "tids_handle_connection: Connection authorized!\n");
295
296   while (1) {   /* continue until an error breaks us out */
297
298     if (0 > (rc = tids_read_request(tids, conn, &gssctx, &mreq))) {
299       fprintf(stderr, "tids_handle_connection: Error from tids_read_request(), rc = %d.\n", rc);
300       return;
301     } else if (0 == rc) {
302       continue;
303     }
304
305     /* Put connection information into the request structure */
306     mreq->tid_req->conn = conn;
307     mreq->tid_req->gssctx = gssctx;
308
309     /* Allocate a response structure and populate common fields */
310     if (NULL == (resp = tids_create_response (tids, mreq->tid_req))) {
311       fprintf(stderr, "tids_handle_connection: Error creating response structure.\n");
312       /* try to send an error */
313       tids_send_err_response(tids, mreq->tid_req, "Error creating response.\n");
314       return;
315     }
316
317     if (0 > (rc = tids_handle_request(tids, mreq, &resp))) {
318       fprintf(stderr, "tids_handle_connection: Error from tids_handle_request(), rc = %d.\n", rc);
319       /* Fall through, to send the response, either way */
320     }
321
322     if (0 > (rc = tids_send_response(tids, mreq->tid_req, resp))) {
323       fprintf(stderr, "tids_handle_connection: Error from tids_send_response(), rc = %d.\n", rc);
324       /* if we didn't already send a response, try to send a generic error. */
325       if (!mreq->tid_req->resp_sent)
326         tids_send_err_response(tids, mreq->tid_req, "Error sending response.\n");
327       /* Fall through to free the response, either way. */
328     }
329     
330     tids_destroy_response(tids, resp);
331     return;
332   } 
333 }
334
335 TIDS_INSTANCE *tids_create (void)
336 {
337   TIDS_INSTANCE *tids = NULL;
338   if (tids = malloc(sizeof(TIDS_INSTANCE)))
339     memset(tids, 0, sizeof(TIDS_INSTANCE));
340   return tids;
341 }
342
343 int tids_start (TIDS_INSTANCE *tids, 
344                 TIDS_REQ_FUNC *req_handler,
345                 tids_auth_func *auth_handler,
346                 void *cookie)
347 {
348   int listen = -1;
349   int conn = -1;
350   pid_t pid;
351
352   if (0 > (listen = tids_listen(tids, TID_PORT)))
353     perror ("Error from tids_listen()");
354
355   /* store the caller's request handler & cookie */
356   tids->req_handler = req_handler;
357   tids->auth_handler = auth_handler;
358   tids->cookie = cookie;
359
360   while(1) {    /* accept incoming conns until we are stopped */
361
362     if (0 > (conn = accept(listen, NULL, NULL))) {
363       perror("Error from TIDS Server accept()");
364       return 1;
365     }
366
367     if (0 > (pid = fork())) {
368       perror("Error on fork()");
369       return 1;
370     }
371
372     if (pid == 0) {
373       close(listen);
374       tids_handle_connection(tids, conn);
375       close(conn);
376       exit(0);
377     } else {
378       close(conn);
379     }
380   }
381
382   return 1;     /* should never get here */
383 }
384
385 void tids_destroy (TIDS_INSTANCE *tids)
386 {
387   if (tids)
388     free(tids);
389 }
390
391