1 /*- 2 * Copyright 1996, 1997, 1998, 1999, 2000 John D. Polstra. 3 * Copyright 2003 Alexander Kabaev <kan@FreeBSD.ORG>. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 */ 26 27 #ifndef _RTLD_PATHS_H 28 #define _RTLD_PATHS_H 29 30 #undef _PATH_ELF_HINTS 31 32 #ifndef _COMPAT32_BASENAME_RTLD 33 #define _COMPAT32_BASENAME_RTLD "ld-elf32.so.1" 34 #endif 35 36 #ifndef _PATH_ELF32_HINTS 37 #define _PATH_ELF32_HINTS "/var/run/ld-elf32.so.hints" 38 #endif 39 40 #ifdef COMPAT_32BIT 41 #define _PATH_ELF_HINTS _PATH_ELF32_HINTS 42 #define _PATH_LIBMAP_CONF "/etc/libmap32.conf" 43 #define _BASENAME_RTLD _COMPAT32_BASENAME_RTLD 44 #define STANDARD_LIBRARY_PATH "/lib32:/usr/lib32" 45 #define LD_ "LD_32_" 46 #define TOKEN_LIB "lib32" 47 #endif 48 49 #ifndef _PATH_ELF_HINTS 50 #define _PATH_ELF_HINTS "/var/run/ld-elf.so.hints" 51 #endif 52 53 #ifndef _PATH_LIBMAP_CONF 54 #define _PATH_LIBMAP_CONF "/etc/libmap.conf" 55 #endif 56 57 #ifndef _BASENAME_RTLD 58 #define _BASENAME_RTLD "ld-elf.so.1" 59 #endif 60 61 #ifndef _PATH_RTLD 62 #define _PATH_RTLD "/libexec/" _BASENAME_RTLD 63 #endif 64 65 #ifndef _COMPAT32_PATH_RTLD 66 #define _COMPAT32_PATH_RTLD "/libexec/" _COMPAT32_BASENAME_RTLD 67 #endif 68 69 #ifndef STANDARD_LIBRARY_PATH 70 #define STANDARD_LIBRARY_PATH "/lib/casper:/lib:/usr/lib" 71 #endif 72 73 #ifndef LD_ 74 #define LD_ "LD_" 75 #endif 76 77 #define _PATH_SOFT_ELF_HINTS "/var/run/ld-elf-soft.so.hints" 78 #define _PATH_SOFT_LIBMAP_CONF "/etc/libmap-soft.conf" 79 #define _PATH_SOFT_RTLD "/libexec/ld-elf.so.1" 80 #define SOFT_STANDARD_LIBRARY_PATH "/usr/libsoft" 81 #define LD_SOFT_ "LD_SOFT_" 82 83 #ifndef TOKEN_LIB 84 #define TOKEN_LIB "lib" 85 #endif 86 87 #ifdef IN_RTLD 88 extern const char *ld_elf_hints_default; 89 extern const char *ld_path_libmap_conf; 90 extern const char *ld_path_rtld; 91 extern const char *ld_standard_library_path; 92 extern const char *ld_env_prefix; 93 #endif 94 95 #endif /* _RTLD_PATHS_H */ 96