1.\" Copyright (c) 1992, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software developed by the Computer Systems 5.\" Engineering group at Lawrence Berkeley Laboratory under DARPA contract 6.\" BG 91-66 and contributed to Berkeley. 7.\" 8.\" Redistribution and use in source and binary forms, with or without 9.\" modification, are permitted provided that the following conditions 10.\" are met: 11.\" 1. Redistributions of source code must retain the above copyright 12.\" notice, this list of conditions and the following disclaimer. 13.\" 2. Redistributions in binary form must reproduce the above copyright 14.\" notice, this list of conditions and the following disclaimer in the 15.\" documentation and/or other materials provided with the distribution. 16.\" 3. All advertising materials mentioning features or use of this software 17.\" must display the following acknowledgement: 18.\" This product includes software developed by the University of 19.\" California, Berkeley and its contributors. 20.\" 4. Neither the name of the University nor the names of its contributors 21.\" may be used to endorse or promote products derived from this software 22.\" without specific prior written permission. 23.\" 24.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 25.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 28.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34.\" SUCH DAMAGE. 35.\" 36.\" @(#)kvm_open.3 8.3 (Berkeley) 4/19/94 37.\" $FreeBSD$ 38.\" 39.Dd January 29, 2004 40.Dt KVM_OPEN 3 41.Os 42.Sh NAME 43.Nm kvm_open , 44.Nm kvm_openfiles , 45.Nm kvm_close 46.Nd initialize kernel virtual memory access 47.Sh LIBRARY 48.Lb libkvm 49.Sh SYNOPSIS 50.In fcntl.h 51.In kvm.h 52.Ft kvm_t * 53.Fn kvm_open "const char *execfile" "const char *corefile" "const char *swapfile" "int flags" "const char *errstr" 54.Ft kvm_t * 55.Fn kvm_openfiles "const char *execfile" "const char *corefile" "const char *swapfile" "int flags" "char *errbuf" 56.Ft int 57.Fn kvm_close "kvm_t *kd" 58.Sh DESCRIPTION 59The functions 60.Fn kvm_open 61and 62.Fn kvm_openfiles 63return a descriptor used to access kernel virtual memory 64via the 65.Xr kvm 3 66library routines. Both active kernels and crash dumps are accessible 67through this interface. 68.Pp 69The 70.Fa execfile 71argument is the executable image of the kernel being examined. 72This file must contain a symbol table. 73If this argument is 74.Dv NULL , 75the currently running system is assumed, 76as determined from 77.Xr getbootfile 3 . 78.Pp 79The 80.Fa corefile 81argument is the kernel memory device file. 82It can be either 83.Pa /dev/mem 84or a crash dump core generated by 85.Xr savecore 8 . 86If 87.Fa corefile 88is 89.Dv NULL , 90the default indicated by 91.Dv _PATH_MEM 92from 93.In paths.h 94is used. 95It can also be set to a special value 96.Pa /dev/null 97by utilities like 98.Xr ps 1 99that do not directly access kernel memory. 100.Pp 101The 102.Fa swapfile 103argument is currently unused. 104.Pp 105The 106.Fa flags 107argument indicates read/write access as in 108.Xr open 2 109and applies only to the core file. 110Only 111.Dv O_RDONLY , 112.Dv O_WRONLY , 113and 114.Dv O_RDWR 115are permitted. 116.Pp 117There are two open routines which differ only with respect to 118the error mechanism. 119One provides backward compatibility with the SunOS kvm library, while the 120other provides an improved error reporting framework. 121.Pp 122The 123.Fn kvm_open 124function is the Sun kvm compatible open call. Here, the 125.Fa errstr 126argument indicates how errors should be handled. If it is 127.Dv NULL , 128no errors are reported and the application cannot know the 129specific nature of the failed kvm call. 130If it is not 131.Dv NULL , 132errors are printed to 133.Dv stderr 134with 135.Fa errstr 136prepended to the message, as in 137.Xr perror 3 . 138Normally, the name of the program is used here. 139The string is assumed to persist at least until the corresponding 140.Fn kvm_close 141call. 142.Pp 143The 144.Fn kvm_openfiles 145function provides 146.Bx 147style error reporting. 148Here, error messages are not printed out by the library. 149Instead, the application obtains the error message 150corresponding to the most recent kvm library call using 151.Fn kvm_geterr 152(see 153.Xr kvm_geterr 3 ) . 154The results are undefined if the most recent kvm call did not produce 155an error. 156Since 157.Fn kvm_geterr 158requires a kvm descriptor, but the open routines return 159.Dv NULL 160on failure, 161.Fn kvm_geterr 162cannot be used to get the error message if open fails. 163Thus, 164.Fn kvm_openfiles 165will place any error message in the 166.Fa errbuf 167argument. This buffer should be _POSIX2_LINE_MAX characters large (from 168<limits.h>). 169.Sh RETURN VALUES 170The 171.Fn kvm_open 172and 173.Fn kvm_openfiles 174functions both return a descriptor to be used 175in all subsequent kvm library calls. 176The library is fully re-entrant. 177On failure, 178.Dv NULL 179is returned, in which case 180.Fn kvm_openfiles 181writes the error message into 182.Fa errbuf . 183.Pp 184The 185.Fn kvm_close 186function returns 0 on success and -1 on failure. 187.Sh BUGS 188There should not be two open calls. The ill-defined error semantics 189of the Sun library and the desire to have a backward-compatible library 190for 191.Bx 192left little choice. 193.Sh SEE ALSO 194.Xr open 2 , 195.Xr kvm 3 , 196.Xr kvm_getargv 3 , 197.Xr kvm_getenvv 3 , 198.Xr kvm_geterr 3 , 199.Xr kvm_getprocs 3 , 200.Xr kvm_nlist 3 , 201.Xr kvm_read 3 , 202.Xr kvm_write 3 , 203.Xr kmem 4 , 204.Xr mem 4 205