pathnames.h revision 76262
1/*	$OpenBSD: pathnames.h,v 1.5 2001/04/12 19:15:24 markus Exp $	*/
2/*	$FreeBSD: head/crypto/openssh/pathnames.h 76262 2001-05-04 04:14:23Z green $	*/
3
4/*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 *                    All rights reserved
8 *
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose.  Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
14 */
15
16#define ETCDIR				"/etc/ssh"
17#define _PATH_SSH_PIDDIR		"/var/run"
18
19/*
20 * System-wide file containing host keys of known hosts.  This file should be
21 * world-readable.
22 */
23#define _PATH_SSH_SYSTEM_HOSTFILE	ETCDIR "/ssh_known_hosts"
24#define _PATH_SSH_SYSTEM_HOSTFILE2	ETCDIR "/ssh_known_hosts2"
25
26/*
27 * Of these, ssh_host_key must be readable only by root, whereas ssh_config
28 * should be world-readable.
29 */
30#define _PATH_SERVER_CONFIG_FILE	ETCDIR "/sshd_config"
31#define _PATH_HOST_CONFIG_FILE		ETCDIR "/ssh_config"
32#define _PATH_HOST_KEY_FILE		ETCDIR "/ssh_host_key"
33#define _PATH_HOST_DSA_KEY_FILE		ETCDIR "/ssh_host_dsa_key"
34#define _PATH_HOST_RSA_KEY_FILE		ETCDIR "/ssh_host_rsa_key"
35#define _PATH_DH_PRIMES			ETCDIR "/primes"
36
37#define _PATH_SSH_PROGRAM		"/usr/bin/ssh"
38
39/*
40 * The process id of the daemon listening for connections is saved here to
41 * make it easier to kill the correct daemon when necessary.
42 */
43#define _PATH_SSH_DAEMON_PID_FILE	_PATH_SSH_PIDDIR "/sshd.pid"
44
45/*
46 * The directory in user\'s home directory in which the files reside. The
47 * directory should be world-readable (though not all files are).
48 */
49#define _PATH_SSH_USER_DIR		".ssh"
50
51/*
52 * Per-user file containing host keys of known hosts.  This file need not be
53 * readable by anyone except the user him/herself, though this does not
54 * contain anything particularly secret.
55 */
56#define _PATH_SSH_USER_HOSTFILE		"~/.ssh/known_hosts"
57#define _PATH_SSH_USER_HOSTFILE2	"~/.ssh/known_hosts2"
58
59/*
60 * Name of the default file containing client-side authentication key. This
61 * file should only be readable by the user him/herself.
62 */
63#define _PATH_SSH_CLIENT_IDENTITY	".ssh/identity"
64#define _PATH_SSH_CLIENT_ID_DSA		".ssh/id_dsa"
65#define _PATH_SSH_CLIENT_ID_RSA		".ssh/id_rsa"
66
67/*
68 * Configuration file in user\'s home directory.  This file need not be
69 * readable by anyone but the user him/herself, but does not contain anything
70 * particularly secret.  If the user\'s home directory resides on an NFS
71 * volume where root is mapped to nobody, this may need to be world-readable.
72 */
73#define _PATH_SSH_USER_CONFFILE		".ssh/config"
74
75/*
76 * File containing a list of those rsa keys that permit logging in as this
77 * user.  This file need not be readable by anyone but the user him/herself,
78 * but does not contain anything particularly secret.  If the user\'s home
79 * directory resides on an NFS volume where root is mapped to nobody, this
80 * may need to be world-readable.  (This file is read by the daemon which is
81 * running as root.)
82 */
83#define _PATH_SSH_USER_PERMITTED_KEYS	".ssh/authorized_keys"
84#define _PATH_SSH_USER_PERMITTED_KEYS2	".ssh/authorized_keys2"
85
86/*
87 * Per-user and system-wide ssh "rc" files.  These files are executed with
88 * /bin/sh before starting the shell or command if they exist.  They will be
89 * passed "proto cookie" as arguments if X11 forwarding with spoofing is in
90 * use.  xauth will be run if neither of these exists.
91 */
92#define _PATH_SSH_USER_RC		".ssh/rc"
93#define _PATH_SSH_SYSTEM_RC		ETCDIR "/sshrc"
94
95/*
96 * Ssh-only version of /etc/hosts.equiv.  Additionally, the daemon may use
97 * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled.
98 */
99#define _PATH_SSH_HOSTS_EQUIV		ETCDIR "/shosts.equiv"
100#define _PATH_RHOSTS_EQUIV		"/etc/hosts.equiv"
101
102/*
103 * Default location of askpass
104 */
105#define _PATH_SSH_ASKPASS_DEFAULT	"/usr/X11R6/bin/ssh-askpass"
106
107/* for scp */
108#define _PATH_CP			"cp"
109
110/* for sftp */
111#define _PATH_SFTP_SERVER		"/usr/libexec/sftp-server"
112#define _PATH_LS			"ls"
113