xref: /freebsd/lib/libkvm/kvm.h (revision 9dc7ed6253b6ee5b8b70566349e2db13cfd4b297)
159deaec5SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
459deaec5SRodney W. Grimes  * Copyright (c) 1989, 1993
559deaec5SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
659deaec5SRodney W. Grimes  *
759deaec5SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
859deaec5SRodney W. Grimes  * modification, are permitted provided that the following conditions
959deaec5SRodney W. Grimes  * are met:
1059deaec5SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1159deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1259deaec5SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1359deaec5SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1459deaec5SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
1659deaec5SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1759deaec5SRodney W. Grimes  *    without specific prior written permission.
1859deaec5SRodney W. Grimes  *
1959deaec5SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2059deaec5SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2159deaec5SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2259deaec5SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2359deaec5SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2459deaec5SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2559deaec5SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2659deaec5SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2759deaec5SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2859deaec5SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2959deaec5SRodney W. Grimes  * SUCH DAMAGE.
3059deaec5SRodney W. Grimes  *
3159deaec5SRodney W. Grimes  *	@(#)kvm.h	8.1 (Berkeley) 6/2/93
32a4add9a9SPeter Wemm  * $FreeBSD$
3359deaec5SRodney W. Grimes  */
3459deaec5SRodney W. Grimes 
3559deaec5SRodney W. Grimes #ifndef _KVM_H_
3659deaec5SRodney W. Grimes #define	_KVM_H_
3759deaec5SRodney W. Grimes 
3895a7753bSBruce Evans #include <sys/cdefs.h>
39b448b67bSGleb Smirnoff #include <sys/types.h>
4095a7753bSBruce Evans #include <nlist.h>
418baaf913SWill Andrews 
428baaf913SWill Andrews /*
438baaf913SWill Andrews  * Including vm/vm.h causes namespace pollution issues.  For the
448baaf913SWill Andrews  * most part, only things using kvm_walk_pages() need to #include it.
458baaf913SWill Andrews  */
468baaf913SWill Andrews #ifndef VM_H
478baaf913SWill Andrews typedef u_char vm_prot_t;
488baaf913SWill Andrews #endif
4995a7753bSBruce Evans 
5059deaec5SRodney W. Grimes /* Default version symbol. */
5159deaec5SRodney W. Grimes #define	VRS_SYM		"_version"
5259deaec5SRodney W. Grimes #define	VRS_KEY		"VERSION"
5359deaec5SRodney W. Grimes 
54abbd8902SMike Barcroft #ifndef _SIZE_T_DECLARED
55abbd8902SMike Barcroft typedef	__size_t	size_t;
56abbd8902SMike Barcroft #define	_SIZE_T_DECLARED
57b245b90aSBruce Evans #endif
58b245b90aSBruce Evans 
59abbd8902SMike Barcroft #ifndef _SSIZE_T_DECLARED
60abbd8902SMike Barcroft typedef	__ssize_t	ssize_t;
61abbd8902SMike Barcroft #define	_SSIZE_T_DECLARED
62b245b90aSBruce Evans #endif
6359deaec5SRodney W. Grimes 
647f911abeSJohn Baldwin struct kvm_nlist {
657f911abeSJohn Baldwin 	const char *n_name;
667f911abeSJohn Baldwin 	unsigned char n_type;
677f911abeSJohn Baldwin 	kvaddr_t n_value;
687f911abeSJohn Baldwin };
697f911abeSJohn Baldwin 
7059deaec5SRodney W. Grimes typedef struct __kvm kvm_t;
7159deaec5SRodney W. Grimes 
7259deaec5SRodney W. Grimes struct kinfo_proc;
73b245b90aSBruce Evans struct proc;
74b245b90aSBruce Evans 
7545908a6aSBruce Evans struct kvm_swap {
76b8808468SMatthew Dillon 	char	ksw_devname[32];
77eca80cd0SPedro F. Giffuni 	u_int	ksw_used;
78eca80cd0SPedro F. Giffuni 	u_int	ksw_total;
79b8808468SMatthew Dillon 	int	ksw_flags;
80eca80cd0SPedro F. Giffuni 	u_int	ksw_reserved1;
81eca80cd0SPedro F. Giffuni 	u_int	ksw_reserved2;
8245908a6aSBruce Evans };
83b8808468SMatthew Dillon 
84c9057838SWill Andrews struct kvm_page {
85*9dc7ed62SEd Maste 	u_int		kp_version;
86*9dc7ed62SEd Maste 	kpaddr_t	kp_paddr;
87*9dc7ed62SEd Maste 	kvaddr_t	kp_kmap_vaddr;
88*9dc7ed62SEd Maste 	kvaddr_t	kp_dmap_vaddr;
89*9dc7ed62SEd Maste 	vm_prot_t	kp_prot;
90*9dc7ed62SEd Maste 	off_t		kp_offset;
91*9dc7ed62SEd Maste 	size_t		kp_len;
92*9dc7ed62SEd Maste 	/* end of version 2 */
93c9057838SWill Andrews };
94c9057838SWill Andrews 
95b8808468SMatthew Dillon #define SWIF_DEV_PREFIX	0x0002
96*9dc7ed62SEd Maste #define	LIBKVM_WALK_PAGES_VERSION	2
97b8808468SMatthew Dillon 
98b245b90aSBruce Evans __BEGIN_DECLS
9969160b1eSDavid E. O'Brien int	  kvm_close(kvm_t *);
10057a6239fSRobert Watson int	  kvm_dpcpu_setcpu(kvm_t *, unsigned int);
10169160b1eSDavid E. O'Brien char	**kvm_getargv(kvm_t *, const struct kinfo_proc *, int);
102f110b23bSJohn Baldwin int	  kvm_getcptime(kvm_t *, long *);
10369160b1eSDavid E. O'Brien char	**kvm_getenvv(kvm_t *, const struct kinfo_proc *, int);
10469160b1eSDavid E. O'Brien char	 *kvm_geterr(kvm_t *);
10569160b1eSDavid E. O'Brien int	  kvm_getloadavg(kvm_t *, double [], int);
106794a9a6cSJohn Baldwin int	  kvm_getmaxcpu(kvm_t *);
1079292aad4SGleb Smirnoff int	  kvm_getncpus(kvm_t *);
108794a9a6cSJohn Baldwin void	 *kvm_getpcpu(kvm_t *, int);
1092a213404SGleb Smirnoff uint64_t  kvm_counter_u64_fetch(kvm_t *, u_long);
11059deaec5SRodney W. Grimes struct kinfo_proc *
11169160b1eSDavid E. O'Brien 	  kvm_getprocs(kvm_t *, int, int, int *);
11269160b1eSDavid E. O'Brien int	  kvm_getswapinfo(kvm_t *, struct kvm_swap *, int, int);
1137f911abeSJohn Baldwin int	  kvm_native(kvm_t *);
11469160b1eSDavid E. O'Brien int	  kvm_nlist(kvm_t *, struct nlist *);
1157f911abeSJohn Baldwin int	  kvm_nlist2(kvm_t *, struct kvm_nlist *);
11659deaec5SRodney W. Grimes kvm_t	 *kvm_open
11769160b1eSDavid E. O'Brien 	    (const char *, const char *, const char *, int, const char *);
11859deaec5SRodney W. Grimes kvm_t	 *kvm_openfiles
11969160b1eSDavid E. O'Brien 	    (const char *, const char *, const char *, int, char *);
1207f911abeSJohn Baldwin kvm_t	 *kvm_open2
1217f911abeSJohn Baldwin 	    (const char *, const char *, int, char *,
1227f911abeSJohn Baldwin 	    int (*)(const char *, kvaddr_t *));
12369160b1eSDavid E. O'Brien ssize_t	  kvm_read(kvm_t *, unsigned long, void *, size_t);
12419b5cffeSGleb Smirnoff ssize_t	  kvm_read_zpcpu(kvm_t *, unsigned long, void *, size_t, int);
1257f911abeSJohn Baldwin ssize_t	  kvm_read2(kvm_t *, kvaddr_t, void *, size_t);
12669160b1eSDavid E. O'Brien ssize_t	  kvm_write(kvm_t *, unsigned long, const void *, size_t);
127c9057838SWill Andrews 
128c9057838SWill Andrews typedef int kvm_walk_pages_cb_t(struct kvm_page *, void *);
129c9057838SWill Andrews int kvm_walk_pages(kvm_t *, kvm_walk_pages_cb_t *, void *);
13059deaec5SRodney W. Grimes __END_DECLS
13159deaec5SRodney W. Grimes 
13259deaec5SRodney W. Grimes #endif /* !_KVM_H_ */
133