1999-02-19 03:21:36 +03:00
/*
* Copyright ( c ) 1993 Ulrich Pegelow < pegelow @ moorea . uni - muenster . de >
* Copyright ( c ) 1993 Branko Lankester < branko @ hacktic . nl >
* Copyright ( c ) 1993 , 1994 , 1995 , 1996 Rick Sladkey < jrs @ world . std . com >
1999-12-23 17:20:14 +03:00
* Copyright ( c ) 1996 - 1999 Wichert Akkerman < wichert @ cistron . nl >
1999-02-19 03:21:36 +03:00
* 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 $
*/
# include "defs.h"
2000-09-02 01:03:06 +04:00
# if defined(LINUX) || defined(SUNOS4) || defined(FREEBSD)
1999-02-19 03:21:36 +03:00
2004-04-17 01:48:40 +04:00
# ifdef HAVE_MQUEUE_H
# include <mqueue.h>
# endif
# include <fcntl.h>
1999-02-19 03:21:36 +03:00
# include <sys/ipc.h>
# include <sys/sem.h>
# include <sys/msg.h>
# include <sys/shm.h>
# ifndef MSG_STAT
# define MSG_STAT 11
# endif
# ifndef MSG_INFO
# define MSG_INFO 12
# endif
# ifndef SHM_STAT
# define SHM_STAT 13
# endif
# ifndef SHM_INFO
# define SHM_INFO 14
# endif
# ifndef SEM_STAT
# define SEM_STAT 18
# endif
# ifndef SEM_INFO
# define SEM_INFO 19
# endif
2003-01-14 12:46:17 +03:00
# if defined LINUX && !defined IPC_64
# define IPC_64 0x100
# endif
2004-09-04 07:39:20 +04:00
extern const struct xlat openmodes [ ] ;
2004-04-17 01:48:40 +04:00
extern void printsigevent ( struct tcb * tcp , long arg ) ;
2004-09-04 07:39:20 +04:00
static const struct xlat msgctl_flags [ ] = {
1999-02-19 03:21:36 +03:00
{ IPC_RMID , " IPC_RMID " } ,
{ IPC_SET , " IPC_SET " } ,
{ IPC_STAT , " IPC_STAT " } ,
# ifdef LINUX
{ IPC_INFO , " IPC_INFO " } ,
{ MSG_STAT , " MSG_STAT " } ,
{ MSG_INFO , " MSG_INFO " } ,
# endif /* LINUX */
{ 0 , NULL } ,
} ;
2004-09-04 07:39:20 +04:00
static const struct xlat semctl_flags [ ] = {
1999-02-19 03:21:36 +03:00
{ IPC_RMID , " IPC_RMID " } ,
{ IPC_SET , " IPC_SET " } ,
{ IPC_STAT , " IPC_STAT " } ,
# ifdef LINUX
{ IPC_INFO , " IPC_INFO " } ,
{ SEM_STAT , " SEM_STAT " } ,
{ SEM_INFO , " SEM_INFO " } ,
# endif /* LINUX */
{ GETPID , " GETPID " } ,
{ GETVAL , " GETVAL " } ,
{ GETALL , " GETALL " } ,
{ GETNCNT , " GETNCNT " } ,
{ GETZCNT , " GETZCNT " } ,
{ SETVAL , " SETVAL " } ,
{ SETALL , " SETALL " } ,
{ 0 , NULL } ,
} ;
2004-09-04 07:39:20 +04:00
static const struct xlat shmctl_flags [ ] = {
1999-02-19 03:21:36 +03:00
{ IPC_RMID , " IPC_RMID " } ,
{ IPC_SET , " IPC_SET " } ,
{ IPC_STAT , " IPC_STAT " } ,
# ifdef LINUX
{ IPC_INFO , " IPC_INFO " } ,
{ SHM_STAT , " SHM_STAT " } ,
{ SHM_INFO , " SHM_INFO " } ,
# endif /* LINUX */
2003-01-14 12:46:17 +03:00
# ifdef SHM_LOCK
1999-02-19 03:21:36 +03:00
{ SHM_LOCK , " SHM_LOCK " } ,
2000-09-02 01:03:06 +04:00
# endif
2003-01-14 12:46:17 +03:00
# ifdef SHM_UNLOCK
1999-02-19 03:21:36 +03:00
{ SHM_UNLOCK , " SHM_UNLOCK " } ,
2003-01-14 12:46:17 +03:00
# endif
1999-02-19 03:21:36 +03:00
{ 0 , NULL } ,
} ;
2004-09-04 07:39:20 +04:00
static const struct xlat resource_flags [ ] = {
1999-02-19 03:21:36 +03:00
{ IPC_CREAT , " IPC_CREAT " } ,
{ IPC_EXCL , " IPC_EXCL " } ,
{ IPC_NOWAIT , " IPC_NOWAIT " } ,
2005-05-09 11:40:33 +04:00
{ 0 , NULL } ,
} ;
static const struct xlat shm_resource_flags [ ] = {
{ IPC_CREAT , " IPC_CREAT " } ,
{ IPC_EXCL , " IPC_EXCL " } ,
2003-07-17 13:03:04 +04:00
# ifdef SHM_HUGETLB
{ SHM_HUGETLB , " SHM_HUGETLB " } ,
# endif
1999-02-19 03:21:36 +03:00
{ 0 , NULL } ,
} ;
2004-09-04 07:39:20 +04:00
static const struct xlat shm_flags [ ] = {
1999-02-19 03:21:36 +03:00
# ifdef LINUX
{ SHM_REMAP , " SHM_REMAP " } ,
# endif /* LINUX */
{ SHM_RDONLY , " SHM_RDONLY " } ,
{ SHM_RND , " SHM_RND " } ,
{ 0 , NULL } ,
} ;
2004-09-04 07:39:20 +04:00
static const struct xlat msg_flags [ ] = {
1999-02-19 03:21:36 +03:00
{ MSG_NOERROR , " MSG_NOERROR " } ,
# ifdef LINUX
{ MSG_EXCEPT , " MSG_EXCEPT " } ,
# endif /* LINUX */
{ IPC_NOWAIT , " IPC_NOWAIT " } ,
{ 0 , NULL } ,
} ;
int sys_msgget ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
if ( tcp - > u_arg [ 0 ] )
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
else
tprintf ( " IPC_PRIVATE " ) ;
tprintf ( " , " ) ;
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
if ( printflags ( resource_flags , tcp - > u_arg [ 1 ] & ~ 0777 , NULL ) ! = 0 )
1999-02-19 03:21:36 +03:00
tprintf ( " | " ) ;
2003-07-17 13:03:04 +04:00
tprintf ( " %#lo " , tcp - > u_arg [ 1 ] & 0777 ) ;
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
2003-01-14 12:46:17 +03:00
# ifdef IPC_64
# define PRINTCTL(flagset, arg, dflt) \
if ( ( arg ) & IPC_64 ) tprintf ( " IPC_64| " ) ; \
printxval ( ( flagset ) , ( arg ) & ~ IPC_64 , dflt )
# else
# define PRINTCTL printxval
# endif
2005-12-02 06:57:07 +03:00
static int
indirect_ipccall ( tcp )
struct tcb * tcp ;
{
# ifdef LINUX
# ifdef X86_64
return current_personality > 0 ;
# endif
2005-12-02 07:18:55 +03:00
# if defined IA64
return tcp - > scno < 1024 ; /* ia32 emulation syscalls are low */
2005-12-02 06:57:07 +03:00
# endif
2005-12-02 07:34:09 +03:00
# if !defined MIPS && !defined HPPA
return 1 ;
# endif
# endif /* LINUX */
2005-12-02 06:57:07 +03:00
return 0 ;
}
1999-02-19 03:21:36 +03:00
int sys_msgctl ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
2003-01-14 12:46:17 +03:00
tprintf ( " %lu, " , tcp - > u_arg [ 0 ] ) ;
PRINTCTL ( msgctl_flags , tcp - > u_arg [ 1 ] , " MSG_??? " ) ;
2005-12-02 06:57:07 +03:00
tprintf ( " , %#lx " , tcp - > u_arg [ indirect_ipccall ( tcp ) ? 3 : 2 ] ) ;
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
int sys_msgsnd ( tcp )
struct tcb * tcp ;
{
long mtype ;
if ( entering ( tcp ) ) {
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
2005-12-02 06:57:07 +03:00
if ( indirect_ipccall ( tcp ) ) {
umove ( tcp , tcp - > u_arg [ 3 ] , & mtype ) ;
tprintf ( " , {%lu, " , mtype ) ;
printstr ( tcp , tcp - > u_arg [ 3 ] + sizeof ( long ) ,
tcp - > u_arg [ 1 ] ) ;
tprintf ( " }, %lu " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , " ) ;
printflags ( msg_flags , tcp - > u_arg [ 2 ] , " MSG_??? " ) ;
} else {
umove ( tcp , tcp - > u_arg [ 1 ] , & mtype ) ;
tprintf ( " , {%lu, " , mtype ) ;
printstr ( tcp , tcp - > u_arg [ 1 ] + sizeof ( long ) ,
tcp - > u_arg [ 2 ] ) ;
tprintf ( " }, %lu " , tcp - > u_arg [ 2 ] ) ;
tprintf ( " , " ) ;
printflags ( msg_flags , tcp - > u_arg [ 3 ] , " MSG_??? " ) ;
}
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
int sys_msgrcv ( tcp )
struct tcb * tcp ;
{
long mtype ;
2005-12-02 06:44:12 +03:00
if ( entering ( tcp ) ) {
tprintf ( " %lu, " , tcp - > u_arg [ 0 ] ) ;
} else {
1999-02-19 03:21:36 +03:00
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
2005-12-02 06:57:07 +03:00
if ( indirect_ipccall ( tcp ) ) {
struct ipc_wrapper {
struct msgbuf * msgp ;
long msgtyp ;
} tmp ;
umove ( tcp , tcp - > u_arg [ 3 ] , & tmp ) ;
umove ( tcp , ( long ) tmp . msgp , & mtype ) ;
tprintf ( " , {%lu, " , mtype ) ;
printstr ( tcp , ( long ) ( tmp . msgp ) + sizeof ( long ) ,
tcp - > u_arg [ 1 ] ) ;
tprintf ( " }, %lu " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , %ld " , tmp . msgtyp ) ;
tprintf ( " , " ) ;
printflags ( msg_flags , tcp - > u_arg [ 2 ] , " MSG_??? " ) ;
} else {
umove ( tcp , tcp - > u_arg [ 1 ] , & mtype ) ;
tprintf ( " {%lu, " , mtype ) ;
printstr ( tcp , tcp - > u_arg [ 1 ] + sizeof ( long ) ,
tcp - > u_arg [ 2 ] ) ;
tprintf ( " }, %lu " , tcp - > u_arg [ 2 ] ) ;
tprintf ( " , %ld " , tcp - > u_arg [ 3 ] ) ;
tprintf ( " , " ) ;
printflags ( msg_flags , tcp - > u_arg [ 4 ] , " MSG_??? " ) ;
}
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
int sys_semop ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
2005-12-02 06:57:07 +03:00
if ( indirect_ipccall ( tcp ) ) {
tprintf ( " , %#lx " , tcp - > u_arg [ 3 ] ) ;
tprintf ( " , %lu " , tcp - > u_arg [ 1 ] ) ;
} else {
tprintf ( " , %#lx " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , %lu " , tcp - > u_arg [ 2 ] ) ;
}
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
2003-04-08 05:46:48 +04:00
# ifdef LINUX
int sys_semtimedop ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
2006-04-25 11:22:01 +04:00
if ( indirect_ipccall ( tcp ) ) {
2005-12-02 06:57:07 +03:00
tprintf ( " , %#lx " , tcp - > u_arg [ 3 ] ) ;
tprintf ( " , %lu, " , tcp - > u_arg [ 1 ] ) ;
printtv ( tcp , tcp - > u_arg [ 5 ] ) ;
} else {
tprintf ( " , %#lx " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , %lu, " , tcp - > u_arg [ 2 ] ) ;
printtv ( tcp , tcp - > u_arg [ 3 ] ) ;
}
2003-04-08 05:46:48 +04:00
}
return 0 ;
}
# endif
1999-02-19 03:21:36 +03:00
int sys_semget ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
if ( tcp - > u_arg [ 0 ] )
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
else
tprintf ( " IPC_PRIVATE " ) ;
tprintf ( " , %lu " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , " ) ;
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
if ( printflags ( resource_flags , tcp - > u_arg [ 2 ] & ~ 0777 , NULL ) ! = 0 )
1999-02-19 03:21:36 +03:00
tprintf ( " | " ) ;
2003-07-17 13:03:04 +04:00
tprintf ( " %#lo " , tcp - > u_arg [ 2 ] & 0777 ) ;
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
int sys_semctl ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
tprintf ( " , %lu, " , tcp - > u_arg [ 1 ] ) ;
2003-01-14 12:46:17 +03:00
PRINTCTL ( semctl_flags , tcp - > u_arg [ 2 ] , " SEM_??? " ) ;
1999-02-19 03:21:36 +03:00
tprintf ( " , %#lx " , tcp - > u_arg [ 3 ] ) ;
}
return 0 ;
}
int sys_shmget ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
if ( tcp - > u_arg [ 0 ] )
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
else
tprintf ( " IPC_PRIVATE " ) ;
tprintf ( " , %lu " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , " ) ;
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
if ( printflags ( shm_resource_flags , tcp - > u_arg [ 2 ] & ~ 0777 , NULL ) ! = 0 )
1999-02-19 03:21:36 +03:00
tprintf ( " | " ) ;
2003-07-17 13:03:04 +04:00
tprintf ( " %#lo " , tcp - > u_arg [ 2 ] & 0777 ) ;
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
int sys_shmctl ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %lu, " , tcp - > u_arg [ 0 ] ) ;
2003-01-14 12:46:17 +03:00
PRINTCTL ( shmctl_flags , tcp - > u_arg [ 1 ] , " SHM_??? " ) ;
2005-12-02 06:57:07 +03:00
if ( indirect_ipccall ( tcp ) ) {
tprintf ( " , %#lx " , tcp - > u_arg [ 3 ] ) ;
} else {
tprintf ( " , %#lx " , tcp - > u_arg [ 2 ] ) ;
}
1999-02-19 03:21:36 +03:00
}
return 0 ;
}
int sys_shmat ( tcp )
struct tcb * tcp ;
{
# ifdef LINUX
unsigned long raddr ;
# endif /* LINUX */
if ( exiting ( tcp ) ) {
tprintf ( " %lu " , tcp - > u_arg [ 0 ] ) ;
2005-12-02 06:57:07 +03:00
if ( indirect_ipccall ( tcp ) ) {
tprintf ( " , %#lx " , tcp - > u_arg [ 3 ] ) ;
tprintf ( " , " ) ;
printflags ( shm_flags , tcp - > u_arg [ 1 ] , " SHM_??? " ) ;
} else {
tprintf ( " , %#lx " , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , " ) ;
printflags ( shm_flags , tcp - > u_arg [ 2 ] , " SHM_??? " ) ;
}
1999-02-19 03:21:36 +03:00
if ( syserror ( tcp ) )
return 0 ;
# ifdef LINUX
if ( umove ( tcp , tcp - > u_arg [ 2 ] , & raddr ) < 0 )
return RVAL_NONE ;
tcp - > u_rval = raddr ;
# endif /* LINUX */
return RVAL_HEX ;
}
return 0 ;
}
int sys_shmdt ( tcp )
struct tcb * tcp ;
{
2005-12-02 06:57:07 +03:00
if ( entering ( tcp ) ) {
if ( indirect_ipccall ( tcp ) ) {
tprintf ( " %#lx " , tcp - > u_arg [ 3 ] ) ;
} else {
tprintf ( " %#lx " , tcp - > u_arg [ 0 ] ) ;
}
}
1999-02-19 03:21:36 +03:00
return 0 ;
}
2000-09-02 01:03:06 +04:00
# endif /* defined(LINUX) || defined(SUNOS4) || defined(FREEBSD) */
2004-04-17 01:48:40 +04:00
# ifdef LINUX
int sys_mq_open ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
printpath ( tcp , tcp - > u_arg [ 0 ] ) ;
tprintf ( " , " ) ;
/* flags */
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 ( openmodes , tcp - > u_arg [ 1 ] + 1 , " O_??? " ) ;
2004-04-17 01:48:40 +04:00
if ( tcp - > u_arg [ 1 ] & O_CREAT ) {
# ifndef HAVE_MQUEUE_H
tprintf ( " , %lx " , tcp - > u_arg [ 2 ] ) ;
# else
struct mq_attr attr ;
/* mode */
tprintf ( " , %#lo, " , tcp - > u_arg [ 2 ] ) ;
if ( umove ( tcp , tcp - > u_arg [ 3 ] , & attr ) < 0 )
tprintf ( " { ??? } " ) ;
else
tprintf ( " {mq_maxmsg=%ld, mq_msgsize=%ld} " ,
attr . mq_maxmsg , attr . mq_msgsize ) ;
# endif
}
}
return 0 ;
}
int sys_mq_timedsend ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %ld, " , tcp - > u_arg [ 0 ] ) ;
printstr ( tcp , tcp - > u_arg [ 1 ] , tcp - > u_arg [ 2 ] ) ;
tprintf ( " , %lu, %ld, " , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] ) ;
printtv ( tcp , tcp - > u_arg [ 4 ] ) ;
}
return 0 ;
}
int sys_mq_timedreceive ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) )
tprintf ( " %ld, " , tcp - > u_arg [ 0 ] ) ;
else {
printstr ( tcp , tcp - > u_arg [ 1 ] , tcp - > u_arg [ 2 ] ) ;
tprintf ( " , %lu, %ld, " , tcp - > u_arg [ 2 ] , tcp - > u_arg [ 3 ] ) ;
printtv ( tcp , tcp - > u_arg [ 4 ] ) ;
}
return 0 ;
}
int sys_mq_notify ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %ld, " , tcp - > u_arg [ 0 ] ) ;
printsigevent ( tcp , tcp - > u_arg [ 1 ] ) ;
}
return 0 ;
}
static void printmqattr ( tcp , addr )
struct tcb * tcp ;
long addr ;
{
if ( addr = = 0 )
tprintf ( " NULL " ) ;
else {
# ifndef HAVE_MQUEUE_H
tprintf ( " %#lx " , addr ) ;
# else
struct mq_attr attr ;
if ( umove ( tcp , addr , & attr ) < 0 ) {
tprintf ( " {...} " ) ;
return ;
}
tprintf ( " {mq_flags= " ) ;
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 ( openmodes , attr . mq_flags + 1 , " O_??? " ) ;
2004-04-17 01:48:40 +04:00
tprintf ( " , mq_maxmsg=%ld, mq_msgsize=%ld, mq_curmsg=%ld} " ,
attr . mq_maxmsg , attr . mq_msgsize , attr . mq_curmsgs ) ;
# endif
}
}
int sys_mq_getsetattr ( tcp )
struct tcb * tcp ;
{
if ( entering ( tcp ) ) {
tprintf ( " %ld, " , tcp - > u_arg [ 0 ] ) ;
printmqattr ( tcp , tcp - > u_arg [ 1 ] ) ;
tprintf ( " , " ) ;
} else
printmqattr ( tcp , tcp - > u_arg [ 2 ] ) ;
return 0 ;
}
# endif