1999-12-23 17:20:14 +03:00
/*
* Copyright ( c ) 1991 , 1992 Paul Kranenburg < pk @ cs . few . eur . nl >
* Copyright ( c ) 1993 Branko Lankester < branko @ hacktic . nl >
* Copyright ( c ) 1993 , 1994 , 1995 , 1996 Rick Sladkey < jrs @ world . std . com >
* Copyright ( c ) 1996 - 1999 Wichert Akkerman < wichert @ cistron . nl >
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ` ` AS IS ' ' AND ANY EXPRESS OR
* IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED .
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
* NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* $ Id $
*/
1999-02-19 03:21:36 +03:00
# include "defs.h"
1999-05-09 04:29:58 +04:00
# if defined(LINUX)
1999-02-19 03:21:36 +03:00
# include <fcntl.h>
# include <sys/stat.h>
# include <sys/time.h>
# include <sys/wait.h>
# include <sys/resource.h>
# include <sys/utsname.h>
# include <sys/user.h>
# include <sys/syscall.h>
# include <signal.h>
2001-10-10 03:47:38 +04:00
/* Bits of module.flags. */
# define MOD_UNINITIALIZED 0
# define MOD_RUNNING 1
# define MOD_DELETED 2
# define MOD_AUTOCLEAN 4
# define MOD_VISITED 8
# define MOD_USED_ONCE 16
# define MOD_JUST_FREED 32
# define MOD_INITIALIZING 64
/* Values for query_module's which. */
# define QM_MODULES 1
# define QM_DEPS 2
# define QM_REFS 3
# define QM_SYMBOLS 4
# define QM_INFO 5
struct module_symbol
{
unsigned long value ;
const char * name ;
} ;
struct module_info
{
unsigned long addr ;
unsigned long size ;
unsigned long flags ;
long usecount ;
} ;
1999-02-19 03:21:36 +03:00
2004-09-04 07:39:20 +04:00
static const struct xlat which [ ] = {
1999-11-28 00:58:20 +03:00
{ 0 , " 0 " } ,
1999-02-19 03:21:36 +03:00
{ QM_MODULES , " QM_MODULES " } ,
1999-11-28 00:58:20 +03:00
{ QM_DEPS , " QM_DEPS " } ,
{ QM_REFS , " QM_REFS " } ,
1999-02-19 03:21:36 +03:00
{ QM_SYMBOLS , " QM_SYMBOLS " } ,
1999-11-28 00:58:20 +03:00
{ QM_INFO , " QM_INFO " } ,
{ 0 , NULL } ,
} ;
2004-09-04 07:39:20 +04:00
static const struct xlat modflags [ ] = {
1999-11-28 00:58:20 +03:00
{ MOD_UNINITIALIZED , " MOD_UNINITIALIZED " } ,
{ MOD_RUNNING , " MOD_RUNNING " } ,
{ MOD_DELETED , " MOD_DELETED " } ,
{ MOD_AUTOCLEAN , " MOD_AUTOCLEAN " } ,
{ MOD_VISITED , " MOD_VISITED " } ,
{ MOD_USED_ONCE , " MOD_USED_ONCE " } ,
{ MOD_JUST_FREED , " MOD_JUST_FREED " } ,
1999-02-19 03:21:36 +03:00
{ 0 , NULL } ,
} ;
int
sys_query_module ( tcp )
struct tcb * tcp ;
{
1999-10-11 02:40:07 +04:00
if ( exiting ( tcp ) ) {
1999-02-19 03:21:36 +03:00
printstr ( tcp , tcp - > u_arg [ 0 ] , - 1 ) ;
tprintf ( " , " ) ;
1999-11-28 00:58:20 +03:00
printxval ( which , tcp - > u_arg [ 1 ] , " QM_??? " ) ;
1999-02-19 03:21:36 +03:00
tprintf ( " , " ) ;
1999-11-28 04:56:12 +03:00
if ( ! verbose ( tcp ) ) {
tprintf ( " %#lx, %lu, %#lx " , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] , tcp - > u_arg [ 4 ] ) ;
} else if ( tcp - > u_rval ! = 0 ) {
1999-11-28 00:58:20 +03:00
size_t ret ;
umove ( tcp , tcp - > u_arg [ 4 ] , & ret ) ;
2000-02-04 00:58:30 +03:00
tprintf ( " %#lx, %lu, %Zu " , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] , ret ) ;
1999-11-28 00:58:20 +03:00
} else if ( tcp - > u_arg [ 1 ] = = QM_INFO ) {
struct module_info mi ;
size_t ret ;
umove ( tcp , tcp - > u_arg [ 2 ] , & mi ) ;
tprintf ( " {address=%#lx, size=%lu, flags= " , mi . addr , mi . size ) ;
2005-05-31 Dmitry V. Levin <ldv@altlinux.org>
* util.c (printxval): Change third argument from "char *" to
"const char *".
(printflags): Add third argument, "const char *", with similar
meaning to the third argument of printxval().
* defs.h (printxval): Change third argument from "char *" to
"const char *".
(printflags): Add third argument.
* bjm.c (sys_query_module) [LINUX]: Pass third argument to
printflags().
* desc.c (sys_fcntl): Likewise.
(sys_flock) [LOCK_SH]: Likewise.
(print_epoll_event) [HAVE_SYS_EPOLL_H]: Likewise.
* file.c (sys_open): Likewise.
(solaris_open) [LINUXSPARC]: Likewise.
(sys_access): Likewise.
(sys_chflags, sys_fchflags) [FREEBSD]: Likewise.
(realprintstat) [HAVE_LONG_LONG_OFF_T &&
HAVE_STRUCT_STAT_ST_FLAGS]: Likewise.
(printstat64) [HAVE_STAT64 &&
HAVE_STRUCT_STAT_ST_FLAGS]: Likewise.
(sys_setxattr, sys_fsetxattr): Likewise.
* ipc.c (sys_msgget, sys_msgsnd, sys_msgrcv, sys_semget,
sys_shmget, sys_shmat) [LINUX || SUNOS4 || FREEBSD]: Likewise.
(sys_mq_open) [LINUX]: Likewise.
(printmqattr) [HAVE_MQUEUE_H]: Likewise.
* mem.c (print_mmap) [!HAVE_LONG_LONG_OFF_T]: Likewise.
(sys_mmap64) [_LFS64_LARGEFILE || HAVE_LONG_LONG_OFF_T]: Likewise.
(sys_mprotect): Likewise.
(sys_mremap, sys_madvise, sys_mlockall) [LINUX]: Likewise.
(sys_msync) [MS_ASYNC]: Likewise.
(sys_mctl) [MC_SYNC]: Likewise.
(sys_remap_file_pages, sys_mbind, sys_get_mempolicy) [LINUX]:
Likewise.
* net.c (printmsghdr) [HAVE_STRUCT_MSGHDR_MSG_CONTROL]: Likewise.
(sys_send, sys_sendto): Likewise.
(sys_sendmsg) [HAVE_SENDMSG]: Likewise.
(sys_recv, sys_recvfrom): Likewise.
(sys_recvmsg) [HAVE_SENDMSG]: Likewise.
(printicmpfilter) [ICMP_FILTER]: Likewise.
* proc.c (proc_ioctl) [SVR4 && !HAVE_MP_PROCFS || FREEBSD]: Likewise.
* process.c (sys_clone) [LINUX]: Likewise.
(printwaitn): Likewise.
(sys_waitid) [SVR4 || LINUX]: Likewise.
* signal.c (sys_sigvec) [SUNOS4 || FREEBSD]: Likewise.
(sys_sigaction): Likewise.
(printcontext) [SVR4]: Likewise.
(print_stack_t) [LINUX) || FREEBSD]: Likewise.
(sys_rt_sigaction) [LINUX]: Likewise.
* sock.c (sock_ioctl) [LINUX]: Likewise.
* stream.c (sys_putmsg, sys_getmsg): Likewise.
(sys_putpmsg) [SYS_putpmsg]: Likewise.
(sys_getpmsg) [SYS_getpmsg]: Likewise.
(sys_poll): Likewise.
(print_transport_message) [TI_BIND]: Likewise.
(stream_ioctl): Likewise.
* system.c (sys_mount, sys_reboot): Likewise.
(sys_cacheflush) [LINUX && M68K]: Likewise.
(sys_capget, sys_capset) [SYS_capget]: Likewise.
* term.c (term_ioctl) [TIOCMGET]: Likewise.
* time.c (sys_clock_nanosleep, sys_timer_settime) [LINUX]:
Likewise.
Fixes RH#159310.
2005-06-01 23:02:36 +04:00
printflags ( modflags , mi . flags , " MOD_??? " ) ;
1999-11-28 00:58:20 +03:00
tprintf ( " , usecount=%lu} " , mi . usecount ) ;
umove ( tcp , tcp - > u_arg [ 4 ] , & ret ) ;
2000-02-04 00:58:30 +03:00
tprintf ( " , %Zu " , ret ) ;
1999-11-28 00:58:20 +03:00
} else if ( ( tcp - > u_arg [ 1 ] = = QM_MODULES ) | |
2009-07-08 15:21:17 +04:00
( tcp - > u_arg [ 1 ] = = QM_DEPS ) | |
( tcp - > u_arg [ 1 ] = = QM_REFS ) ) {
1999-11-28 00:58:20 +03:00
size_t ret ;
umove ( tcp , tcp - > u_arg [ 4 ] , & ret ) ;
tprintf ( " { " ) ;
1999-11-28 04:56:12 +03:00
if ( ! abbrev ( tcp ) ) {
char * data = ( char * ) malloc ( tcp - > u_arg [ 3 ] ) ;
char * mod = data ;
size_t idx ;
2000-04-11 02:22:31 +04:00
if ( data = = NULL ) {
2005-06-01 22:55:42 +04:00
fprintf ( stderr , " out of memory \n " ) ;
2000-04-11 02:22:31 +04:00
tprintf ( " /* %Zu entries */ " , ret ) ;
} else {
umoven ( tcp , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] , data ) ;
for ( idx = 0 ; idx < ret ; idx + + ) {
if ( idx ! = 0 )
tprintf ( " , " ) ;
2009-06-01 14:32:27 +04:00
tprintf ( " %s " , mod ) ;
2000-04-11 02:22:31 +04:00
mod + = strlen ( mod ) + 1 ;
}
free ( data ) ;
1999-11-28 04:56:12 +03:00
}
2004-09-04 07:39:20 +04:00
} else
2000-02-04 00:58:30 +03:00
tprintf ( " /* %Zu entries */ " , ret ) ;
tprintf ( " }, %Zu " , ret ) ;
1999-11-28 00:58:20 +03:00
} else if ( tcp - > u_arg [ 1 ] = = QM_SYMBOLS ) {
1999-11-28 04:56:12 +03:00
size_t ret ;
umove ( tcp , tcp - > u_arg [ 4 ] , & ret ) ;
1999-11-28 00:58:20 +03:00
tprintf ( " { " ) ;
1999-11-28 04:56:12 +03:00
if ( ! abbrev ( tcp ) ) {
char * data = ( char * ) malloc ( tcp - > u_arg [ 3 ] ) ;
struct module_symbol * sym = ( struct module_symbol * ) data ;
size_t idx ;
2000-04-11 02:22:31 +04:00
if ( data = = NULL ) {
2005-06-01 22:55:42 +04:00
fprintf ( stderr , " out of memory \n " ) ;
2000-04-11 02:22:31 +04:00
tprintf ( " /* %Zu entries */ " , ret ) ;
} else {
umoven ( tcp , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] , data ) ;
for ( idx = 0 ; idx < ret ; idx + + ) {
tprintf ( " {name=%s, value=%lu} " , data + ( long ) sym - > name , sym - > value ) ;
sym + + ;
}
free ( data ) ;
1999-11-28 04:56:12 +03:00
}
} else
2000-02-04 00:58:30 +03:00
tprintf ( " /* %Zu entries */ " , ret ) ;
tprintf ( " }, %Zd " , ret ) ;
1999-11-28 00:58:20 +03:00
} else {
printstr ( tcp , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] ) ;
tprintf ( " , %#lx " , tcp - > u_arg [ 4 ] ) ;
}
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
1999-10-11 02:40:07 +04:00
int
sys_create_module ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
printpath ( tcp , tcp - > u_arg [ 0 ] ) ;
tprintf ( " , %lu " , tcp - > u_arg [ 1 ] ) ;
}
return RVAL_HEX ;
}
1999-11-01 22:53:31 +03:00
int
sys_init_module ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
2005-08-03 15:27:30 +04:00
tprintf ( " %#lx, " , tcp - > u_arg [ 0 ] ) ;
tprintf ( " %lu, " , tcp - > u_arg [ 1 ] ) ;
printstr ( tcp , tcp - > u_arg [ 2 ] , - 1 ) ;
1999-11-01 22:53:31 +03:00
}
return 0 ;
}
1999-05-09 04:29:58 +04:00
# endif /* LINUX */