17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /*
237c478bd9Sstevel@tonic-gate  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
257c478bd9Sstevel@tonic-gate  */
267c478bd9Sstevel@tonic-gate 
277c478bd9Sstevel@tonic-gate #include <mdb/mdb_debug.h>
287c478bd9Sstevel@tonic-gate #include <mdb/mdb.h>
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #include <sys/types.h>
317c478bd9Sstevel@tonic-gate #include <sys/mman.h>
327c478bd9Sstevel@tonic-gate #include <sys/zmod.h>
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include <ctf_impl.h>
357c478bd9Sstevel@tonic-gate #include <stdlib.h>
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate /*ARGSUSED*/
387c478bd9Sstevel@tonic-gate void *
ctf_zopen(int * errp)397c478bd9Sstevel@tonic-gate ctf_zopen(int *errp)
407c478bd9Sstevel@tonic-gate {
417c478bd9Sstevel@tonic-gate 	/* The kernel will have decompressed the buffer for us */
427c478bd9Sstevel@tonic-gate 	return (ctf_set_open_errno(errp, ECTF_ZMISSING));
437c478bd9Sstevel@tonic-gate }
447c478bd9Sstevel@tonic-gate 
457c478bd9Sstevel@tonic-gate /*ARGSUSED*/
467c478bd9Sstevel@tonic-gate const void *
ctf_sect_mmap(ctf_sect_t * sp,int fd)477c478bd9Sstevel@tonic-gate ctf_sect_mmap(ctf_sect_t *sp, int fd)
487c478bd9Sstevel@tonic-gate {
497c478bd9Sstevel@tonic-gate 	return (MAP_FAILED); /* we don't support this in kmdb  */
507c478bd9Sstevel@tonic-gate }
517c478bd9Sstevel@tonic-gate 
527c478bd9Sstevel@tonic-gate /*ARGSUSED*/
537c478bd9Sstevel@tonic-gate void
ctf_sect_munmap(const ctf_sect_t * sp)547c478bd9Sstevel@tonic-gate ctf_sect_munmap(const ctf_sect_t *sp)
557c478bd9Sstevel@tonic-gate {
567c478bd9Sstevel@tonic-gate 	/* we don't support this in kmdb */
577c478bd9Sstevel@tonic-gate }
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate /*ARGSUSED*/
607c478bd9Sstevel@tonic-gate ctf_file_t *
ctf_fdopen(int fd,int * errp)617c478bd9Sstevel@tonic-gate ctf_fdopen(int fd, int *errp)
627c478bd9Sstevel@tonic-gate {
637c478bd9Sstevel@tonic-gate 	return (ctf_set_open_errno(errp, ENOTSUP));
647c478bd9Sstevel@tonic-gate }
657c478bd9Sstevel@tonic-gate 
66*bc1f688bSRobert Mustacchi /*ARGSUSED*/
67*bc1f688bSRobert Mustacchi ctf_file_t *
ctf_fdcreate_int(int fd,int * errp,ctf_sect_t * ctfp)68*bc1f688bSRobert Mustacchi ctf_fdcreate_int(int fd, int *errp, ctf_sect_t *ctfp)
69*bc1f688bSRobert Mustacchi {
70*bc1f688bSRobert Mustacchi 	return (ctf_set_open_errno(errp, ENOTSUP));
71*bc1f688bSRobert Mustacchi }
72*bc1f688bSRobert Mustacchi 
737c478bd9Sstevel@tonic-gate /*ARGSUSED*/
747c478bd9Sstevel@tonic-gate ctf_file_t *
ctf_open(const char * filename,int * errp)757c478bd9Sstevel@tonic-gate ctf_open(const char *filename, int *errp)
767c478bd9Sstevel@tonic-gate {
777c478bd9Sstevel@tonic-gate 	return (ctf_set_open_errno(errp, ENOTSUP));
787c478bd9Sstevel@tonic-gate }
797c478bd9Sstevel@tonic-gate 
807c478bd9Sstevel@tonic-gate int
ctf_version(int version)817c478bd9Sstevel@tonic-gate ctf_version(int version)
827c478bd9Sstevel@tonic-gate {
837c478bd9Sstevel@tonic-gate 	ASSERT(version > 0 && version <= CTF_VERSION);
847c478bd9Sstevel@tonic-gate 
857c478bd9Sstevel@tonic-gate 	if (version > 0)
867c478bd9Sstevel@tonic-gate 		_libctf_version = MIN(CTF_VERSION, version);
877c478bd9Sstevel@tonic-gate 
887c478bd9Sstevel@tonic-gate 	return (_libctf_version);
897c478bd9Sstevel@tonic-gate }
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate void *
ctf_data_alloc(size_t size)927c478bd9Sstevel@tonic-gate ctf_data_alloc(size_t size)
937c478bd9Sstevel@tonic-gate {
947c478bd9Sstevel@tonic-gate 	void *buf = mdb_alloc(size, UM_NOSLEEP);
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate 	if (buf == NULL)
977c478bd9Sstevel@tonic-gate 		return (MAP_FAILED);
987c478bd9Sstevel@tonic-gate 
997c478bd9Sstevel@tonic-gate 	return (buf);
1007c478bd9Sstevel@tonic-gate }
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate void
ctf_data_free(void * buf,size_t size)1037c478bd9Sstevel@tonic-gate ctf_data_free(void *buf, size_t size)
1047c478bd9Sstevel@tonic-gate {
1057c478bd9Sstevel@tonic-gate 	mdb_free(buf, size);
1067c478bd9Sstevel@tonic-gate }
1077c478bd9Sstevel@tonic-gate 
1087c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1097c478bd9Sstevel@tonic-gate void
ctf_data_protect(void * buf,size_t size)1107c478bd9Sstevel@tonic-gate ctf_data_protect(void *buf, size_t size)
1117c478bd9Sstevel@tonic-gate {
1127c478bd9Sstevel@tonic-gate 	/* Not supported in kmdb */
1137c478bd9Sstevel@tonic-gate }
1147c478bd9Sstevel@tonic-gate 
1157c478bd9Sstevel@tonic-gate void *
ctf_alloc(size_t size)1167c478bd9Sstevel@tonic-gate ctf_alloc(size_t size)
1177c478bd9Sstevel@tonic-gate {
1187c478bd9Sstevel@tonic-gate 	return (mdb_alloc(size, UM_NOSLEEP));
1197c478bd9Sstevel@tonic-gate }
1207c478bd9Sstevel@tonic-gate 
1217c478bd9Sstevel@tonic-gate void
ctf_free(void * buf,size_t size)1227c478bd9Sstevel@tonic-gate ctf_free(void *buf, size_t size)
1237c478bd9Sstevel@tonic-gate {
1247c478bd9Sstevel@tonic-gate 	mdb_free(buf, size);
1257c478bd9Sstevel@tonic-gate }
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1287c478bd9Sstevel@tonic-gate const char *
ctf_strerror(int err)1297c478bd9Sstevel@tonic-gate ctf_strerror(int err)
1307c478bd9Sstevel@tonic-gate {
1317c478bd9Sstevel@tonic-gate 	return (NULL); /* Not supported in kmdb */
1327c478bd9Sstevel@tonic-gate }
1337c478bd9Sstevel@tonic-gate 
1347c478bd9Sstevel@tonic-gate /*PRINTFLIKE1*/
1357c478bd9Sstevel@tonic-gate void
ctf_dprintf(const char * format,...)1367c478bd9Sstevel@tonic-gate ctf_dprintf(const char *format, ...)
1377c478bd9Sstevel@tonic-gate {
1387c478bd9Sstevel@tonic-gate 	va_list alist;
1397c478bd9Sstevel@tonic-gate 
1407c478bd9Sstevel@tonic-gate 	va_start(alist, format);
1417c478bd9Sstevel@tonic-gate 	mdb_dvprintf(MDB_DBG_CTF, format, alist);
1427c478bd9Sstevel@tonic-gate 	va_end(alist);
1437c478bd9Sstevel@tonic-gate }
1447c478bd9Sstevel@tonic-gate 
1457c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1467c478bd9Sstevel@tonic-gate int
z_uncompress(void * dst,size_t * dstlen,const void * src,size_t srclen)1477c478bd9Sstevel@tonic-gate z_uncompress(void *dst, size_t *dstlen, const void *src, size_t srclen)
1487c478bd9Sstevel@tonic-gate {
1497c478bd9Sstevel@tonic-gate 	return (Z_ERRNO);
1507c478bd9Sstevel@tonic-gate }
1517c478bd9Sstevel@tonic-gate 
1527c478bd9Sstevel@tonic-gate /*ARGSUSED*/
1537c478bd9Sstevel@tonic-gate const char *
z_strerror(int err)1547c478bd9Sstevel@tonic-gate z_strerror(int err)
1557c478bd9Sstevel@tonic-gate {
1567c478bd9Sstevel@tonic-gate 	return ("zlib unsupported in kmdb");
1577c478bd9Sstevel@tonic-gate }
1587c478bd9Sstevel@tonic-gate 
1597c478bd9Sstevel@tonic-gate int
ctf_vsnprintf(char * buf,size_t nbytes,const char * format,va_list alist)1607c478bd9Sstevel@tonic-gate ctf_vsnprintf(char *buf, size_t nbytes, const char *format, va_list alist)
1617c478bd9Sstevel@tonic-gate {
1627c478bd9Sstevel@tonic-gate 	return ((int)mdb_iob_vsnprintf(buf, nbytes, format, alist));
1637c478bd9Sstevel@tonic-gate }
164