]> andersk Git - gssapi-openssh.git/blob - openssh/auth2-gss.c
merged Simon's openssh-3.4p1-gssapi-20020627.diff patch to the trunk:
[gssapi-openssh.git] / openssh / auth2-gss.c
1 /*
2  * Copyright (c) 2001,2002 Simon Wilkinson. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR
14  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
15  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
16  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
19  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
20  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include "includes.h"
26
27 #ifdef GSSAPI
28 #include "auth.h"
29 #include "ssh2.h"
30 #include "ssh1.h"
31 #include "xmalloc.h"
32 #include "log.h"
33 #include "dispatch.h"
34 #include "servconf.h"
35 #include "compat.h"
36 #include "packet.h"
37 #include "monitor_wrap.h"
38
39 #include "ssh-gss.h"
40
41 extern ServerOptions options;
42 extern unsigned char ssh1_key_digest[16];
43
44 static int
45 userauth_external(Authctxt *authctxt)
46 {
47         packet_check_eom();
48
49         return(PRIVSEP(ssh_gssapi_userok(authctxt->user)));
50 }
51
52 static void input_gssapi_token(int type, u_int32_t plen, void *ctxt);
53 static void input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt);
54
55 /* We only support those mechanisms that we know about (ie ones that we know
56  * how to check local user kuserok and the like
57  */
58 static int
59 userauth_gssapi(Authctxt *authctxt)
60 {
61         gss_OID_desc    oid= {0,NULL};
62         Gssctxt         *ctxt = NULL;
63         int             mechs;
64         gss_OID_set     supported;
65         int             present;
66         OM_uint32       ms;
67         u_int           len;
68         
69         if (!authctxt->valid || authctxt->user == NULL)
70                 return 0;
71                 
72         if (datafellows & SSH_OLD_GSSAPI) {
73                 debug("Early drafts of GSSAPI userauth not supported");
74                 return 0;
75         }
76         
77         mechs=packet_get_int();
78         if (mechs==0) {
79                 debug("Mechanism negotiation is not supported");
80                 return 0;
81         }
82
83         ssh_gssapi_supported_oids(&supported);
84         do {
85                 if (oid.elements)
86                         xfree(oid.elements);
87                 oid.elements = packet_get_string(&len);
88                 oid.length = len;
89                 gss_test_oid_set_member(&ms, &oid, supported, &present);
90                 mechs--;
91         } while (mechs>0 && !present);
92         
93         if (!present) {
94                 xfree(oid.elements);
95                 return(0);
96         }
97                 
98         if (GSS_ERROR(PRIVSEP(ssh_gssapi_server_ctx(&ctxt,&oid))))
99                 return(0);
100         
101         authctxt->methoddata=(void *)ctxt;
102
103         /* Send SSH_MSG_USERAUTH_GSSAPI_RESPONSE */
104
105         if (!compat20)
106         packet_start(SSH_SMSG_AUTH_GSSAPI_RESPONSE);
107         else
108         packet_start(SSH2_MSG_USERAUTH_GSSAPI_RESPONSE);
109         packet_put_string(oid.elements,oid.length);
110         packet_send();
111         packet_write_wait();
112         xfree(oid.elements);
113
114         if (!compat20)
115         dispatch_set(SSH_MSG_AUTH_GSSAPI_TOKEN,
116                                 &input_gssapi_token);
117         else
118         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, 
119                      &input_gssapi_token);
120         authctxt->postponed = 1;
121         
122         return 0;
123 }
124
125 static void
126 input_gssapi_token(int type, u_int32_t plen, void *ctxt)
127 {
128         Authctxt *authctxt = ctxt;
129         Gssctxt *gssctxt;
130         gss_buffer_desc send_tok,recv_tok;
131         OM_uint32 maj_status, min_status;
132         
133         if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
134                 fatal("No authentication or GSSAPI context");
135                 
136         gssctxt=authctxt->methoddata;
137         recv_tok.value=packet_get_string(&recv_tok.length);
138         
139         maj_status=PRIVSEP(ssh_gssapi_accept_ctx(gssctxt, &recv_tok, 
140                                                  &send_tok, NULL));
141         packet_check_eom();
142         
143         if (GSS_ERROR(maj_status)) {
144                 /* Failure <sniff> */
145                 ssh_gssapi_send_error(maj_status,min_status);
146                 authctxt->postponed = 0;
147                 dispatch_set(SSH_MSG_AUTH_GSSAPI_TOKEN, NULL);
148                 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
149                 userauth_finish(authctxt, 0, "gssapi");
150         }
151                         
152         if (send_tok.length != 0) {
153                 /* Send a packet back to the client */
154                 if (!compat20)
155                 packet_start(SSH_MSG_AUTH_GSSAPI_TOKEN);
156                 else
157                 packet_start(SSH2_MSG_USERAUTH_GSSAPI_TOKEN);
158                 packet_put_string(send_tok.value,send_tok.length);
159                 packet_send();
160                 packet_write_wait();
161                 gss_release_buffer(&min_status, &send_tok);        
162         }
163         
164         if (maj_status == GSS_S_COMPLETE) {
165                 dispatch_set(SSH_MSG_AUTH_GSSAPI_TOKEN, NULL);
166                 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN,NULL);
167                 /* ssh1 does not have an extra message here */
168                 if (!compat20)
169                 input_gssapi_exchange_complete(0, 0, ctxt);
170                 else
171                 dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE,
172                              &input_gssapi_exchange_complete);
173         }
174 }
175
176 /* This is called when the client thinks we've completed authentication.
177  * It should only be enabled in the dispatch handler by the function above,
178  * which only enables it once the GSSAPI exchange is complete.
179  */
180  
181 static void
182 input_gssapi_exchange_complete(int type, u_int32_t plen, void *ctxt)
183 {
184         Authctxt *authctxt = ctxt;
185         Gssctxt *gssctxt;
186         int authenticated;
187         
188         if (authctxt == NULL || (authctxt->methoddata == NULL && !use_privsep))
189                 fatal("No authentication or GSSAPI context");
190                 
191         gssctxt=authctxt->methoddata;
192
193         /* ssh1 needs to exchange the hash of the keys */
194         if (!compat20) {
195
196                 OM_uint32 min_status;
197                 gss_buffer_desc dummy, msg_tok;
198
199                 /* ssh1 wraps the keys, in the monitor */
200
201                 dummy.value=malloc(sizeof(ssh1_key_digest));
202                 memcpy(dummy.value,ssh1_key_digest,sizeof(ssh1_key_digest));
203                 dummy.length=sizeof(ssh1_key_digest);
204                 if (GSS_ERROR(PRIVSEP(ssh_gssapi_sign(gssctxt,&dummy,&msg_tok))))
205                     fatal("Couldn't wrap keys");
206  
207                 packet_start(SSH_SMSG_AUTH_GSSAPI_HASH);
208                 packet_put_string((char *)msg_tok.value,msg_tok.length);
209                 packet_send();
210                 packet_write_wait();
211                 gss_release_buffer(&min_status,&msg_tok);
212         }
213
214   
215         /* We don't need to check the status, because the stored credentials
216          * which userok uses are only populated once the context init step
217          * has returned complete.
218          */
219
220         authenticated = PRIVSEP(ssh_gssapi_userok(authctxt->user));
221
222         authctxt->postponed = 0;
223         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_TOKEN, NULL);
224         dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
225         userauth_finish(authctxt, authenticated, "gssapi");
226 }
227
228 Authmethod method_external = {
229         "external-keyx",
230         userauth_external,
231         &options.gss_authentication
232 };
233         
234 Authmethod method_gssapi = {
235         "gssapi",
236         userauth_gssapi,
237         &options.gss_authentication
238 };
239
240 #endif /* GSSAPI */
This page took 0.077134 seconds and 5 git commands to generate.