]> andersk Git - openssh.git/blob - pathnames.h
- (bal) SSH_PROGRAM vs _PATH_SSH_PROGRAM fix pointed out by Roumen
[openssh.git] / pathnames.h
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  *
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".
11  */
12
13 #ifndef ETCDIR
14 #define ETCDIR                          "/etc"
15 #endif
16
17 #ifndef _PATH_SSH_PIDDIR
18 #define _PATH_SSH_PIDDIR                "/var/run"
19 #endif
20
21 /*
22  * System-wide file containing host keys of known hosts.  This file should be
23  * world-readable.
24  */
25 #define _PATH_SSH_SYSTEM_HOSTFILE       ETCDIR "/ssh_known_hosts"
26 #define _PATH_SSH_SYSTEM_HOSTFILE2      ETCDIR "/ssh_known_hosts2"
27
28 /*
29  * Of these, ssh_host_key must be readable only by root, whereas ssh_config
30  * should be world-readable.
31  */
32 #define _PATH_HOST_KEY_FILE             ETCDIR "/ssh_host_key"
33 #define _PATH_SERVER_CONFIG_FILE        ETCDIR "/sshd_config"
34 #define _PATH_HOST_CONFIG_FILE          ETCDIR "/ssh_config"
35 #define _PATH_HOST_DSA_KEY_FILE         ETCDIR "/ssh_host_dsa_key"
36 #define _PATH_DH_PRIMES                 ETCDIR "/primes"
37
38 #ifndef _PATH_SSH_PROGRAM
39 #define _PATH_SSH_PROGRAM               "/usr/bin/ssh"
40 #endif
41
42 /*
43  * The process id of the daemon listening for connections is saved here to
44  * make it easier to kill the correct daemon when necessary.
45  */
46 #define _PATH_SSH_DAEMON_PID_FILE       _PATH_SSH_PIDDIR "/sshd.pid"
47
48 /*
49  * The directory in user\'s home directory in which the files reside. The
50  * directory should be world-readable (though not all files are).
51  */
52 #define _PATH_SSH_USER_DIR              ".ssh"
53
54 /*
55  * Per-user file containing host keys of known hosts.  This file need not be
56  * readable by anyone except the user him/herself, though this does not
57  * contain anything particularly secret.
58  */
59 #define _PATH_SSH_USER_HOSTFILE         "~/.ssh/known_hosts"
60 #define _PATH_SSH_USER_HOSTFILE2        "~/.ssh/known_hosts2"
61
62 /*
63  * Name of the default file containing client-side authentication key. This
64  * file should only be readable by the user him/herself.
65  */
66 #define _PATH_SSH_CLIENT_IDENTITY       ".ssh/identity"
67 #define _PATH_SSH_CLIENT_ID_DSA         ".ssh/id_dsa"
68 #define _PATH_SSH_CLIENT_ID_RSA         ".ssh/id_rsa"
69
70 /*
71  * Configuration file in user\'s home directory.  This file need not be
72  * readable by anyone but the user him/herself, but does not contain anything
73  * particularly secret.  If the user\'s home directory resides on an NFS
74  * volume where root is mapped to nobody, this may need to be world-readable.
75  */
76 #define _PATH_SSH_USER_CONFFILE         ".ssh/config"
77
78 /*
79  * File containing a list of those rsa keys that permit logging in as this
80  * user.  This file need not be readable by anyone but the user him/herself,
81  * but does not contain anything particularly secret.  If the user\'s home
82  * directory resides on an NFS volume where root is mapped to nobody, this
83  * may need to be world-readable.  (This file is read by the daemon which is
84  * running as root.)
85  */
86 #define _PATH_SSH_USER_PERMITTED_KEYS   ".ssh/authorized_keys"
87 #define _PATH_SSH_USER_PERMITTED_KEYS2  ".ssh/authorized_keys2"
88
89 /*
90  * Per-user and system-wide ssh "rc" files.  These files are executed with
91  * /bin/sh before starting the shell or command if they exist.  They will be
92  * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
93  * use.  xauth will be run if neither of these exists.
94  */
95 #define _PATH_SSH_USER_RC               ".ssh/rc"
96 #define _PATH_SSH_SYSTEM_RC             ETCDIR "/sshrc"
97
98 /*
99  * Ssh-only version of /etc/hosts.equiv.  Additionally, the daemon may use
100  * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
101  */
102 #define _PATH_SSH_HOSTS_EQUIV           ETCDIR "/shosts.equiv"
103 #define _PATH_RHOSTS_EQUIV              "/etc/hosts.equiv"
104
105 /*
106  * Default location of askpass
107  */
108 #ifndef _PATH_SSH_ASKPASS_DEFAULT
109 #define _PATH_SSH_ASKPASS_DEFAULT       "/usr/X11R6/bin/ssh-askpass"
110 #endif
111
112 /* for scp */
113 #ifndef _PATH_CP
114 #define _PATH_CP                        "cp"
115 #endif
116
117 /* path to login program */
118 #ifndef LOGIN_PROGRAM
119 # ifdef LOGIN_PROGRAM_FALLBACK
120 #  define LOGIN_PROGRAM         LOGIN_PROGRAM_FALLBACK
121 # else
122 #  define LOGIN_PROGRAM         "/usr/bin/login"
123 # endif
124 #endif /* LOGIN_PROGRAM */
125
126 /* Askpass program define */
127 #ifndef ASKPASS_PROGRAM
128 #define ASKPASS_PROGRAM         "/usr/lib/ssh/ssh-askpass"
129 #endif /* ASKPASS_PROGRAM */
130
131 /*
132  * Relevant only when using builtin PRNG.
133  */
134 #ifndef SSH_PRNG_SEED_FILE
135 # define SSH_PRNG_SEED_FILE      _PATH_SSH_USER_DIR"/prng_seed"
136 #endif /* SSH_PRNG_SEED_FILE */
137 #ifndef SSH_PRNG_COMMAND_FILE
138 # define SSH_PRNG_COMMAND_FILE   ETCDIR "/ssh_prng_cmds"
139 #endif /* SSH_PRNG_COMMAND_FILE */
140
This page took 0.49716 seconds and 5 git commands to generate.