Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 1 | /* $OpenBSD: servconf.c,v 1.222 2011/06/22 21:57:01 djm Exp $ */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 2 | /* |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 3 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 4 | * All rights reserved |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 5 | * |
Damien Miller | e4340be | 2000-09-16 13:29:08 +1100 | [diff] [blame] | 6 | * 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". |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 11 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 12 | |
| 13 | #include "includes.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 14 | |
Damien Miller | e3b60b5 | 2006-07-10 21:08:03 +1000 | [diff] [blame] | 15 | #include <sys/types.h> |
| 16 | #include <sys/socket.h> |
| 17 | |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 18 | #include <netinet/in.h> |
| 19 | #include <netinet/in_systm.h> |
| 20 | #include <netinet/ip.h> |
| 21 | |
Damien Miller | b8fe89c | 2006-07-24 14:51:00 +1000 | [diff] [blame] | 22 | #include <netdb.h> |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 23 | #include <pwd.h> |
Damien Miller | a7a73ee | 2006-08-05 11:37:59 +1000 | [diff] [blame] | 24 | #include <stdio.h> |
Damien Miller | e7a1e5c | 2006-08-05 11:34:19 +1000 | [diff] [blame] | 25 | #include <stdlib.h> |
Damien Miller | e3476ed | 2006-07-24 14:13:33 +1000 | [diff] [blame] | 26 | #include <string.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 27 | #include <signal.h> |
Damien Miller | e6b3b61 | 2006-07-24 14:01:23 +1000 | [diff] [blame] | 28 | #include <unistd.h> |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 29 | #include <stdarg.h> |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 30 | #include <errno.h> |
Damien Miller | be43ebf | 2006-07-24 13:51:51 +1000 | [diff] [blame] | 31 | |
Damien Miller | b84886b | 2008-05-19 15:05:07 +1000 | [diff] [blame] | 32 | #include "openbsd-compat/sys-queue.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 33 | #include "xmalloc.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 34 | #include "ssh.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 35 | #include "log.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 36 | #include "buffer.h" |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 37 | #include "servconf.h" |
Damien Miller | 7892879 | 2000-04-12 20:17:38 +1000 | [diff] [blame] | 38 | #include "compat.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 39 | #include "pathnames.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 40 | #include "misc.h" |
| 41 | #include "cipher.h" |
Damien Miller | d783435 | 2006-08-05 12:39:39 +1000 | [diff] [blame] | 42 | #include "key.h" |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 43 | #include "kex.h" |
| 44 | #include "mac.h" |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 45 | #include "match.h" |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 46 | #include "channels.h" |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 47 | #include "groupaccess.h" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 48 | |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 49 | static void add_listen_addr(ServerOptions *, char *, int); |
| 50 | static void add_one_listen_addr(ServerOptions *, char *, int); |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 51 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 52 | /* Use of privilege separation or not */ |
| 53 | extern int use_privsep; |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 54 | extern Buffer cfg; |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 55 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 56 | /* Initializes the server options to their default values. */ |
| 57 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 58 | void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 59 | initialize_server_options(ServerOptions *options) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 60 | { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 61 | memset(options, 0, sizeof(*options)); |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 62 | |
| 63 | /* Portable-specific options */ |
Damien Miller | 4e448a3 | 2003-05-14 15:11:48 +1000 | [diff] [blame] | 64 | options->use_pam = -1; |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 65 | |
| 66 | /* Standard Options */ |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 67 | options->num_ports = 0; |
| 68 | options->ports_from_cmdline = 0; |
| 69 | options->listen_addrs = NULL; |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 70 | options->address_family = -1; |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 71 | options->num_host_key_files = 0; |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 72 | options->num_host_cert_files = 0; |
Damien Miller | 6f83b8e | 2000-05-02 09:23:45 +1000 | [diff] [blame] | 73 | options->pid_file = NULL; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 74 | options->server_key_bits = -1; |
| 75 | options->login_grace_time = -1; |
| 76 | options->key_regeneration_time = -1; |
Ben Lindstrom | d8a9021 | 2001-02-15 03:08:27 +0000 | [diff] [blame] | 77 | options->permit_root_login = PERMIT_NOT_SET; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 78 | options->ignore_rhosts = -1; |
| 79 | options->ignore_user_known_hosts = -1; |
| 80 | options->print_motd = -1; |
Ben Lindstrom | 7bfff36 | 2001-03-26 05:45:53 +0000 | [diff] [blame] | 81 | options->print_lastlog = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 82 | options->x11_forwarding = -1; |
| 83 | options->x11_display_offset = -1; |
Damien Miller | 95c249f | 2002-02-05 12:11:34 +1100 | [diff] [blame] | 84 | options->x11_use_localhost = -1; |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 85 | options->xauth_location = NULL; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 86 | options->strict_modes = -1; |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 87 | options->tcp_keep_alive = -1; |
Damien Miller | fcd9320 | 2002-02-05 12:26:34 +1100 | [diff] [blame] | 88 | options->log_facility = SYSLOG_FACILITY_NOT_SET; |
| 89 | options->log_level = SYSLOG_LEVEL_NOT_SET; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 90 | options->rhosts_rsa_authentication = -1; |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 91 | options->hostbased_authentication = -1; |
| 92 | options->hostbased_uses_name_from_packet_only = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 93 | options->rsa_authentication = -1; |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 94 | options->pubkey_authentication = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 95 | options->kerberos_authentication = -1; |
| 96 | options->kerberos_or_local_passwd = -1; |
| 97 | options->kerberos_ticket_cleanup = -1; |
Darren Tucker | 22ef508 | 2003-12-31 11:37:34 +1100 | [diff] [blame] | 98 | options->kerberos_get_afs_token = -1; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 99 | options->gss_authentication=-1; |
| 100 | options->gss_cleanup_creds = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 101 | options->password_authentication = -1; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 102 | options->kbd_interactive_authentication = -1; |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 103 | options->challenge_response_authentication = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 104 | options->permit_empty_passwd = -1; |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 105 | options->permit_user_env = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 106 | options->use_login = -1; |
Ben Lindstrom | 23e0f66 | 2002-06-21 01:09:47 +0000 | [diff] [blame] | 107 | options->compression = -1; |
Damien Miller | 50a41ed | 2000-10-16 12:14:42 +1100 | [diff] [blame] | 108 | options->allow_tcp_forwarding = -1; |
Damien Miller | 4f755cd | 2008-05-19 14:57:41 +1000 | [diff] [blame] | 109 | options->allow_agent_forwarding = -1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 110 | options->num_allow_users = 0; |
| 111 | options->num_deny_users = 0; |
| 112 | options->num_allow_groups = 0; |
| 113 | options->num_deny_groups = 0; |
Damien Miller | 7892879 | 2000-04-12 20:17:38 +1000 | [diff] [blame] | 114 | options->ciphers = NULL; |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 115 | options->macs = NULL; |
Damien Miller | d5f62bf | 2010-09-24 22:11:14 +1000 | [diff] [blame] | 116 | options->kex_algorithms = NULL; |
Damien Miller | 7892879 | 2000-04-12 20:17:38 +1000 | [diff] [blame] | 117 | options->protocol = SSH_PROTO_UNKNOWN; |
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 118 | options->gateway_ports = -1; |
Damien Miller | f6d9e22 | 2000-06-18 14:50:44 +1000 | [diff] [blame] | 119 | options->num_subsystems = 0; |
Damien Miller | 942da03 | 2000-08-18 13:59:06 +1000 | [diff] [blame] | 120 | options->max_startups_begin = -1; |
| 121 | options->max_startups_rate = -1; |
Damien Miller | 3702396 | 2000-07-11 17:31:38 +1000 | [diff] [blame] | 122 | options->max_startups = -1; |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 123 | options->max_authtries = -1; |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 124 | options->max_sessions = -1; |
Ben Lindstrom | 48bd7c1 | 2001-01-09 00:35:42 +0000 | [diff] [blame] | 125 | options->banner = NULL; |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 126 | options->use_dns = -1; |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 127 | options->client_alive_interval = -1; |
| 128 | options->client_alive_count_max = -1; |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 129 | options->num_authkeys_files = 0; |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 130 | options->num_accept_env = 0; |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 131 | options->permit_tun = -1; |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 132 | options->num_permitted_opens = -1; |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 133 | options->adm_forced_command = NULL; |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 134 | options->chroot_directory = NULL; |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 135 | options->zero_knowledge_password_authentication = -1; |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 136 | options->revoked_keys_file = NULL; |
| 137 | options->trusted_user_ca_keys = NULL; |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 138 | options->authorized_principals_file = NULL; |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 139 | options->ip_qos_interactive = -1; |
| 140 | options->ip_qos_bulk = -1; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 141 | } |
| 142 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 143 | void |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 144 | fill_default_server_options(ServerOptions *options) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 145 | { |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 146 | /* Portable-specific options */ |
Damien Miller | 4e448a3 | 2003-05-14 15:11:48 +1000 | [diff] [blame] | 147 | if (options->use_pam == -1) |
Damien Miller | 5c3a558 | 2003-09-23 22:12:38 +1000 | [diff] [blame] | 148 | options->use_pam = 0; |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 149 | |
| 150 | /* Standard Options */ |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 151 | if (options->protocol == SSH_PROTO_UNKNOWN) |
Darren Tucker | bad5076 | 2009-10-11 21:51:08 +1100 | [diff] [blame] | 152 | options->protocol = SSH_PROTO_2; |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 153 | if (options->num_host_key_files == 0) { |
| 154 | /* fill default hostkeys for protocols */ |
| 155 | if (options->protocol & SSH_PROTO_1) |
Damien Miller | 7fc2373 | 2002-01-22 23:19:11 +1100 | [diff] [blame] | 156 | options->host_key_files[options->num_host_key_files++] = |
| 157 | _PATH_HOST_KEY_FILE; |
| 158 | if (options->protocol & SSH_PROTO_2) { |
| 159 | options->host_key_files[options->num_host_key_files++] = |
| 160 | _PATH_HOST_RSA_KEY_FILE; |
| 161 | options->host_key_files[options->num_host_key_files++] = |
| 162 | _PATH_HOST_DSA_KEY_FILE; |
Damien Miller | dd190dd | 2010-11-11 14:17:02 +1100 | [diff] [blame] | 163 | #ifdef OPENSSL_HAS_ECC |
Damien Miller | e13cadf | 2010-09-10 11:15:33 +1000 | [diff] [blame] | 164 | options->host_key_files[options->num_host_key_files++] = |
| 165 | _PATH_HOST_ECDSA_KEY_FILE; |
Damien Miller | dd190dd | 2010-11-11 14:17:02 +1100 | [diff] [blame] | 166 | #endif |
Damien Miller | 7fc2373 | 2002-01-22 23:19:11 +1100 | [diff] [blame] | 167 | } |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 168 | } |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 169 | /* No certificates by default */ |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 170 | if (options->num_ports == 0) |
| 171 | options->ports[options->num_ports++] = SSH_DEFAULT_PORT; |
| 172 | if (options->listen_addrs == NULL) |
Ben Lindstrom | 19066a1 | 2001-04-12 23:39:26 +0000 | [diff] [blame] | 173 | add_listen_addr(options, NULL, 0); |
Damien Miller | 6f83b8e | 2000-05-02 09:23:45 +1000 | [diff] [blame] | 174 | if (options->pid_file == NULL) |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 175 | options->pid_file = _PATH_SSH_DAEMON_PID_FILE; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 176 | if (options->server_key_bits == -1) |
Darren Tucker | 7499b0c | 2008-07-02 22:35:43 +1000 | [diff] [blame] | 177 | options->server_key_bits = 1024; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 178 | if (options->login_grace_time == -1) |
Damien Miller | c134863 | 2002-09-05 14:35:14 +1000 | [diff] [blame] | 179 | options->login_grace_time = 120; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 180 | if (options->key_regeneration_time == -1) |
| 181 | options->key_regeneration_time = 3600; |
Ben Lindstrom | d8a9021 | 2001-02-15 03:08:27 +0000 | [diff] [blame] | 182 | if (options->permit_root_login == PERMIT_NOT_SET) |
| 183 | options->permit_root_login = PERMIT_YES; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 184 | if (options->ignore_rhosts == -1) |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 185 | options->ignore_rhosts = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 186 | if (options->ignore_user_known_hosts == -1) |
| 187 | options->ignore_user_known_hosts = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 188 | if (options->print_motd == -1) |
| 189 | options->print_motd = 1; |
Ben Lindstrom | 7bfff36 | 2001-03-26 05:45:53 +0000 | [diff] [blame] | 190 | if (options->print_lastlog == -1) |
| 191 | options->print_lastlog = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 192 | if (options->x11_forwarding == -1) |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 193 | options->x11_forwarding = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 194 | if (options->x11_display_offset == -1) |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 195 | options->x11_display_offset = 10; |
Damien Miller | 95c249f | 2002-02-05 12:11:34 +1100 | [diff] [blame] | 196 | if (options->x11_use_localhost == -1) |
| 197 | options->x11_use_localhost = 1; |
Damien Miller | d3a1857 | 2000-06-07 19:55:44 +1000 | [diff] [blame] | 198 | if (options->xauth_location == NULL) |
Ben Lindstrom | 1bf11f6 | 2001-06-09 01:48:01 +0000 | [diff] [blame] | 199 | options->xauth_location = _PATH_XAUTH; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 200 | if (options->strict_modes == -1) |
| 201 | options->strict_modes = 1; |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 202 | if (options->tcp_keep_alive == -1) |
| 203 | options->tcp_keep_alive = 1; |
Damien Miller | fcd9320 | 2002-02-05 12:26:34 +1100 | [diff] [blame] | 204 | if (options->log_facility == SYSLOG_FACILITY_NOT_SET) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 205 | options->log_facility = SYSLOG_FACILITY_AUTH; |
Damien Miller | fcd9320 | 2002-02-05 12:26:34 +1100 | [diff] [blame] | 206 | if (options->log_level == SYSLOG_LEVEL_NOT_SET) |
Ben Lindstrom | db65e8f | 2001-01-19 04:26:52 +0000 | [diff] [blame] | 207 | options->log_level = SYSLOG_LEVEL_INFO; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 208 | if (options->rhosts_rsa_authentication == -1) |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 209 | options->rhosts_rsa_authentication = 0; |
Ben Lindstrom | 5eabda3 | 2001-04-12 23:34:34 +0000 | [diff] [blame] | 210 | if (options->hostbased_authentication == -1) |
| 211 | options->hostbased_authentication = 0; |
| 212 | if (options->hostbased_uses_name_from_packet_only == -1) |
| 213 | options->hostbased_uses_name_from_packet_only = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 214 | if (options->rsa_authentication == -1) |
| 215 | options->rsa_authentication = 1; |
Damien Miller | 0bc1bd8 | 2000-11-13 22:57:25 +1100 | [diff] [blame] | 216 | if (options->pubkey_authentication == -1) |
| 217 | options->pubkey_authentication = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 218 | if (options->kerberos_authentication == -1) |
Damien Miller | d7de14b | 2002-04-23 21:04:51 +1000 | [diff] [blame] | 219 | options->kerberos_authentication = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 220 | if (options->kerberos_or_local_passwd == -1) |
| 221 | options->kerberos_or_local_passwd = 1; |
| 222 | if (options->kerberos_ticket_cleanup == -1) |
| 223 | options->kerberos_ticket_cleanup = 1; |
Darren Tucker | 22ef508 | 2003-12-31 11:37:34 +1100 | [diff] [blame] | 224 | if (options->kerberos_get_afs_token == -1) |
| 225 | options->kerberos_get_afs_token = 0; |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 226 | if (options->gss_authentication == -1) |
| 227 | options->gss_authentication = 0; |
| 228 | if (options->gss_cleanup_creds == -1) |
| 229 | options->gss_cleanup_creds = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 230 | if (options->password_authentication == -1) |
| 231 | options->password_authentication = 1; |
Damien Miller | 874d77b | 2000-10-14 16:23:11 +1100 | [diff] [blame] | 232 | if (options->kbd_interactive_authentication == -1) |
| 233 | options->kbd_interactive_authentication = 0; |
Ben Lindstrom | 551ea37 | 2001-06-05 18:56:16 +0000 | [diff] [blame] | 234 | if (options->challenge_response_authentication == -1) |
| 235 | options->challenge_response_authentication = 1; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 236 | if (options->permit_empty_passwd == -1) |
Damien Miller | 98c7ad6 | 2000-03-09 21:27:49 +1100 | [diff] [blame] | 237 | options->permit_empty_passwd = 0; |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 238 | if (options->permit_user_env == -1) |
| 239 | options->permit_user_env = 0; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 240 | if (options->use_login == -1) |
| 241 | options->use_login = 0; |
Ben Lindstrom | 23e0f66 | 2002-06-21 01:09:47 +0000 | [diff] [blame] | 242 | if (options->compression == -1) |
Damien Miller | 9786e6e | 2005-07-26 21:54:56 +1000 | [diff] [blame] | 243 | options->compression = COMP_DELAYED; |
Damien Miller | 50a41ed | 2000-10-16 12:14:42 +1100 | [diff] [blame] | 244 | if (options->allow_tcp_forwarding == -1) |
| 245 | options->allow_tcp_forwarding = 1; |
Damien Miller | 4f755cd | 2008-05-19 14:57:41 +1000 | [diff] [blame] | 246 | if (options->allow_agent_forwarding == -1) |
| 247 | options->allow_agent_forwarding = 1; |
Damien Miller | e247cc4 | 2000-05-07 12:03:14 +1000 | [diff] [blame] | 248 | if (options->gateway_ports == -1) |
| 249 | options->gateway_ports = 0; |
Damien Miller | 3702396 | 2000-07-11 17:31:38 +1000 | [diff] [blame] | 250 | if (options->max_startups == -1) |
| 251 | options->max_startups = 10; |
Damien Miller | 942da03 | 2000-08-18 13:59:06 +1000 | [diff] [blame] | 252 | if (options->max_startups_rate == -1) |
| 253 | options->max_startups_rate = 100; /* 100% */ |
| 254 | if (options->max_startups_begin == -1) |
| 255 | options->max_startups_begin = options->max_startups; |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 256 | if (options->max_authtries == -1) |
| 257 | options->max_authtries = DEFAULT_AUTH_FAIL_MAX; |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 258 | if (options->max_sessions == -1) |
| 259 | options->max_sessions = DEFAULT_SESSIONS_MAX; |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 260 | if (options->use_dns == -1) |
| 261 | options->use_dns = 1; |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 262 | if (options->client_alive_interval == -1) |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 263 | options->client_alive_interval = 0; |
Ben Lindstrom | 5744dc4 | 2001-04-13 23:28:01 +0000 | [diff] [blame] | 264 | if (options->client_alive_count_max == -1) |
| 265 | options->client_alive_count_max = 3; |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 266 | if (options->num_authkeys_files == 0) { |
| 267 | options->authorized_keys_files[options->num_authkeys_files++] = |
| 268 | xstrdup(_PATH_SSH_USER_PERMITTED_KEYS); |
| 269 | options->authorized_keys_files[options->num_authkeys_files++] = |
| 270 | xstrdup(_PATH_SSH_USER_PERMITTED_KEYS2); |
| 271 | } |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 272 | if (options->permit_tun == -1) |
Damien Miller | 7b58e80 | 2005-12-13 19:33:19 +1100 | [diff] [blame] | 273 | options->permit_tun = SSH_TUNMODE_NO; |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 274 | if (options->zero_knowledge_password_authentication == -1) |
| 275 | options->zero_knowledge_password_authentication = 0; |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 276 | if (options->ip_qos_interactive == -1) |
| 277 | options->ip_qos_interactive = IPTOS_LOWDELAY; |
| 278 | if (options->ip_qos_bulk == -1) |
| 279 | options->ip_qos_bulk = IPTOS_THROUGHPUT; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 280 | |
Ben Lindstrom | fb62a69 | 2002-06-06 19:47:11 +0000 | [diff] [blame] | 281 | /* Turn privilege separation on by default */ |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 282 | if (use_privsep == -1) |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 283 | use_privsep = PRIVSEP_ON; |
Damien Miller | 4903eb4 | 2002-06-21 16:20:44 +1000 | [diff] [blame] | 284 | |
Tim Rice | 40017b0 | 2002-07-14 13:36:49 -0700 | [diff] [blame] | 285 | #ifndef HAVE_MMAP |
Damien Miller | 4903eb4 | 2002-06-21 16:20:44 +1000 | [diff] [blame] | 286 | if (use_privsep && options->compression == 1) { |
| 287 | error("This platform does not support both privilege " |
| 288 | "separation and compression"); |
| 289 | error("Compression disabled"); |
| 290 | options->compression = 0; |
| 291 | } |
| 292 | #endif |
| 293 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 294 | } |
| 295 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 296 | /* Keyword tokens. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 297 | typedef enum { |
| 298 | sBadOption, /* == unknown option */ |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 299 | /* Portable-specific options */ |
Damien Miller | 4e448a3 | 2003-05-14 15:11:48 +1000 | [diff] [blame] | 300 | sUsePAM, |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 301 | /* Standard Options */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 302 | sPort, sHostKeyFile, sServerKeyBits, sLoginGraceTime, sKeyRegenerationTime, |
| 303 | sPermitRootLogin, sLogFacility, sLogLevel, |
Darren Tucker | ec960f2 | 2003-08-13 20:37:05 +1000 | [diff] [blame] | 304 | sRhostsRSAAuthentication, sRSAAuthentication, |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 305 | sKerberosAuthentication, sKerberosOrLocalPasswd, sKerberosTicketCleanup, |
Darren Tucker | 22ef508 | 2003-12-31 11:37:34 +1100 | [diff] [blame] | 306 | sKerberosGetAFSToken, |
Darren Tucker | 6aaa58c | 2003-08-02 22:24:49 +1000 | [diff] [blame] | 307 | sKerberosTgtPassing, sChallengeResponseAuthentication, |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 308 | sPasswordAuthentication, sKbdInteractiveAuthentication, |
| 309 | sListenAddress, sAddressFamily, |
Ben Lindstrom | 7bfff36 | 2001-03-26 05:45:53 +0000 | [diff] [blame] | 310 | sPrintMotd, sPrintLastLog, sIgnoreRhosts, |
Damien Miller | 95c249f | 2002-02-05 12:11:34 +1100 | [diff] [blame] | 311 | sX11Forwarding, sX11DisplayOffset, sX11UseLocalhost, |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 312 | sStrictModes, sEmptyPasswd, sTCPKeepAlive, |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 313 | sPermitUserEnvironment, sUseLogin, sAllowTcpForwarding, sCompression, |
Damien Miller | 50a41ed | 2000-10-16 12:14:42 +1100 | [diff] [blame] | 314 | sAllowUsers, sDenyUsers, sAllowGroups, sDenyGroups, |
Ben Lindstrom | 06b33aa | 2001-02-15 03:01:59 +0000 | [diff] [blame] | 315 | sIgnoreUserKnownHosts, sCiphers, sMacs, sProtocol, sPidFile, |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 316 | sGatewayPorts, sPubkeyAuthentication, sXAuthLocation, sSubsystem, |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 317 | sMaxStartups, sMaxAuthTries, sMaxSessions, |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 318 | sBanner, sUseDNS, sHostbasedAuthentication, |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 319 | sHostbasedUsesNameFromPacketOnly, sClientAliveInterval, |
Damien Miller | ec2eaa3 | 2011-05-20 18:57:14 +1000 | [diff] [blame] | 320 | sClientAliveCountMax, sAuthorizedKeysFile, |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 321 | sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 322 | sMatch, sPermitOpen, sForceCommand, sChrootDirectory, |
Darren Tucker | 7bd98e7 | 2010-01-10 10:31:12 +1100 | [diff] [blame] | 323 | sUsePrivilegeSeparation, sAllowAgentForwarding, |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 324 | sZeroKnowledgePasswordAuthentication, sHostCertificate, |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 325 | sRevokedKeys, sTrustedUserCAKeys, sAuthorizedPrincipalsFile, |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 326 | sKexAlgorithms, sIPQoS, |
Damien Miller | f9b3feb | 2003-05-16 11:38:32 +1000 | [diff] [blame] | 327 | sDeprecated, sUnsupported |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 328 | } ServerOpCodes; |
| 329 | |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 330 | #define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */ |
| 331 | #define SSHCFG_MATCH 0x02 /* allowed inside a Match section */ |
| 332 | #define SSHCFG_ALL (SSHCFG_GLOBAL|SSHCFG_MATCH) |
| 333 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 334 | /* Textual representation of the tokens. */ |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 335 | static struct { |
| 336 | const char *name; |
| 337 | ServerOpCodes opcode; |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 338 | u_int flags; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 339 | } keywords[] = { |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 340 | /* Portable-specific options */ |
Damien Miller | 6ac2c48 | 2003-05-16 11:42:35 +1000 | [diff] [blame] | 341 | #ifdef USE_PAM |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 342 | { "usepam", sUsePAM, SSHCFG_GLOBAL }, |
Damien Miller | 6ac2c48 | 2003-05-16 11:42:35 +1000 | [diff] [blame] | 343 | #else |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 344 | { "usepam", sUnsupported, SSHCFG_GLOBAL }, |
Damien Miller | 6ac2c48 | 2003-05-16 11:42:35 +1000 | [diff] [blame] | 345 | #endif |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 346 | { "pamauthenticationviakbdint", sDeprecated, SSHCFG_GLOBAL }, |
Damien Miller | 726273e | 2001-11-12 11:40:11 +1100 | [diff] [blame] | 347 | /* Standard Options */ |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 348 | { "port", sPort, SSHCFG_GLOBAL }, |
| 349 | { "hostkey", sHostKeyFile, SSHCFG_GLOBAL }, |
| 350 | { "hostdsakey", sHostKeyFile, SSHCFG_GLOBAL }, /* alias */ |
| 351 | { "pidfile", sPidFile, SSHCFG_GLOBAL }, |
| 352 | { "serverkeybits", sServerKeyBits, SSHCFG_GLOBAL }, |
| 353 | { "logingracetime", sLoginGraceTime, SSHCFG_GLOBAL }, |
| 354 | { "keyregenerationinterval", sKeyRegenerationTime, SSHCFG_GLOBAL }, |
Darren Tucker | 15f9427 | 2008-01-01 20:36:56 +1100 | [diff] [blame] | 355 | { "permitrootlogin", sPermitRootLogin, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 356 | { "syslogfacility", sLogFacility, SSHCFG_GLOBAL }, |
| 357 | { "loglevel", sLogLevel, SSHCFG_GLOBAL }, |
| 358 | { "rhostsauthentication", sDeprecated, SSHCFG_GLOBAL }, |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 359 | { "rhostsrsaauthentication", sRhostsRSAAuthentication, SSHCFG_ALL }, |
| 360 | { "hostbasedauthentication", sHostbasedAuthentication, SSHCFG_ALL }, |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 361 | { "hostbasedusesnamefrompacketonly", sHostbasedUsesNameFromPacketOnly, SSHCFG_ALL }, |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 362 | { "rsaauthentication", sRSAAuthentication, SSHCFG_ALL }, |
| 363 | { "pubkeyauthentication", sPubkeyAuthentication, SSHCFG_ALL }, |
Darren Tucker | 64cee36 | 2009-06-21 20:26:17 +1000 | [diff] [blame] | 364 | { "dsaauthentication", sPubkeyAuthentication, SSHCFG_GLOBAL }, /* alias */ |
Darren Tucker | 6aaa58c | 2003-08-02 22:24:49 +1000 | [diff] [blame] | 365 | #ifdef KRB5 |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 366 | { "kerberosauthentication", sKerberosAuthentication, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 367 | { "kerberosorlocalpasswd", sKerberosOrLocalPasswd, SSHCFG_GLOBAL }, |
| 368 | { "kerberosticketcleanup", sKerberosTicketCleanup, SSHCFG_GLOBAL }, |
Darren Tucker | 3c78c5e | 2004-01-23 22:03:10 +1100 | [diff] [blame] | 369 | #ifdef USE_AFS |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 370 | { "kerberosgetafstoken", sKerberosGetAFSToken, SSHCFG_GLOBAL }, |
Damien Miller | f9b3feb | 2003-05-16 11:38:32 +1000 | [diff] [blame] | 371 | #else |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 372 | { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL }, |
Darren Tucker | 409cb32 | 2004-01-05 22:36:51 +1100 | [diff] [blame] | 373 | #endif |
| 374 | #else |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 375 | { "kerberosauthentication", sUnsupported, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 376 | { "kerberosorlocalpasswd", sUnsupported, SSHCFG_GLOBAL }, |
| 377 | { "kerberosticketcleanup", sUnsupported, SSHCFG_GLOBAL }, |
| 378 | { "kerberosgetafstoken", sUnsupported, SSHCFG_GLOBAL }, |
Damien Miller | f9b3feb | 2003-05-16 11:38:32 +1000 | [diff] [blame] | 379 | #endif |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 380 | { "kerberostgtpassing", sUnsupported, SSHCFG_GLOBAL }, |
| 381 | { "afstokenpassing", sUnsupported, SSHCFG_GLOBAL }, |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 382 | #ifdef GSSAPI |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 383 | { "gssapiauthentication", sGssAuthentication, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 384 | { "gssapicleanupcredentials", sGssCleanupCreds, SSHCFG_GLOBAL }, |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 385 | #else |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 386 | { "gssapiauthentication", sUnsupported, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 387 | { "gssapicleanupcredentials", sUnsupported, SSHCFG_GLOBAL }, |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 388 | #endif |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 389 | { "passwordauthentication", sPasswordAuthentication, SSHCFG_ALL }, |
| 390 | { "kbdinteractiveauthentication", sKbdInteractiveAuthentication, SSHCFG_ALL }, |
Darren Tucker | 1d75f22 | 2007-03-01 21:31:28 +1100 | [diff] [blame] | 391 | { "challengeresponseauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 392 | { "skeyauthentication", sChallengeResponseAuthentication, SSHCFG_GLOBAL }, /* alias */ |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 393 | #ifdef JPAKE |
| 394 | { "zeroknowledgepasswordauthentication", sZeroKnowledgePasswordAuthentication, SSHCFG_ALL }, |
| 395 | #else |
| 396 | { "zeroknowledgepasswordauthentication", sUnsupported, SSHCFG_ALL }, |
| 397 | #endif |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 398 | { "checkmail", sDeprecated, SSHCFG_GLOBAL }, |
| 399 | { "listenaddress", sListenAddress, SSHCFG_GLOBAL }, |
| 400 | { "addressfamily", sAddressFamily, SSHCFG_GLOBAL }, |
| 401 | { "printmotd", sPrintMotd, SSHCFG_GLOBAL }, |
| 402 | { "printlastlog", sPrintLastLog, SSHCFG_GLOBAL }, |
| 403 | { "ignorerhosts", sIgnoreRhosts, SSHCFG_GLOBAL }, |
| 404 | { "ignoreuserknownhosts", sIgnoreUserKnownHosts, SSHCFG_GLOBAL }, |
Damien Miller | d1de995 | 2006-07-24 14:05:48 +1000 | [diff] [blame] | 405 | { "x11forwarding", sX11Forwarding, SSHCFG_ALL }, |
| 406 | { "x11displayoffset", sX11DisplayOffset, SSHCFG_ALL }, |
| 407 | { "x11uselocalhost", sX11UseLocalhost, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 408 | { "xauthlocation", sXAuthLocation, SSHCFG_GLOBAL }, |
| 409 | { "strictmodes", sStrictModes, SSHCFG_GLOBAL }, |
Damien Miller | 51bde60 | 2008-11-03 19:23:10 +1100 | [diff] [blame] | 410 | { "permitemptypasswords", sEmptyPasswd, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 411 | { "permituserenvironment", sPermitUserEnvironment, SSHCFG_GLOBAL }, |
| 412 | { "uselogin", sUseLogin, SSHCFG_GLOBAL }, |
| 413 | { "compression", sCompression, SSHCFG_GLOBAL }, |
| 414 | { "tcpkeepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, |
| 415 | { "keepalive", sTCPKeepAlive, SSHCFG_GLOBAL }, /* obsolete alias */ |
| 416 | { "allowtcpforwarding", sAllowTcpForwarding, SSHCFG_ALL }, |
Damien Miller | 4f755cd | 2008-05-19 14:57:41 +1000 | [diff] [blame] | 417 | { "allowagentforwarding", sAllowAgentForwarding, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 418 | { "allowusers", sAllowUsers, SSHCFG_GLOBAL }, |
| 419 | { "denyusers", sDenyUsers, SSHCFG_GLOBAL }, |
| 420 | { "allowgroups", sAllowGroups, SSHCFG_GLOBAL }, |
| 421 | { "denygroups", sDenyGroups, SSHCFG_GLOBAL }, |
| 422 | { "ciphers", sCiphers, SSHCFG_GLOBAL }, |
| 423 | { "macs", sMacs, SSHCFG_GLOBAL }, |
| 424 | { "protocol", sProtocol, SSHCFG_GLOBAL }, |
| 425 | { "gatewayports", sGatewayPorts, SSHCFG_ALL }, |
| 426 | { "subsystem", sSubsystem, SSHCFG_GLOBAL }, |
| 427 | { "maxstartups", sMaxStartups, SSHCFG_GLOBAL }, |
Damien Miller | 307c1d1 | 2008-06-16 07:56:20 +1000 | [diff] [blame] | 428 | { "maxauthtries", sMaxAuthTries, SSHCFG_ALL }, |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 429 | { "maxsessions", sMaxSessions, SSHCFG_ALL }, |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 430 | { "banner", sBanner, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 431 | { "usedns", sUseDNS, SSHCFG_GLOBAL }, |
| 432 | { "verifyreversemapping", sDeprecated, SSHCFG_GLOBAL }, |
| 433 | { "reversemappingcheck", sDeprecated, SSHCFG_GLOBAL }, |
| 434 | { "clientaliveinterval", sClientAliveInterval, SSHCFG_GLOBAL }, |
| 435 | { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 436 | { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_ALL }, |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 437 | { "authorizedkeysfile2", sDeprecated, SSHCFG_ALL }, |
Darren Tucker | 64cee36 | 2009-06-21 20:26:17 +1000 | [diff] [blame] | 438 | { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL}, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 439 | { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 440 | { "permittunnel", sPermitTunnel, SSHCFG_ALL }, |
Darren Tucker | 64cee36 | 2009-06-21 20:26:17 +1000 | [diff] [blame] | 441 | { "match", sMatch, SSHCFG_ALL }, |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 442 | { "permitopen", sPermitOpen, SSHCFG_ALL }, |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 443 | { "forcecommand", sForceCommand, SSHCFG_ALL }, |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 444 | { "chrootdirectory", sChrootDirectory, SSHCFG_ALL }, |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 445 | { "hostcertificate", sHostCertificate, SSHCFG_GLOBAL }, |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 446 | { "revokedkeys", sRevokedKeys, SSHCFG_ALL }, |
| 447 | { "trustedusercakeys", sTrustedUserCAKeys, SSHCFG_ALL }, |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 448 | { "authorizedprincipalsfile", sAuthorizedPrincipalsFile, SSHCFG_ALL }, |
Damien Miller | d5f62bf | 2010-09-24 22:11:14 +1000 | [diff] [blame] | 449 | { "kexalgorithms", sKexAlgorithms, SSHCFG_GLOBAL }, |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 450 | { "ipqos", sIPQoS, SSHCFG_ALL }, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 451 | { NULL, sBadOption, 0 } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 452 | }; |
| 453 | |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 454 | static struct { |
| 455 | int val; |
| 456 | char *text; |
| 457 | } tunmode_desc[] = { |
| 458 | { SSH_TUNMODE_NO, "no" }, |
| 459 | { SSH_TUNMODE_POINTOPOINT, "point-to-point" }, |
| 460 | { SSH_TUNMODE_ETHERNET, "ethernet" }, |
| 461 | { SSH_TUNMODE_YES, "yes" }, |
| 462 | { -1, NULL } |
| 463 | }; |
| 464 | |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 465 | /* |
Ben Lindstrom | 3704c26 | 2001-04-02 18:20:03 +0000 | [diff] [blame] | 466 | * Returns the number of the token pointed to by cp or sBadOption. |
Damien Miller | 5428f64 | 1999-11-25 11:54:57 +1100 | [diff] [blame] | 467 | */ |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 468 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 469 | static ServerOpCodes |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 470 | parse_token(const char *cp, const char *filename, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 471 | int linenum, u_int *flags) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 472 | { |
Ben Lindstrom | 46c1622 | 2000-12-22 01:43:59 +0000 | [diff] [blame] | 473 | u_int i; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 474 | |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 475 | for (i = 0; keywords[i].name; i++) |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 476 | if (strcasecmp(cp, keywords[i].name) == 0) { |
| 477 | *flags = keywords[i].flags; |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 478 | return keywords[i].opcode; |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 479 | } |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 480 | |
Ben Lindstrom | b5cdc66 | 2001-04-16 02:13:26 +0000 | [diff] [blame] | 481 | error("%s: line %d: Bad configuration option: %s", |
| 482 | filename, linenum, cp); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 483 | return sBadOption; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 484 | } |
| 485 | |
Darren Tucker | 88b6fb2 | 2010-01-13 22:44:29 +1100 | [diff] [blame] | 486 | char * |
| 487 | derelativise_path(const char *path) |
| 488 | { |
Damien Miller | 44451d0 | 2010-03-26 10:40:04 +1100 | [diff] [blame] | 489 | char *expanded, *ret, cwd[MAXPATHLEN]; |
Darren Tucker | 88b6fb2 | 2010-01-13 22:44:29 +1100 | [diff] [blame] | 490 | |
| 491 | expanded = tilde_expand_filename(path, getuid()); |
| 492 | if (*expanded == '/') |
| 493 | return expanded; |
Damien Miller | 44451d0 | 2010-03-26 10:40:04 +1100 | [diff] [blame] | 494 | if (getcwd(cwd, sizeof(cwd)) == NULL) |
Darren Tucker | 88b6fb2 | 2010-01-13 22:44:29 +1100 | [diff] [blame] | 495 | fatal("%s: getcwd: %s", __func__, strerror(errno)); |
| 496 | xasprintf(&ret, "%s/%s", cwd, expanded); |
Darren Tucker | 88b6fb2 | 2010-01-13 22:44:29 +1100 | [diff] [blame] | 497 | xfree(expanded); |
| 498 | return ret; |
| 499 | } |
| 500 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 501 | static void |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 502 | add_listen_addr(ServerOptions *options, char *addr, int port) |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 503 | { |
Damien Miller | eccb9de | 2005-06-17 12:59:34 +1000 | [diff] [blame] | 504 | u_int i; |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 505 | |
| 506 | if (options->num_ports == 0) |
| 507 | options->ports[options->num_ports++] = SSH_DEFAULT_PORT; |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 508 | if (options->address_family == -1) |
| 509 | options->address_family = AF_UNSPEC; |
Ben Lindstrom | 19066a1 | 2001-04-12 23:39:26 +0000 | [diff] [blame] | 510 | if (port == 0) |
Ben Lindstrom | c510af4 | 2001-04-07 17:25:48 +0000 | [diff] [blame] | 511 | for (i = 0; i < options->num_ports; i++) |
| 512 | add_one_listen_addr(options, addr, options->ports[i]); |
| 513 | else |
Ben Lindstrom | 19066a1 | 2001-04-12 23:39:26 +0000 | [diff] [blame] | 514 | add_one_listen_addr(options, addr, port); |
Ben Lindstrom | c510af4 | 2001-04-07 17:25:48 +0000 | [diff] [blame] | 515 | } |
| 516 | |
Ben Lindstrom | bba8121 | 2001-06-25 05:01:22 +0000 | [diff] [blame] | 517 | static void |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 518 | add_one_listen_addr(ServerOptions *options, char *addr, int port) |
Ben Lindstrom | c510af4 | 2001-04-07 17:25:48 +0000 | [diff] [blame] | 519 | { |
| 520 | struct addrinfo hints, *ai, *aitop; |
| 521 | char strport[NI_MAXSERV]; |
| 522 | int gaierr; |
| 523 | |
| 524 | memset(&hints, 0, sizeof(hints)); |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 525 | hints.ai_family = options->address_family; |
Ben Lindstrom | c510af4 | 2001-04-07 17:25:48 +0000 | [diff] [blame] | 526 | hints.ai_socktype = SOCK_STREAM; |
| 527 | hints.ai_flags = (addr == NULL) ? AI_PASSIVE : 0; |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 528 | snprintf(strport, sizeof strport, "%d", port); |
Ben Lindstrom | c510af4 | 2001-04-07 17:25:48 +0000 | [diff] [blame] | 529 | if ((gaierr = getaddrinfo(addr, strport, &hints, &aitop)) != 0) |
| 530 | fatal("bad addr or host: %s (%s)", |
| 531 | addr ? addr : "<NULL>", |
Darren Tucker | 4abde77 | 2007-12-29 02:43:51 +1100 | [diff] [blame] | 532 | ssh_gai_strerror(gaierr)); |
Ben Lindstrom | c510af4 | 2001-04-07 17:25:48 +0000 | [diff] [blame] | 533 | for (ai = aitop; ai->ai_next; ai = ai->ai_next) |
| 534 | ; |
| 535 | ai->ai_next = options->listen_addrs; |
| 536 | options->listen_addrs = aitop; |
Damien Miller | 34132e5 | 2000-01-14 15:45:46 +1100 | [diff] [blame] | 537 | } |
| 538 | |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 539 | /* |
| 540 | * The strategy for the Match blocks is that the config file is parsed twice. |
| 541 | * |
| 542 | * The first time is at startup. activep is initialized to 1 and the |
| 543 | * directives in the global context are processed and acted on. Hitting a |
| 544 | * Match directive unsets activep and the directives inside the block are |
| 545 | * checked for syntax only. |
| 546 | * |
| 547 | * The second time is after a connection has been established but before |
| 548 | * authentication. activep is initialized to 2 and global config directives |
| 549 | * are ignored since they have already been processed. If the criteria in a |
| 550 | * Match block is met, activep is set and the subsequent directives |
| 551 | * processed and actioned until EOF or another Match block unsets it. Any |
| 552 | * options set are copied into the main server config. |
| 553 | * |
| 554 | * Potential additions/improvements: |
| 555 | * - Add Match support for pre-kex directives, eg Protocol, Ciphers. |
| 556 | * |
| 557 | * - Add a Tag directive (idea from David Leonard) ala pf, eg: |
| 558 | * Match Address 192.168.0.* |
| 559 | * Tag trusted |
| 560 | * Match Group wheel |
| 561 | * Tag trusted |
| 562 | * Match Tag trusted |
| 563 | * AllowTcpForwarding yes |
| 564 | * GatewayPorts clientspecified |
| 565 | * [...] |
| 566 | * |
| 567 | * - Add a PermittedChannelRequests directive |
| 568 | * Match Group shell |
| 569 | * PermittedChannelRequests session,forwarded-tcpip |
| 570 | */ |
| 571 | |
| 572 | static int |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 573 | match_cfg_line_group(const char *grps, int line, const char *user) |
| 574 | { |
| 575 | int result = 0; |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 576 | struct passwd *pw; |
| 577 | |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 578 | if (user == NULL) |
| 579 | goto out; |
| 580 | |
| 581 | if ((pw = getpwnam(user)) == NULL) { |
| 582 | debug("Can't match group at line %d because user %.100s does " |
| 583 | "not exist", line, user); |
| 584 | } else if (ga_init(pw->pw_name, pw->pw_gid) == 0) { |
| 585 | debug("Can't Match group because user %.100s not in any group " |
| 586 | "at line %d", user, line); |
Darren Tucker | b03fd02 | 2008-07-04 13:51:12 +1000 | [diff] [blame] | 587 | } else if (ga_match_pattern_list(grps) != 1) { |
| 588 | debug("user %.100s does not match group list %.100s at line %d", |
| 589 | user, grps, line); |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 590 | } else { |
Darren Tucker | b03fd02 | 2008-07-04 13:51:12 +1000 | [diff] [blame] | 591 | debug("user %.100s matched group list %.100s at line %d", user, |
| 592 | grps, line); |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 593 | result = 1; |
| 594 | } |
| 595 | out: |
| 596 | ga_free(); |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 597 | return result; |
| 598 | } |
| 599 | |
| 600 | static int |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 601 | match_cfg_line(char **condition, int line, const char *user, const char *host, |
| 602 | const char *address) |
| 603 | { |
| 604 | int result = 1; |
| 605 | char *arg, *attrib, *cp = *condition; |
| 606 | size_t len; |
| 607 | |
| 608 | if (user == NULL) |
| 609 | debug3("checking syntax for 'Match %s'", cp); |
| 610 | else |
| 611 | debug3("checking match for '%s' user %s host %s addr %s", cp, |
| 612 | user ? user : "(null)", host ? host : "(null)", |
| 613 | address ? address : "(null)"); |
| 614 | |
| 615 | while ((attrib = strdelim(&cp)) && *attrib != '\0') { |
| 616 | if ((arg = strdelim(&cp)) == NULL || *arg == '\0') { |
| 617 | error("Missing Match criteria for %s", attrib); |
| 618 | return -1; |
| 619 | } |
| 620 | len = strlen(arg); |
| 621 | if (strcasecmp(attrib, "user") == 0) { |
| 622 | if (!user) { |
| 623 | result = 0; |
| 624 | continue; |
| 625 | } |
| 626 | if (match_pattern_list(user, arg, len, 0) != 1) |
| 627 | result = 0; |
| 628 | else |
| 629 | debug("user %.100s matched 'User %.100s' at " |
| 630 | "line %d", user, arg, line); |
Damien Miller | 565ca3f | 2006-08-19 00:23:15 +1000 | [diff] [blame] | 631 | } else if (strcasecmp(attrib, "group") == 0) { |
| 632 | switch (match_cfg_line_group(arg, line, user)) { |
| 633 | case -1: |
| 634 | return -1; |
| 635 | case 0: |
| 636 | result = 0; |
| 637 | } |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 638 | } else if (strcasecmp(attrib, "host") == 0) { |
| 639 | if (!host) { |
| 640 | result = 0; |
| 641 | continue; |
| 642 | } |
| 643 | if (match_hostname(host, arg, len) != 1) |
| 644 | result = 0; |
| 645 | else |
| 646 | debug("connection from %.100s matched 'Host " |
| 647 | "%.100s' at line %d", host, arg, line); |
| 648 | } else if (strcasecmp(attrib, "address") == 0) { |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 649 | switch (addr_match_list(address, arg)) { |
| 650 | case 1: |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 651 | debug("connection from %.100s matched 'Address " |
| 652 | "%.100s' at line %d", address, arg, line); |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 653 | break; |
| 654 | case 0: |
Darren Tucker | 896ad5a | 2008-06-11 09:34:46 +1000 | [diff] [blame] | 655 | case -1: |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 656 | result = 0; |
| 657 | break; |
Darren Tucker | 896ad5a | 2008-06-11 09:34:46 +1000 | [diff] [blame] | 658 | case -2: |
Darren Tucker | 7a3935d | 2008-06-10 22:59:10 +1000 | [diff] [blame] | 659 | return -1; |
| 660 | } |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 661 | } else { |
| 662 | error("Unsupported Match attribute %s", attrib); |
| 663 | return -1; |
| 664 | } |
| 665 | } |
| 666 | if (user != NULL) |
| 667 | debug3("match %sfound", result ? "" : "not "); |
| 668 | *condition = cp; |
| 669 | return result; |
| 670 | } |
| 671 | |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 672 | #define WHITESPACE " \t\r\n" |
| 673 | |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 674 | /* Multistate option parsing */ |
| 675 | struct multistate { |
| 676 | char *key; |
| 677 | int value; |
| 678 | }; |
| 679 | static const struct multistate multistate_addressfamily[] = { |
| 680 | { "inet", AF_INET }, |
| 681 | { "inet6", AF_INET6 }, |
| 682 | { "any", AF_UNSPEC }, |
| 683 | { NULL, -1 } |
| 684 | }; |
| 685 | static const struct multistate multistate_permitrootlogin[] = { |
| 686 | { "without-password", PERMIT_NO_PASSWD }, |
| 687 | { "forced-commands-only", PERMIT_FORCED_ONLY }, |
| 688 | { "yes", PERMIT_YES }, |
| 689 | { "no", PERMIT_NO }, |
| 690 | { NULL, -1 } |
| 691 | }; |
| 692 | static const struct multistate multistate_compression[] = { |
| 693 | { "delayed", COMP_DELAYED }, |
| 694 | { "yes", COMP_ZLIB }, |
| 695 | { "no", COMP_NONE }, |
| 696 | { NULL, -1 } |
| 697 | }; |
| 698 | static const struct multistate multistate_gatewayports[] = { |
| 699 | { "clientspecified", 2 }, |
| 700 | { "yes", 1 }, |
| 701 | { "no", 0 }, |
| 702 | { NULL, -1 } |
| 703 | }; |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 704 | static const struct multistate multistate_privsep[] = { |
| 705 | { "sandbox", PRIVSEP_SANDBOX }, |
| 706 | { "yes", PRIVSEP_ON }, |
| 707 | { "no", PRIVSEP_OFF }, |
| 708 | { NULL, -1 } |
| 709 | }; |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 710 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 711 | int |
| 712 | process_server_config_line(ServerOptions *options, char *line, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 713 | const char *filename, int linenum, int *activep, const char *user, |
| 714 | const char *host, const char *address) |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 715 | { |
| 716 | char *cp, **charptr, *arg, *p; |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 717 | int cmdline = 0, *intptr, value, value2, n; |
Darren Tucker | 1e44c5d | 2008-01-01 20:32:26 +1100 | [diff] [blame] | 718 | SyslogFacility *log_facility_ptr; |
| 719 | LogLevel *log_level_ptr; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 720 | ServerOpCodes opcode; |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 721 | int port; |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 722 | u_int i, flags = 0; |
Damien Miller | 917f9b6 | 2006-07-10 20:36:47 +1000 | [diff] [blame] | 723 | size_t len; |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 724 | const struct multistate *multistate_ptr; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 725 | |
| 726 | cp = line; |
Damien Miller | 78f16cb | 2006-03-26 13:54:37 +1100 | [diff] [blame] | 727 | if ((arg = strdelim(&cp)) == NULL) |
Damien Miller | 928b236 | 2006-03-26 13:53:32 +1100 | [diff] [blame] | 728 | return 0; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 729 | /* Ignore leading whitespace */ |
| 730 | if (*arg == '\0') |
| 731 | arg = strdelim(&cp); |
| 732 | if (!arg || !*arg || *arg == '#') |
| 733 | return 0; |
| 734 | intptr = NULL; |
| 735 | charptr = NULL; |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 736 | opcode = parse_token(arg, filename, linenum, &flags); |
| 737 | |
| 738 | if (activep == NULL) { /* We are processing a command line directive */ |
| 739 | cmdline = 1; |
| 740 | activep = &cmdline; |
| 741 | } |
| 742 | if (*activep && opcode != sMatch) |
| 743 | debug3("%s:%d setting %s %s", filename, linenum, arg, cp); |
| 744 | if (*activep == 0 && !(flags & SSHCFG_MATCH)) { |
| 745 | if (user == NULL) { |
| 746 | fatal("%s line %d: Directive '%s' is not allowed " |
| 747 | "within a Match block", filename, linenum, arg); |
| 748 | } else { /* this is a directive we have already processed */ |
| 749 | while (arg) |
| 750 | arg = strdelim(&cp); |
| 751 | return 0; |
| 752 | } |
| 753 | } |
| 754 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 755 | switch (opcode) { |
| 756 | /* Portable-specific options */ |
Damien Miller | 4e448a3 | 2003-05-14 15:11:48 +1000 | [diff] [blame] | 757 | case sUsePAM: |
| 758 | intptr = &options->use_pam; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 759 | goto parse_flag; |
| 760 | |
| 761 | /* Standard Options */ |
| 762 | case sBadOption: |
| 763 | return -1; |
| 764 | case sPort: |
| 765 | /* ignore ports from configfile if cmdline specifies ports */ |
| 766 | if (options->ports_from_cmdline) |
| 767 | return 0; |
| 768 | if (options->listen_addrs != NULL) |
| 769 | fatal("%s line %d: ports must be specified before " |
Damien Miller | 4fbf08a | 2002-01-22 23:35:09 +1100 | [diff] [blame] | 770 | "ListenAddress.", filename, linenum); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 771 | if (options->num_ports >= MAX_PORTS) |
| 772 | fatal("%s line %d: too many ports.", |
| 773 | filename, linenum); |
| 774 | arg = strdelim(&cp); |
| 775 | if (!arg || *arg == '\0') |
| 776 | fatal("%s line %d: missing port number.", |
| 777 | filename, linenum); |
| 778 | options->ports[options->num_ports++] = a2port(arg); |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 779 | if (options->ports[options->num_ports-1] <= 0) |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 780 | fatal("%s line %d: Badly formatted port number.", |
| 781 | filename, linenum); |
| 782 | break; |
| 783 | |
| 784 | case sServerKeyBits: |
| 785 | intptr = &options->server_key_bits; |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 786 | parse_int: |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 787 | arg = strdelim(&cp); |
| 788 | if (!arg || *arg == '\0') |
| 789 | fatal("%s line %d: missing integer value.", |
| 790 | filename, linenum); |
| 791 | value = atoi(arg); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 792 | if (*activep && *intptr == -1) |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 793 | *intptr = value; |
| 794 | break; |
| 795 | |
| 796 | case sLoginGraceTime: |
| 797 | intptr = &options->login_grace_time; |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 798 | parse_time: |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 799 | arg = strdelim(&cp); |
| 800 | if (!arg || *arg == '\0') |
| 801 | fatal("%s line %d: missing time value.", |
| 802 | filename, linenum); |
| 803 | if ((value = convtime(arg)) == -1) |
| 804 | fatal("%s line %d: invalid time value.", |
| 805 | filename, linenum); |
| 806 | if (*intptr == -1) |
| 807 | *intptr = value; |
| 808 | break; |
| 809 | |
| 810 | case sKeyRegenerationTime: |
| 811 | intptr = &options->key_regeneration_time; |
| 812 | goto parse_time; |
| 813 | |
| 814 | case sListenAddress: |
| 815 | arg = strdelim(&cp); |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 816 | if (arg == NULL || *arg == '\0') |
| 817 | fatal("%s line %d: missing address", |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 818 | filename, linenum); |
Damien Miller | 203c705 | 2005-08-12 22:11:37 +1000 | [diff] [blame] | 819 | /* check for bare IPv6 address: no "[]" and 2 or more ":" */ |
| 820 | if (strchr(arg, '[') == NULL && (p = strchr(arg, ':')) != NULL |
| 821 | && strchr(p+1, ':') != NULL) { |
| 822 | add_listen_addr(options, arg, 0); |
| 823 | break; |
| 824 | } |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 825 | p = hpdelim(&arg); |
| 826 | if (p == NULL) |
| 827 | fatal("%s line %d: bad address:port usage", |
| 828 | filename, linenum); |
| 829 | p = cleanhostname(p); |
| 830 | if (arg == NULL) |
| 831 | port = 0; |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 832 | else if ((port = a2port(arg)) <= 0) |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 833 | fatal("%s line %d: bad port number", filename, linenum); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 834 | |
Damien Miller | f91ee4c | 2005-03-01 21:24:33 +1100 | [diff] [blame] | 835 | add_listen_addr(options, p, port); |
| 836 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 837 | break; |
| 838 | |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 839 | case sAddressFamily: |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 840 | intptr = &options->address_family; |
| 841 | multistate_ptr = multistate_addressfamily; |
| 842 | if (options->listen_addrs != NULL) |
| 843 | fatal("%s line %d: address family must be specified " |
| 844 | "before ListenAddress.", filename, linenum); |
| 845 | parse_multistate: |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 846 | arg = strdelim(&cp); |
Damien Miller | 17b23d8 | 2005-05-26 12:11:56 +1000 | [diff] [blame] | 847 | if (!arg || *arg == '\0') |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 848 | fatal("%s line %d: missing argument.", |
Damien Miller | 17b23d8 | 2005-05-26 12:11:56 +1000 | [diff] [blame] | 849 | filename, linenum); |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 850 | value = -1; |
| 851 | for (i = 0; multistate_ptr[i].key != NULL; i++) { |
| 852 | if (strcasecmp(arg, multistate_ptr[i].key) == 0) { |
| 853 | value = multistate_ptr[i].value; |
| 854 | break; |
| 855 | } |
| 856 | } |
| 857 | if (value == -1) |
| 858 | fatal("%s line %d: unsupported option \"%s\".", |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 859 | filename, linenum, arg); |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 860 | if (*activep && *intptr == -1) |
Darren Tucker | 0f38323 | 2005-01-20 10:57:56 +1100 | [diff] [blame] | 861 | *intptr = value; |
| 862 | break; |
| 863 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 864 | case sHostKeyFile: |
| 865 | intptr = &options->num_host_key_files; |
| 866 | if (*intptr >= MAX_HOSTKEYS) |
| 867 | fatal("%s line %d: too many host keys specified (max %d).", |
| 868 | filename, linenum, MAX_HOSTKEYS); |
| 869 | charptr = &options->host_key_files[*intptr]; |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 870 | parse_filename: |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 871 | arg = strdelim(&cp); |
| 872 | if (!arg || *arg == '\0') |
| 873 | fatal("%s line %d: missing file name.", |
| 874 | filename, linenum); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 875 | if (*activep && *charptr == NULL) { |
Darren Tucker | 88b6fb2 | 2010-01-13 22:44:29 +1100 | [diff] [blame] | 876 | *charptr = derelativise_path(arg); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 877 | /* increase optional counter */ |
| 878 | if (intptr != NULL) |
| 879 | *intptr = *intptr + 1; |
| 880 | } |
| 881 | break; |
| 882 | |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 883 | case sHostCertificate: |
| 884 | intptr = &options->num_host_cert_files; |
| 885 | if (*intptr >= MAX_HOSTKEYS) |
| 886 | fatal("%s line %d: too many host certificates " |
| 887 | "specified (max %d).", filename, linenum, |
| 888 | MAX_HOSTCERTS); |
| 889 | charptr = &options->host_cert_files[*intptr]; |
| 890 | goto parse_filename; |
| 891 | break; |
| 892 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 893 | case sPidFile: |
| 894 | charptr = &options->pid_file; |
| 895 | goto parse_filename; |
| 896 | |
| 897 | case sPermitRootLogin: |
| 898 | intptr = &options->permit_root_login; |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 899 | multistate_ptr = multistate_permitrootlogin; |
| 900 | goto parse_multistate; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 901 | |
| 902 | case sIgnoreRhosts: |
| 903 | intptr = &options->ignore_rhosts; |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 904 | parse_flag: |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 905 | arg = strdelim(&cp); |
| 906 | if (!arg || *arg == '\0') |
| 907 | fatal("%s line %d: missing yes/no argument.", |
| 908 | filename, linenum); |
| 909 | value = 0; /* silence compiler */ |
| 910 | if (strcmp(arg, "yes") == 0) |
| 911 | value = 1; |
| 912 | else if (strcmp(arg, "no") == 0) |
| 913 | value = 0; |
| 914 | else |
| 915 | fatal("%s line %d: Bad yes/no argument: %s", |
| 916 | filename, linenum, arg); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 917 | if (*activep && *intptr == -1) |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 918 | *intptr = value; |
| 919 | break; |
| 920 | |
| 921 | case sIgnoreUserKnownHosts: |
| 922 | intptr = &options->ignore_user_known_hosts; |
| 923 | goto parse_flag; |
| 924 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 925 | case sRhostsRSAAuthentication: |
| 926 | intptr = &options->rhosts_rsa_authentication; |
| 927 | goto parse_flag; |
| 928 | |
| 929 | case sHostbasedAuthentication: |
| 930 | intptr = &options->hostbased_authentication; |
| 931 | goto parse_flag; |
| 932 | |
| 933 | case sHostbasedUsesNameFromPacketOnly: |
| 934 | intptr = &options->hostbased_uses_name_from_packet_only; |
| 935 | goto parse_flag; |
| 936 | |
| 937 | case sRSAAuthentication: |
| 938 | intptr = &options->rsa_authentication; |
| 939 | goto parse_flag; |
| 940 | |
| 941 | case sPubkeyAuthentication: |
| 942 | intptr = &options->pubkey_authentication; |
| 943 | goto parse_flag; |
Damien Miller | 2aa0ab4 | 2003-05-15 12:05:28 +1000 | [diff] [blame] | 944 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 945 | case sKerberosAuthentication: |
| 946 | intptr = &options->kerberos_authentication; |
| 947 | goto parse_flag; |
| 948 | |
| 949 | case sKerberosOrLocalPasswd: |
| 950 | intptr = &options->kerberos_or_local_passwd; |
| 951 | goto parse_flag; |
| 952 | |
| 953 | case sKerberosTicketCleanup: |
| 954 | intptr = &options->kerberos_ticket_cleanup; |
| 955 | goto parse_flag; |
Damien Miller | 2aa0ab4 | 2003-05-15 12:05:28 +1000 | [diff] [blame] | 956 | |
Darren Tucker | 22ef508 | 2003-12-31 11:37:34 +1100 | [diff] [blame] | 957 | case sKerberosGetAFSToken: |
| 958 | intptr = &options->kerberos_get_afs_token; |
| 959 | goto parse_flag; |
| 960 | |
Darren Tucker | 0efd155 | 2003-08-26 11:49:55 +1000 | [diff] [blame] | 961 | case sGssAuthentication: |
| 962 | intptr = &options->gss_authentication; |
| 963 | goto parse_flag; |
| 964 | |
| 965 | case sGssCleanupCreds: |
| 966 | intptr = &options->gss_cleanup_creds; |
| 967 | goto parse_flag; |
| 968 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 969 | case sPasswordAuthentication: |
| 970 | intptr = &options->password_authentication; |
| 971 | goto parse_flag; |
| 972 | |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 973 | case sZeroKnowledgePasswordAuthentication: |
| 974 | intptr = &options->zero_knowledge_password_authentication; |
| 975 | goto parse_flag; |
| 976 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 977 | case sKbdInteractiveAuthentication: |
| 978 | intptr = &options->kbd_interactive_authentication; |
| 979 | goto parse_flag; |
| 980 | |
| 981 | case sChallengeResponseAuthentication: |
| 982 | intptr = &options->challenge_response_authentication; |
| 983 | goto parse_flag; |
| 984 | |
| 985 | case sPrintMotd: |
| 986 | intptr = &options->print_motd; |
| 987 | goto parse_flag; |
| 988 | |
| 989 | case sPrintLastLog: |
| 990 | intptr = &options->print_lastlog; |
| 991 | goto parse_flag; |
| 992 | |
| 993 | case sX11Forwarding: |
| 994 | intptr = &options->x11_forwarding; |
| 995 | goto parse_flag; |
| 996 | |
| 997 | case sX11DisplayOffset: |
| 998 | intptr = &options->x11_display_offset; |
| 999 | goto parse_int; |
| 1000 | |
Damien Miller | 95c249f | 2002-02-05 12:11:34 +1100 | [diff] [blame] | 1001 | case sX11UseLocalhost: |
| 1002 | intptr = &options->x11_use_localhost; |
| 1003 | goto parse_flag; |
| 1004 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1005 | case sXAuthLocation: |
| 1006 | charptr = &options->xauth_location; |
| 1007 | goto parse_filename; |
| 1008 | |
| 1009 | case sStrictModes: |
| 1010 | intptr = &options->strict_modes; |
| 1011 | goto parse_flag; |
| 1012 | |
Damien Miller | 12c150e | 2003-12-17 16:31:10 +1100 | [diff] [blame] | 1013 | case sTCPKeepAlive: |
| 1014 | intptr = &options->tcp_keep_alive; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1015 | goto parse_flag; |
| 1016 | |
| 1017 | case sEmptyPasswd: |
| 1018 | intptr = &options->permit_empty_passwd; |
| 1019 | goto parse_flag; |
| 1020 | |
Ben Lindstrom | 5d860f0 | 2002-08-01 01:28:38 +0000 | [diff] [blame] | 1021 | case sPermitUserEnvironment: |
| 1022 | intptr = &options->permit_user_env; |
| 1023 | goto parse_flag; |
| 1024 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1025 | case sUseLogin: |
| 1026 | intptr = &options->use_login; |
| 1027 | goto parse_flag; |
| 1028 | |
Ben Lindstrom | 23e0f66 | 2002-06-21 01:09:47 +0000 | [diff] [blame] | 1029 | case sCompression: |
| 1030 | intptr = &options->compression; |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 1031 | multistate_ptr = multistate_compression; |
| 1032 | goto parse_multistate; |
Ben Lindstrom | 23e0f66 | 2002-06-21 01:09:47 +0000 | [diff] [blame] | 1033 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1034 | case sGatewayPorts: |
| 1035 | intptr = &options->gateway_ports; |
Damien Miller | 3332212 | 2011-06-20 14:43:11 +1000 | [diff] [blame] | 1036 | multistate_ptr = multistate_gatewayports; |
| 1037 | goto parse_multistate; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1038 | |
Damien Miller | 3a961dc | 2003-06-03 10:25:48 +1000 | [diff] [blame] | 1039 | case sUseDNS: |
| 1040 | intptr = &options->use_dns; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1041 | goto parse_flag; |
| 1042 | |
| 1043 | case sLogFacility: |
Darren Tucker | 1e44c5d | 2008-01-01 20:32:26 +1100 | [diff] [blame] | 1044 | log_facility_ptr = &options->log_facility; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1045 | arg = strdelim(&cp); |
| 1046 | value = log_facility_number(arg); |
Damien Miller | fcd9320 | 2002-02-05 12:26:34 +1100 | [diff] [blame] | 1047 | if (value == SYSLOG_FACILITY_NOT_SET) |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1048 | fatal("%.200s line %d: unsupported log facility '%s'", |
| 1049 | filename, linenum, arg ? arg : "<NONE>"); |
Darren Tucker | 1e44c5d | 2008-01-01 20:32:26 +1100 | [diff] [blame] | 1050 | if (*log_facility_ptr == -1) |
| 1051 | *log_facility_ptr = (SyslogFacility) value; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1052 | break; |
| 1053 | |
| 1054 | case sLogLevel: |
Darren Tucker | 1e44c5d | 2008-01-01 20:32:26 +1100 | [diff] [blame] | 1055 | log_level_ptr = &options->log_level; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1056 | arg = strdelim(&cp); |
| 1057 | value = log_level_number(arg); |
Damien Miller | fcd9320 | 2002-02-05 12:26:34 +1100 | [diff] [blame] | 1058 | if (value == SYSLOG_LEVEL_NOT_SET) |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1059 | fatal("%.200s line %d: unsupported log level '%s'", |
| 1060 | filename, linenum, arg ? arg : "<NONE>"); |
Darren Tucker | 1e44c5d | 2008-01-01 20:32:26 +1100 | [diff] [blame] | 1061 | if (*log_level_ptr == -1) |
| 1062 | *log_level_ptr = (LogLevel) value; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1063 | break; |
| 1064 | |
| 1065 | case sAllowTcpForwarding: |
| 1066 | intptr = &options->allow_tcp_forwarding; |
| 1067 | goto parse_flag; |
| 1068 | |
Damien Miller | 4f755cd | 2008-05-19 14:57:41 +1000 | [diff] [blame] | 1069 | case sAllowAgentForwarding: |
| 1070 | intptr = &options->allow_agent_forwarding; |
| 1071 | goto parse_flag; |
| 1072 | |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 1073 | case sUsePrivilegeSeparation: |
| 1074 | intptr = &use_privsep; |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 1075 | multistate_ptr = multistate_privsep; |
| 1076 | goto parse_multistate; |
Ben Lindstrom | 7a2073c | 2002-03-22 02:30:41 +0000 | [diff] [blame] | 1077 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1078 | case sAllowUsers: |
| 1079 | while ((arg = strdelim(&cp)) && *arg != '\0') { |
| 1080 | if (options->num_allow_users >= MAX_ALLOW_USERS) |
| 1081 | fatal("%s line %d: too many allow users.", |
| 1082 | filename, linenum); |
Ben Lindstrom | e135363 | 2002-06-23 21:29:23 +0000 | [diff] [blame] | 1083 | options->allow_users[options->num_allow_users++] = |
| 1084 | xstrdup(arg); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1085 | } |
| 1086 | break; |
| 1087 | |
| 1088 | case sDenyUsers: |
| 1089 | while ((arg = strdelim(&cp)) && *arg != '\0') { |
| 1090 | if (options->num_deny_users >= MAX_DENY_USERS) |
Damien Miller | 4dec5d7 | 2006-08-05 11:38:40 +1000 | [diff] [blame] | 1091 | fatal("%s line %d: too many deny users.", |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1092 | filename, linenum); |
Ben Lindstrom | e135363 | 2002-06-23 21:29:23 +0000 | [diff] [blame] | 1093 | options->deny_users[options->num_deny_users++] = |
| 1094 | xstrdup(arg); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1095 | } |
| 1096 | break; |
| 1097 | |
| 1098 | case sAllowGroups: |
| 1099 | while ((arg = strdelim(&cp)) && *arg != '\0') { |
| 1100 | if (options->num_allow_groups >= MAX_ALLOW_GROUPS) |
| 1101 | fatal("%s line %d: too many allow groups.", |
| 1102 | filename, linenum); |
Ben Lindstrom | e135363 | 2002-06-23 21:29:23 +0000 | [diff] [blame] | 1103 | options->allow_groups[options->num_allow_groups++] = |
| 1104 | xstrdup(arg); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1105 | } |
| 1106 | break; |
| 1107 | |
| 1108 | case sDenyGroups: |
| 1109 | while ((arg = strdelim(&cp)) && *arg != '\0') { |
| 1110 | if (options->num_deny_groups >= MAX_DENY_GROUPS) |
| 1111 | fatal("%s line %d: too many deny groups.", |
| 1112 | filename, linenum); |
| 1113 | options->deny_groups[options->num_deny_groups++] = xstrdup(arg); |
| 1114 | } |
| 1115 | break; |
| 1116 | |
| 1117 | case sCiphers: |
| 1118 | arg = strdelim(&cp); |
| 1119 | if (!arg || *arg == '\0') |
| 1120 | fatal("%s line %d: Missing argument.", filename, linenum); |
| 1121 | if (!ciphers_valid(arg)) |
| 1122 | fatal("%s line %d: Bad SSH2 cipher spec '%s'.", |
| 1123 | filename, linenum, arg ? arg : "<NONE>"); |
| 1124 | if (options->ciphers == NULL) |
| 1125 | options->ciphers = xstrdup(arg); |
| 1126 | break; |
| 1127 | |
| 1128 | case sMacs: |
| 1129 | arg = strdelim(&cp); |
| 1130 | if (!arg || *arg == '\0') |
| 1131 | fatal("%s line %d: Missing argument.", filename, linenum); |
| 1132 | if (!mac_valid(arg)) |
| 1133 | fatal("%s line %d: Bad SSH2 mac spec '%s'.", |
| 1134 | filename, linenum, arg ? arg : "<NONE>"); |
| 1135 | if (options->macs == NULL) |
| 1136 | options->macs = xstrdup(arg); |
| 1137 | break; |
| 1138 | |
Damien Miller | d5f62bf | 2010-09-24 22:11:14 +1000 | [diff] [blame] | 1139 | case sKexAlgorithms: |
| 1140 | arg = strdelim(&cp); |
| 1141 | if (!arg || *arg == '\0') |
| 1142 | fatal("%s line %d: Missing argument.", |
| 1143 | filename, linenum); |
| 1144 | if (!kex_names_valid(arg)) |
| 1145 | fatal("%s line %d: Bad SSH2 KexAlgorithms '%s'.", |
| 1146 | filename, linenum, arg ? arg : "<NONE>"); |
| 1147 | if (options->kex_algorithms == NULL) |
| 1148 | options->kex_algorithms = xstrdup(arg); |
| 1149 | break; |
| 1150 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1151 | case sProtocol: |
| 1152 | intptr = &options->protocol; |
| 1153 | arg = strdelim(&cp); |
| 1154 | if (!arg || *arg == '\0') |
| 1155 | fatal("%s line %d: Missing argument.", filename, linenum); |
| 1156 | value = proto_spec(arg); |
| 1157 | if (value == SSH_PROTO_UNKNOWN) |
| 1158 | fatal("%s line %d: Bad protocol spec '%s'.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 1159 | filename, linenum, arg ? arg : "<NONE>"); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1160 | if (*intptr == SSH_PROTO_UNKNOWN) |
| 1161 | *intptr = value; |
| 1162 | break; |
| 1163 | |
| 1164 | case sSubsystem: |
| 1165 | if (options->num_subsystems >= MAX_SUBSYSTEMS) { |
| 1166 | fatal("%s line %d: too many subsystems defined.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 1167 | filename, linenum); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1168 | } |
| 1169 | arg = strdelim(&cp); |
| 1170 | if (!arg || *arg == '\0') |
| 1171 | fatal("%s line %d: Missing subsystem name.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 1172 | filename, linenum); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1173 | if (!*activep) { |
| 1174 | arg = strdelim(&cp); |
| 1175 | break; |
| 1176 | } |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1177 | for (i = 0; i < options->num_subsystems; i++) |
| 1178 | if (strcmp(arg, options->subsystem_name[i]) == 0) |
| 1179 | fatal("%s line %d: Subsystem '%s' already defined.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 1180 | filename, linenum, arg); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1181 | options->subsystem_name[options->num_subsystems] = xstrdup(arg); |
| 1182 | arg = strdelim(&cp); |
| 1183 | if (!arg || *arg == '\0') |
| 1184 | fatal("%s line %d: Missing subsystem command.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 1185 | filename, linenum); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1186 | options->subsystem_command[options->num_subsystems] = xstrdup(arg); |
Damien Miller | 917f9b6 | 2006-07-10 20:36:47 +1000 | [diff] [blame] | 1187 | |
| 1188 | /* Collect arguments (separate to executable) */ |
| 1189 | p = xstrdup(arg); |
| 1190 | len = strlen(p) + 1; |
| 1191 | while ((arg = strdelim(&cp)) != NULL && *arg != '\0') { |
| 1192 | len += 1 + strlen(arg); |
| 1193 | p = xrealloc(p, 1, len); |
| 1194 | strlcat(p, " ", len); |
| 1195 | strlcat(p, arg, len); |
| 1196 | } |
| 1197 | options->subsystem_args[options->num_subsystems] = p; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1198 | options->num_subsystems++; |
| 1199 | break; |
| 1200 | |
| 1201 | case sMaxStartups: |
| 1202 | arg = strdelim(&cp); |
| 1203 | if (!arg || *arg == '\0') |
| 1204 | fatal("%s line %d: Missing MaxStartups spec.", |
Damien Miller | 9f0f5c6 | 2001-12-21 14:45:46 +1100 | [diff] [blame] | 1205 | filename, linenum); |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1206 | if ((n = sscanf(arg, "%d:%d:%d", |
| 1207 | &options->max_startups_begin, |
| 1208 | &options->max_startups_rate, |
| 1209 | &options->max_startups)) == 3) { |
| 1210 | if (options->max_startups_begin > |
| 1211 | options->max_startups || |
| 1212 | options->max_startups_rate > 100 || |
| 1213 | options->max_startups_rate < 1) |
| 1214 | fatal("%s line %d: Illegal MaxStartups spec.", |
| 1215 | filename, linenum); |
| 1216 | } else if (n != 1) |
| 1217 | fatal("%s line %d: Illegal MaxStartups spec.", |
| 1218 | filename, linenum); |
| 1219 | else |
| 1220 | options->max_startups = options->max_startups_begin; |
| 1221 | break; |
| 1222 | |
Darren Tucker | 89413db | 2004-05-24 10:36:23 +1000 | [diff] [blame] | 1223 | case sMaxAuthTries: |
| 1224 | intptr = &options->max_authtries; |
| 1225 | goto parse_int; |
| 1226 | |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 1227 | case sMaxSessions: |
| 1228 | intptr = &options->max_sessions; |
| 1229 | goto parse_int; |
| 1230 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1231 | case sBanner: |
| 1232 | charptr = &options->banner; |
| 1233 | goto parse_filename; |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1234 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1235 | /* |
| 1236 | * These options can contain %X options expanded at |
| 1237 | * connect time, so that you can specify paths like: |
| 1238 | * |
| 1239 | * AuthorizedKeysFile /etc/ssh_keys/%u |
| 1240 | */ |
| 1241 | case sAuthorizedKeysFile: |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 1242 | if (*activep && options->num_authkeys_files == 0) { |
| 1243 | while ((arg = strdelim(&cp)) && *arg != '\0') { |
| 1244 | if (options->num_authkeys_files >= |
| 1245 | MAX_AUTHKEYS_FILES) |
| 1246 | fatal("%s line %d: " |
| 1247 | "too many authorized keys files.", |
| 1248 | filename, linenum); |
| 1249 | options->authorized_keys_files[ |
| 1250 | options->num_authkeys_files++] = |
| 1251 | tilde_expand_filename(arg, getuid()); |
| 1252 | } |
| 1253 | } |
| 1254 | return 0; |
| 1255 | |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 1256 | case sAuthorizedPrincipalsFile: |
| 1257 | charptr = &options->authorized_principals_file; |
Damien Miller | c4cb47b | 2010-03-22 05:52:26 +1100 | [diff] [blame] | 1258 | arg = strdelim(&cp); |
| 1259 | if (!arg || *arg == '\0') |
| 1260 | fatal("%s line %d: missing file name.", |
| 1261 | filename, linenum); |
| 1262 | if (*activep && *charptr == NULL) { |
Damien Miller | 4a5f0d3 | 2010-03-22 05:53:04 +1100 | [diff] [blame] | 1263 | *charptr = tilde_expand_filename(arg, getuid()); |
Damien Miller | c4cb47b | 2010-03-22 05:52:26 +1100 | [diff] [blame] | 1264 | /* increase optional counter */ |
| 1265 | if (intptr != NULL) |
| 1266 | *intptr = *intptr + 1; |
| 1267 | } |
| 1268 | break; |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1269 | |
| 1270 | case sClientAliveInterval: |
| 1271 | intptr = &options->client_alive_interval; |
| 1272 | goto parse_time; |
| 1273 | |
| 1274 | case sClientAliveCountMax: |
| 1275 | intptr = &options->client_alive_count_max; |
| 1276 | goto parse_int; |
| 1277 | |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 1278 | case sAcceptEnv: |
| 1279 | while ((arg = strdelim(&cp)) && *arg != '\0') { |
| 1280 | if (strchr(arg, '=') != NULL) |
| 1281 | fatal("%s line %d: Invalid environment name.", |
| 1282 | filename, linenum); |
| 1283 | if (options->num_accept_env >= MAX_ACCEPT_ENV) |
| 1284 | fatal("%s line %d: too many allow env.", |
| 1285 | filename, linenum); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1286 | if (!*activep) |
| 1287 | break; |
Darren Tucker | 46bc075 | 2004-05-02 22:11:30 +1000 | [diff] [blame] | 1288 | options->accept_env[options->num_accept_env++] = |
| 1289 | xstrdup(arg); |
| 1290 | } |
| 1291 | break; |
| 1292 | |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 1293 | case sPermitTunnel: |
| 1294 | intptr = &options->permit_tun; |
Damien Miller | 7b58e80 | 2005-12-13 19:33:19 +1100 | [diff] [blame] | 1295 | arg = strdelim(&cp); |
| 1296 | if (!arg || *arg == '\0') |
| 1297 | fatal("%s line %d: Missing yes/point-to-point/" |
| 1298 | "ethernet/no argument.", filename, linenum); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1299 | value = -1; |
| 1300 | for (i = 0; tunmode_desc[i].val != -1; i++) |
| 1301 | if (strcmp(tunmode_desc[i].text, arg) == 0) { |
| 1302 | value = tunmode_desc[i].val; |
| 1303 | break; |
| 1304 | } |
| 1305 | if (value == -1) |
Damien Miller | 7b58e80 | 2005-12-13 19:33:19 +1100 | [diff] [blame] | 1306 | fatal("%s line %d: Bad yes/point-to-point/ethernet/" |
| 1307 | "no argument: %s", filename, linenum, arg); |
| 1308 | if (*intptr == -1) |
| 1309 | *intptr = value; |
| 1310 | break; |
Damien Miller | d27b947 | 2005-12-13 19:29:02 +1100 | [diff] [blame] | 1311 | |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1312 | case sMatch: |
| 1313 | if (cmdline) |
| 1314 | fatal("Match directive not supported as a command-line " |
| 1315 | "option"); |
| 1316 | value = match_cfg_line(&cp, linenum, user, host, address); |
| 1317 | if (value < 0) |
| 1318 | fatal("%s line %d: Bad Match condition", filename, |
| 1319 | linenum); |
| 1320 | *activep = value; |
| 1321 | break; |
| 1322 | |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1323 | case sPermitOpen: |
| 1324 | arg = strdelim(&cp); |
| 1325 | if (!arg || *arg == '\0') |
| 1326 | fatal("%s line %d: missing PermitOpen specification", |
| 1327 | filename, linenum); |
Damien Miller | 9fc6a56 | 2007-01-05 16:29:02 +1100 | [diff] [blame] | 1328 | n = options->num_permitted_opens; /* modified later */ |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1329 | if (strcmp(arg, "any") == 0) { |
Damien Miller | 9fc6a56 | 2007-01-05 16:29:02 +1100 | [diff] [blame] | 1330 | if (*activep && n == -1) { |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1331 | channel_clear_adm_permitted_opens(); |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 1332 | options->num_permitted_opens = 0; |
| 1333 | } |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1334 | break; |
| 1335 | } |
Damien Miller | a29b95e | 2007-01-05 16:28:36 +1100 | [diff] [blame] | 1336 | if (*activep && n == -1) |
| 1337 | channel_clear_adm_permitted_opens(); |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 1338 | for (; arg != NULL && *arg != '\0'; arg = strdelim(&cp)) { |
| 1339 | p = hpdelim(&arg); |
| 1340 | if (p == NULL) |
| 1341 | fatal("%s line %d: missing host in PermitOpen", |
| 1342 | filename, linenum); |
| 1343 | p = cleanhostname(p); |
Damien Miller | 3dc71ad | 2009-01-28 16:31:22 +1100 | [diff] [blame] | 1344 | if (arg == NULL || (port = a2port(arg)) <= 0) |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 1345 | fatal("%s line %d: bad port number in " |
| 1346 | "PermitOpen", filename, linenum); |
Damien Miller | a29b95e | 2007-01-05 16:28:36 +1100 | [diff] [blame] | 1347 | if (*activep && n == -1) |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 1348 | options->num_permitted_opens = |
| 1349 | channel_add_adm_permitted_opens(p, port); |
Damien Miller | a765cf4 | 2006-07-24 14:08:13 +1000 | [diff] [blame] | 1350 | } |
Damien Miller | 9b439df | 2006-07-24 14:04:00 +1000 | [diff] [blame] | 1351 | break; |
| 1352 | |
Damien Miller | e275443 | 2006-07-24 14:06:47 +1000 | [diff] [blame] | 1353 | case sForceCommand: |
| 1354 | if (cp == NULL) |
| 1355 | fatal("%.200s line %d: Missing argument.", filename, |
| 1356 | linenum); |
| 1357 | len = strspn(cp, WHITESPACE); |
| 1358 | if (*activep && options->adm_forced_command == NULL) |
| 1359 | options->adm_forced_command = xstrdup(cp + len); |
| 1360 | return 0; |
| 1361 | |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1362 | case sChrootDirectory: |
| 1363 | charptr = &options->chroot_directory; |
Damien Miller | 54e3773 | 2008-02-10 22:48:55 +1100 | [diff] [blame] | 1364 | |
| 1365 | arg = strdelim(&cp); |
| 1366 | if (!arg || *arg == '\0') |
| 1367 | fatal("%s line %d: missing file name.", |
| 1368 | filename, linenum); |
| 1369 | if (*activep && *charptr == NULL) |
| 1370 | *charptr = xstrdup(arg); |
| 1371 | break; |
Damien Miller | d8cb1f1 | 2008-02-10 22:40:12 +1100 | [diff] [blame] | 1372 | |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1373 | case sTrustedUserCAKeys: |
| 1374 | charptr = &options->trusted_user_ca_keys; |
| 1375 | goto parse_filename; |
| 1376 | |
| 1377 | case sRevokedKeys: |
| 1378 | charptr = &options->revoked_keys_file; |
| 1379 | goto parse_filename; |
| 1380 | |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 1381 | case sIPQoS: |
| 1382 | arg = strdelim(&cp); |
| 1383 | if ((value = parse_ipqos(arg)) == -1) |
| 1384 | fatal("%s line %d: Bad IPQoS value: %s", |
| 1385 | filename, linenum, arg); |
| 1386 | arg = strdelim(&cp); |
| 1387 | if (arg == NULL) |
| 1388 | value2 = value; |
| 1389 | else if ((value2 = parse_ipqos(arg)) == -1) |
| 1390 | fatal("%s line %d: Bad IPQoS value: %s", |
| 1391 | filename, linenum, arg); |
| 1392 | if (*activep) { |
| 1393 | options->ip_qos_interactive = value; |
| 1394 | options->ip_qos_bulk = value2; |
| 1395 | } |
| 1396 | break; |
| 1397 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1398 | case sDeprecated: |
Damien Miller | 996acd2 | 2003-04-09 20:59:48 +1000 | [diff] [blame] | 1399 | logit("%s line %d: Deprecated option %s", |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1400 | filename, linenum, arg); |
| 1401 | while (arg) |
| 1402 | arg = strdelim(&cp); |
| 1403 | break; |
| 1404 | |
Damien Miller | f9b3feb | 2003-05-16 11:38:32 +1000 | [diff] [blame] | 1405 | case sUnsupported: |
| 1406 | logit("%s line %d: Unsupported option %s", |
| 1407 | filename, linenum, arg); |
| 1408 | while (arg) |
| 1409 | arg = strdelim(&cp); |
| 1410 | break; |
| 1411 | |
Ben Lindstrom | ade03f6 | 2001-12-06 18:22:17 +0000 | [diff] [blame] | 1412 | default: |
| 1413 | fatal("%s line %d: Missing handler for opcode %s (%d)", |
| 1414 | filename, linenum, arg, opcode); |
| 1415 | } |
| 1416 | if ((arg = strdelim(&cp)) != NULL && *arg != '\0') |
| 1417 | fatal("%s line %d: garbage at end of line; \"%.200s\".", |
| 1418 | filename, linenum, arg); |
| 1419 | return 0; |
| 1420 | } |
| 1421 | |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1422 | /* Reads the server configuration file. */ |
| 1423 | |
Damien Miller | 4af5130 | 2000-04-16 11:18:38 +1000 | [diff] [blame] | 1424 | void |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1425 | load_server_config(const char *filename, Buffer *conf) |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1426 | { |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1427 | char line[1024], *cp; |
Ben Lindstrom | e135363 | 2002-06-23 21:29:23 +0000 | [diff] [blame] | 1428 | FILE *f; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1429 | |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1430 | debug2("%s: filename %s", __func__, filename); |
| 1431 | if ((f = fopen(filename, "r")) == NULL) { |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 1432 | perror(filename); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1433 | exit(1); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 1434 | } |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1435 | buffer_clear(conf); |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 1436 | while (fgets(line, sizeof(line), f)) { |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1437 | /* |
| 1438 | * Trim out comments and strip whitespace |
Darren Tucker | fc95970 | 2004-07-17 16:12:08 +1000 | [diff] [blame] | 1439 | * NB - preserve newlines, they are needed to reproduce |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1440 | * line numbers later for error messages |
| 1441 | */ |
| 1442 | if ((cp = strchr(line, '#')) != NULL) |
| 1443 | memcpy(cp, "\n", 2); |
| 1444 | cp = line + strspn(line, " \t\r"); |
| 1445 | |
| 1446 | buffer_append(conf, cp, strlen(cp)); |
| 1447 | } |
| 1448 | buffer_append(conf, "\0", 1); |
| 1449 | fclose(f); |
| 1450 | debug2("%s: done config len = %d", __func__, buffer_len(conf)); |
| 1451 | } |
| 1452 | |
| 1453 | void |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1454 | parse_server_match_config(ServerOptions *options, const char *user, |
| 1455 | const char *host, const char *address) |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1456 | { |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1457 | ServerOptions mo; |
| 1458 | |
| 1459 | initialize_server_options(&mo); |
| 1460 | parse_server_config(&mo, "reprocess config", &cfg, user, host, address); |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1461 | copy_set_server_options(options, &mo, 0); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1462 | } |
| 1463 | |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1464 | /* Helper macros */ |
| 1465 | #define M_CP_INTOPT(n) do {\ |
| 1466 | if (src->n != -1) \ |
| 1467 | dst->n = src->n; \ |
| 1468 | } while (0) |
| 1469 | #define M_CP_STROPT(n) do {\ |
| 1470 | if (src->n != NULL) { \ |
| 1471 | if (dst->n != NULL) \ |
| 1472 | xfree(dst->n); \ |
| 1473 | dst->n = src->n; \ |
| 1474 | } \ |
| 1475 | } while(0) |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 1476 | #define M_CP_STRARRAYOPT(n, num_n) do {\ |
| 1477 | if (src->num_n != 0) { \ |
| 1478 | for (dst->num_n = 0; dst->num_n < src->num_n; dst->num_n++) \ |
| 1479 | dst->n[dst->num_n] = xstrdup(src->n[dst->num_n]); \ |
| 1480 | } \ |
| 1481 | } while(0) |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1482 | |
| 1483 | /* |
| 1484 | * Copy any supported values that are set. |
| 1485 | * |
Darren Tucker | 3b59dfa | 2009-06-21 17:54:47 +1000 | [diff] [blame] | 1486 | * If the preauth flag is set, we do not bother copying the string or |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1487 | * array values that are not used pre-authentication, because any that we |
| 1488 | * do use must be explictly sent in mm_getpwnamallow(). |
| 1489 | */ |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1490 | void |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1491 | copy_set_server_options(ServerOptions *dst, ServerOptions *src, int preauth) |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1492 | { |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1493 | M_CP_INTOPT(password_authentication); |
| 1494 | M_CP_INTOPT(gss_authentication); |
| 1495 | M_CP_INTOPT(rsa_authentication); |
| 1496 | M_CP_INTOPT(pubkey_authentication); |
| 1497 | M_CP_INTOPT(kerberos_authentication); |
| 1498 | M_CP_INTOPT(hostbased_authentication); |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 1499 | M_CP_INTOPT(hostbased_uses_name_from_packet_only); |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1500 | M_CP_INTOPT(kbd_interactive_authentication); |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 1501 | M_CP_INTOPT(zero_knowledge_password_authentication); |
Darren Tucker | 15f9427 | 2008-01-01 20:36:56 +1100 | [diff] [blame] | 1502 | M_CP_INTOPT(permit_root_login); |
Damien Miller | 51bde60 | 2008-11-03 19:23:10 +1100 | [diff] [blame] | 1503 | M_CP_INTOPT(permit_empty_passwd); |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1504 | |
| 1505 | M_CP_INTOPT(allow_tcp_forwarding); |
Damien Miller | 4f755cd | 2008-05-19 14:57:41 +1000 | [diff] [blame] | 1506 | M_CP_INTOPT(allow_agent_forwarding); |
Damien Miller | ab6de35 | 2010-06-26 09:38:45 +1000 | [diff] [blame] | 1507 | M_CP_INTOPT(permit_tun); |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1508 | M_CP_INTOPT(gateway_ports); |
| 1509 | M_CP_INTOPT(x11_display_offset); |
| 1510 | M_CP_INTOPT(x11_forwarding); |
| 1511 | M_CP_INTOPT(x11_use_localhost); |
Damien Miller | 7207f64 | 2008-05-19 15:34:50 +1000 | [diff] [blame] | 1512 | M_CP_INTOPT(max_sessions); |
Damien Miller | 307c1d1 | 2008-06-16 07:56:20 +1000 | [diff] [blame] | 1513 | M_CP_INTOPT(max_authtries); |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 1514 | M_CP_INTOPT(ip_qos_interactive); |
| 1515 | M_CP_INTOPT(ip_qos_bulk); |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1516 | |
Damien Miller | f2e407e | 2011-05-20 19:04:14 +1000 | [diff] [blame] | 1517 | /* See comment in servconf.h */ |
| 1518 | COPY_MATCH_STRING_OPTS(); |
Damien Miller | 5d74e58 | 2011-05-20 19:03:31 +1000 | [diff] [blame] | 1519 | |
Damien Miller | c241190 | 2011-05-20 19:03:49 +1000 | [diff] [blame] | 1520 | /* |
| 1521 | * The only things that should be below this point are string options |
| 1522 | * which are only used after authentication. |
| 1523 | */ |
Damien Miller | 5d74e58 | 2011-05-20 19:03:31 +1000 | [diff] [blame] | 1524 | if (preauth) |
| 1525 | return; |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 1526 | |
Damien Miller | 5d74e58 | 2011-05-20 19:03:31 +1000 | [diff] [blame] | 1527 | M_CP_STROPT(adm_forced_command); |
| 1528 | M_CP_STROPT(chroot_directory); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1529 | } |
| 1530 | |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1531 | #undef M_CP_INTOPT |
| 1532 | #undef M_CP_STROPT |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 1533 | #undef M_CP_STRARRAYOPT |
Darren Tucker | 1629c07 | 2007-02-19 22:25:37 +1100 | [diff] [blame] | 1534 | |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1535 | void |
| 1536 | parse_server_config(ServerOptions *options, const char *filename, Buffer *conf, |
| 1537 | const char *user, const char *host, const char *address) |
| 1538 | { |
| 1539 | int active, linenum, bad_options = 0; |
Darren Tucker | 9fbac71 | 2004-08-12 22:41:44 +1000 | [diff] [blame] | 1540 | char *cp, *obuf, *cbuf; |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1541 | |
| 1542 | debug2("%s: config %s len %d", __func__, filename, buffer_len(conf)); |
| 1543 | |
Darren Tucker | 9fbac71 | 2004-08-12 22:41:44 +1000 | [diff] [blame] | 1544 | obuf = cbuf = xstrdup(buffer_ptr(conf)); |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1545 | active = user ? 0 : 1; |
Darren Tucker | 137e9c9 | 2004-08-13 21:30:24 +1000 | [diff] [blame] | 1546 | linenum = 1; |
Darren Tucker | 47eede7 | 2005-03-14 23:08:12 +1100 | [diff] [blame] | 1547 | while ((cp = strsep(&cbuf, "\n")) != NULL) { |
Darren Tucker | 645ab75 | 2004-06-25 13:33:20 +1000 | [diff] [blame] | 1548 | if (process_server_config_line(options, cp, filename, |
Darren Tucker | 4515047 | 2006-07-12 22:34:17 +1000 | [diff] [blame] | 1549 | linenum++, &active, user, host, address) != 0) |
Damien Miller | 95def09 | 1999-11-25 00:26:21 +1100 | [diff] [blame] | 1550 | bad_options++; |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1551 | } |
Darren Tucker | 9fbac71 | 2004-08-12 22:41:44 +1000 | [diff] [blame] | 1552 | xfree(obuf); |
Ben Lindstrom | b5cdc66 | 2001-04-16 02:13:26 +0000 | [diff] [blame] | 1553 | if (bad_options > 0) |
| 1554 | fatal("%s: terminating, %d bad configuration options", |
| 1555 | filename, bad_options); |
Damien Miller | d4a8b7e | 1999-10-27 13:42:43 +1000 | [diff] [blame] | 1556 | } |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1557 | |
| 1558 | static const char * |
Damien Miller | 82c5587 | 2011-06-23 08:20:30 +1000 | [diff] [blame] | 1559 | fmt_multistate_int(int val, const struct multistate *m) |
| 1560 | { |
| 1561 | u_int i; |
| 1562 | |
| 1563 | for (i = 0; m[i].key != NULL; i++) { |
| 1564 | if (m[i].value == val) |
| 1565 | return m[i].key; |
| 1566 | } |
| 1567 | return "UNKNOWN"; |
| 1568 | } |
| 1569 | |
| 1570 | static const char * |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1571 | fmt_intarg(ServerOpCodes code, int val) |
| 1572 | { |
Damien Miller | 82c5587 | 2011-06-23 08:20:30 +1000 | [diff] [blame] | 1573 | if (val == -1) |
| 1574 | return "unset"; |
| 1575 | switch (code) { |
| 1576 | case sAddressFamily: |
| 1577 | return fmt_multistate_int(val, multistate_addressfamily); |
| 1578 | case sPermitRootLogin: |
| 1579 | return fmt_multistate_int(val, multistate_permitrootlogin); |
| 1580 | case sGatewayPorts: |
| 1581 | return fmt_multistate_int(val, multistate_gatewayports); |
| 1582 | case sCompression: |
| 1583 | return fmt_multistate_int(val, multistate_compression); |
Damien Miller | 69ff1df | 2011-06-23 08:30:03 +1000 | [diff] [blame] | 1584 | case sUsePrivilegeSeparation: |
| 1585 | return fmt_multistate_int(val, multistate_privsep); |
Damien Miller | 82c5587 | 2011-06-23 08:20:30 +1000 | [diff] [blame] | 1586 | case sProtocol: |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1587 | switch (val) { |
| 1588 | case SSH_PROTO_1: |
| 1589 | return "1"; |
| 1590 | case SSH_PROTO_2: |
| 1591 | return "2"; |
| 1592 | case (SSH_PROTO_1|SSH_PROTO_2): |
| 1593 | return "2,1"; |
| 1594 | default: |
| 1595 | return "UNKNOWN"; |
| 1596 | } |
Damien Miller | 82c5587 | 2011-06-23 08:20:30 +1000 | [diff] [blame] | 1597 | default: |
| 1598 | switch (val) { |
| 1599 | case 0: |
| 1600 | return "no"; |
| 1601 | case 1: |
| 1602 | return "yes"; |
| 1603 | default: |
| 1604 | return "UNKNOWN"; |
| 1605 | } |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1606 | } |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1607 | } |
| 1608 | |
| 1609 | static const char * |
| 1610 | lookup_opcode_name(ServerOpCodes code) |
| 1611 | { |
| 1612 | u_int i; |
| 1613 | |
| 1614 | for (i = 0; keywords[i].name != NULL; i++) |
| 1615 | if (keywords[i].opcode == code) |
| 1616 | return(keywords[i].name); |
| 1617 | return "UNKNOWN"; |
| 1618 | } |
| 1619 | |
| 1620 | static void |
| 1621 | dump_cfg_int(ServerOpCodes code, int val) |
| 1622 | { |
| 1623 | printf("%s %d\n", lookup_opcode_name(code), val); |
| 1624 | } |
| 1625 | |
| 1626 | static void |
| 1627 | dump_cfg_fmtint(ServerOpCodes code, int val) |
| 1628 | { |
| 1629 | printf("%s %s\n", lookup_opcode_name(code), fmt_intarg(code, val)); |
| 1630 | } |
| 1631 | |
| 1632 | static void |
| 1633 | dump_cfg_string(ServerOpCodes code, const char *val) |
| 1634 | { |
| 1635 | if (val == NULL) |
| 1636 | return; |
| 1637 | printf("%s %s\n", lookup_opcode_name(code), val); |
| 1638 | } |
| 1639 | |
| 1640 | static void |
| 1641 | dump_cfg_strarray(ServerOpCodes code, u_int count, char **vals) |
| 1642 | { |
| 1643 | u_int i; |
| 1644 | |
| 1645 | for (i = 0; i < count; i++) |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 1646 | printf("%s %s\n", lookup_opcode_name(code), vals[i]); |
| 1647 | } |
| 1648 | |
| 1649 | static void |
| 1650 | dump_cfg_strarray_oneline(ServerOpCodes code, u_int count, char **vals) |
| 1651 | { |
| 1652 | u_int i; |
| 1653 | |
| 1654 | printf("%s", lookup_opcode_name(code)); |
| 1655 | for (i = 0; i < count; i++) |
| 1656 | printf(" %s", vals[i]); |
| 1657 | printf("\n"); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1658 | } |
| 1659 | |
| 1660 | void |
| 1661 | dump_config(ServerOptions *o) |
| 1662 | { |
| 1663 | u_int i; |
| 1664 | int ret; |
| 1665 | struct addrinfo *ai; |
| 1666 | char addr[NI_MAXHOST], port[NI_MAXSERV], *s = NULL; |
| 1667 | |
| 1668 | /* these are usually at the top of the config */ |
| 1669 | for (i = 0; i < o->num_ports; i++) |
| 1670 | printf("port %d\n", o->ports[i]); |
| 1671 | dump_cfg_fmtint(sProtocol, o->protocol); |
| 1672 | dump_cfg_fmtint(sAddressFamily, o->address_family); |
| 1673 | |
| 1674 | /* ListenAddress must be after Port */ |
| 1675 | for (ai = o->listen_addrs; ai; ai = ai->ai_next) { |
| 1676 | if ((ret = getnameinfo(ai->ai_addr, ai->ai_addrlen, addr, |
| 1677 | sizeof(addr), port, sizeof(port), |
| 1678 | NI_NUMERICHOST|NI_NUMERICSERV)) != 0) { |
| 1679 | error("getnameinfo failed: %.100s", |
| 1680 | (ret != EAI_SYSTEM) ? gai_strerror(ret) : |
| 1681 | strerror(errno)); |
| 1682 | } else { |
| 1683 | if (ai->ai_family == AF_INET6) |
| 1684 | printf("listenaddress [%s]:%s\n", addr, port); |
| 1685 | else |
| 1686 | printf("listenaddress %s:%s\n", addr, port); |
| 1687 | } |
| 1688 | } |
| 1689 | |
| 1690 | /* integer arguments */ |
Damien Miller | 212f0b0 | 2008-07-23 17:42:29 +1000 | [diff] [blame] | 1691 | #ifdef USE_PAM |
| 1692 | dump_cfg_int(sUsePAM, o->use_pam); |
| 1693 | #endif |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1694 | dump_cfg_int(sServerKeyBits, o->server_key_bits); |
| 1695 | dump_cfg_int(sLoginGraceTime, o->login_grace_time); |
| 1696 | dump_cfg_int(sKeyRegenerationTime, o->key_regeneration_time); |
| 1697 | dump_cfg_int(sX11DisplayOffset, o->x11_display_offset); |
| 1698 | dump_cfg_int(sMaxAuthTries, o->max_authtries); |
Damien Miller | 7fc5c0f | 2008-11-05 16:12:11 +1100 | [diff] [blame] | 1699 | dump_cfg_int(sMaxSessions, o->max_sessions); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1700 | dump_cfg_int(sClientAliveInterval, o->client_alive_interval); |
| 1701 | dump_cfg_int(sClientAliveCountMax, o->client_alive_count_max); |
| 1702 | |
| 1703 | /* formatted integer arguments */ |
| 1704 | dump_cfg_fmtint(sPermitRootLogin, o->permit_root_login); |
| 1705 | dump_cfg_fmtint(sIgnoreRhosts, o->ignore_rhosts); |
| 1706 | dump_cfg_fmtint(sIgnoreUserKnownHosts, o->ignore_user_known_hosts); |
| 1707 | dump_cfg_fmtint(sRhostsRSAAuthentication, o->rhosts_rsa_authentication); |
| 1708 | dump_cfg_fmtint(sHostbasedAuthentication, o->hostbased_authentication); |
| 1709 | dump_cfg_fmtint(sHostbasedUsesNameFromPacketOnly, |
| 1710 | o->hostbased_uses_name_from_packet_only); |
| 1711 | dump_cfg_fmtint(sRSAAuthentication, o->rsa_authentication); |
| 1712 | dump_cfg_fmtint(sPubkeyAuthentication, o->pubkey_authentication); |
Damien Miller | 6ef430d | 2008-07-23 17:40:04 +1000 | [diff] [blame] | 1713 | #ifdef KRB5 |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1714 | dump_cfg_fmtint(sKerberosAuthentication, o->kerberos_authentication); |
| 1715 | dump_cfg_fmtint(sKerberosOrLocalPasswd, o->kerberos_or_local_passwd); |
| 1716 | dump_cfg_fmtint(sKerberosTicketCleanup, o->kerberos_ticket_cleanup); |
Damien Miller | 6ef430d | 2008-07-23 17:40:04 +1000 | [diff] [blame] | 1717 | # ifdef USE_AFS |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1718 | dump_cfg_fmtint(sKerberosGetAFSToken, o->kerberos_get_afs_token); |
Damien Miller | 6ef430d | 2008-07-23 17:40:04 +1000 | [diff] [blame] | 1719 | # endif |
| 1720 | #endif |
| 1721 | #ifdef GSSAPI |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1722 | dump_cfg_fmtint(sGssAuthentication, o->gss_authentication); |
| 1723 | dump_cfg_fmtint(sGssCleanupCreds, o->gss_cleanup_creds); |
Damien Miller | 6ef430d | 2008-07-23 17:40:04 +1000 | [diff] [blame] | 1724 | #endif |
Damien Miller | 01ed227 | 2008-11-05 16:20:46 +1100 | [diff] [blame] | 1725 | #ifdef JPAKE |
| 1726 | dump_cfg_fmtint(sZeroKnowledgePasswordAuthentication, |
| 1727 | o->zero_knowledge_password_authentication); |
| 1728 | #endif |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1729 | dump_cfg_fmtint(sPasswordAuthentication, o->password_authentication); |
| 1730 | dump_cfg_fmtint(sKbdInteractiveAuthentication, |
| 1731 | o->kbd_interactive_authentication); |
| 1732 | dump_cfg_fmtint(sChallengeResponseAuthentication, |
| 1733 | o->challenge_response_authentication); |
| 1734 | dump_cfg_fmtint(sPrintMotd, o->print_motd); |
| 1735 | dump_cfg_fmtint(sPrintLastLog, o->print_lastlog); |
| 1736 | dump_cfg_fmtint(sX11Forwarding, o->x11_forwarding); |
| 1737 | dump_cfg_fmtint(sX11UseLocalhost, o->x11_use_localhost); |
| 1738 | dump_cfg_fmtint(sStrictModes, o->strict_modes); |
| 1739 | dump_cfg_fmtint(sTCPKeepAlive, o->tcp_keep_alive); |
| 1740 | dump_cfg_fmtint(sEmptyPasswd, o->permit_empty_passwd); |
| 1741 | dump_cfg_fmtint(sPermitUserEnvironment, o->permit_user_env); |
| 1742 | dump_cfg_fmtint(sUseLogin, o->use_login); |
| 1743 | dump_cfg_fmtint(sCompression, o->compression); |
| 1744 | dump_cfg_fmtint(sGatewayPorts, o->gateway_ports); |
| 1745 | dump_cfg_fmtint(sUseDNS, o->use_dns); |
| 1746 | dump_cfg_fmtint(sAllowTcpForwarding, o->allow_tcp_forwarding); |
| 1747 | dump_cfg_fmtint(sUsePrivilegeSeparation, use_privsep); |
| 1748 | |
| 1749 | /* string arguments */ |
| 1750 | dump_cfg_string(sPidFile, o->pid_file); |
| 1751 | dump_cfg_string(sXAuthLocation, o->xauth_location); |
| 1752 | dump_cfg_string(sCiphers, o->ciphers); |
| 1753 | dump_cfg_string(sMacs, o->macs); |
| 1754 | dump_cfg_string(sBanner, o->banner); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1755 | dump_cfg_string(sForceCommand, o->adm_forced_command); |
Darren Tucker | d330045 | 2010-01-10 19:26:43 +1100 | [diff] [blame] | 1756 | dump_cfg_string(sChrootDirectory, o->chroot_directory); |
Damien Miller | 1aed65e | 2010-03-04 21:53:35 +1100 | [diff] [blame] | 1757 | dump_cfg_string(sTrustedUserCAKeys, o->trusted_user_ca_keys); |
| 1758 | dump_cfg_string(sRevokedKeys, o->revoked_keys_file); |
Damien Miller | 30da344 | 2010-05-10 11:58:03 +1000 | [diff] [blame] | 1759 | dump_cfg_string(sAuthorizedPrincipalsFile, |
| 1760 | o->authorized_principals_file); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1761 | |
| 1762 | /* string arguments requiring a lookup */ |
| 1763 | dump_cfg_string(sLogLevel, log_level_name(o->log_level)); |
| 1764 | dump_cfg_string(sLogFacility, log_facility_name(o->log_facility)); |
| 1765 | |
| 1766 | /* string array arguments */ |
Damien Miller | d8478b6 | 2011-05-29 21:39:36 +1000 | [diff] [blame] | 1767 | dump_cfg_strarray_oneline(sAuthorizedKeysFile, o->num_authkeys_files, |
| 1768 | o->authorized_keys_files); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1769 | dump_cfg_strarray(sHostKeyFile, o->num_host_key_files, |
| 1770 | o->host_key_files); |
Damien Miller | 0a80ca1 | 2010-02-27 07:55:05 +1100 | [diff] [blame] | 1771 | dump_cfg_strarray(sHostKeyFile, o->num_host_cert_files, |
| 1772 | o->host_cert_files); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1773 | dump_cfg_strarray(sAllowUsers, o->num_allow_users, o->allow_users); |
| 1774 | dump_cfg_strarray(sDenyUsers, o->num_deny_users, o->deny_users); |
| 1775 | dump_cfg_strarray(sAllowGroups, o->num_allow_groups, o->allow_groups); |
| 1776 | dump_cfg_strarray(sDenyGroups, o->num_deny_groups, o->deny_groups); |
| 1777 | dump_cfg_strarray(sAcceptEnv, o->num_accept_env, o->accept_env); |
| 1778 | |
| 1779 | /* other arguments */ |
| 1780 | for (i = 0; i < o->num_subsystems; i++) |
| 1781 | printf("subsystem %s %s\n", o->subsystem_name[i], |
| 1782 | o->subsystem_args[i]); |
| 1783 | |
| 1784 | printf("maxstartups %d:%d:%d\n", o->max_startups_begin, |
| 1785 | o->max_startups_rate, o->max_startups); |
| 1786 | |
| 1787 | for (i = 0; tunmode_desc[i].val != -1; i++) |
| 1788 | if (tunmode_desc[i].val == o->permit_tun) { |
| 1789 | s = tunmode_desc[i].text; |
| 1790 | break; |
| 1791 | } |
| 1792 | dump_cfg_string(sPermitTunnel, s); |
| 1793 | |
Damien Miller | 9147586 | 2011-05-05 14:14:34 +1000 | [diff] [blame] | 1794 | printf("ipqos %s ", iptos2str(o->ip_qos_interactive)); |
| 1795 | printf("%s\n", iptos2str(o->ip_qos_bulk)); |
Damien Miller | 0dac6fb | 2010-11-20 15:19:38 +1100 | [diff] [blame] | 1796 | |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1797 | channel_print_adm_permitted_opens(); |
Darren Tucker | e7140f2 | 2008-06-10 23:01:51 +1000 | [diff] [blame] | 1798 | } |