xref: /freebsd/lib/librtld_db/rtld_db.h (revision 5c2bc3db201a4fe8d7911cf816bea104d5dc2138)
1fcf9fc10SMark Johnston /*-
2*4d846d26SWarner Losh  * SPDX-License-Identifier: BSD-2-Clause
35e53a4f9SPedro F. Giffuni  *
4cb314988SRui Paulo  * Copyright (c) 2010 The FreeBSD Foundation
5cb314988SRui Paulo  *
6cb314988SRui Paulo  * This software was developed by Rui Paulo under sponsorship from the
7cb314988SRui Paulo  * FreeBSD Foundation.
8cb314988SRui Paulo  *
9cb314988SRui Paulo  * Redistribution and use in source and binary forms, with or without
10cb314988SRui Paulo  * modification, are permitted provided that the following conditions
11cb314988SRui Paulo  * are met:
12cb314988SRui Paulo  * 1. Redistributions of source code must retain the above copyright
13cb314988SRui Paulo  *    notice, this list of conditions and the following disclaimer.
14cb314988SRui Paulo  * 2. Redistributions in binary form must reproduce the above copyright
15cb314988SRui Paulo  *    notice, this list of conditions and the following disclaimer in the
16cb314988SRui Paulo  *    documentation and/or other materials provided with the distribution.
17cb314988SRui Paulo  *
18cb314988SRui Paulo  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19cb314988SRui Paulo  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20cb314988SRui Paulo  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21cb314988SRui Paulo  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22cb314988SRui Paulo  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23cb314988SRui Paulo  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24cb314988SRui Paulo  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25cb314988SRui Paulo  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26cb314988SRui Paulo  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27cb314988SRui Paulo  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28cb314988SRui Paulo  * SUCH DAMAGE.
29cb314988SRui Paulo  */
30cb314988SRui Paulo 
31cb314988SRui Paulo #ifndef _RTLD_DB_H_
32cb314988SRui Paulo #define _RTLD_DB_H_
33cb314988SRui Paulo 
34cb314988SRui Paulo #include <sys/param.h>
35cb314988SRui Paulo 
36cb314988SRui Paulo #define	RD_VERSION	1
37cb314988SRui Paulo 
38cb314988SRui Paulo typedef enum {
39cb314988SRui Paulo 	RD_OK,
40cb314988SRui Paulo 	RD_ERR,
41cb314988SRui Paulo 	RD_DBERR,
42cb314988SRui Paulo 	RD_NOCAPAB,
43cb314988SRui Paulo 	RD_NODYNAM,
44cb314988SRui Paulo 	RD_NOBASE,
45cb314988SRui Paulo 	RD_NOMAPS
46cb314988SRui Paulo } rd_err_e;
47cb314988SRui Paulo 
48a7e13d50SMark Johnston /* XXX struct rd_agent should be private. */
49a7e13d50SMark Johnston struct procstat;
50a7e13d50SMark Johnston 
51cb314988SRui Paulo typedef struct rd_agent {
52cb314988SRui Paulo 	struct proc_handle *rda_php;
53a7e13d50SMark Johnston 
54b252f278SMark Johnston 	uintptr_t rda_dlactivity_addr;
55b252f278SMark Johnston 	uintptr_t rda_preinit_addr;
56b252f278SMark Johnston 	uintptr_t rda_postinit_addr;
57a7e13d50SMark Johnston 
58a7e13d50SMark Johnston 	struct procstat *rda_procstat;
59cb314988SRui Paulo } rd_agent_t;
60cb314988SRui Paulo 
61cb314988SRui Paulo typedef struct rd_loadobj {
62cb314988SRui Paulo 	uintptr_t	rdl_saddr;		/* start address */
63cb314988SRui Paulo 	uintptr_t	rdl_eaddr;		/* end address */
64cb314988SRui Paulo 	uint32_t	rdl_offset;
65cb314988SRui Paulo 	uint8_t		rdl_prot;
66cb314988SRui Paulo #define RD_RDL_R	0x01
67cb314988SRui Paulo #define RD_RDL_W	0x02
68cb314988SRui Paulo #define RD_RDL_X	0x04
69cb314988SRui Paulo 	enum {
70cb314988SRui Paulo 		RDL_TYPE_NONE	= 0,
71cb314988SRui Paulo 		RDL_TYPE_DEF,
72cb314988SRui Paulo 		RDL_TYPE_VNODE,
73cb314988SRui Paulo 		RDL_TYPE_SWAP,
74cb314988SRui Paulo 		RDL_TYPE_DEV,
75cb314988SRui Paulo 		/* XXX some types missing */
76cb314988SRui Paulo 		RDL_TYPE_UNKNOWN = 255
77cb314988SRui Paulo 	} rdl_type;
78cb314988SRui Paulo 	unsigned char	rdl_path[PATH_MAX];
79cb314988SRui Paulo } rd_loadobj_t;
80cb314988SRui Paulo 
81cb314988SRui Paulo typedef enum {
82cb314988SRui Paulo 	RD_NONE = 0,
83cb314988SRui Paulo 	RD_PREINIT,
84cb314988SRui Paulo 	RD_POSTINIT,
85cb314988SRui Paulo 	RD_DLACTIVITY
86cb314988SRui Paulo } rd_event_e;
87cb314988SRui Paulo 
88cb314988SRui Paulo typedef enum {
89cb314988SRui Paulo 	RD_NOTIFY_BPT,
90cb314988SRui Paulo 	RD_NOTIFY_AUTOBPT,
91cb314988SRui Paulo 	RD_NOTIFY_SYSCALL
92cb314988SRui Paulo } rd_notify_e;
93cb314988SRui Paulo 
94cb314988SRui Paulo typedef struct rd_notify {
95cb314988SRui Paulo 	rd_notify_e type;
96cb314988SRui Paulo 	union {
97cb314988SRui Paulo 		uintptr_t bptaddr;
98cb314988SRui Paulo 		long      syscallno;
99cb314988SRui Paulo 	} u;
100cb314988SRui Paulo } rd_notify_t;
101cb314988SRui Paulo 
102cb314988SRui Paulo typedef enum {
103cb314988SRui Paulo 	RD_NOSTATE = 0,
104cb314988SRui Paulo 	RD_CONSISTENT,
105cb314988SRui Paulo 	RD_ADD,
106cb314988SRui Paulo 	RD_DELETE
107cb314988SRui Paulo } rd_state_e;
108cb314988SRui Paulo 
109cb314988SRui Paulo typedef struct rd_event_msg {
110cb314988SRui Paulo 	rd_event_e type;
111cb314988SRui Paulo 	union {
112cb314988SRui Paulo 		rd_state_e state;
113cb314988SRui Paulo 	} u;
114cb314988SRui Paulo } rd_event_msg_t;
115cb314988SRui Paulo 
116cb314988SRui Paulo typedef enum {
117cb314988SRui Paulo 	RD_RESOLVE_NONE,
118cb314988SRui Paulo 	RD_RESOLVE_STEP,
119cb314988SRui Paulo 	RD_RESOLVE_TARGET,
120cb314988SRui Paulo 	RD_RESOLVE_TARGET_STEP
121cb314988SRui Paulo } rd_skip_e;
122cb314988SRui Paulo 
123cb314988SRui Paulo typedef struct rd_plt_info {
124cb314988SRui Paulo 	rd_skip_e pi_skip_method;
125cb314988SRui Paulo 	long	  pi_nstep;
126cb314988SRui Paulo 	uintptr_t pi_target;
127cb314988SRui Paulo 	uintptr_t pi_baddr;
128cb314988SRui Paulo 	unsigned int pi_flags;
129cb314988SRui Paulo } rd_plt_info_t;
130cb314988SRui Paulo 
131cb314988SRui Paulo #define RD_FLG_PI_PLTBOUND	0x0001
132cb314988SRui Paulo 
133cb314988SRui Paulo __BEGIN_DECLS
134cb314988SRui Paulo 
135cb314988SRui Paulo struct proc_handle;
136cb314988SRui Paulo void		rd_delete(rd_agent_t *);
137cb314988SRui Paulo const char 	*rd_errstr(rd_err_e);
138cb314988SRui Paulo rd_err_e	rd_event_addr(rd_agent_t *, rd_event_e, rd_notify_t *);
139cb314988SRui Paulo rd_err_e	rd_event_enable(rd_agent_t *, int);
140cb314988SRui Paulo rd_err_e	rd_event_getmsg(rd_agent_t *, rd_event_msg_t *);
141cb314988SRui Paulo rd_err_e	rd_init(int);
142cb314988SRui Paulo typedef int rl_iter_f(const rd_loadobj_t *, void *);
143cb314988SRui Paulo rd_err_e	rd_loadobj_iter(rd_agent_t *, rl_iter_f *, void *);
144cb314988SRui Paulo void		rd_log(const int);
145cb314988SRui Paulo rd_agent_t 	*rd_new(struct proc_handle *);
146cb314988SRui Paulo rd_err_e	rd_objpad_enable(rd_agent_t *, size_t);
147cb314988SRui Paulo struct proc;
148cb314988SRui Paulo rd_err_e	rd_plt_resolution(rd_agent_t *, uintptr_t, struct proc *,
149cb314988SRui Paulo 		    uintptr_t, rd_plt_info_t *);
150cb314988SRui Paulo rd_err_e	rd_reset(rd_agent_t *);
151cb314988SRui Paulo 
152cb314988SRui Paulo __END_DECLS
153cb314988SRui Paulo 
154cb314988SRui Paulo #endif /* _RTLD_DB_H_ */
155