blob: e387697d36d027939d46812c36b06d940d1b8822 [file] [log] [blame]
djm@openbsd.orgc28fc622015-07-03 03:43:18 +00001/* $OpenBSD: auth-options.c,v 1.68 2015/07/03 03:43:18 djm Exp $ */
Damien Millere4340be2000-09-16 13:29:08 +11002/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved
Damien Millere4340be2000-09-16 13:29:08 +11006 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 */
12
Damien Millerf6d9e222000-06-18 14:50:44 +100013#include "includes.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100014
Damien Miller9f2abc42006-07-10 20:53:08 +100015#include <sys/types.h>
16
Damien Millerb8fe89c2006-07-24 14:51:00 +100017#include <netdb.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100018#include <pwd.h>
Damien Millere3476ed2006-07-24 14:13:33 +100019#include <string.h>
Damien Millerd7834352006-08-05 12:39:39 +100020#include <stdio.h>
21#include <stdarg.h>
Damien Miller9f2abc42006-07-10 20:53:08 +100022
Damien Millerb84886b2008-05-19 15:05:07 +100023#include "openbsd-compat/sys-queue.h"
markus@openbsd.orgae8b4632015-01-14 10:30:34 +000024
25#include "key.h" /* XXX for typedef */
26#include "buffer.h" /* XXX for typedef */
Damien Millerf6d9e222000-06-18 14:50:44 +100027#include "xmalloc.h"
28#include "match.h"
markus@openbsd.orgae8b4632015-01-14 10:30:34 +000029#include "ssherr.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000030#include "log.h"
31#include "canohost.h"
markus@openbsd.orgae8b4632015-01-14 10:30:34 +000032#include "sshbuf.h"
Damien Miller7acefbb2014-07-18 14:11:24 +100033#include "misc.h"
Ben Lindstromc7637672001-06-09 00:36:26 +000034#include "channels.h"
Damien Miller33804262001-02-04 23:20:18 +110035#include "servconf.h"
markus@openbsd.orgae8b4632015-01-14 10:30:34 +000036#include "sshkey.h"
Damien Miller4e270b02010-04-16 15:56:21 +100037#include "auth-options.h"
Damien Millerd7834352006-08-05 12:39:39 +100038#include "hostfile.h"
Ben Lindstroma574cda2002-05-15 16:16:14 +000039#include "auth.h"
Damien Millerf6d9e222000-06-18 14:50:44 +100040
41/* Flags set authorized_keys flags */
42int no_port_forwarding_flag = 0;
43int no_agent_forwarding_flag = 0;
44int no_x11_forwarding_flag = 0;
45int no_pty_flag = 0;
Damien Miller95e80952008-03-27 11:03:05 +110046int no_user_rc = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +110047int key_is_cert_authority = 0;
Damien Millerf6d9e222000-06-18 14:50:44 +100048
49/* "command=" option. */
50char *forced_command = NULL;
51
52/* "environment=" options. */
53struct envstring *custom_environment = NULL;
54
Damien Millerd27b9472005-12-13 19:29:02 +110055/* "tunnel=" option. */
56int forced_tun_device = -1;
57
Damien Miller30da3442010-05-10 11:58:03 +100058/* "principals=" option. */
59char *authorized_principals = NULL;
60
Damien Miller33804262001-02-04 23:20:18 +110061extern ServerOptions options;
62
Ben Lindstrom7a2073c2002-03-22 02:30:41 +000063void
Damien Miller874d77b2000-10-14 16:23:11 +110064auth_clear_options(void)
65{
66 no_agent_forwarding_flag = 0;
67 no_port_forwarding_flag = 0;
68 no_pty_flag = 0;
69 no_x11_forwarding_flag = 0;
Damien Miller95e80952008-03-27 11:03:05 +110070 no_user_rc = 0;
Damien Miller0a80ca12010-02-27 07:55:05 +110071 key_is_cert_authority = 0;
Damien Miller874d77b2000-10-14 16:23:11 +110072 while (custom_environment) {
73 struct envstring *ce = custom_environment;
74 custom_environment = ce->next;
Darren Tuckera627d422013-06-02 07:31:17 +100075 free(ce->s);
76 free(ce);
Damien Miller874d77b2000-10-14 16:23:11 +110077 }
78 if (forced_command) {
Darren Tuckera627d422013-06-02 07:31:17 +100079 free(forced_command);
Damien Miller874d77b2000-10-14 16:23:11 +110080 forced_command = NULL;
81 }
Damien Miller30da3442010-05-10 11:58:03 +100082 if (authorized_principals) {
Darren Tuckera627d422013-06-02 07:31:17 +100083 free(authorized_principals);
Damien Miller30da3442010-05-10 11:58:03 +100084 authorized_principals = NULL;
85 }
Damien Millerd27b9472005-12-13 19:29:02 +110086 forced_tun_device = -1;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +000087 channel_clear_permitted_opens();
Damien Miller874d77b2000-10-14 16:23:11 +110088}
89
Ben Lindstrom226cfa02001-01-22 05:34:40 +000090/*
91 * return 1 if access is granted, 0 if not.
92 * side effect: sets key option flags
93 */
Damien Millerf6d9e222000-06-18 14:50:44 +100094int
Damien Miller33804262001-02-04 23:20:18 +110095auth_parse_options(struct passwd *pw, char *opts, char *file, u_long linenum)
Damien Millerf6d9e222000-06-18 14:50:44 +100096{
97 const char *cp;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +000098 int i;
Damien Miller874d77b2000-10-14 16:23:11 +110099
100 /* reset options */
101 auth_clear_options();
102
Ben Lindstrom36d7bd02001-02-10 22:27:19 +0000103 if (!opts)
104 return 1;
105
Damien Miller33804262001-02-04 23:20:18 +1100106 while (*opts && *opts != ' ' && *opts != '\t') {
Damien Miller0a80ca12010-02-27 07:55:05 +1100107 cp = "cert-authority";
108 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
109 key_is_cert_authority = 1;
110 opts += strlen(cp);
111 goto next_option;
112 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000113 cp = "no-port-forwarding";
Damien Miller33804262001-02-04 23:20:18 +1100114 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Ben Lindstroma574cda2002-05-15 16:16:14 +0000115 auth_debug_add("Port forwarding disabled.");
Damien Millerf6d9e222000-06-18 14:50:44 +1000116 no_port_forwarding_flag = 1;
Damien Miller33804262001-02-04 23:20:18 +1100117 opts += strlen(cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000118 goto next_option;
119 }
120 cp = "no-agent-forwarding";
Damien Miller33804262001-02-04 23:20:18 +1100121 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Ben Lindstroma574cda2002-05-15 16:16:14 +0000122 auth_debug_add("Agent forwarding disabled.");
Damien Millerf6d9e222000-06-18 14:50:44 +1000123 no_agent_forwarding_flag = 1;
Damien Miller33804262001-02-04 23:20:18 +1100124 opts += strlen(cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000125 goto next_option;
126 }
127 cp = "no-X11-forwarding";
Damien Miller33804262001-02-04 23:20:18 +1100128 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Ben Lindstroma574cda2002-05-15 16:16:14 +0000129 auth_debug_add("X11 forwarding disabled.");
Damien Millerf6d9e222000-06-18 14:50:44 +1000130 no_x11_forwarding_flag = 1;
Damien Miller33804262001-02-04 23:20:18 +1100131 opts += strlen(cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000132 goto next_option;
133 }
134 cp = "no-pty";
Damien Miller33804262001-02-04 23:20:18 +1100135 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Ben Lindstroma574cda2002-05-15 16:16:14 +0000136 auth_debug_add("Pty allocation disabled.");
Damien Millerf6d9e222000-06-18 14:50:44 +1000137 no_pty_flag = 1;
Damien Miller33804262001-02-04 23:20:18 +1100138 opts += strlen(cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000139 goto next_option;
140 }
Damien Miller95e80952008-03-27 11:03:05 +1100141 cp = "no-user-rc";
142 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
143 auth_debug_add("User rc file execution disabled.");
144 no_user_rc = 1;
145 opts += strlen(cp);
146 goto next_option;
147 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000148 cp = "command=\"";
Damien Miller33804262001-02-04 23:20:18 +1100149 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Damien Miller33804262001-02-04 23:20:18 +1100150 opts += strlen(cp);
Damien Miller30da3442010-05-10 11:58:03 +1000151 if (forced_command != NULL)
Darren Tuckera627d422013-06-02 07:31:17 +1000152 free(forced_command);
Damien Miller33804262001-02-04 23:20:18 +1100153 forced_command = xmalloc(strlen(opts) + 1);
Damien Millerf6d9e222000-06-18 14:50:44 +1000154 i = 0;
Damien Miller33804262001-02-04 23:20:18 +1100155 while (*opts) {
156 if (*opts == '"')
Damien Millerf6d9e222000-06-18 14:50:44 +1000157 break;
Damien Miller33804262001-02-04 23:20:18 +1100158 if (*opts == '\\' && opts[1] == '"') {
159 opts += 2;
Damien Millerf6d9e222000-06-18 14:50:44 +1000160 forced_command[i++] = '"';
161 continue;
162 }
Damien Miller33804262001-02-04 23:20:18 +1100163 forced_command[i++] = *opts++;
Damien Millerf6d9e222000-06-18 14:50:44 +1000164 }
Damien Miller33804262001-02-04 23:20:18 +1100165 if (!*opts) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000166 debug("%.100s, line %lu: missing end quote",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000167 file, linenum);
Ben Lindstroma574cda2002-05-15 16:16:14 +0000168 auth_debug_add("%.100s, line %lu: missing end quote",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000169 file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000170 free(forced_command);
Damien Miller056ddf72001-03-14 10:15:20 +1100171 forced_command = NULL;
172 goto bad_option;
Damien Millerf6d9e222000-06-18 14:50:44 +1000173 }
Damien Miller98299262006-07-24 14:01:43 +1000174 forced_command[i] = '\0';
Damien Millerde53fd02011-01-06 22:44:18 +1100175 auth_debug_add("Forced command.");
Damien Miller33804262001-02-04 23:20:18 +1100176 opts++;
Damien Millerf6d9e222000-06-18 14:50:44 +1000177 goto next_option;
178 }
Damien Miller30da3442010-05-10 11:58:03 +1000179 cp = "principals=\"";
180 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
181 opts += strlen(cp);
182 if (authorized_principals != NULL)
Darren Tuckera627d422013-06-02 07:31:17 +1000183 free(authorized_principals);
Damien Miller30da3442010-05-10 11:58:03 +1000184 authorized_principals = xmalloc(strlen(opts) + 1);
185 i = 0;
186 while (*opts) {
187 if (*opts == '"')
188 break;
189 if (*opts == '\\' && opts[1] == '"') {
190 opts += 2;
191 authorized_principals[i++] = '"';
192 continue;
193 }
194 authorized_principals[i++] = *opts++;
195 }
196 if (!*opts) {
197 debug("%.100s, line %lu: missing end quote",
198 file, linenum);
199 auth_debug_add("%.100s, line %lu: missing end quote",
200 file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000201 free(authorized_principals);
Damien Miller30da3442010-05-10 11:58:03 +1000202 authorized_principals = NULL;
203 goto bad_option;
204 }
205 authorized_principals[i] = '\0';
206 auth_debug_add("principals: %.900s",
207 authorized_principals);
208 opts++;
209 goto next_option;
210 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000211 cp = "environment=\"";
djm@openbsd.orga42d67b2015-05-01 03:20:54 +0000212 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000213 char *s;
214 struct envstring *new_envstring;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000215
Damien Miller33804262001-02-04 23:20:18 +1100216 opts += strlen(cp);
217 s = xmalloc(strlen(opts) + 1);
Damien Millerf6d9e222000-06-18 14:50:44 +1000218 i = 0;
Damien Miller33804262001-02-04 23:20:18 +1100219 while (*opts) {
220 if (*opts == '"')
Damien Millerf6d9e222000-06-18 14:50:44 +1000221 break;
Damien Miller33804262001-02-04 23:20:18 +1100222 if (*opts == '\\' && opts[1] == '"') {
223 opts += 2;
Damien Millerf6d9e222000-06-18 14:50:44 +1000224 s[i++] = '"';
225 continue;
226 }
Damien Miller33804262001-02-04 23:20:18 +1100227 s[i++] = *opts++;
Damien Millerf6d9e222000-06-18 14:50:44 +1000228 }
Damien Miller33804262001-02-04 23:20:18 +1100229 if (!*opts) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000230 debug("%.100s, line %lu: missing end quote",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000231 file, linenum);
Ben Lindstroma574cda2002-05-15 16:16:14 +0000232 auth_debug_add("%.100s, line %lu: missing end quote",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000233 file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000234 free(s);
Damien Miller056ddf72001-03-14 10:15:20 +1100235 goto bad_option;
Damien Millerf6d9e222000-06-18 14:50:44 +1000236 }
Damien Miller98299262006-07-24 14:01:43 +1000237 s[i] = '\0';
Damien Miller33804262001-02-04 23:20:18 +1100238 opts++;
djm@openbsd.orga42d67b2015-05-01 03:20:54 +0000239 if (options.permit_user_env) {
240 auth_debug_add("Adding to environment: "
241 "%.900s", s);
242 debug("Adding to environment: %.900s", s);
243 new_envstring = xcalloc(1,
244 sizeof(*new_envstring));
245 new_envstring->s = s;
246 new_envstring->next = custom_environment;
247 custom_environment = new_envstring;
248 s = NULL;
249 }
250 free(s);
Damien Millerf6d9e222000-06-18 14:50:44 +1000251 goto next_option;
252 }
253 cp = "from=\"";
Damien Miller33804262001-02-04 23:20:18 +1100254 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Damien Miller33804262001-02-04 23:20:18 +1100255 const char *remote_ip = get_remote_ipaddr();
256 const char *remote_host = get_canonical_hostname(
Damien Miller3a961dc2003-06-03 10:25:48 +1000257 options.use_dns);
Damien Miller33804262001-02-04 23:20:18 +1100258 char *patterns = xmalloc(strlen(opts) + 1);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000259
Damien Miller33804262001-02-04 23:20:18 +1100260 opts += strlen(cp);
Damien Millerf6d9e222000-06-18 14:50:44 +1000261 i = 0;
Damien Miller33804262001-02-04 23:20:18 +1100262 while (*opts) {
263 if (*opts == '"')
Damien Millerf6d9e222000-06-18 14:50:44 +1000264 break;
Damien Miller33804262001-02-04 23:20:18 +1100265 if (*opts == '\\' && opts[1] == '"') {
266 opts += 2;
Damien Millerf6d9e222000-06-18 14:50:44 +1000267 patterns[i++] = '"';
268 continue;
269 }
Damien Miller33804262001-02-04 23:20:18 +1100270 patterns[i++] = *opts++;
Damien Millerf6d9e222000-06-18 14:50:44 +1000271 }
Damien Miller33804262001-02-04 23:20:18 +1100272 if (!*opts) {
Damien Millerf6d9e222000-06-18 14:50:44 +1000273 debug("%.100s, line %lu: missing end quote",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000274 file, linenum);
Ben Lindstroma574cda2002-05-15 16:16:14 +0000275 auth_debug_add("%.100s, line %lu: missing end quote",
Ben Lindstrom226cfa02001-01-22 05:34:40 +0000276 file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000277 free(patterns);
Damien Miller056ddf72001-03-14 10:15:20 +1100278 goto bad_option;
Damien Millerf6d9e222000-06-18 14:50:44 +1000279 }
Damien Miller98299262006-07-24 14:01:43 +1000280 patterns[i] = '\0';
Damien Miller33804262001-02-04 23:20:18 +1100281 opts++;
Darren Tucker896ad5a2008-06-11 09:34:46 +1000282 switch (match_host_and_ip(remote_host, remote_ip,
283 patterns)) {
284 case 1:
Darren Tuckera627d422013-06-02 07:31:17 +1000285 free(patterns);
Darren Tucker896ad5a2008-06-11 09:34:46 +1000286 /* Host name matches. */
287 goto next_option;
288 case -1:
289 debug("%.100s, line %lu: invalid criteria",
290 file, linenum);
291 auth_debug_add("%.100s, line %lu: "
292 "invalid criteria", file, linenum);
293 /* FALLTHROUGH */
294 case 0:
Darren Tuckera627d422013-06-02 07:31:17 +1000295 free(patterns);
Damien Miller996acd22003-04-09 20:59:48 +1000296 logit("Authentication tried for %.100s with "
Damien Miller33804262001-02-04 23:20:18 +1100297 "correct key but not from a permitted "
298 "host (host=%.200s, ip=%.200s).",
299 pw->pw_name, remote_host, remote_ip);
Ben Lindstroma574cda2002-05-15 16:16:14 +0000300 auth_debug_add("Your host '%.200s' is not "
Damien Miller33804262001-02-04 23:20:18 +1100301 "permitted to use this key for login.",
302 remote_host);
Darren Tucker896ad5a2008-06-11 09:34:46 +1000303 break;
Damien Millerf6d9e222000-06-18 14:50:44 +1000304 }
Darren Tucker896ad5a2008-06-11 09:34:46 +1000305 /* deny access */
306 return 0;
Damien Millerf6d9e222000-06-18 14:50:44 +1000307 }
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000308 cp = "permitopen=\"";
309 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100310 char *host, *p;
Damien Millere37dde02009-01-28 16:33:01 +1100311 int port;
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000312 char *patterns = xmalloc(strlen(opts) + 1);
313
314 opts += strlen(cp);
315 i = 0;
316 while (*opts) {
317 if (*opts == '"')
318 break;
319 if (*opts == '\\' && opts[1] == '"') {
320 opts += 2;
321 patterns[i++] = '"';
322 continue;
323 }
324 patterns[i++] = *opts++;
325 }
326 if (!*opts) {
327 debug("%.100s, line %lu: missing end quote",
328 file, linenum);
Damien Millerf91ee4c2005-03-01 21:24:33 +1100329 auth_debug_add("%.100s, line %lu: missing "
330 "end quote", file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000331 free(patterns);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000332 goto bad_option;
333 }
Damien Miller98299262006-07-24 14:01:43 +1000334 patterns[i] = '\0';
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000335 opts++;
Damien Millerf91ee4c2005-03-01 21:24:33 +1100336 p = patterns;
Damien Miller7acefbb2014-07-18 14:11:24 +1000337 /* XXX - add streamlocal support */
Damien Millerf91ee4c2005-03-01 21:24:33 +1100338 host = hpdelim(&p);
339 if (host == NULL || strlen(host) >= NI_MAXHOST) {
340 debug("%.100s, line %lu: Bad permitopen "
Darren Tucker90b9e022005-03-14 23:08:50 +1100341 "specification <%.100s>", file, linenum,
Damien Millerf91ee4c2005-03-01 21:24:33 +1100342 patterns);
Ben Lindstroma574cda2002-05-15 16:16:14 +0000343 auth_debug_add("%.100s, line %lu: "
Damien Millerf91ee4c2005-03-01 21:24:33 +1100344 "Bad permitopen specification", file,
345 linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000346 free(patterns);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000347 goto bad_option;
348 }
Darren Tucker47eede72005-03-14 23:08:12 +1100349 host = cleanhostname(host);
Darren Tucker1338b9e2011-10-02 18:57:35 +1100350 if (p == NULL || (port = permitopen_port(p)) < 0) {
Damien Millerf91ee4c2005-03-01 21:24:33 +1100351 debug("%.100s, line %lu: Bad permitopen port "
352 "<%.100s>", file, linenum, p ? p : "");
Ben Lindstroma574cda2002-05-15 16:16:14 +0000353 auth_debug_add("%.100s, line %lu: "
Ben Lindstromd71ba572001-09-12 18:03:31 +0000354 "Bad permitopen port", file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000355 free(patterns);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000356 goto bad_option;
357 }
Damien Milleraa5b3f82012-12-03 09:50:54 +1100358 if ((options.allow_tcp_forwarding & FORWARD_LOCAL) != 0)
Ben Lindstromd71ba572001-09-12 18:03:31 +0000359 channel_add_permitted_opens(host, port);
Darren Tuckera627d422013-06-02 07:31:17 +1000360 free(patterns);
Ben Lindstrom7bb8b492001-03-17 00:47:54 +0000361 goto next_option;
362 }
Damien Millerd27b9472005-12-13 19:29:02 +1100363 cp = "tunnel=\"";
364 if (strncasecmp(opts, cp, strlen(cp)) == 0) {
365 char *tun = NULL;
366 opts += strlen(cp);
367 tun = xmalloc(strlen(opts) + 1);
368 i = 0;
369 while (*opts) {
370 if (*opts == '"')
371 break;
372 tun[i++] = *opts++;
373 }
374 if (!*opts) {
375 debug("%.100s, line %lu: missing end quote",
376 file, linenum);
377 auth_debug_add("%.100s, line %lu: missing end quote",
378 file, linenum);
Darren Tuckera627d422013-06-02 07:31:17 +1000379 free(tun);
Damien Millerd27b9472005-12-13 19:29:02 +1100380 forced_tun_device = -1;
381 goto bad_option;
382 }
Damien Miller98299262006-07-24 14:01:43 +1000383 tun[i] = '\0';
Damien Millerd27b9472005-12-13 19:29:02 +1100384 forced_tun_device = a2tun(tun, NULL);
Darren Tuckera627d422013-06-02 07:31:17 +1000385 free(tun);
Damien Miller7b58e802005-12-13 19:33:19 +1100386 if (forced_tun_device == SSH_TUNID_ERR) {
Damien Millerd27b9472005-12-13 19:29:02 +1100387 debug("%.100s, line %lu: invalid tun device",
388 file, linenum);
389 auth_debug_add("%.100s, line %lu: invalid tun device",
390 file, linenum);
391 forced_tun_device = -1;
392 goto bad_option;
393 }
394 auth_debug_add("Forced tun device: %d", forced_tun_device);
395 opts++;
396 goto next_option;
397 }
Damien Millerf6d9e222000-06-18 14:50:44 +1000398next_option:
399 /*
400 * Skip the comma, and move to the next option
401 * (or break out if there are no more).
402 */
Damien Miller33804262001-02-04 23:20:18 +1100403 if (!*opts)
Damien Millerf6d9e222000-06-18 14:50:44 +1000404 fatal("Bugs in auth-options.c option processing.");
Damien Miller33804262001-02-04 23:20:18 +1100405 if (*opts == ' ' || *opts == '\t')
Damien Millerf6d9e222000-06-18 14:50:44 +1000406 break; /* End of options. */
Damien Miller33804262001-02-04 23:20:18 +1100407 if (*opts != ',')
Damien Millerf6d9e222000-06-18 14:50:44 +1000408 goto bad_option;
Damien Miller33804262001-02-04 23:20:18 +1100409 opts++;
Damien Millerf6d9e222000-06-18 14:50:44 +1000410 /* Process the next option. */
411 }
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000412
Damien Millerf6d9e222000-06-18 14:50:44 +1000413 /* grant access */
414 return 1;
415
416bad_option:
Damien Miller996acd22003-04-09 20:59:48 +1000417 logit("Bad options in %.100s file, line %lu: %.50s",
Damien Miller33804262001-02-04 23:20:18 +1100418 file, linenum, opts);
Ben Lindstroma574cda2002-05-15 16:16:14 +0000419 auth_debug_add("Bad options in %.100s file, line %lu: %.50s",
Damien Miller33804262001-02-04 23:20:18 +1100420 file, linenum, opts);
Ben Lindstrom7a2073c2002-03-22 02:30:41 +0000421
Damien Millerf6d9e222000-06-18 14:50:44 +1000422 /* deny access */
423 return 0;
424}
Damien Miller0a80ca12010-02-27 07:55:05 +1100425
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000426#define OPTIONS_CRITICAL 1
427#define OPTIONS_EXTENSIONS 2
428static int
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000429parse_option_list(struct sshbuf *oblob, struct passwd *pw,
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000430 u_int which, int crit,
431 int *cert_no_port_forwarding_flag,
432 int *cert_no_agent_forwarding_flag,
433 int *cert_no_x11_forwarding_flag,
434 int *cert_no_pty_flag,
435 int *cert_no_user_rc,
436 char **cert_forced_command,
437 int *cert_source_address_done)
Damien Miller0a80ca12010-02-27 07:55:05 +1100438{
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000439 char *command, *allowed;
440 const char *remote_ip;
Damien Millerce986542013-07-18 16:12:44 +1000441 char *name = NULL;
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000442 struct sshbuf *c = NULL, *data = NULL;
443 int r, ret = -1, result, found;
Damien Miller0a80ca12010-02-27 07:55:05 +1100444
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000445 if ((c = sshbuf_fromb(oblob)) == NULL) {
446 error("%s: sshbuf_fromb failed", __func__);
447 goto out;
448 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100449
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000450 while (sshbuf_len(c) > 0) {
451 sshbuf_free(data);
452 data = NULL;
453 if ((r = sshbuf_get_cstring(c, &name, NULL)) != 0 ||
454 (r = sshbuf_froms(c, &data)) != 0) {
455 error("Unable to parse certificate options: %s",
456 ssh_err(r));
Damien Miller0a80ca12010-02-27 07:55:05 +1100457 goto out;
458 }
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000459 debug3("found certificate option \"%.100s\" len %zu",
460 name, sshbuf_len(data));
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000461 found = 0;
462 if ((which & OPTIONS_EXTENSIONS) != 0) {
463 if (strcmp(name, "permit-X11-forwarding") == 0) {
464 *cert_no_x11_forwarding_flag = 0;
465 found = 1;
466 } else if (strcmp(name,
467 "permit-agent-forwarding") == 0) {
468 *cert_no_agent_forwarding_flag = 0;
469 found = 1;
470 } else if (strcmp(name,
471 "permit-port-forwarding") == 0) {
472 *cert_no_port_forwarding_flag = 0;
473 found = 1;
474 } else if (strcmp(name, "permit-pty") == 0) {
475 *cert_no_pty_flag = 0;
476 found = 1;
477 } else if (strcmp(name, "permit-user-rc") == 0) {
478 *cert_no_user_rc = 0;
479 found = 1;
Damien Miller0a80ca12010-02-27 07:55:05 +1100480 }
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000481 }
482 if (!found && (which & OPTIONS_CRITICAL) != 0) {
483 if (strcmp(name, "force-command") == 0) {
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000484 if ((r = sshbuf_get_cstring(data, &command,
485 NULL)) != 0) {
486 error("Unable to parse \"%s\" "
487 "section: %s", name, ssh_err(r));
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000488 goto out;
489 }
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000490 if (*cert_forced_command != NULL) {
491 error("Certificate has multiple "
492 "force-command options");
Darren Tuckera627d422013-06-02 07:31:17 +1000493 free(command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000494 goto out;
495 }
496 *cert_forced_command = command;
497 found = 1;
Damien Miller41396572010-03-04 21:51:11 +1100498 }
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000499 if (strcmp(name, "source-address") == 0) {
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000500 if ((r = sshbuf_get_cstring(data, &allowed,
501 NULL)) != 0) {
502 error("Unable to parse \"%s\" "
503 "section: %s", name, ssh_err(r));
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000504 goto out;
505 }
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000506 if ((*cert_source_address_done)++) {
507 error("Certificate has multiple "
508 "source-address options");
Darren Tuckera627d422013-06-02 07:31:17 +1000509 free(allowed);
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000510 goto out;
511 }
512 remote_ip = get_remote_ipaddr();
Damien Millerbf25d112013-12-29 17:44:56 +1100513 result = addr_match_cidr_list(remote_ip,
514 allowed);
515 free(allowed);
516 switch (result) {
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000517 case 1:
518 /* accepted */
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000519 break;
520 case 0:
521 /* no match */
522 logit("Authentication tried for %.100s "
523 "with valid certificate but not "
524 "from a permitted host "
525 "(ip=%.200s).", pw->pw_name,
526 remote_ip);
527 auth_debug_add("Your address '%.200s' "
528 "is not permitted to use this "
529 "certificate for login.",
530 remote_ip);
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000531 goto out;
532 case -1:
Damien Millerbf25d112013-12-29 17:44:56 +1100533 default:
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000534 error("Certificate source-address "
535 "contents invalid");
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000536 goto out;
537 }
538 found = 1;
Damien Miller0a80ca12010-02-27 07:55:05 +1100539 }
Damien Miller0a80ca12010-02-27 07:55:05 +1100540 }
541
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000542 if (!found) {
543 if (crit) {
544 error("Certificate critical option \"%s\" "
545 "is not supported", name);
546 goto out;
547 } else {
548 logit("Certificate extension \"%s\" "
549 "is not supported", name);
550 }
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000551 } else if (sshbuf_len(data) != 0) {
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000552 error("Certificate option \"%s\" corrupt "
Damien Miller0a80ca12010-02-27 07:55:05 +1100553 "(extra data)", name);
554 goto out;
555 }
Darren Tuckera627d422013-06-02 07:31:17 +1000556 free(name);
Damien Millerce986542013-07-18 16:12:44 +1000557 name = NULL;
Damien Miller0a80ca12010-02-27 07:55:05 +1100558 }
Damien Miller4e270b02010-04-16 15:56:21 +1000559 /* successfully parsed all options */
Damien Miller0a80ca12010-02-27 07:55:05 +1100560 ret = 0;
561
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000562 out:
563 if (ret != 0 &&
564 cert_forced_command != NULL &&
565 *cert_forced_command != NULL) {
Darren Tuckera627d422013-06-02 07:31:17 +1000566 free(*cert_forced_command);
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000567 *cert_forced_command = NULL;
568 }
569 if (name != NULL)
Darren Tuckera627d422013-06-02 07:31:17 +1000570 free(name);
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000571 sshbuf_free(data);
572 sshbuf_free(c);
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000573 return ret;
574}
575
576/*
577 * Set options from critical certificate options. These supersede user key
578 * options so this must be called after auth_parse_options().
579 */
580int
markus@openbsd.orgae8b4632015-01-14 10:30:34 +0000581auth_cert_options(struct sshkey *k, struct passwd *pw)
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000582{
583 int cert_no_port_forwarding_flag = 1;
584 int cert_no_agent_forwarding_flag = 1;
585 int cert_no_x11_forwarding_flag = 1;
586 int cert_no_pty_flag = 1;
587 int cert_no_user_rc = 1;
588 char *cert_forced_command = NULL;
589 int cert_source_address_done = 0;
590
djm@openbsd.orgc28fc622015-07-03 03:43:18 +0000591 /* Separate options and extensions for v01 certs */
592 if (parse_option_list(k->cert->critical, pw,
593 OPTIONS_CRITICAL, 1, NULL, NULL, NULL, NULL, NULL,
594 &cert_forced_command,
595 &cert_source_address_done) == -1)
596 return -1;
597 if (parse_option_list(k->cert->extensions, pw,
598 OPTIONS_EXTENSIONS, 0,
599 &cert_no_port_forwarding_flag,
600 &cert_no_agent_forwarding_flag,
601 &cert_no_x11_forwarding_flag,
602 &cert_no_pty_flag,
603 &cert_no_user_rc,
604 NULL, NULL) == -1)
605 return -1;
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000606
Damien Miller0a80ca12010-02-27 07:55:05 +1100607 no_port_forwarding_flag |= cert_no_port_forwarding_flag;
608 no_agent_forwarding_flag |= cert_no_agent_forwarding_flag;
609 no_x11_forwarding_flag |= cert_no_x11_forwarding_flag;
610 no_pty_flag |= cert_no_pty_flag;
611 no_user_rc |= cert_no_user_rc;
612 /* CA-specified forced command supersedes key option */
613 if (cert_forced_command != NULL) {
614 if (forced_command != NULL)
Darren Tuckera627d422013-06-02 07:31:17 +1000615 free(forced_command);
Damien Miller0a80ca12010-02-27 07:55:05 +1100616 forced_command = cert_forced_command;
617 }
Damien Millerd0e4a8e2010-05-21 14:58:32 +1000618 return 0;
Damien Miller0a80ca12010-02-27 07:55:05 +1100619}
620