]> andersk Git - openssh.git/blame - auth2-pubkey.c
- dtucker@cvs.openbsd.org 2008/07/02 12:03:51
[openssh.git] / auth2-pubkey.c
CommitLineData
f7c2a004 1/* $OpenBSD: auth2-pubkey.c,v 1.18 2008/07/02 12:03:51 dtucker Exp $ */
013eab17 2/*
3 * Copyright (c) 2000 Markus Friedl. 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 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25
26#include "includes.h"
4095f623 27
28#include <sys/types.h>
29#include <sys/stat.h>
013eab17 30
632f2669 31#include <fcntl.h>
b1842393 32#include <pwd.h>
cf851879 33#include <stdio.h>
31652869 34#include <stdarg.h>
1d0b7aaa 35#include <unistd.h>
b1842393 36
31652869 37#include "xmalloc.h"
ea067773 38#include "ssh.h"
013eab17 39#include "ssh2.h"
013eab17 40#include "packet.h"
41#include "buffer.h"
42#include "log.h"
43#include "servconf.h"
44#include "compat.h"
013eab17 45#include "key.h"
31652869 46#include "hostfile.h"
47#include "auth.h"
013eab17 48#include "pathnames.h"
49#include "uidswap.h"
50#include "auth-options.h"
51#include "canohost.h"
31652869 52#ifdef GSSAPI
53#include "ssh-gss.h"
54#endif
013eab17 55#include "monitor_wrap.h"
41feb690 56#include "misc.h"
013eab17 57
58/* import */
59extern ServerOptions options;
60extern u_char *session_id2;
a27002e5 61extern u_int session_id2_len;
013eab17 62
63static int
64userauth_pubkey(Authctxt *authctxt)
65{
66 Buffer b;
67 Key *key = NULL;
68 char *pkalg;
69 u_char *pkblob, *sig;
70 u_int alen, blen, slen;
71 int have_sig, pktype;
72 int authenticated = 0;
73
74 if (!authctxt->valid) {
75 debug2("userauth_pubkey: disabled because of invalid user");
76 return 0;
77 }
78 have_sig = packet_get_char();
79 if (datafellows & SSH_BUG_PKAUTH) {
80 debug2("userauth_pubkey: SSH_BUG_PKAUTH");
81 /* no explicit pkalg given */
82 pkblob = packet_get_string(&blen);
83 buffer_init(&b);
84 buffer_append(&b, pkblob, blen);
85 /* so we have to extract the pkalg from the pkblob */
86 pkalg = buffer_get_string(&b, &alen);
87 buffer_free(&b);
88 } else {
89 pkalg = packet_get_string(&alen);
90 pkblob = packet_get_string(&blen);
91 }
92 pktype = key_type_from_name(pkalg);
93 if (pktype == KEY_UNSPEC) {
94 /* this is perfectly legal */
bbe88b6d 95 logit("userauth_pubkey: unsupported public key algorithm: %s",
013eab17 96 pkalg);
97 goto done;
98 }
99 key = key_from_blob(pkblob, blen);
100 if (key == NULL) {
101 error("userauth_pubkey: cannot decode key: %s", pkalg);
102 goto done;
103 }
104 if (key->type != pktype) {
105 error("userauth_pubkey: type mismatch for decoded key "
106 "(received %d, expected %d)", key->type, pktype);
107 goto done;
108 }
109 if (have_sig) {
110 sig = packet_get_string(&slen);
111 packet_check_eom();
112 buffer_init(&b);
113 if (datafellows & SSH_OLD_SESSIONID) {
114 buffer_append(&b, session_id2, session_id2_len);
115 } else {
116 buffer_put_string(&b, session_id2, session_id2_len);
117 }
118 /* reconstruct packet */
119 buffer_put_char(&b, SSH2_MSG_USERAUTH_REQUEST);
120 buffer_put_cstring(&b, authctxt->user);
121 buffer_put_cstring(&b,
122 datafellows & SSH_BUG_PKSERVICE ?
123 "ssh-userauth" :
124 authctxt->service);
125 if (datafellows & SSH_BUG_PKAUTH) {
126 buffer_put_char(&b, have_sig);
127 } else {
128 buffer_put_cstring(&b, "publickey");
129 buffer_put_char(&b, have_sig);
130 buffer_put_cstring(&b, pkalg);
131 }
132 buffer_put_string(&b, pkblob, blen);
133#ifdef DEBUG_PK
134 buffer_dump(&b);
135#endif
136 /* test for correct signature */
137 authenticated = 0;
138 if (PRIVSEP(user_key_allowed(authctxt->pw, key)) &&
139 PRIVSEP(key_verify(key, sig, slen, buffer_ptr(&b),
43f7a4b8 140 buffer_len(&b))) == 1)
013eab17 141 authenticated = 1;
43f7a4b8 142 buffer_free(&b);
013eab17 143 xfree(sig);
144 } else {
145 debug("test whether pkalg/pkblob are acceptable");
146 packet_check_eom();
147
148 /* XXX fake reply and always send PK_OK ? */
149 /*
150 * XXX this allows testing whether a user is allowed
151 * to login: if you happen to have a valid pubkey this
152 * message is sent. the message is NEVER sent at all
153 * if a user is not allowed to login. is this an
154 * issue? -markus
155 */
156 if (PRIVSEP(user_key_allowed(authctxt->pw, key))) {
157 packet_start(SSH2_MSG_USERAUTH_PK_OK);
158 packet_put_string(pkalg, alen);
159 packet_put_string(pkblob, blen);
160 packet_send();
161 packet_write_wait();
162 authctxt->postponed = 1;
163 }
164 }
165 if (authenticated != 1)
166 auth_clear_options();
167done:
168 debug2("userauth_pubkey: authenticated %d pkalg %s", authenticated, pkalg);
169 if (key != NULL)
170 key_free(key);
171 xfree(pkalg);
172 xfree(pkblob);
173#ifdef HAVE_CYGWIN
174 if (check_nt_auth(0, authctxt->pw) == 0)
73b1ee82 175 authenticated = 0;
013eab17 176#endif
177 return authenticated;
178}
179
180/* return 1 if user allows given key */
181static int
182user_key_allowed2(struct passwd *pw, Key *key, char *file)
183{
ea067773 184 char line[SSH_MAX_PUBKEY_BYTES];
f7c2a004 185 int found_key = 0;
013eab17 186 FILE *f;
187 u_long linenum = 0;
013eab17 188 Key *found;
189 char *fp;
190
013eab17 191 /* Temporarily use the user's uid. */
192 temporarily_use_uid(pw);
193
194 debug("trying public key file %s", file);
f7c2a004 195 f = auth_openkeyfile(file, pw, options.strict_modes);
013eab17 196
f7c2a004 197 if (!f) {
198 xfree(file);
013eab17 199 restore_uid();
200 return 0;
201 }
202
203 found_key = 0;
204 found = key_new(key->type);
205
ea067773 206 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) {
ca75d7de 207 char *cp, *key_options = NULL;
ea067773 208
013eab17 209 /* Skip leading whitespace, empty and comment lines. */
210 for (cp = line; *cp == ' ' || *cp == '\t'; cp++)
211 ;
212 if (!*cp || *cp == '\n' || *cp == '#')
213 continue;
214
215 if (key_read(found, &cp) != 1) {
216 /* no key? check if there are options for this key */
217 int quoted = 0;
218 debug2("user_key_allowed: check options: '%s'", cp);
ca75d7de 219 key_options = cp;
013eab17 220 for (; *cp && (quoted || (*cp != ' ' && *cp != '\t')); cp++) {
221 if (*cp == '\\' && cp[1] == '"')
222 cp++; /* Skip both */
223 else if (*cp == '"')
224 quoted = !quoted;
225 }
226 /* Skip remaining whitespace. */
227 for (; *cp == ' ' || *cp == '\t'; cp++)
228 ;
229 if (key_read(found, &cp) != 1) {
230 debug2("user_key_allowed: advance: '%s'", cp);
231 /* still no key? advance to next line*/
232 continue;
233 }
234 }
235 if (key_equal(found, key) &&
ca75d7de 236 auth_parse_options(pw, key_options, file, linenum) == 1) {
013eab17 237 found_key = 1;
238 debug("matching key found: file %s, line %lu",
239 file, linenum);
240 fp = key_fingerprint(found, SSH_FP_MD5, SSH_FP_HEX);
241 verbose("Found matching %s key: %s",
242 key_type(found), fp);
243 xfree(fp);
244 break;
245 }
246 }
247 restore_uid();
248 fclose(f);
249 key_free(found);
250 if (!found_key)
251 debug2("key not found");
252 return found_key;
253}
254
255/* check whether given key is in .ssh/authorized_keys* */
256int
257user_key_allowed(struct passwd *pw, Key *key)
258{
259 int success;
260 char *file;
261
262 file = authorized_keys_file(pw);
263 success = user_key_allowed2(pw, key, file);
264 xfree(file);
265 if (success)
266 return success;
267
268 /* try suffix "2" for backward compat, too */
269 file = authorized_keys_file2(pw);
270 success = user_key_allowed2(pw, key, file);
271 xfree(file);
272 return success;
273}
274
275Authmethod method_pubkey = {
276 "publickey",
277 userauth_pubkey,
278 &options.pubkey_authentication
279};
This page took 0.362464 seconds and 5 git commands to generate.