2015-12-17 20:56:48 +03:00
/*
2016-01-05 02:53:31 +03:00
* Copyright ( c ) 2014 - 2016 Dmitry V . Levin < ldv @ altlinux . org >
2015-12-17 20:56:48 +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 .
*/
2016-01-05 02:53:31 +03:00
# include "tests.h"
2014-05-30 01:35:34 +04:00
# include <assert.h>
# include <fcntl.h>
2016-01-12 17:47:12 +03:00
# include <stdlib.h>
# include <string.h>
# include <unistd.h>
2014-05-30 01:35:34 +04:00
# include <sys/socket.h>
2015-01-24 22:51:39 +03:00
int main ( int ac , const char * * av )
2014-05-30 01:35:34 +04:00
{
2016-01-12 17:47:12 +03:00
assert ( ac > 0 ) ;
int fds [ ac ] ;
static const char sample [ ] =
" \xf1 \xf2 \xf3 \xf4 \xf5 \xf6 \xf7 \xf8 \xf9 \xfa \xfb \xfc \xfd \xfe \xff " ;
const unsigned int data_size = sizeof ( sample ) - 1 ;
void * data = tail_alloc ( data_size ) ;
memcpy ( data , sample , data_size ) ;
struct iovec * iov = tail_alloc ( sizeof ( struct iovec ) ) ;
iov - > iov_base = data ;
iov - > iov_len = data_size ;
2014-05-30 01:35:34 +04:00
2016-01-12 17:47:12 +03:00
struct msghdr * mh = tail_alloc ( sizeof ( struct msghdr ) ) ;
memset ( mh , 0 , sizeof ( * mh ) ) ;
mh - > msg_iov = iov ;
mh - > msg_iovlen = 1 ;
int i ;
while ( ( i = open ( " /dev/null " , O_RDWR ) ) < = ac + 2 )
2015-01-24 22:51:39 +03:00
assert ( i > = 0 ) ;
2016-01-12 17:47:12 +03:00
while ( i > 2 )
assert ( close ( i - - ) = = 0 ) ;
assert ( close ( 0 ) = = 0 ) ;
2014-05-30 01:35:34 +04:00
int sv [ 2 ] ;
2016-01-05 02:53:31 +03:00
if ( socketpair ( AF_UNIX , SOCK_STREAM , 0 , sv ) )
perror_msg_and_skip ( " socketpair " ) ;
2015-01-24 18:20:31 +03:00
int one = 1 ;
2016-01-05 02:53:31 +03:00
if ( setsockopt ( sv [ 0 ] , SOL_SOCKET , SO_PASSCRED , & one , sizeof ( one ) ) )
perror_msg_and_skip ( " setsockopt " ) ;
2014-05-30 01:35:34 +04:00
2016-01-12 17:47:12 +03:00
assert ( ( fds [ 0 ] = open ( " /dev/null " , O_RDWR ) ) = = 4 ) ;
for ( i = 1 ; i < ac ; + + i )
assert ( ( fds [ i ] = open ( av [ i ] , O_RDONLY ) ) = = i + 4 ) ;
unsigned int cmsg_size = CMSG_SPACE ( sizeof ( fds ) ) ;
struct cmsghdr * cmsg = tail_alloc ( cmsg_size ) ;
memset ( cmsg , 0 , cmsg_size ) ;
cmsg - > cmsg_level = SOL_SOCKET ;
cmsg - > cmsg_type = SCM_RIGHTS ;
cmsg - > cmsg_len = CMSG_LEN ( sizeof ( fds ) ) ;
memcpy ( CMSG_DATA ( cmsg ) , fds , sizeof ( fds ) ) ;
mh - > msg_control = cmsg ;
mh - > msg_controllen = cmsg_size ;
assert ( sendmsg ( sv [ 1 ] , mh , 0 ) = = ( int ) data_size ) ;
assert ( close ( sv [ 1 ] ) = = 0 ) ;
assert ( open ( " /dev/null " , O_RDWR ) = = sv [ 1 ] ) ;
for ( i = 0 ; i < ac ; + + i ) {
assert ( close ( fds [ i ] ) = = 0 ) ;
fds [ i ] = 0 ;
2014-05-30 01:35:34 +04:00
}
2016-01-12 17:47:12 +03:00
cmsg_size + = CMSG_SPACE ( sizeof ( struct ucred ) ) ;
cmsg = tail_alloc ( cmsg_size ) ;
memset ( cmsg , 0 , cmsg_size ) ;
mh - > msg_control = cmsg ;
mh - > msg_controllen = cmsg_size ;
assert ( recvmsg ( 0 , mh , 0 ) = = ( int ) data_size ) ;
assert ( close ( 0 ) = = 0 ) ;
2014-05-30 01:35:34 +04:00
return 0 ;
}