2015-12-17 17:56:48 +00:00
/*
* Copyright ( c ) 2015 Andreas Schwab < schwab @ suse . de >
2016-01-06 11:59:29 +00:00
* Copyright ( c ) 2015 - 2016 Dmitry V . Levin < ldv @ altlinux . org >
2017-05-22 19:14:52 +02:00
* Copyright ( c ) 2015 - 2017 The strace developers .
2015-12-17 17:56:48 +00: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 .
*/
2016-01-06 11:59:29 +00:00
# include "tests.h"
2015-01-14 16:52:28 +00:00
# include <errno.h>
2016-01-06 11:59:29 +00:00
# include <stdio.h>
# include <stdlib.h>
2015-01-12 16:08:59 +00:00
# include <sys/sem.h>
2016-09-13 19:18:42 +03:00
# include "xlat.h"
# include "xlat/resource_flags.h"
2015-03-11 12:33:30 +01:00
union semun {
int val ; /* Value for SETVAL */
struct semid_ds * buf ; /* Buffer for IPC_STAT, IPC_SET */
unsigned short * array ; /* Array for GETALL, SETALL */
struct seminfo * __buf ; /* Buffer for IPC_INFO
( Linux - specific ) */
} ;
2016-01-06 11:59:29 +00:00
static int id = - 1 ;
static void
cleanup ( void )
{
semctl ( id , 0 , IPC_RMID , 0 ) ;
2016-12-15 18:34:16 +03:00
printf ( " semctl \\ (%d, 0, (IPC_64 \\ |)?IPC_RMID, \\ [?NULL \\ ]? \\ ) += 0 \n " ,
id ) ;
2016-01-06 11:59:29 +00:00
id = - 1 ;
}
2015-01-12 16:08:59 +00:00
int
main ( void )
{
2016-09-08 12:49:35 +00:00
static const key_t private_key =
( key_t ) ( 0xffffffff00000000ULL | IPC_PRIVATE ) ;
2016-09-13 19:18:42 +03:00
static const key_t bogus_key = ( key_t ) 0xeca86420fdb97531ULL ;
static const int bogus_semid = 0xfdb97531 ;
static const int bogus_semnum = 0xeca86420 ;
static const int bogus_size = 0xdec0ded1 ;
static const int bogus_flags = 0xface1e55 ;
static const int bogus_cmd = 0xdeadbeef ;
static const unsigned long bogus_arg =
( unsigned long ) 0xbadc0dedfffffaceULL ;
2016-01-06 11:59:29 +00:00
int rc ;
2015-03-11 12:33:30 +01:00
union semun un ;
2015-01-14 16:52:28 +00:00
struct semid_ds ds ;
struct seminfo info ;
2016-09-13 19:18:42 +03:00
rc = semget ( bogus_key , bogus_size , bogus_flags ) ;
printf ( " semget \\ (%#llx, %d, %s%s%s%#x \\ |%#04o \\ ) += %s \n " ,
zero_extend_signed_to_ull ( bogus_key ) , bogus_size ,
IPC_CREAT & bogus_flags ? " IPC_CREAT \\ | " : " " ,
IPC_EXCL & bogus_flags ? " IPC_EXCL \\ | " : " " ,
IPC_NOWAIT & bogus_flags ? " IPC_NOWAIT \\ | " : " " ,
bogus_flags & ~ ( 0777 | IPC_CREAT | IPC_EXCL | IPC_NOWAIT ) ,
bogus_flags & 0777 , sprintrc_grep ( rc ) ) ;
2016-09-08 12:49:35 +00:00
id = semget ( private_key , 1 , 0600 ) ;
2015-01-12 16:08:59 +00:00
if ( id < 0 )
2016-01-06 11:59:29 +00:00
perror_msg_and_skip ( " semget " ) ;
2015-01-12 16:08:59 +00:00
printf ( " semget \\ (IPC_PRIVATE, 1, 0600 \\ ) += %d \n " , id ) ;
2016-01-06 11:59:29 +00:00
atexit ( cleanup ) ;
2015-01-12 16:08:59 +00:00
2016-09-13 19:18:42 +03:00
rc = semctl ( bogus_semid , bogus_semnum , bogus_cmd , bogus_arg ) ;
2017-02-08 15:54:35 +00:00
# define SEMCTL_BOGUS_ARG_FMT "(%#lx|\\[(%#lx|NULL)\\]|NULL)"
2016-09-13 19:18:42 +03:00
printf ( " semctl \\ (%d, %d, (IPC_64 \\ |)?%#x / \\ * SEM_ \\ ? \\ ? \\ ? \\ */ "
2016-09-13 20:33:04 +00:00
" , " SEMCTL_BOGUS_ARG_FMT " \\ ) += %s \n " ,
bogus_semid , bogus_semnum , bogus_cmd ,
bogus_arg , bogus_arg , sprintrc_grep ( rc ) ) ;
2016-09-13 19:18:42 +03:00
2015-03-11 12:33:30 +01:00
un . buf = & ds ;
if ( semctl ( id , 0 , IPC_STAT , un ) )
2016-01-06 11:59:29 +00:00
perror_msg_and_skip ( " semctl IPC_STAT " ) ;
2015-03-11 14:57:57 +00:00
printf ( " semctl \\ (%d, 0, (IPC_64 \\ |)?IPC_STAT, \\ [?%p \\ ]? \\ ) += 0 \n " ,
id , & ds ) ;
2015-01-12 16:08:59 +00:00
2015-03-11 12:33:30 +01:00
un . __buf = & info ;
2016-09-12 09:27:58 +00:00
rc = semctl ( 0 , 0 , SEM_INFO , un ) ;
printf ( " semctl \\ (0, 0, (IPC_64 \\ |)?SEM_INFO, \\ [?%p \\ ]? \\ ) += %s \n " ,
& info , sprintrc_grep ( rc ) ) ;
2015-01-12 16:08:59 +00:00
2015-03-11 12:33:30 +01:00
un . buf = & ds ;
rc = semctl ( id , 0 , SEM_STAT , un ) ;
2016-09-12 09:27:58 +00:00
printf ( " semctl \\ (%d, 0, (IPC_64 \\ |)?SEM_STAT, \\ [?%p \\ ]? \\ ) += %s \n " ,
id , & ds , sprintrc_grep ( rc ) ) ;
2015-01-12 16:08:59 +00:00
2016-01-06 11:59:29 +00:00
return 0 ;
2015-01-12 16:08:59 +00:00
}