xref: /freebsd/crypto/openssh/servconf.h (revision 77a0943ded95b9e6438f7db70c4a28e4d93946d4)
1 /*
2  * Author: Tatu Ylonen <ylo@cs.hut.fi>
3  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4  *                    All rights reserved
5  * Definitions for server configuration data and for the functions reading it.
6  *
7  * As far as I am concerned, the code I have written for this software
8  * can be used freely for any purpose.  Any derived versions of this
9  * software must be clearly marked as such, and if the derived work is
10  * incompatible with the protocol description in the RFC file, it must be
11  * called by a name other than "ssh" or "Secure Shell".
12  */
13 
14 /* RCSID("$OpenBSD: servconf.h,v 1.28 2000/09/07 20:27:53 deraadt Exp $"); */
15 /* $FreeBSD$ */
16 
17 #ifndef SERVCONF_H
18 #define SERVCONF_H
19 
20 #define MAX_PORTS		256	/* Max # ports. */
21 
22 #define MAX_ALLOW_USERS		256	/* Max # users on allow list. */
23 #define MAX_DENY_USERS		256	/* Max # users on deny list. */
24 #define MAX_ALLOW_GROUPS	256	/* Max # groups on allow list. */
25 #define MAX_DENY_GROUPS		256	/* Max # groups on deny list. */
26 #define MAX_SUBSYSTEMS		256	/* Max # subsystems. */
27 
28 typedef struct {
29 	unsigned int num_ports;
30 	unsigned int ports_from_cmdline;
31 	u_short ports[MAX_PORTS];	/* Port number to listen on. */
32 	char   *listen_addr;		/* Address on which the server listens. */
33 	struct addrinfo *listen_addrs;	/* Addresses on which the server listens. */
34 	char   *host_key_file;	/* File containing host key. */
35 	char   *host_dsa_key_file;	/* File containing dsa host key. */
36 	char   *pid_file;	/* Where to put our pid */
37 	int     server_key_bits;/* Size of the server key. */
38 	int     login_grace_time;	/* Disconnect if no auth in this time
39 					 * (sec). */
40 	int     key_regeneration_time;	/* Server key lifetime (seconds). */
41 	int     permit_root_login;	/* If true, permit root login. */
42 	int     ignore_rhosts;	/* Ignore .rhosts and .shosts. */
43 	int     ignore_user_known_hosts;	/* Ignore ~/.ssh/known_hosts
44 						 * for RhostsRsaAuth */
45 	int     print_motd;	/* If true, print /etc/motd. */
46 	int     check_mail;	/* If true, check for new mail. */
47 	int     x11_forwarding;	/* If true, permit inet (spoofing) X11 fwd. */
48 	int     x11_display_offset;	/* What DISPLAY number to start
49 					 * searching at */
50 	char   *xauth_location;	/* Location of xauth program */
51 	int     strict_modes;	/* If true, require string home dir modes. */
52 	int     keepalives;	/* If true, set SO_KEEPALIVE. */
53 	char   *ciphers;	/* Ciphers in order of preference. */
54 	int	protocol;	/* Protocol in order of preference. */
55 	int     gateway_ports;	/* If true, allow remote connects to forwarded ports. */
56 	SyslogFacility log_facility;	/* Facility for system logging. */
57 	LogLevel log_level;	/* Level for system logging. */
58 	int     rhosts_authentication;	/* If true, permit rhosts
59 					 * authentication. */
60 	int     rhosts_rsa_authentication;	/* If true, permit rhosts RSA
61 						 * authentication. */
62 	int     rsa_authentication;	/* If true, permit RSA authentication. */
63 	int     dsa_authentication;	/* If true, permit DSA authentication. */
64 #ifdef KRB4
65 	int     krb4_authentication;		/* If true, permit Kerberos v4
66 						 * authentication. */
67 	int     krb4_or_local_passwd;		/* If true, permit kerberos v4
68 						 * and any other password
69 						 * authentication mechanism,
70 						 * such as SecurID or
71 						 * /etc/passwd */
72 	int     krb4_ticket_cleanup;		/* If true, destroy ticket
73 						 * file on logout. */
74 #endif
75 #ifdef KRB5
76 	int     krb5_authentication;
77 	int     krb5_tgt_passing;
78 
79 #endif /* KRB5 */
80 #ifdef AFS
81 	int     krb4_tgt_passing;	/* If true, permit Kerberos v4 tgt
82 					 * passing. */
83 	int     afs_token_passing;	/* If true, permit AFS token passing. */
84 #endif
85 	int     password_authentication;	/* If true, permit password
86 						 * authentication. */
87 #ifdef SKEY
88 	int     skey_authentication;	/* If true, permit s/key
89 					 * authentication. */
90 #endif
91 	int     permit_empty_passwd;	/* If false, do not permit empty
92 					 * passwords. */
93 	int     use_login;	/* If true, login(1) is used */
94 	unsigned int num_allow_users;
95 	char   *allow_users[MAX_ALLOW_USERS];
96 	unsigned int num_deny_users;
97 	char   *deny_users[MAX_DENY_USERS];
98 	unsigned int num_allow_groups;
99 	char   *allow_groups[MAX_ALLOW_GROUPS];
100 	unsigned int num_deny_groups;
101 	char   *deny_groups[MAX_DENY_GROUPS];
102 	unsigned int connections_per_period;	/*
103 						 * If not 0, number of sshd
104 						 * connections accepted per
105 						 * connections_period.
106 						 */
107 	unsigned int connections_period;
108 
109 	unsigned int num_subsystems;
110 	char   *subsystem_name[MAX_SUBSYSTEMS];
111 	char   *subsystem_command[MAX_SUBSYSTEMS];
112 
113 	int	max_startups_begin;
114 	int	max_startups_rate;
115 	int	max_startups;
116 
117 }       ServerOptions;
118 /*
119  * Initializes the server options to special values that indicate that they
120  * have not yet been set.
121  */
122 void    initialize_server_options(ServerOptions * options);
123 
124 /*
125  * Reads the server configuration file.  This only sets the values for those
126  * options that have the special value indicating they have not been set.
127  */
128 void    read_server_config(ServerOptions * options, const char *filename);
129 
130 /* Sets values for those values that have not yet been set. */
131 void    fill_default_server_options(ServerOptions * options);
132 
133 #endif				/* SERVCONF_H */
134