Source code pulled from OpenBSD for OpenNTPD. The place to contribute to this code is via the OpenBSD CVS tree.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
3.1 KiB

  1. /* $OpenBSD: dlfcn.h,v 1.14 2017/11/28 17:19:47 kettenis Exp $ */
  2. /* $NetBSD: dlfcn.h,v 1.2 1995/06/05 19:38:00 pk Exp $ */
  3. /*
  4. * Copyright (c) 1995 Paul Kranenburg
  5. * All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. * 1. Redistributions of source code must retain the above copyright
  11. * notice, this list of conditions and the following disclaimer.
  12. * 2. Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. * 3. All advertising materials mentioning features or use of this software
  16. * must display the following acknowledgement:
  17. * This product includes software developed by Paul Kranenburg.
  18. * 4. The name of the author may not be used to endorse or promote products
  19. * derived from this software without specific prior written permission
  20. *
  21. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  22. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  23. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  24. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  26. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  30. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #ifndef _DLFCN_H_
  33. #define _DLFCN_H_
  34. #include <sys/cdefs.h>
  35. /* Values for dlopen `mode'. */
  36. #define RTLD_LAZY 1
  37. #define RTLD_NOW 2
  38. #define RTLD_GLOBAL 0x100
  39. #define RTLD_LOCAL 0x000
  40. #define RTLD_TRACE 0x200
  41. /*
  42. * Special handle arguments for dlsym().
  43. */
  44. #define RTLD_NEXT ((void *) -1) /* Search subsequent objects. */
  45. #define RTLD_DEFAULT ((void *) -2) /* Use default search algorithm. */
  46. #define RTLD_SELF ((void *) -3) /* Search the caller itself. */
  47. #if __BSD_VISIBLE
  48. /*
  49. * Structure filled in by dladdr().
  50. */
  51. typedef struct dl_info {
  52. const char *dli_fname; /* Pathname of shared object. */
  53. void *dli_fbase; /* Base address of shared object. */
  54. const char *dli_sname; /* Name of nearest symbol. */
  55. void *dli_saddr; /* Address of nearest symbol. */
  56. } Dl_info;
  57. /*
  58. * dlctl() commands
  59. */
  60. #define DL_GETERRNO 1
  61. #define DL_SETSRCHPATH x
  62. #define DL_GETLIST x
  63. #define DL_GETREFCNT x
  64. #define DL_GETLOADADDR x
  65. #define DL_SETTHREADLCK 2
  66. #define DL_SETBINDLCK 3
  67. #define DL_REFERENCE 4
  68. #define DL_LAZY RTLD_LAZY /* Compat */
  69. #endif /* __BSD_VISIBLE */
  70. /*
  71. * User interface to the run-time linker.
  72. */
  73. __BEGIN_DECLS
  74. void *dlopen(const char *, int);
  75. int dlclose(void *);
  76. void *dlsym(void *__restrict, const char *__restrict);
  77. char *dlerror(void);
  78. #if __BSD_VISIBLE
  79. int dladdr(const void *, Dl_info *);
  80. int dlctl(void *, int, void *);
  81. #endif /* __BSD_VISIBLE */
  82. __END_DECLS
  83. #endif /* _DLFCN_H_ */