xref: /titanic_51/usr/src/lib/libtnfctl/tnfctl.h (revision 7c478bd95313f5f23a4c958a745db2134aa03244)
1*7c478bd9Sstevel@tonic-gate /*
2*7c478bd9Sstevel@tonic-gate  * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate  *
4*7c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate  * with the License.
8*7c478bd9Sstevel@tonic-gate  *
9*7c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate  * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate  *
14*7c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate  *
20*7c478bd9Sstevel@tonic-gate  * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate  */
22*7c478bd9Sstevel@tonic-gate /*
23*7c478bd9Sstevel@tonic-gate  *      Copyright (c) 1994, by Sun Microsytems, Inc.
24*7c478bd9Sstevel@tonic-gate  */
25*7c478bd9Sstevel@tonic-gate 
26*7c478bd9Sstevel@tonic-gate #ifndef _TNFCTL_H
27*7c478bd9Sstevel@tonic-gate #define	_TNFCTL_H
28*7c478bd9Sstevel@tonic-gate 
29*7c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
30*7c478bd9Sstevel@tonic-gate 
31*7c478bd9Sstevel@tonic-gate #include <sys/types.h>
32*7c478bd9Sstevel@tonic-gate #include <gelf.h>
33*7c478bd9Sstevel@tonic-gate 
34*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus
35*7c478bd9Sstevel@tonic-gate extern "C" {
36*7c478bd9Sstevel@tonic-gate #endif
37*7c478bd9Sstevel@tonic-gate 
38*7c478bd9Sstevel@tonic-gate #define	TNFCTL_LIBTNFPROBE	"libtnfprobe.so.1"
39*7c478bd9Sstevel@tonic-gate 
40*7c478bd9Sstevel@tonic-gate /*
41*7c478bd9Sstevel@tonic-gate  * data model dependent defs
42*7c478bd9Sstevel@tonic-gate  */
43*7c478bd9Sstevel@tonic-gate #if defined(_LP64)
44*7c478bd9Sstevel@tonic-gate #define	ELF3264_R_SYM	GELF_R_SYM
45*7c478bd9Sstevel@tonic-gate typedef	GElf_Shdr	Elf3264_Shdr;
46*7c478bd9Sstevel@tonic-gate typedef GElf_Dyn	Elf3264_Dyn;
47*7c478bd9Sstevel@tonic-gate typedef GElf_Sword	Elf3264_Sword;
48*7c478bd9Sstevel@tonic-gate typedef GElf_Sym	Elf3264_Sym;
49*7c478bd9Sstevel@tonic-gate typedef GElf_Word	Elf3264_Word;
50*7c478bd9Sstevel@tonic-gate typedef GElf_Addr	Elf3264_Addr;
51*7c478bd9Sstevel@tonic-gate typedef GElf_Rela	Elf3264_Rela;
52*7c478bd9Sstevel@tonic-gate typedef GElf_Rel	Elf3264_Rel;
53*7c478bd9Sstevel@tonic-gate #else
54*7c478bd9Sstevel@tonic-gate #define	ELF3264_R_SYM	ELF32_R_SYM
55*7c478bd9Sstevel@tonic-gate typedef	Elf32_Shdr	Elf3264_Shdr;
56*7c478bd9Sstevel@tonic-gate typedef Elf32_Dyn	Elf3264_Dyn;
57*7c478bd9Sstevel@tonic-gate typedef Elf32_Sword	Elf3264_Sword;
58*7c478bd9Sstevel@tonic-gate typedef Elf32_Sym	Elf3264_Sym;
59*7c478bd9Sstevel@tonic-gate typedef Elf32_Word	Elf3264_Word;
60*7c478bd9Sstevel@tonic-gate typedef Elf32_Addr	Elf3264_Addr;
61*7c478bd9Sstevel@tonic-gate typedef Elf32_Rela	Elf3264_Rela;
62*7c478bd9Sstevel@tonic-gate typedef Elf32_Rel	Elf3264_Rel;
63*7c478bd9Sstevel@tonic-gate #endif
64*7c478bd9Sstevel@tonic-gate /*
65*7c478bd9Sstevel@tonic-gate  * Opaque tnfctl handle
66*7c478bd9Sstevel@tonic-gate  */
67*7c478bd9Sstevel@tonic-gate typedef	struct tnfctl_handle tnfctl_handle_t;
68*7c478bd9Sstevel@tonic-gate 
69*7c478bd9Sstevel@tonic-gate /*
70*7c478bd9Sstevel@tonic-gate  * Opaque probe handle
71*7c478bd9Sstevel@tonic-gate  */
72*7c478bd9Sstevel@tonic-gate typedef struct tnfctl_probe_handle tnfctl_probe_t;
73*7c478bd9Sstevel@tonic-gate 
74*7c478bd9Sstevel@tonic-gate /*
75*7c478bd9Sstevel@tonic-gate  * Trace attributes and probe state
76*7c478bd9Sstevel@tonic-gate  */
77*7c478bd9Sstevel@tonic-gate typedef enum {
78*7c478bd9Sstevel@tonic-gate 	TNFCTL_BUF_OK,
79*7c478bd9Sstevel@tonic-gate 	TNFCTL_BUF_NONE,
80*7c478bd9Sstevel@tonic-gate 	TNFCTL_BUF_BROKEN
81*7c478bd9Sstevel@tonic-gate } tnfctl_bufstate_t;
82*7c478bd9Sstevel@tonic-gate 
83*7c478bd9Sstevel@tonic-gate typedef struct tnfctl_trace_attrs {
84*7c478bd9Sstevel@tonic-gate 	pid_t		targ_pid;		/* user process only */
85*7c478bd9Sstevel@tonic-gate 	const char	*trace_file_name;	/* user process only */
86*7c478bd9Sstevel@tonic-gate 	size_t		trace_buf_size;
87*7c478bd9Sstevel@tonic-gate 	size_t		trace_min_size;
88*7c478bd9Sstevel@tonic-gate 	tnfctl_bufstate_t trace_buf_state;
89*7c478bd9Sstevel@tonic-gate 	boolean_t	trace_state;
90*7c478bd9Sstevel@tonic-gate 	boolean_t	filter_state;		/* kernel mode only */
91*7c478bd9Sstevel@tonic-gate 	long		pad;
92*7c478bd9Sstevel@tonic-gate } tnfctl_trace_attrs_t;
93*7c478bd9Sstevel@tonic-gate 
94*7c478bd9Sstevel@tonic-gate typedef struct tnfctl_probe_state {
95*7c478bd9Sstevel@tonic-gate 	ulong_t		id;
96*7c478bd9Sstevel@tonic-gate 	const char	*attr_string;
97*7c478bd9Sstevel@tonic-gate 	boolean_t	enabled;
98*7c478bd9Sstevel@tonic-gate 	boolean_t	traced;
99*7c478bd9Sstevel@tonic-gate 	boolean_t	new_probe;
100*7c478bd9Sstevel@tonic-gate 	const char	*obj_name;		/* user process only */
101*7c478bd9Sstevel@tonic-gate 	const char * const *func_names;		/* array of func names ptrs */
102*7c478bd9Sstevel@tonic-gate 	const uintptr_t	*func_addrs;		/* array of func addresses */
103*7c478bd9Sstevel@tonic-gate 	void		*client_registered_data;
104*7c478bd9Sstevel@tonic-gate 	long		pad;
105*7c478bd9Sstevel@tonic-gate } tnfctl_probe_state_t;
106*7c478bd9Sstevel@tonic-gate 
107*7c478bd9Sstevel@tonic-gate /*
108*7c478bd9Sstevel@tonic-gate  * error codes
109*7c478bd9Sstevel@tonic-gate  */
110*7c478bd9Sstevel@tonic-gate typedef enum {
111*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_NONE = 0,	/* success */
112*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_ACCES,	/* permission denied */
113*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_NOTARGET,	/* target process finished */
114*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_ALLOCFAIL,	/* memory allocation failure */
115*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_INTERNAL,	/* internal error */
116*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_SIZETOOSMALL, /* requested trace size is too small */
117*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_SIZETOOBIG,	/* requested trace size is too big */
118*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_BADARG,	/* Bad Input Argument */
119*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_NOTDYNAMIC,	/* Target is not a dynamic executable */
120*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_NOLIBTNFPROBE, /* libtnfprobe not linked in target */
121*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_BUFBROKEN,	/* tracing broken */
122*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_BUFEXISTS,	/* buffer already exists */
123*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_NOBUF,	/* no buffer */
124*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_BADDEALLOC,	/* can't deallocate buffer */
125*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_NOPROCESS,	/* no such target process */
126*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_FILENOTFOUND, /* file not found */
127*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_BUSY,	/* kernel/process already tracing */
128*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_INVALIDPROBE, /* probe no longer valid (dlclos'ed) */
129*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_USR1,	/* error extensions - semantics */
130*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_USR2,	/* 	set by user */
131*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_USR3,
132*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_USR4,
133*7c478bd9Sstevel@tonic-gate 	TNFCTL_ERR_USR5
134*7c478bd9Sstevel@tonic-gate } tnfctl_errcode_t;
135*7c478bd9Sstevel@tonic-gate 
136*7c478bd9Sstevel@tonic-gate /*
137*7c478bd9Sstevel@tonic-gate  * event codes
138*7c478bd9Sstevel@tonic-gate  */
139*7c478bd9Sstevel@tonic-gate typedef enum {
140*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_EINTR,	/* target was interrupted by a signal */
141*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_TARGGONE,	/* target finished - did not call exit */
142*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_DLOPEN,	/* target did a dlopen */
143*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_DLCLOSE,	/* target did a dlclose */
144*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_EXEC,	/* target did an exec */
145*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_FORK,	/* target did a fork */
146*7c478bd9Sstevel@tonic-gate 	TNFCTL_EVENT_EXIT	/* target called exit */
147*7c478bd9Sstevel@tonic-gate } tnfctl_event_t;
148*7c478bd9Sstevel@tonic-gate 
149*7c478bd9Sstevel@tonic-gate /*
150*7c478bd9Sstevel@tonic-gate  * action to perform on target process
151*7c478bd9Sstevel@tonic-gate  */
152*7c478bd9Sstevel@tonic-gate 
153*7c478bd9Sstevel@tonic-gate typedef enum {
154*7c478bd9Sstevel@tonic-gate 	TNFCTL_TARG_DEFAULT,	/* kills target if it was started with */
155*7c478bd9Sstevel@tonic-gate 				/* 	tnfctl_exec_open() */
156*7c478bd9Sstevel@tonic-gate 	TNFCTL_TARG_KILL,	/* kills target */
157*7c478bd9Sstevel@tonic-gate 	TNFCTL_TARG_RESUME,	/* target is let free */
158*7c478bd9Sstevel@tonic-gate 	TNFCTL_TARG_SUSPEND	/* target is suspended */
159*7c478bd9Sstevel@tonic-gate } tnfctl_targ_op_t;
160*7c478bd9Sstevel@tonic-gate 
161*7c478bd9Sstevel@tonic-gate /*
162*7c478bd9Sstevel@tonic-gate  * data structures needed when using tnfctl_indirect_open() interface i.e. for
163*7c478bd9Sstevel@tonic-gate  * clients that will supply callback functions for inspecting target image.
164*7c478bd9Sstevel@tonic-gate  */
165*7c478bd9Sstevel@tonic-gate typedef struct tnfctl_ind_obj_info {
166*7c478bd9Sstevel@tonic-gate 	int	objfd;		/* -1 indicates fd not available */
167*7c478bd9Sstevel@tonic-gate 	uintptr_t text_base;	/* address where text of loadobj was mapped */
168*7c478bd9Sstevel@tonic-gate 	uintptr_t data_base;	/* address where data of loadobj was mapped */
169*7c478bd9Sstevel@tonic-gate 	const char *objname;	/* null terminated full pathname to loadobj */
170*7c478bd9Sstevel@tonic-gate } tnfctl_ind_obj_info_t;
171*7c478bd9Sstevel@tonic-gate 
172*7c478bd9Sstevel@tonic-gate typedef int tnfctl_ind_obj_f(
173*7c478bd9Sstevel@tonic-gate 	void *,					/* opaque prochandle */
174*7c478bd9Sstevel@tonic-gate 	const struct tnfctl_ind_obj_info *, 	/* info about this object */
175*7c478bd9Sstevel@tonic-gate 	void *);				/* client supplied data */
176*7c478bd9Sstevel@tonic-gate 
177*7c478bd9Sstevel@tonic-gate typedef struct tnfctl_ind_config {
178*7c478bd9Sstevel@tonic-gate 	int (*p_read)(void *, uintptr_t, void *, size_t);
179*7c478bd9Sstevel@tonic-gate 	int (*p_write)(void *, uintptr_t, void *, size_t);
180*7c478bd9Sstevel@tonic-gate 	pid_t (*p_getpid)(void *);
181*7c478bd9Sstevel@tonic-gate 	int (*p_obj_iter)(void *, tnfctl_ind_obj_f *, void * /* client_data */);
182*7c478bd9Sstevel@tonic-gate } tnfctl_ind_config_t;
183*7c478bd9Sstevel@tonic-gate 
184*7c478bd9Sstevel@tonic-gate /*
185*7c478bd9Sstevel@tonic-gate  * maps an errcode to a string
186*7c478bd9Sstevel@tonic-gate  */
187*7c478bd9Sstevel@tonic-gate const char *tnfctl_strerror(tnfctl_errcode_t);
188*7c478bd9Sstevel@tonic-gate 
189*7c478bd9Sstevel@tonic-gate /*
190*7c478bd9Sstevel@tonic-gate  * interfaces to open a tnfctl handle
191*7c478bd9Sstevel@tonic-gate  */
192*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_pid_open(
193*7c478bd9Sstevel@tonic-gate 	pid_t, 			/* pid */
194*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t **);	/* return value */
195*7c478bd9Sstevel@tonic-gate 
196*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_indirect_open(
197*7c478bd9Sstevel@tonic-gate 	void *,			/* prochandle */
198*7c478bd9Sstevel@tonic-gate 	tnfctl_ind_config_t *,	/* config */
199*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t **);	/* return value */
200*7c478bd9Sstevel@tonic-gate 
201*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_exec_open(
202*7c478bd9Sstevel@tonic-gate 	const char *,		/* pgm name */
203*7c478bd9Sstevel@tonic-gate 	char * const *,		/* argv */
204*7c478bd9Sstevel@tonic-gate 	char * const *,		/* envp */
205*7c478bd9Sstevel@tonic-gate 	const char *,		/* ld_preload */
206*7c478bd9Sstevel@tonic-gate 	const char *,		/* libtnfprobe_path */
207*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t **);	/* return value */
208*7c478bd9Sstevel@tonic-gate 
209*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_internal_open(tnfctl_handle_t **);
210*7c478bd9Sstevel@tonic-gate 
211*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_kernel_open(tnfctl_handle_t **);
212*7c478bd9Sstevel@tonic-gate 
213*7c478bd9Sstevel@tonic-gate /*
214*7c478bd9Sstevel@tonic-gate  * direct mode - to continue process
215*7c478bd9Sstevel@tonic-gate  */
216*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_continue(
217*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
218*7c478bd9Sstevel@tonic-gate 	tnfctl_event_t *,	/* return value - why did process stop ? */
219*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t **);	/* return value - if fork, handle on child */
220*7c478bd9Sstevel@tonic-gate 
221*7c478bd9Sstevel@tonic-gate /*
222*7c478bd9Sstevel@tonic-gate  * informs libtnfctl that libraries may have changed
223*7c478bd9Sstevel@tonic-gate  */
224*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_check_libs(tnfctl_handle_t *);
225*7c478bd9Sstevel@tonic-gate 
226*7c478bd9Sstevel@tonic-gate /*
227*7c478bd9Sstevel@tonic-gate  *
228*7c478bd9Sstevel@tonic-gate  */
229*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_close(tnfctl_handle_t *, tnfctl_targ_op_t);
230*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_trace_attrs_get(
231*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
232*7c478bd9Sstevel@tonic-gate 	tnfctl_trace_attrs_t *);
233*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_buffer_alloc(
234*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
235*7c478bd9Sstevel@tonic-gate 	const char *,		/* filename - ignored if kernel handle */
236*7c478bd9Sstevel@tonic-gate 	uint_t);		/* buffer size */
237*7c478bd9Sstevel@tonic-gate 
238*7c478bd9Sstevel@tonic-gate /*
239*7c478bd9Sstevel@tonic-gate  * kernel tracing only
240*7c478bd9Sstevel@tonic-gate  */
241*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_buffer_dealloc(tnfctl_handle_t *);
242*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_trace_state_set(tnfctl_handle_t *, boolean_t);
243*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_filter_state_set(tnfctl_handle_t *, boolean_t);
244*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_filter_list_get(tnfctl_handle_t *, pid_t **, int *);
245*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_filter_list_add(tnfctl_handle_t *, pid_t);
246*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_filter_list_delete(tnfctl_handle_t *, pid_t);
247*7c478bd9Sstevel@tonic-gate 
248*7c478bd9Sstevel@tonic-gate /*
249*7c478bd9Sstevel@tonic-gate  * probe operation interface
250*7c478bd9Sstevel@tonic-gate  */
251*7c478bd9Sstevel@tonic-gate typedef tnfctl_errcode_t (*tnfctl_probe_op_t)(
252*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
253*7c478bd9Sstevel@tonic-gate 	tnfctl_probe_t *,		/* opaque probe handle */
254*7c478bd9Sstevel@tonic-gate 	void *);			/* client supplied data */
255*7c478bd9Sstevel@tonic-gate 
256*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_apply(
257*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
258*7c478bd9Sstevel@tonic-gate 	tnfctl_probe_op_t,	/* func to apply to each of the probes */
259*7c478bd9Sstevel@tonic-gate 	void *);		/* client data - arg to pass to func */
260*7c478bd9Sstevel@tonic-gate 
261*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_apply_ids(
262*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
263*7c478bd9Sstevel@tonic-gate 	ulong_t,		/* # of probe id's in array */
264*7c478bd9Sstevel@tonic-gate 	ulong_t *,		/* array of probe id's */
265*7c478bd9Sstevel@tonic-gate 	tnfctl_probe_op_t,	/* func to apply to each those probes */
266*7c478bd9Sstevel@tonic-gate 	void *);		/* client data - arg to pass to func */
267*7c478bd9Sstevel@tonic-gate 
268*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_register_funcs(
269*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
270*7c478bd9Sstevel@tonic-gate 	void *(*)(tnfctl_handle_t *, tnfctl_probe_t *),	/* create_func */
271*7c478bd9Sstevel@tonic-gate 	void (*)(void *));				/* destroy_func */
272*7c478bd9Sstevel@tonic-gate 
273*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_state_get(tnfctl_handle_t *, tnfctl_probe_t *,
274*7c478bd9Sstevel@tonic-gate 		tnfctl_probe_state_t *);
275*7c478bd9Sstevel@tonic-gate 
276*7c478bd9Sstevel@tonic-gate /*
277*7c478bd9Sstevel@tonic-gate  * supplied probe functions that can be used with tnfctl_probe_apply()
278*7c478bd9Sstevel@tonic-gate  * and tnfctl_probe_apply_ids(). last argument is ignored when it is "void *"
279*7c478bd9Sstevel@tonic-gate  */
280*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_enable(tnfctl_handle_t *, tnfctl_probe_t *,
281*7c478bd9Sstevel@tonic-gate 					void *);
282*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_disable(tnfctl_handle_t *, tnfctl_probe_t *,
283*7c478bd9Sstevel@tonic-gate 					void *);
284*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_trace(tnfctl_handle_t *, tnfctl_probe_t *,
285*7c478bd9Sstevel@tonic-gate 					void *);
286*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_untrace(tnfctl_handle_t *, tnfctl_probe_t *,
287*7c478bd9Sstevel@tonic-gate 					void *);
288*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_disconnect_all(tnfctl_handle_t *,
289*7c478bd9Sstevel@tonic-gate 					tnfctl_probe_t *, void *);
290*7c478bd9Sstevel@tonic-gate tnfctl_errcode_t tnfctl_probe_connect(
291*7c478bd9Sstevel@tonic-gate 	tnfctl_handle_t *,
292*7c478bd9Sstevel@tonic-gate 	tnfctl_probe_t *,
293*7c478bd9Sstevel@tonic-gate 	const char *,		/* library base name */
294*7c478bd9Sstevel@tonic-gate 	const char *);		/* function name */
295*7c478bd9Sstevel@tonic-gate 
296*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus
297*7c478bd9Sstevel@tonic-gate }
298*7c478bd9Sstevel@tonic-gate #endif
299*7c478bd9Sstevel@tonic-gate 
300*7c478bd9Sstevel@tonic-gate #endif /* _TNFCTL_H */
301