Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 1 | /* $OpenBSD: pathnames.h,v 1.4 2001/02/08 22:28:07 stevesk Exp $ */ |
Ben Lindstrom | 36579d3 | 2001-01-29 07:39:26 +0000 | [diff] [blame] | 2 | |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 3 | /* |
| 4 | * Author: Tatu Ylonen <ylo@cs.hut.fi> |
| 5 | * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland |
| 6 | * All rights reserved |
| 7 | * |
| 8 | * As far as I am concerned, the code I have written for this software |
| 9 | * can be used freely for any purpose. Any derived versions of this |
| 10 | * software must be clearly marked as such, and if the derived work is |
| 11 | * incompatible with the protocol description in the RFC file, it must be |
| 12 | * called by a name other than "ssh" or "Secure Shell". |
| 13 | */ |
| 14 | |
| 15 | #ifndef ETCDIR |
| 16 | #define ETCDIR "/etc" |
| 17 | #endif |
| 18 | |
| 19 | #ifndef _PATH_SSH_PIDDIR |
| 20 | #define _PATH_SSH_PIDDIR "/var/run" |
| 21 | #endif |
| 22 | |
| 23 | /* |
| 24 | * System-wide file containing host keys of known hosts. This file should be |
| 25 | * world-readable. |
| 26 | */ |
| 27 | #define _PATH_SSH_SYSTEM_HOSTFILE ETCDIR "/ssh_known_hosts" |
| 28 | #define _PATH_SSH_SYSTEM_HOSTFILE2 ETCDIR "/ssh_known_hosts2" |
| 29 | |
| 30 | /* |
| 31 | * Of these, ssh_host_key must be readable only by root, whereas ssh_config |
| 32 | * should be world-readable. |
| 33 | */ |
| 34 | #define _PATH_HOST_KEY_FILE ETCDIR "/ssh_host_key" |
| 35 | #define _PATH_SERVER_CONFIG_FILE ETCDIR "/sshd_config" |
| 36 | #define _PATH_HOST_CONFIG_FILE ETCDIR "/ssh_config" |
| 37 | #define _PATH_HOST_DSA_KEY_FILE ETCDIR "/ssh_host_dsa_key" |
| 38 | #define _PATH_DH_PRIMES ETCDIR "/primes" |
| 39 | |
Ben Lindstrom | 27eebe6 | 2001-01-25 23:04:22 +0000 | [diff] [blame] | 40 | #ifndef _PATH_SSH_PROGRAM |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 41 | #define _PATH_SSH_PROGRAM "/usr/bin/ssh" |
Ben Lindstrom | 27eebe6 | 2001-01-25 23:04:22 +0000 | [diff] [blame] | 42 | #endif |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 43 | |
| 44 | /* |
| 45 | * The process id of the daemon listening for connections is saved here to |
| 46 | * make it easier to kill the correct daemon when necessary. |
| 47 | */ |
| 48 | #define _PATH_SSH_DAEMON_PID_FILE _PATH_SSH_PIDDIR "/sshd.pid" |
| 49 | |
| 50 | /* |
| 51 | * The directory in user\'s home directory in which the files reside. The |
| 52 | * directory should be world-readable (though not all files are). |
| 53 | */ |
| 54 | #define _PATH_SSH_USER_DIR ".ssh" |
| 55 | |
| 56 | /* |
| 57 | * Per-user file containing host keys of known hosts. This file need not be |
| 58 | * readable by anyone except the user him/herself, though this does not |
| 59 | * contain anything particularly secret. |
| 60 | */ |
| 61 | #define _PATH_SSH_USER_HOSTFILE "~/.ssh/known_hosts" |
| 62 | #define _PATH_SSH_USER_HOSTFILE2 "~/.ssh/known_hosts2" |
| 63 | |
| 64 | /* |
| 65 | * Name of the default file containing client-side authentication key. This |
| 66 | * file should only be readable by the user him/herself. |
| 67 | */ |
| 68 | #define _PATH_SSH_CLIENT_IDENTITY ".ssh/identity" |
| 69 | #define _PATH_SSH_CLIENT_ID_DSA ".ssh/id_dsa" |
| 70 | #define _PATH_SSH_CLIENT_ID_RSA ".ssh/id_rsa" |
| 71 | |
| 72 | /* |
| 73 | * Configuration file in user\'s home directory. This file need not be |
| 74 | * readable by anyone but the user him/herself, but does not contain anything |
| 75 | * particularly secret. If the user\'s home directory resides on an NFS |
| 76 | * volume where root is mapped to nobody, this may need to be world-readable. |
| 77 | */ |
| 78 | #define _PATH_SSH_USER_CONFFILE ".ssh/config" |
| 79 | |
| 80 | /* |
| 81 | * File containing a list of those rsa keys that permit logging in as this |
| 82 | * user. This file need not be readable by anyone but the user him/herself, |
| 83 | * but does not contain anything particularly secret. If the user\'s home |
| 84 | * directory resides on an NFS volume where root is mapped to nobody, this |
| 85 | * may need to be world-readable. (This file is read by the daemon which is |
| 86 | * running as root.) |
| 87 | */ |
| 88 | #define _PATH_SSH_USER_PERMITTED_KEYS ".ssh/authorized_keys" |
| 89 | #define _PATH_SSH_USER_PERMITTED_KEYS2 ".ssh/authorized_keys2" |
| 90 | |
| 91 | /* |
| 92 | * Per-user and system-wide ssh "rc" files. These files are executed with |
| 93 | * /bin/sh before starting the shell or command if they exist. They will be |
| 94 | * passed "proto cookie" as arguments if X11 forwarding with spoofing is in |
| 95 | * use. xauth will be run if neither of these exists. |
| 96 | */ |
| 97 | #define _PATH_SSH_USER_RC ".ssh/rc" |
| 98 | #define _PATH_SSH_SYSTEM_RC ETCDIR "/sshrc" |
| 99 | |
| 100 | /* |
| 101 | * Ssh-only version of /etc/hosts.equiv. Additionally, the daemon may use |
| 102 | * ~/.rhosts and /etc/hosts.equiv if rhosts authentication is enabled. |
| 103 | */ |
| 104 | #define _PATH_SSH_HOSTS_EQUIV ETCDIR "/shosts.equiv" |
| 105 | #define _PATH_RHOSTS_EQUIV "/etc/hosts.equiv" |
| 106 | |
| 107 | /* |
| 108 | * Default location of askpass |
| 109 | */ |
Ben Lindstrom | cb57733 | 2001-01-22 21:06:19 +0000 | [diff] [blame] | 110 | #ifndef _PATH_SSH_ASKPASS_DEFAULT |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 111 | #define _PATH_SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" |
Ben Lindstrom | cb57733 | 2001-01-22 21:06:19 +0000 | [diff] [blame] | 112 | #endif |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 113 | |
| 114 | /* for scp */ |
| 115 | #ifndef _PATH_CP |
| 116 | #define _PATH_CP "cp" |
| 117 | #endif |
| 118 | |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 119 | /* for sftp */ |
| 120 | #ifndef _PATH_SFTP_SERVER |
| 121 | #define _PATH_SFTP_SERVER "/usr/libexec/sftp-server" |
| 122 | #endif |
Damien Miller | 896b88a | 2001-02-27 14:42:48 +1100 | [diff] [blame] | 123 | #ifndef _PATH_LS |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 124 | #define _PATH_LS "ls" |
Damien Miller | 896b88a | 2001-02-27 14:42:48 +1100 | [diff] [blame] | 125 | #endif |
Damien Miller | d7686fd | 2001-02-10 00:40:03 +1100 | [diff] [blame] | 126 | |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 127 | /* path to login program */ |
| 128 | #ifndef LOGIN_PROGRAM |
| 129 | # ifdef LOGIN_PROGRAM_FALLBACK |
| 130 | # define LOGIN_PROGRAM LOGIN_PROGRAM_FALLBACK |
| 131 | # else |
| 132 | # define LOGIN_PROGRAM "/usr/bin/login" |
| 133 | # endif |
| 134 | #endif /* LOGIN_PROGRAM */ |
| 135 | |
| 136 | /* Askpass program define */ |
| 137 | #ifndef ASKPASS_PROGRAM |
| 138 | #define ASKPASS_PROGRAM "/usr/lib/ssh/ssh-askpass" |
| 139 | #endif /* ASKPASS_PROGRAM */ |
| 140 | |
| 141 | /* |
| 142 | * Relevant only when using builtin PRNG. |
| 143 | */ |
| 144 | #ifndef SSH_PRNG_SEED_FILE |
Ben Lindstrom | cb57733 | 2001-01-22 21:06:19 +0000 | [diff] [blame] | 145 | # define SSH_PRNG_SEED_FILE _PATH_SSH_USER_DIR"/prng_seed" |
Ben Lindstrom | 226cfa0 | 2001-01-22 05:34:40 +0000 | [diff] [blame] | 146 | #endif /* SSH_PRNG_SEED_FILE */ |
| 147 | #ifndef SSH_PRNG_COMMAND_FILE |
| 148 | # define SSH_PRNG_COMMAND_FILE ETCDIR "/ssh_prng_cmds" |
| 149 | #endif /* SSH_PRNG_COMMAND_FILE */ |
| 150 | |