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 <string.h>
# include <stdlib.h>
# include <unistd.h>
# include <errno.h>
# include <fcntl.h>
# include <sys/socket.h>
# include <sys/wait.h>
2015-01-24 22:51:39 +03:00
int main ( int ac , const char * * av )
2014-05-30 01:35:34 +04:00
{
2015-01-24 22:51:39 +03:00
int i ;
2014-05-30 19:18:00 +04:00
int data = 0 ;
2014-05-30 01:35:34 +04:00
struct iovec iov = {
2014-05-30 19:18:00 +04:00
. iov_base = & data ,
2014-05-30 01:35:34 +04:00
. iov_len = sizeof ( iov )
} ;
2015-01-24 22:51:39 +03:00
while ( ( i = open ( " /dev/null " , O_RDWR ) ) < 3 )
assert ( i > = 0 ) ;
2014-05-30 01:35:34 +04:00
( void ) close ( 3 ) ;
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
pid_t pid = fork ( ) ;
2016-01-05 02:53:31 +03:00
if ( pid < 0 )
perror_msg_and_fail ( " fork " ) ;
2014-05-30 01:35:34 +04:00
if ( pid ) {
assert ( close ( sv [ 0 ] ) = = 0 ) ;
assert ( dup2 ( sv [ 1 ] , 1 ) = = 1 ) ;
assert ( close ( sv [ 1 ] ) = = 0 ) ;
2015-01-24 22:51:39 +03:00
int fds [ ac ] ;
2015-01-24 18:20:31 +03:00
assert ( ( fds [ 0 ] = open ( " /dev/null " , O_RDWR ) ) = = 3 ) ;
2015-01-24 22:51:39 +03:00
for ( i = 1 ; i < ac ; + + i )
assert ( ( fds [ i ] = open ( av [ i ] , O_RDONLY ) ) = = i + 3 ) ;
2015-01-24 18:20:31 +03:00
union {
struct cmsghdr cmsg ;
char buf [ CMSG_LEN ( sizeof ( fds ) ) ] ;
2015-01-24 22:51:39 +03:00
} control ;
2014-05-30 01:35:34 +04:00
2015-01-24 22:51:39 +03:00
control . cmsg . cmsg_level = SOL_SOCKET ;
control . cmsg . cmsg_type = SCM_RIGHTS ;
control . cmsg . cmsg_len = CMSG_LEN ( sizeof ( fds ) ) ;
2015-01-24 18:20:31 +03:00
memcpy ( CMSG_DATA ( & control . cmsg ) , fds , sizeof ( fds ) ) ;
struct msghdr mh = {
. msg_iov = & iov ,
. msg_iovlen = 1 ,
. msg_control = & control ,
. msg_controllen = sizeof ( control )
} ;
2014-05-30 01:35:34 +04:00
assert ( sendmsg ( 1 , & mh , 0 ) = = sizeof ( iov ) ) ;
assert ( close ( 1 ) = = 0 ) ;
int status ;
assert ( waitpid ( pid , & status , 0 ) = = pid ) ;
assert ( status = = 0 ) ;
} else {
assert ( close ( sv [ 1 ] ) = = 0 ) ;
assert ( dup2 ( sv [ 0 ] , 0 ) = = 0 ) ;
assert ( close ( sv [ 0 ] ) = = 0 ) ;
2015-01-24 22:51:39 +03:00
struct cmsghdr control [ 4 + ac * sizeof ( int ) / sizeof ( struct cmsghdr ) ] ;
2015-01-24 18:20:31 +03:00
struct msghdr mh = {
. msg_iov = & iov ,
. msg_iovlen = 1 ,
. msg_control = control ,
. msg_controllen = sizeof ( control )
} ;
2014-05-30 01:35:34 +04:00
assert ( recvmsg ( 0 , & mh , 0 ) = = sizeof ( iov ) ) ;
assert ( close ( 0 ) = = 0 ) ;
}
return 0 ;
}