pathnames.h revision 1.1
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#define ETCDIR				"/etc"
14#define _PATH_SSH_PIDDIR		"/var/run"
15
16/*
17 * System-wide file containing host keys of known hosts.  This file should be
18 * world-readable.
19 */
20#define _PATH_SSH_SYSTEM_HOSTFILE	ETCDIR "/ssh_known_hosts"
21#define _PATH_SSH_SYSTEM_HOSTFILE2	ETCDIR "/ssh_known_hosts2"
22
23/*
24 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
25 * should be world-readable.
26 */
27#define _PATH_HOST_KEY_FILE		ETCDIR "/ssh_host_key"
28#define _PATH_SERVER_CONFIG_FILE	ETCDIR "/sshd_config"
29#define _PATH_HOST_CONFIG_FILE		ETCDIR "/ssh_config"
30#define _PATH_HOST_DSA_KEY_FILE		ETCDIR "/ssh_host_dsa_key"
31#define _PATH_DH_PRIMES			ETCDIR "/primes"
32
33#define _PATH_SSH_PROGRAM		"/usr/bin/ssh"
34
35/*
36 * The process id of the daemon listening for connections is saved here to
37 * make it easier to kill the correct daemon when necessary.
38 */
39#define _PATH_SSH_DAEMON_PID_FILE	_PATH_SSH_PIDDIR "/sshd.pid"
40
41/*
42 * The directory in user\'s home directory in which the files reside. The
43 * directory should be world-readable (though not all files are).
44 */
45#define _PATH_SSH_USER_DIR		".ssh"
46
47/*
48 * Per-user file containing host keys of known hosts.  This file need not be
49 * readable by anyone except the user him/herself, though this does not
50 * contain anything particularly secret.
51 */
52#define _PATH_SSH_USER_HOSTFILE		"~/.ssh/known_hosts"
53#define _PATH_SSH_USER_HOSTFILE2	"~/.ssh/known_hosts2"
54
55/*
56 * Name of the default file containing client-side authentication key. This
57 * file should only be readable by the user him/herself.
58 */
59#define _PATH_SSH_CLIENT_IDENTITY	".ssh/identity"
60#define _PATH_SSH_CLIENT_ID_DSA		".ssh/id_dsa"
61#define _PATH_SSH_CLIENT_ID_RSA		".ssh/id_rsa"
62
63/*
64 * Configuration file in user\'s home directory.  This file need not be
65 * readable by anyone but the user him/herself, but does not contain anything
66 * particularly secret.  If the user\'s home directory resides on an NFS
67 * volume where root is mapped to nobody, this may need to be world-readable.
68 */
69#define _PATH_SSH_USER_CONFFILE		".ssh/config"
70
71/*
72 * File containing a list of those rsa keys that permit logging in as this
73 * user.  This file need not be readable by anyone but the user him/herself,
74 * but does not contain anything particularly secret.  If the user\'s home
75 * directory resides on an NFS volume where root is mapped to nobody, this
76 * may need to be world-readable.  (This file is read by the daemon which is
77 * running as root.)
78 */
79#define _PATH_SSH_USER_PERMITTED_KEYS	".ssh/authorized_keys"
80#define _PATH_SSH_USER_PERMITTED_KEYS2	".ssh/authorized_keys2"
81
82/*
83 * Per-user and system-wide ssh "rc" files.  These files are executed with
84 * /bin/sh before starting the shell or command if they exist.  They will be
85 * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
86 * use.  xauth will be run if neither of these exists.
87 */
88#define _PATH_SSH_USER_RC		".ssh/rc"
89#define _PATH_SSH_SYSTEM_RC		ETCDIR "/sshrc"
90
91/*
92 * Ssh-only version of /etc/hosts.equiv.  Additionally, the daemon may use
93 * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
94 */
95#define _PATH_SSH_HOSTS_EQUIV		ETCDIR "/shosts.equiv"
96#define _PATH_RHOSTS_EQUIV		"/etc/hosts.equiv"
97
98/*
99 * Default location of askpass
100 */
101#define _PATH_SSH_ASKPASS_DEFAULT	"/usr/X11R6/bin/ssh-askpass"
102
103/* for scp */
104#define _PATH_CP			"cp"
105