Updates to the way configuration is merged.
[trust_router.git] / gsscon / gsscon_passive.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  * This code was adapted from the MIT Kerberos Consortium's
34  * GSS example code, which was distributed under the following
35  * license:
36  *
37  * Copyright 2004-2006 Massachusetts Institute of Technology.
38  * All Rights Reserved.
39  *
40  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
41  * distribute this software and its documentation for any purpose and
42  * without fee is hereby granted, provided that the above copyright
43  * notice appear in all copies and that both that copyright notice and
44  * this permission notice appear in supporting documentation, and that
45  * the name of M.I.T. not be used in advertising or publicity pertaining
46  * to distribution of the software without specific, written prior
47  * permission.  Furthermore if you modify this software you must label
48  * your software as modified software and not distribute it in such a
49  * fashion that it might be confused with the original M.I.T. software.
50  * M.I.T. makes no representations about the suitability of
51  * this software for any purpose.  It is provided "as is" without express
52  * or implied warranty.
53  */
54
55 #include <gsscon.h>
56
57 const char *gServiceName = NULL;
58
59 int gsscon_passive_authenticate (int           inSocket, 
60                          gss_ctx_id_t *outGSSContext)
61 {
62     int err = 0;
63     OM_uint32 majorStatus;
64     OM_uint32 minorStatus = 0;
65     gss_ctx_id_t gssContext = GSS_C_NO_CONTEXT;
66     
67     char *inputTokenBuffer = NULL;
68     size_t inputTokenBufferLength = 0;
69     gss_buffer_desc inputToken;  /* buffer received from the server */
70     
71     if (inSocket <  0 ) { err = EINVAL; }
72     if (!outGSSContext) { err = EINVAL; }
73     
74     /* 
75      * The main authentication loop:
76      *
77      * GSS is a multimechanism API.  The number of packet exchanges required to  
78      * authenticatevaries between mechanisms.  As a result, we need to loop reading 
79      * input tokens from the client, calling gss_accept_sec_context on the input 
80      * tokens and send the resulting output tokens back to the client until we 
81      * get GSS_S_COMPLETE or an error.
82      *
83      * When we are done, save the client principal so we can make authorization 
84      * checks.
85      */
86     
87     majorStatus = GSS_S_CONTINUE_NEEDED;
88     while (!err && (majorStatus != GSS_S_COMPLETE)) {
89         /* Clean up old input buffer */
90         if (inputTokenBuffer != NULL) {
91             free (inputTokenBuffer);
92             inputTokenBuffer = NULL;  /* don't double-free */
93         }
94         
95         err = gsscon_read_token (inSocket, &inputTokenBuffer, &inputTokenBufferLength);
96         
97         if (!err) {
98             /* Set up input buffers for the next run through the loop */
99             inputToken.value = inputTokenBuffer;
100             inputToken.length = inputTokenBufferLength;
101         }
102         
103         if (!err) {
104             /* buffer to send to the server */
105             gss_buffer_desc outputToken = { 0, NULL }; 
106             
107             /*
108              * accept_sec_context does the actual work of taking the client's 
109              * request and generating an appropriate reply.  Note that we pass 
110              * GSS_C_NO_CREDENTIAL for the service principal.  This causes the 
111              * server to accept any service principal in the server's keytab, 
112              * which enables you to support multihomed hosts by having one key 
113              * in the keytab for each host identity the server responds on.  
114              *
115              * However, since we may have more keys in the keytab than we want 
116              * the server to actually use, we will need to check which service 
117              * principal the client used after authentication succeeds.  See 
118              * ServicePrincipalIsValidForService() for where you would put these 
119              * checks.  We don't check here since if we stopped responding in the 
120              * middle of the authentication negotiation, the client would get an 
121              * EOF, and the user wouldn't know what went wrong.
122              */
123             
124             // printf ("Calling gss_accept_sec_context...\n");
125             majorStatus = gss_accept_sec_context (&minorStatus, 
126                                                   &gssContext, 
127                                                   GSS_C_NO_CREDENTIAL, 
128                                                   &inputToken, 
129                                                   GSS_C_NO_CHANNEL_BINDINGS, 
130                                                   NULL /* client_name */, 
131                                                   NULL /* actual_mech_type */, 
132                                                   &outputToken, 
133                                                   NULL /* req_flags */, 
134                                                   NULL /* time_rec */, 
135                                                   NULL /* delegated_cred_handle */);
136             
137             if ((outputToken.length > 0) && (outputToken.value != NULL)) {
138                 /* Send the output token to the client (even on error) */
139                 err = gsscon_write_token (inSocket, outputToken.value, outputToken.length);
140                 
141                 /* free the output token */
142                 gss_release_buffer (&minorStatus, &outputToken);
143             }
144         }
145         
146         if ((majorStatus != GSS_S_COMPLETE) && (majorStatus != GSS_S_CONTINUE_NEEDED)) {
147             gsscon_print_gss_errors ("gss_accept_sec_context", majorStatus, minorStatus);
148             err = minorStatus ? minorStatus : majorStatus; 
149         }            
150     }
151     
152     if (!err) { 
153         *outGSSContext = gssContext;
154         gssContext = NULL;
155     } else {
156         gsscon_print_error (err, "Authenticate failed");
157     }
158     
159     if (inputTokenBuffer) { free (inputTokenBuffer); }
160     if (gssContext != GSS_C_NO_CONTEXT) { 
161         gss_delete_sec_context (&minorStatus, &gssContext, GSS_C_NO_BUFFER); }
162         
163     return err;
164 }
165
166 /* --------------------------------------------------------------------------- */
167
168 static int ServicePrincipalIsValidForService (const char *inServicePrincipal)
169 {
170     int err = 0;
171     krb5_context context = NULL;
172     krb5_principal principal = NULL;
173     
174     if (!inServicePrincipal) { err = EINVAL; }
175     
176     if (!err) {
177         err = krb5_init_context (&context);
178     }
179     
180     if (!err) {
181         err = krb5_parse_name (context, inServicePrincipal, &principal);
182     }
183     
184     if (!err) {
185         /* 
186          * Here is where we check to see if the service principal the client 
187          * used is valid.  Typically we would just check that the first component 
188          * is the name of the service provided by the server.  This check exists
189          * to make sure the server is using the correct key in its keytab since
190          * we passed GSS_C_NO_CREDENTIAL into gss_accept_sec_context().
191          */
192         if (gServiceName && strcmp (gServiceName, 
193                                     krb5_princ_name (context, principal)->data) != 0) {
194             err = KRB5KRB_AP_WRONG_PRINC;
195         }
196     }
197     
198     if (principal) { krb5_free_principal (context, principal); }
199     if (context  ) { krb5_free_context (context); }
200     
201     return err;
202 }
203
204
205 /* --------------------------------------------------------------------------- */
206
207 static int ClientPrincipalIsAuthorizedForService (const char *inClientPrincipal)
208 {
209     int err = 0;
210         /* 
211          * Here is where the server checks to see if the client principal should 
212          * be allowed to use your service. Typically it should check both the name 
213          * and the realm, since with cross-realm shared keys, a user at another 
214          * realm may be trying to contact your service.  
215          */
216         err = 0;
217
218     
219     
220     return err;
221 }
222
223 /* --------------------------------------------------------------------------- */
224
225 int gsscon_authorize (gss_ctx_id_t  inContext, 
226                       int          *outAuthorized, 
227                       int          *outAuthorizationError)
228 {
229     int err = 0;
230     OM_uint32 majorStatus;
231     OM_uint32 minorStatus = 0;
232     gss_name_t clientName = NULL;
233     gss_name_t serviceName = NULL;
234     char *clientPrincipal = NULL;
235     char *servicePrincipal = NULL;
236
237     if (!inContext            ) { err = EINVAL; }
238     if (!outAuthorized        ) { err = EINVAL; }
239     if (!outAuthorizationError) { err = EINVAL; }
240     
241     if (!err) {
242         /* Get the client and service principals used to authenticate */
243         majorStatus = gss_inquire_context (&minorStatus, 
244                                            inContext, 
245                                            &clientName, 
246                                            &serviceName, 
247                                            NULL, NULL, NULL, NULL, NULL);
248         if (majorStatus != GSS_S_COMPLETE) { 
249             err = minorStatus ? minorStatus : majorStatus; 
250         }
251     }
252     
253     if (!err) {
254         /* Pull the client principal string out of the gss name */
255         gss_buffer_desc nameToken;
256         
257         majorStatus = gss_display_name (&minorStatus, 
258                                         clientName, 
259                                         &nameToken, 
260                                         NULL);
261         if (majorStatus != GSS_S_COMPLETE) { 
262             err = minorStatus ? minorStatus : majorStatus; 
263         }
264         
265         if (!err) {
266             clientPrincipal = malloc (nameToken.length + 1);
267             if (clientPrincipal == NULL) { err = ENOMEM; }
268         }
269         
270         if (!err) {
271             memcpy (clientPrincipal, nameToken.value, nameToken.length);
272             clientPrincipal[nameToken.length] = '\0';
273         }        
274
275         if (nameToken.value) { gss_release_buffer (&minorStatus, &nameToken); }
276     }
277     
278         if (!err) {
279     //    /* Pull the service principal string out of the gss name */
280     //    gss_buffer_desc nameToken;
281     //    
282     //    majorStatus = gss_display_name (&minorStatus, 
283     //                                    serviceName, 
284     //                                    &nameToken, 
285     //                                    NULL);
286     //    if (majorStatus != GSS_S_COMPLETE) { 
287     //        err = minorStatus ? minorStatus : majorStatus; 
288     //    }
289     //    
290     //    if (!err) {
291     //        servic7ePrincipal = malloc (nameToken.length + 1);
292     //        if (servicePrincipal == NULL) { err = ENOMEM; }
293     //    }
294     //    
295     //    if (!err) {
296     //        memcpy (servicePrincipal, nameToken.value, nameToken.length);
297     //        servicePrincipal[nameToken.length] = '\0';
298     //    }        
299
300     //    if (nameToken.value) { gss_release_buffer (&minorStatus, &nameToken); }
301     // }
302     
303 //    if (!err) {
304 //        int authorizationErr = ServicePrincipalIsValidForService (servicePr// incipal);
305 //        
306 //        if (!authorizationErr) {
307
308           int authorizationErr = 0;
309           authorizationErr = ClientPrincipalIsAuthorizedForService (clientPrincipal);
310
311 //        }
312         
313 //        printf ("'%s' is%s authorized for service '%s'\n", 
314 //                clientPrincipal, authorizationErr ? " NOT" : "", servicePrincipal);            
315 //        
316           *outAuthorized = !authorizationErr;
317           *outAuthorizationError = authorizationErr;
318         }
319     
320     if (serviceName     ) { gss_release_name (&minorStatus, &serviceName); }
321     if (clientName      ) { gss_release_name (&minorStatus, &clientName); }
322     if (clientPrincipal ) { free (clientPrincipal); }
323     if (servicePrincipal) { free (servicePrincipal); }
324
325     return err; 
326 }
327
328