Changes to add realm name (from config) to end of service name for passive authentica...
[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   gss_buffer_desc nameBuffer = {NULL, 0};
138
139
140   if (rc = gsscon_passive_authenticate(conn, nameBuffer, gssctx, tids_auth_cb, inst)) {
141     fprintf(stderr, "tids_auth_connection: Error from gsscon_passive_authenticate(), rc = %d.\n", rc);
142     return -1;
143   }
144
145   if (rc = gsscon_authorize(*gssctx, &auth, &autherr)) {
146     fprintf(stderr, "tids_auth_connection: Error from gsscon_authorize, rc = %d, autherr = %d.\n", 
147             rc, autherr);
148     return -1;
149   }
150
151   if (auth)
152     fprintf(stdout, "tids_auth_connection: Connection authenticated, conn = %d.\n", conn);
153   else
154     fprintf(stderr, "tids_auth_connection: Authentication failed, conn %d.\n", conn);
155
156   return !auth;
157 }
158
159 static int tids_read_request (TIDS_INSTANCE *tids, int conn, gss_ctx_id_t *gssctx, TR_MSG **mreq)
160 {
161   int err;
162   char *buf;
163   size_t buflen = 0;
164
165   if (err = gsscon_read_encrypted_token(conn, *gssctx, &buf, &buflen)) {
166     if (buf)
167       free(buf);
168     return -1;
169   }
170
171   fprintf(stdout, "tids_read_request():Request Received, %u bytes.\n", (unsigned) buflen);
172
173   /* Parse request */
174   if (NULL == ((*mreq) = tr_msg_decode(buf, buflen))) {
175     fprintf(stderr, "tids_read_request():Error decoding request.\n");
176     free (buf);
177     return -1;
178   }
179
180   /* If this isn't a TID Request, just drop it. */
181   if (TID_REQUEST != (*mreq)->msg_type) {
182     fprintf(stderr, "tids_read_request(): Not a TID Request, dropped.\n");
183     return -1;
184   }
185
186   free (buf);
187   return buflen;
188 }
189
190 static int tids_handle_request (TIDS_INSTANCE *tids, TR_MSG *mreq, TID_RESP **resp) 
191 {
192   int rc;
193
194   /* Check that this is a valid TID Request.  If not, send an error return. */
195   if ((!mreq->tid_req) ||
196       (!mreq->tid_req->rp_realm) ||
197       (!mreq->tid_req->realm) ||
198       (!mreq->tid_req->comm)) {
199     fprintf(stderr, "tids_handle_request():Not a valid TID Request.\n");
200     (*resp)->result = TID_ERROR;
201     (*resp)->err_msg = tr_new_name("Bad request format");
202     return -1;
203   }
204
205   /* Call the caller's request handler */
206   /* TBD -- Handle different error returns/msgs */
207   if (0 > (rc = (*tids->req_handler)(tids, mreq->tid_req, &(*resp), tids->cookie))) {
208     /* set-up an error response */
209     (*resp)->result = TID_ERROR;
210     if (!(*resp)->err_msg)      /* Use msg set by handler, if any */
211       (*resp)->err_msg = tr_new_name("Internal processing error");
212   }
213   else {
214     /* set-up a success response */
215     (*resp)->result = TID_SUCCESS;
216     (*resp)->err_msg = NULL;    /* No error msg on successful return */
217   }
218     
219   return rc;
220 }
221
222 int tids_send_err_response (TIDS_INSTANCE *tids, TID_REQ *req, const char *err_msg) {
223   TID_RESP *resp = NULL;
224   int rc = 0;
225
226   /* If we already sent a response, don't send another no matter what. */
227   if (req->resp_sent)
228     return 0;
229
230   if (NULL == (resp = tids_create_response(tids, req))) {
231     fprintf(stderr, "tids_send_err_response: Can't create response.\n");
232     return -1;
233   }
234
235   /* mark this as an error response, and include the error message */
236   resp->result = TID_ERROR;
237   resp->err_msg = tr_new_name((char *)err_msg);
238
239   rc = tids_send_response(tids, req, resp);
240   
241   tids_destroy_response(tids, resp);
242   return rc;
243 }
244
245 int tids_send_response (TIDS_INSTANCE *tids, TID_REQ *req, TID_RESP *resp)
246 {
247   int err;
248   TR_MSG mresp;
249   char *resp_buf;
250
251   if ((!tids) || (!req) || (!resp))
252     fprintf (stderr, "tids_send_response: Invalid parameters.\n");
253
254   /* Never send a second response if we already sent one. */
255   if (req->resp_sent)
256     return 0;
257
258   mresp.msg_type = TID_RESPONSE;
259   mresp.tid_resp = resp;
260   
261   if (NULL == (resp_buf = tr_msg_encode(&mresp))) {
262     fprintf(stderr, "tids_send_response: Error encoding json response.\n");
263     return -1;
264   }
265
266   fprintf(stderr, "tids_send_response: Encoded response:\n%s\n", resp_buf);
267   
268   /* Send the response over the connection */
269   if (err = gsscon_write_encrypted_token (req->conn, req->gssctx, resp_buf, 
270                                           strlen(resp_buf) + 1)) {
271     fprintf(stderr, "tids_send_response: Error sending response over connection.\n");
272     return -1;
273   }
274
275   /* indicate that a response has been sent for this request */
276   req->resp_sent = 1;
277
278   free(resp_buf);
279
280   return 0;
281 }
282
283 static void tids_handle_connection (TIDS_INSTANCE *tids, int conn)
284 {
285   TR_MSG *mreq = NULL;
286   TID_RESP *resp = NULL;
287   int rc = 0;
288   gss_ctx_id_t gssctx = GSS_C_NO_CONTEXT;
289
290   if (tids_auth_connection(tids, conn, &gssctx)) {
291     fprintf(stderr, "tids_handle_connection: Error authorizing TID Server connection.\n");
292     close(conn);
293     return;
294   }
295
296   fprintf(stdout, "tids_handle_connection: Connection authorized!\n");
297
298   while (1) {   /* continue until an error breaks us out */
299
300     if (0 > (rc = tids_read_request(tids, conn, &gssctx, &mreq))) {
301       fprintf(stderr, "tids_handle_connection: Error from tids_read_request(), rc = %d.\n", rc);
302       return;
303     } else if (0 == rc) {
304       continue;
305     }
306
307     /* Put connection information into the request structure */
308     mreq->tid_req->conn = conn;
309     mreq->tid_req->gssctx = gssctx;
310
311     /* Allocate a response structure and populate common fields */
312     if (NULL == (resp = tids_create_response (tids, mreq->tid_req))) {
313       fprintf(stderr, "tids_handle_connection: Error creating response structure.\n");
314       /* try to send an error */
315       tids_send_err_response(tids, mreq->tid_req, "Error creating response.\n");
316       return;
317     }
318
319     if (0 > (rc = tids_handle_request(tids, mreq, &resp))) {
320       fprintf(stderr, "tids_handle_connection: Error from tids_handle_request(), rc = %d.\n", rc);
321       /* Fall through, to send the response, either way */
322     }
323
324     if (0 > (rc = tids_send_response(tids, mreq->tid_req, resp))) {
325       fprintf(stderr, "tids_handle_connection: Error from tids_send_response(), rc = %d.\n", rc);
326       /* if we didn't already send a response, try to send a generic error. */
327       if (!mreq->tid_req->resp_sent)
328         tids_send_err_response(tids, mreq->tid_req, "Error sending response.\n");
329       /* Fall through to free the response, either way. */
330     }
331     
332     tids_destroy_response(tids, resp);
333     return;
334   } 
335 }
336
337 TIDS_INSTANCE *tids_create (void)
338 {
339   TIDS_INSTANCE *tids = NULL;
340   if (tids = malloc(sizeof(TIDS_INSTANCE)))
341     memset(tids, 0, sizeof(TIDS_INSTANCE));
342   return tids;
343 }
344
345 int tids_start (TIDS_INSTANCE *tids, 
346                 TIDS_REQ_FUNC *req_handler,
347                 tids_auth_func *auth_handler,
348                 void *cookie)
349 {
350   int listen = -1;
351   int conn = -1;
352   pid_t pid;
353
354   if (0 > (listen = tids_listen(tids, TID_PORT)))
355     perror ("Error from tids_listen()");
356
357   /* store the caller's request handler & cookie */
358   tids->req_handler = req_handler;
359   tids->auth_handler = auth_handler;
360   tids->cookie = cookie;
361
362   while(1) {    /* accept incoming conns until we are stopped */
363
364     if (0 > (conn = accept(listen, NULL, NULL))) {
365       perror("Error from TIDS Server accept()");
366       return 1;
367     }
368
369     if (0 > (pid = fork())) {
370       perror("Error on fork()");
371       return 1;
372     }
373
374     if (pid == 0) {
375       close(listen);
376       tids_handle_connection(tids, conn);
377       close(conn);
378       return 0;
379     } else {
380       close(conn);
381     }
382   }
383
384   return 1;     /* should never get here */
385 }
386
387 void tids_destroy (TIDS_INSTANCE *tids)
388 {
389   if (tids)
390     free(tids);
391 }
392
393