[readconf.c servconf.c misc.h ssh-keyscan.c misc.c]
     validate routing domain is in range 0-RT_TABLEID_MAX.
     'Looks right' deraadt@
This commit is contained in:
Darren Tucker 2010-01-08 18:55:58 +11:00
parent f2705c8b7d
commit 75456e8ab2
6 changed files with 38 additions and 10 deletions

View File

@ -123,6 +123,10 @@
[PROTOCOL] [PROTOCOL]
fix an incorrect magic number and typo in PROTOCOL; bz#1688 fix an incorrect magic number and typo in PROTOCOL; bz#1688
report and fix from ueno AT unixuser.org report and fix from ueno AT unixuser.org
- stevesk@cvs.openbsd.org 2009/12/25 19:40:21
[readconf.c servconf.c misc.h ssh-keyscan.c misc.c]
validate routing domain is in range 0-RT_TABLEID_MAX.
'Looks right' deraadt@
20091226 20091226
- (tim) [contrib/cygwin/Makefile] Install ssh-copy-id and ssh-copy-id.1 - (tim) [contrib/cygwin/Makefile] Install ssh-copy-id and ssh-copy-id.1

14
misc.c
View File

@ -1,4 +1,4 @@
/* $OpenBSD: misc.c,v 1.73 2009/11/20 03:24:07 djm Exp $ */ /* $OpenBSD: misc.c,v 1.74 2009/12/25 19:40:21 stevesk Exp $ */
/* /*
* Copyright (c) 2000 Markus Friedl. All rights reserved. * Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2005,2006 Damien Miller. All rights reserved. * Copyright (c) 2005,2006 Damien Miller. All rights reserved.
@ -273,6 +273,18 @@ a2port(const char *s)
return (int)port; return (int)port;
} }
int
a2rdomain(const char *s)
{
long long rdomain;
const char *errstr;
rdomain = strtonum(s, 0, RT_TABLEID_MAX, &errstr);
if (errstr != NULL)
return -1;
return (int)rdomain;
}
int int
a2tun(const char *s, int *remote) a2tun(const char *s, int *remote)
{ {

3
misc.h
View File

@ -1,4 +1,4 @@
/* $OpenBSD: misc.h,v 1.39 2009/10/28 16:38:18 reyk Exp $ */ /* $OpenBSD: misc.h,v 1.40 2009/12/25 19:40:21 stevesk Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
@ -23,6 +23,7 @@ int set_nonblock(int);
int unset_nonblock(int); int unset_nonblock(int);
void set_nodelay(int); void set_nodelay(int);
int a2port(const char *); int a2port(const char *);
int a2rdomain(const char *);
int a2tun(const char *, int *); int a2tun(const char *, int *);
char *put_host_port(const char *, u_short); char *put_host_port(const char *, u_short);
char *hpdelim(char **); char *hpdelim(char **);

View File

@ -1,4 +1,4 @@
/* $OpenBSD: readconf.c,v 1.179 2009/10/28 16:38:18 reyk Exp $ */ /* $OpenBSD: readconf.c,v 1.180 2009/12/25 19:40:21 stevesk Exp $ */
/* /*
* Author: Tatu Ylonen <ylo@cs.hut.fi> * Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@ -925,7 +925,7 @@ parse_int:
if (!arg || *arg == '\0') if (!arg || *arg == '\0')
fatal("%.200s line %d: Missing argument.", fatal("%.200s line %d: Missing argument.",
filename, linenum); filename, linenum);
value = a2port(arg); value = a2rdomain(arg);
if (value == -1) if (value == -1)
fatal("%.200s line %d: Bad rdomain.", fatal("%.200s line %d: Bad rdomain.",
filename, linenum); filename, linenum);

View File

@ -1,4 +1,4 @@
/* $OpenBSD: servconf.c,v 1.197 2009/10/28 16:38:18 reyk Exp $ */ /* $OpenBSD: servconf.c,v 1.198 2009/12/25 19:40:21 stevesk Exp $ */
/* /*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved * All rights reserved
@ -1298,7 +1298,16 @@ process_server_config_line(ServerOptions *options, char *line,
case sRDomain: case sRDomain:
intptr = &options->rdomain; intptr = &options->rdomain;
goto parse_int; arg = strdelim(&cp);
if (!arg || *arg == '\0')
fatal("%s line %d: missing rdomain value.",
filename, linenum);
if ((value = a2rdomain(arg)) == -1)
fatal("%s line %d: invalid rdomain value.",
filename, linenum);
if (*intptr == -1)
*intptr = value;
break;
case sDeprecated: case sDeprecated:
logit("%s line %d: Deprecated option %s", logit("%s line %d: Deprecated option %s",

View File

@ -1,4 +1,4 @@
/* $OpenBSD: ssh-keyscan.c,v 1.79 2009/10/28 16:38:18 reyk Exp $ */ /* $OpenBSD: ssh-keyscan.c,v 1.80 2009/12/25 19:40:21 stevesk Exp $ */
/* /*
* Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
* *
@ -807,9 +807,11 @@ main(int argc, char **argv)
IPv4or6 = AF_INET6; IPv4or6 = AF_INET6;
break; break;
case 'V': case 'V':
scan_rdomain = a2port(optarg); scan_rdomain = a2rdomain(optarg);
if (scan_rdomain < 0) if (scan_rdomain == -1) {
scan_rdomain = -1; fprintf(stderr, "Bad rdomain '%s'\n", optarg);
exit(1);
}
break; break;
case '?': case '?':
default: default: