2013-09-23 15:39:19 +04:00
/*
* Copyright ( C ) 2013 Red Hat , Inc .
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library . If not , see
* < http : //www.gnu.org/licenses/>.
*/
# include <config.h>
# include "testutils.h"
# include "virerror.h"
# include "rpc/virnetserverclient.h"
# define VIR_FROM_THIS VIR_FROM_RPC
2020-03-19 14:02:45 +03:00
# ifndef WIN32
2018-02-01 18:32:49 +03:00
static void *
2019-10-14 15:45:03 +03:00
testClientNew ( virNetServerClientPtr client G_GNUC_UNUSED ,
void * opaque G_GNUC_UNUSED )
2018-02-01 18:32:49 +03:00
{
char * dummy ;
if ( VIR_ALLOC ( dummy ) < 0 )
return NULL ;
return dummy ;
}
static void
testClientFree ( void * opaque )
{
VIR_FREE ( opaque ) ;
}
2019-10-14 15:45:03 +03:00
static int testIdentity ( const void * opaque G_GNUC_UNUSED )
2013-09-23 15:39:19 +04:00
{
int sv [ 2 ] ;
int ret = - 1 ;
virNetSocketPtr sock = NULL ;
virNetServerClientPtr client = NULL ;
2019-10-01 17:37:09 +03:00
g_autoptr ( virIdentity ) ident = NULL ;
2013-09-23 15:39:19 +04:00
const char * gotUsername = NULL ;
2019-07-26 14:21:29 +03:00
uid_t gotUserID ;
2013-09-23 15:39:19 +04:00
const char * gotGroupname = NULL ;
2019-07-26 14:21:29 +03:00
gid_t gotGroupID ;
2013-09-23 15:39:19 +04:00
const char * gotSELinuxContext = NULL ;
if ( socketpair ( PF_UNIX , SOCK_STREAM , 0 , sv ) < 0 ) {
virReportSystemError ( errno , " %s " ,
" Cannot create socket pair " ) ;
return - 1 ;
}
if ( virNetSocketNewConnectSockFD ( sv [ 0 ] , & sock ) < 0 ) {
virDispatchError ( NULL ) ;
goto cleanup ;
}
sv [ 0 ] = - 1 ;
2016-04-13 21:54:40 +03:00
if ( ! ( client = virNetServerClientNew ( 1 , sock , 0 , false , 1 ,
2013-09-23 15:39:19 +04:00
NULL ,
2018-02-01 18:32:49 +03:00
testClientNew ,
NULL ,
testClientFree ,
NULL ) ) ) {
2013-09-23 15:39:19 +04:00
virDispatchError ( NULL ) ;
goto cleanup ;
}
if ( ! ( ident = virNetServerClientGetIdentity ( client ) ) ) {
fprintf ( stderr , " Failed to create identity \n " ) ;
goto cleanup ;
}
2019-08-07 18:30:57 +03:00
if ( virIdentityGetUserName ( ident , & gotUsername ) < = 0 ) {
2013-09-23 15:39:19 +04:00
fprintf ( stderr , " Missing username in identity \n " ) ;
goto cleanup ;
}
if ( STRNEQ_NULLABLE ( " astrochicken " , gotUsername ) ) {
fprintf ( stderr , " Want username 'astrochicken' got '%s' \n " ,
NULLSTR ( gotUsername ) ) ;
goto cleanup ;
}
2019-08-07 18:30:57 +03:00
if ( virIdentityGetUNIXUserID ( ident , & gotUserID ) < = 0 ) {
2013-09-23 15:39:19 +04:00
fprintf ( stderr , " Missing user ID in identity \n " ) ;
goto cleanup ;
}
2019-07-26 14:21:29 +03:00
if ( 666 ! = gotUserID ) {
fprintf ( stderr , " Want username '666' got '%llu' \n " ,
( unsigned long long ) gotUserID ) ;
2013-09-23 15:39:19 +04:00
goto cleanup ;
}
2019-08-07 18:30:57 +03:00
if ( virIdentityGetGroupName ( ident , & gotGroupname ) < = 0 ) {
2013-09-23 15:39:19 +04:00
fprintf ( stderr , " Missing groupname in identity \n " ) ;
goto cleanup ;
}
if ( STRNEQ_NULLABLE ( " fictionalusers " , gotGroupname ) ) {
fprintf ( stderr , " Want groupname 'fictionalusers' got '%s' \n " ,
NULLSTR ( gotGroupname ) ) ;
goto cleanup ;
}
2019-08-07 18:30:57 +03:00
if ( virIdentityGetUNIXGroupID ( ident , & gotGroupID ) < = 0 ) {
2013-09-23 15:39:19 +04:00
fprintf ( stderr , " Missing group ID in identity \n " ) ;
goto cleanup ;
}
2019-07-26 14:21:29 +03:00
if ( 7337 ! = gotGroupID ) {
fprintf ( stderr , " Want groupname '7337' got '%llu' \n " ,
( unsigned long long ) gotGroupID ) ;
2013-09-23 15:39:19 +04:00
goto cleanup ;
}
2019-08-07 18:30:57 +03:00
if ( virIdentityGetSELinuxContext ( ident , & gotSELinuxContext ) < = 0 ) {
2013-09-23 15:39:19 +04:00
fprintf ( stderr , " Missing SELinux context in identity \n " ) ;
goto cleanup ;
}
if ( STRNEQ_NULLABLE ( " foo_u:bar_r:wizz_t:s0-s0:c0.c1023 " , gotSELinuxContext ) ) {
2019-08-06 18:45:14 +03:00
fprintf ( stderr , " Want SELinux context 'foo_u:bar_r:wizz_t:s0-s0:c0.c1023' got '%s' \n " ,
NULLSTR ( gotSELinuxContext ) ) ;
2013-09-23 15:39:19 +04:00
goto cleanup ;
}
ret = 0 ;
cleanup :
virObjectUnref ( sock ) ;
2018-04-19 21:37:00 +03:00
if ( client )
2018-04-02 14:19:38 +03:00
virNetServerClientClose ( client ) ;
2013-09-23 15:39:19 +04:00
virObjectUnref ( client ) ;
VIR_FORCE_CLOSE ( sv [ 0 ] ) ;
VIR_FORCE_CLOSE ( sv [ 1 ] ) ;
return ret ;
}
static int
mymain ( void )
{
int ret = 0 ;
2016-05-26 18:01:50 +03:00
if ( virTestRun ( " Identity " ,
testIdentity , NULL ) < 0 )
2013-09-23 15:39:19 +04:00
ret = - 1 ;
return ret = = 0 ? EXIT_SUCCESS : EXIT_FAILURE ;
}
2019-08-21 19:13:16 +03:00
VIR_TEST_MAIN_PRELOAD ( mymain , VIR_TEST_MOCK ( " virnetserverclient " ) )
2013-09-23 15:39:19 +04:00
# else
static int
mymain ( void )
{
return EXIT_AM_SKIP ;
}
2017-03-29 17:45:42 +03:00
VIR_TEST_MAIN ( mymain ) ;
2013-09-23 15:39:19 +04:00
# endif