1999-09-02 16:40:22 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 23:24:38 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2006-01-04 07:11:52 +08:00
|
|
|
* Copyright 1999-2006 The OpenLDAP Foundation.
|
2003-11-26 23:24:38 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-09-02 08:56:32 +08:00
|
|
|
*/
|
2003-11-26 23:24:38 +08:00
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Kurt Spanier for inclusion
|
|
|
|
* in OpenLDAP Software.
|
|
|
|
*/
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
1999-06-03 08:37:44 +08:00
|
|
|
|
|
|
|
#include <ac/stdlib.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
#include <ac/ctype.h>
|
1999-03-29 09:40:17 +08:00
|
|
|
#include <ac/dirent.h>
|
1999-11-02 01:21:24 +08:00
|
|
|
#include <ac/param.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
#include <ac/socket.h>
|
1999-03-29 09:40:17 +08:00
|
|
|
#include <ac/string.h>
|
1999-02-15 18:49:20 +08:00
|
|
|
#include <ac/unistd.h>
|
|
|
|
#include <ac/wait.h>
|
|
|
|
|
|
|
|
|
1999-06-17 11:54:25 +08:00
|
|
|
#include "ldap_defaults.h"
|
2005-11-24 09:10:05 +08:00
|
|
|
#include "lutil.h"
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
#include "ldap.h"
|
|
|
|
#include "slapd-common.h"
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
#define SEARCHCMD "slapd-search"
|
|
|
|
#define READCMD "slapd-read"
|
|
|
|
#define ADDCMD "slapd-addel"
|
2003-02-22 20:01:59 +08:00
|
|
|
#define MODRDNCMD "slapd-modrdn"
|
2004-08-28 01:07:18 +08:00
|
|
|
#define MODIFYCMD "slapd-modify"
|
2006-01-09 22:21:33 +08:00
|
|
|
#define BINDCMD "slapd-bind"
|
2004-09-05 02:31:43 +08:00
|
|
|
#define MAXARGS 100
|
|
|
|
#define MAXREQS 5000
|
2006-03-04 00:02:34 +08:00
|
|
|
#define LOOPS 100
|
|
|
|
#define OUTERLOOPS "1"
|
2005-04-21 00:16:39 +08:00
|
|
|
#define RETRIES "0"
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
#define TSEARCHFILE "do_search.0"
|
|
|
|
#define TREADFILE "do_read.0"
|
|
|
|
#define TADDFILE "do_add."
|
2003-02-22 20:01:59 +08:00
|
|
|
#define TMODRDNFILE "do_modrdn.0"
|
2004-08-28 01:07:18 +08:00
|
|
|
#define TMODIFYFILE "do_modify.0"
|
2006-01-09 22:21:33 +08:00
|
|
|
#define TBINDFILE "do_bind.0"
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
static char *get_file_name( char *dirname, char *filename );
|
2006-03-25 16:10:31 +08:00
|
|
|
static int get_search_filters( char *filename, char *filters[], char *attrs[], char *bases[] );
|
2006-03-28 08:14:11 +08:00
|
|
|
static int get_read_entries( char *filename, char *entries[], char *filters[] );
|
2002-07-26 21:29:37 +08:00
|
|
|
static void fork_child( char *prog, char **args );
|
1999-02-15 18:49:20 +08:00
|
|
|
static void wait4kids( int nkidval );
|
|
|
|
|
|
|
|
static int maxkids = 20;
|
|
|
|
static int nkids;
|
|
|
|
|
2002-05-17 09:36:35 +08:00
|
|
|
#ifdef HAVE_WINSOCK
|
|
|
|
static HANDLE *children;
|
|
|
|
static char argbuf[BUFSIZ];
|
|
|
|
#define ArgDup(x) strdup(strcat(strcat(strcpy(argbuf,"\""),x),"\""))
|
|
|
|
#else
|
|
|
|
#define ArgDup(x) strdup(x)
|
|
|
|
#endif
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
static void
|
|
|
|
usage( char *name )
|
|
|
|
{
|
2005-08-18 00:19:58 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"usage: %s "
|
|
|
|
"-H <uri> | ([-h <host>] -p <port>) "
|
|
|
|
"-D <manager> "
|
|
|
|
"-w <passwd> "
|
|
|
|
"-d <datadir> "
|
|
|
|
"[-j <maxchild>] "
|
|
|
|
"[-l <loops>] "
|
2006-03-04 00:02:34 +08:00
|
|
|
"[-L <outerloops>] "
|
2005-08-18 00:19:58 +08:00
|
|
|
"-P <progdir> "
|
2005-11-05 00:17:32 +08:00
|
|
|
"[-r <maxretries>] "
|
|
|
|
"[-t <delay>] "
|
2006-03-25 18:13:30 +08:00
|
|
|
"[-F] "
|
|
|
|
"[-C]\n",
|
2005-08-18 00:19:58 +08:00
|
|
|
name );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main( int argc, char **argv )
|
|
|
|
{
|
|
|
|
int i, j;
|
2003-02-13 16:02:40 +08:00
|
|
|
char *uri = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *host = "localhost";
|
|
|
|
char *port = NULL;
|
|
|
|
char *manager = NULL;
|
|
|
|
char *passwd = NULL;
|
|
|
|
char *dirname = NULL;
|
1999-02-22 19:28:01 +08:00
|
|
|
char *progdir = NULL;
|
2006-03-04 00:02:34 +08:00
|
|
|
int loops = LOOPS;
|
|
|
|
char *outerloops = OUTERLOOPS;
|
2005-04-21 00:16:39 +08:00
|
|
|
char *retries = RETRIES;
|
2005-08-19 15:27:32 +08:00
|
|
|
char *delay = "0";
|
2006-01-09 22:21:33 +08:00
|
|
|
DIR *datadir;
|
1999-02-15 18:49:20 +08:00
|
|
|
struct dirent *file;
|
2006-01-09 22:21:33 +08:00
|
|
|
int friendly = 0;
|
2006-03-25 18:13:30 +08:00
|
|
|
int chaserefs = 0;
|
2006-03-28 08:14:11 +08:00
|
|
|
int noattrs = 0;
|
2006-01-09 22:21:33 +08:00
|
|
|
/* search */
|
1999-02-15 18:49:20 +08:00
|
|
|
char *sfile = NULL;
|
|
|
|
char *sreqs[MAXREQS];
|
2006-03-25 16:10:31 +08:00
|
|
|
char *sattrs[MAXREQS];
|
2003-09-23 19:55:59 +08:00
|
|
|
char *sbase[MAXREQS];
|
2006-01-09 22:21:33 +08:00
|
|
|
int snum = 0;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *sargs[MAXARGS];
|
2006-01-09 22:21:33 +08:00
|
|
|
int sanum;
|
1999-02-15 18:49:20 +08:00
|
|
|
char scmd[MAXPATHLEN];
|
2006-03-04 00:02:34 +08:00
|
|
|
char sloops[] = "18446744073709551615UL";
|
2006-01-09 22:21:33 +08:00
|
|
|
/* read */
|
|
|
|
char *rfile = NULL;
|
|
|
|
char *rreqs[MAXREQS];
|
|
|
|
int rnum = 0;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *rargs[MAXARGS];
|
2006-03-28 08:14:11 +08:00
|
|
|
char *rflts[MAXREQS];
|
2006-01-09 22:21:33 +08:00
|
|
|
int ranum;
|
1999-02-15 18:49:20 +08:00
|
|
|
char rcmd[MAXPATHLEN];
|
2006-03-04 00:02:34 +08:00
|
|
|
char rloops[] = "18446744073709551615UL";
|
2006-01-09 22:21:33 +08:00
|
|
|
/* addel */
|
|
|
|
char *afiles[MAXREQS];
|
|
|
|
int anum = 0;
|
1999-02-15 18:49:20 +08:00
|
|
|
char *aargs[MAXARGS];
|
2006-01-09 22:21:33 +08:00
|
|
|
int aanum;
|
1999-02-15 18:49:20 +08:00
|
|
|
char acmd[MAXPATHLEN];
|
2006-03-04 00:02:34 +08:00
|
|
|
char aloops[] = "18446744073709551615UL";
|
2006-01-09 22:21:33 +08:00
|
|
|
/* modrdn */
|
|
|
|
char *mfile = NULL;
|
|
|
|
char *mreqs[MAXREQS];
|
|
|
|
int mnum = 0;
|
2003-02-22 20:01:59 +08:00
|
|
|
char *margs[MAXARGS];
|
|
|
|
int manum;
|
|
|
|
char mcmd[MAXPATHLEN];
|
2006-03-04 00:02:34 +08:00
|
|
|
char mloops[] = "18446744073709551615UL";
|
2006-01-09 22:21:33 +08:00
|
|
|
/* modify */
|
2004-08-28 01:07:18 +08:00
|
|
|
char *modfile = NULL;
|
|
|
|
char *modreqs[MAXREQS];
|
|
|
|
char *moddn[MAXREQS];
|
|
|
|
int modnum = 0;
|
2006-01-09 22:21:33 +08:00
|
|
|
char *modargs[MAXARGS];
|
|
|
|
int modanum;
|
|
|
|
char modcmd[MAXPATHLEN];
|
2006-03-04 00:02:34 +08:00
|
|
|
char modloops[] = "18446744073709551615UL";
|
2006-01-09 22:21:33 +08:00
|
|
|
/* bind */
|
|
|
|
char *bfile = NULL;
|
|
|
|
char *breqs[MAXREQS];
|
|
|
|
char *bcreds[MAXREQS];
|
|
|
|
int bnum = 0;
|
|
|
|
char *bargs[MAXARGS];
|
|
|
|
int banum;
|
|
|
|
char bcmd[MAXPATHLEN];
|
2006-03-04 00:02:34 +08:00
|
|
|
char bloops[] = "18446744073709551615UL";
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-01-22 00:27:15 +08:00
|
|
|
char *friendlyOpt = NULL;
|
|
|
|
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_init( "slapd-tester" );
|
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
while ( (i = getopt( argc, argv, "ACD:d:FH:h:j:l:L:P:p:r:t:w:" )) != EOF ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
switch( i ) {
|
2006-03-28 08:14:11 +08:00
|
|
|
case 'A':
|
|
|
|
noattrs++;
|
|
|
|
break;
|
|
|
|
|
2006-03-25 18:13:30 +08:00
|
|
|
case 'C':
|
|
|
|
chaserefs++;
|
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'D': /* slapd manager */
|
|
|
|
manager = ArgDup( optarg );
|
2003-02-13 16:02:40 +08:00
|
|
|
break;
|
2005-04-21 00:16:39 +08:00
|
|
|
|
|
|
|
case 'd': /* data directory */
|
|
|
|
dirname = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
2005-11-05 00:17:32 +08:00
|
|
|
case 'F':
|
|
|
|
friendly++;
|
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'H': /* slapd uri */
|
|
|
|
uri = strdup( optarg );
|
1999-02-15 18:49:20 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'h': /* slapd host */
|
|
|
|
host = strdup( optarg );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'j': /* the number of parallel clients */
|
2005-11-24 09:10:05 +08:00
|
|
|
if ( lutil_atoi( &maxkids, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'l': /* the number of loops per client */
|
2006-03-04 00:02:34 +08:00
|
|
|
if ( lutil_atoi( &loops, optarg ) != 0 ) {
|
|
|
|
usage( argv[0] );
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'L': /* the number of outerloops per client */
|
|
|
|
outerloops = strdup( optarg );
|
2005-04-21 00:16:39 +08:00
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'P': /* prog directory */
|
|
|
|
progdir = strdup( optarg );
|
1999-02-15 18:49:20 +08:00
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'p': /* the servers port number */
|
|
|
|
port = strdup( optarg );
|
1999-02-22 19:28:01 +08:00
|
|
|
break;
|
|
|
|
|
2005-08-19 15:27:32 +08:00
|
|
|
case 'r': /* the number of retries in case of error */
|
2005-04-21 00:16:39 +08:00
|
|
|
retries = strdup( optarg );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-08-19 15:27:32 +08:00
|
|
|
case 't': /* the delay in seconds between each retry */
|
|
|
|
delay = strdup( optarg );
|
|
|
|
break;
|
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
case 'w': /* the managers passwd */
|
|
|
|
passwd = ArgDup( optarg );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2005-04-21 00:16:39 +08:00
|
|
|
default:
|
|
|
|
usage( argv[0] );
|
|
|
|
break;
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-09-23 19:55:59 +08:00
|
|
|
if (( dirname == NULL ) || ( port == NULL && uri == NULL ) ||
|
1999-02-22 19:28:01 +08:00
|
|
|
( manager == NULL ) || ( passwd == NULL ) || ( progdir == NULL ))
|
1999-02-15 18:49:20 +08:00
|
|
|
usage( argv[0] );
|
|
|
|
|
2002-05-17 09:36:35 +08:00
|
|
|
#ifdef HAVE_WINSOCK
|
|
|
|
children = malloc( maxkids * sizeof(HANDLE) );
|
|
|
|
#endif
|
1999-02-15 18:49:20 +08:00
|
|
|
/* get the file list */
|
|
|
|
if ( ( datadir = opendir( dirname )) == NULL ) {
|
|
|
|
|
|
|
|
fprintf( stderr, "%s: couldn't open data directory \"%s\".\n",
|
|
|
|
argv[0], dirname );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2003-02-22 20:01:59 +08:00
|
|
|
/* look for search, read, modrdn, and add/delete files */
|
1999-02-15 18:49:20 +08:00
|
|
|
for ( file = readdir( datadir ); file; file = readdir( datadir )) {
|
|
|
|
|
|
|
|
if ( !strcasecmp( file->d_name, TSEARCHFILE )) {
|
|
|
|
sfile = get_file_name( dirname, file->d_name );
|
|
|
|
continue;
|
|
|
|
} else if ( !strcasecmp( file->d_name, TREADFILE )) {
|
|
|
|
rfile = get_file_name( dirname, file->d_name );
|
|
|
|
continue;
|
2003-02-22 20:01:59 +08:00
|
|
|
} else if ( !strcasecmp( file->d_name, TMODRDNFILE )) {
|
|
|
|
mfile = get_file_name( dirname, file->d_name );
|
|
|
|
continue;
|
2004-08-28 01:07:18 +08:00
|
|
|
} else if ( !strcasecmp( file->d_name, TMODIFYFILE )) {
|
|
|
|
modfile = get_file_name( dirname, file->d_name );
|
|
|
|
continue;
|
1999-02-15 18:49:20 +08:00
|
|
|
} else if ( !strncasecmp( file->d_name, TADDFILE, strlen( TADDFILE ))
|
|
|
|
&& ( anum < MAXREQS )) {
|
|
|
|
afiles[anum++] = get_file_name( dirname, file->d_name );
|
|
|
|
continue;
|
2006-01-09 22:21:33 +08:00
|
|
|
} else if ( !strcasecmp( file->d_name, TBINDFILE )) {
|
|
|
|
bfile = get_file_name( dirname, file->d_name );
|
|
|
|
continue;
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-04-04 13:06:49 +08:00
|
|
|
closedir( datadir );
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
/* look for search requests */
|
|
|
|
if ( sfile ) {
|
2006-03-25 16:10:31 +08:00
|
|
|
snum = get_search_filters( sfile, sreqs, sattrs, sbase );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* look for read requests */
|
|
|
|
if ( rfile ) {
|
2006-03-28 08:14:11 +08:00
|
|
|
rnum = get_read_entries( rfile, rreqs, rflts );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2003-02-22 20:01:59 +08:00
|
|
|
/* look for modrdn requests */
|
|
|
|
if ( mfile ) {
|
2006-03-28 08:14:11 +08:00
|
|
|
mnum = get_read_entries( mfile, mreqs, NULL );
|
2003-02-22 20:01:59 +08:00
|
|
|
}
|
2006-01-09 22:21:33 +08:00
|
|
|
|
2004-08-28 01:07:18 +08:00
|
|
|
/* look for modify requests */
|
|
|
|
if ( modfile ) {
|
2006-03-25 16:10:31 +08:00
|
|
|
modnum = get_search_filters( modfile, modreqs, NULL, moddn );
|
2004-08-28 01:07:18 +08:00
|
|
|
}
|
2003-02-22 20:01:59 +08:00
|
|
|
|
2006-01-09 22:21:33 +08:00
|
|
|
/* look for bind requests */
|
|
|
|
if ( bfile ) {
|
2006-03-25 16:10:31 +08:00
|
|
|
bnum = get_search_filters( bfile, bcreds, NULL, breqs );
|
2006-01-09 22:21:33 +08:00
|
|
|
}
|
|
|
|
|
2006-01-22 00:27:15 +08:00
|
|
|
/* setup friendly option */
|
|
|
|
|
|
|
|
switch ( friendly ) {
|
|
|
|
case 0:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
friendlyOpt = "-F";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* NOTE: right now we don't need it more than twice */
|
|
|
|
case 2:
|
|
|
|
friendlyOpt = "-FF";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2006-03-04 00:02:34 +08:00
|
|
|
snprintf( sloops, sizeof( sloops ), "%d", 10 * loops );
|
|
|
|
snprintf( rloops, sizeof( rloops ), "%d", 20 * loops );
|
|
|
|
snprintf( aloops, sizeof( aloops ), "%d", loops );
|
|
|
|
snprintf( mloops, sizeof( mloops ), "%d", loops );
|
|
|
|
snprintf( modloops, sizeof( modloops ), "%d", loops );
|
|
|
|
snprintf( bloops, sizeof( bloops ), "%d", 20 * loops );
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
/*
|
|
|
|
* generate the search clients
|
|
|
|
*/
|
|
|
|
|
|
|
|
sanum = 0;
|
2002-07-24 02:31:42 +08:00
|
|
|
snprintf( scmd, sizeof scmd, "%s" LDAP_DIRSEP SEARCHCMD,
|
|
|
|
progdir );
|
1999-02-15 18:49:20 +08:00
|
|
|
sargs[sanum++] = scmd;
|
2003-02-13 16:02:40 +08:00
|
|
|
if ( uri ) {
|
|
|
|
sargs[sanum++] = "-H";
|
|
|
|
sargs[sanum++] = uri;
|
|
|
|
} else {
|
|
|
|
sargs[sanum++] = "-h";
|
|
|
|
sargs[sanum++] = host;
|
|
|
|
sargs[sanum++] = "-p";
|
|
|
|
sargs[sanum++] = port;
|
|
|
|
}
|
2004-09-05 02:31:43 +08:00
|
|
|
sargs[sanum++] = "-D";
|
|
|
|
sargs[sanum++] = manager;
|
|
|
|
sargs[sanum++] = "-w";
|
|
|
|
sargs[sanum++] = passwd;
|
1999-02-15 18:49:20 +08:00
|
|
|
sargs[sanum++] = "-l";
|
2006-03-04 00:02:34 +08:00
|
|
|
sargs[sanum++] = sloops;
|
|
|
|
sargs[sanum++] = "-L";
|
|
|
|
sargs[sanum++] = outerloops;
|
2005-04-21 00:16:39 +08:00
|
|
|
sargs[sanum++] = "-r";
|
|
|
|
sargs[sanum++] = retries;
|
2005-08-19 15:27:32 +08:00
|
|
|
sargs[sanum++] = "-t";
|
|
|
|
sargs[sanum++] = delay;
|
2006-03-23 08:19:09 +08:00
|
|
|
if ( friendly ) {
|
|
|
|
sargs[sanum++] = friendlyOpt;
|
|
|
|
}
|
2006-03-25 18:13:30 +08:00
|
|
|
if ( chaserefs ) {
|
|
|
|
sargs[sanum++] = "-C";
|
|
|
|
}
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( noattrs ) {
|
|
|
|
sargs[sanum++] = "-A";
|
|
|
|
}
|
2003-09-23 19:55:59 +08:00
|
|
|
sargs[sanum++] = "-b";
|
|
|
|
sargs[sanum++] = NULL; /* will hold the search base */
|
1999-02-15 18:49:20 +08:00
|
|
|
sargs[sanum++] = "-f";
|
|
|
|
sargs[sanum++] = NULL; /* will hold the search request */
|
2006-03-25 16:10:31 +08:00
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
sargs[sanum++] = NULL;
|
2006-03-25 16:10:31 +08:00
|
|
|
sargs[sanum] = NULL; /* might hold the "attr" request */
|
|
|
|
|
|
|
|
sargs[sanum + 1] = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* generate the read clients
|
|
|
|
*/
|
|
|
|
|
|
|
|
ranum = 0;
|
2002-07-24 02:31:42 +08:00
|
|
|
snprintf( rcmd, sizeof rcmd, "%s" LDAP_DIRSEP READCMD,
|
|
|
|
progdir );
|
1999-02-15 18:49:20 +08:00
|
|
|
rargs[ranum++] = rcmd;
|
2003-02-13 16:02:40 +08:00
|
|
|
if ( uri ) {
|
|
|
|
rargs[ranum++] = "-H";
|
|
|
|
rargs[ranum++] = uri;
|
|
|
|
} else {
|
|
|
|
rargs[ranum++] = "-h";
|
|
|
|
rargs[ranum++] = host;
|
|
|
|
rargs[ranum++] = "-p";
|
|
|
|
rargs[ranum++] = port;
|
|
|
|
}
|
2006-03-28 08:14:11 +08:00
|
|
|
rargs[ranum++] = "-D";
|
|
|
|
rargs[ranum++] = manager;
|
|
|
|
rargs[ranum++] = "-w";
|
|
|
|
rargs[ranum++] = passwd;
|
1999-02-15 18:49:20 +08:00
|
|
|
rargs[ranum++] = "-l";
|
2006-03-04 00:02:34 +08:00
|
|
|
rargs[ranum++] = rloops;
|
|
|
|
rargs[ranum++] = "-L";
|
|
|
|
rargs[ranum++] = outerloops;
|
2005-04-21 00:16:39 +08:00
|
|
|
rargs[ranum++] = "-r";
|
|
|
|
rargs[ranum++] = retries;
|
2005-08-19 15:27:32 +08:00
|
|
|
rargs[ranum++] = "-t";
|
|
|
|
rargs[ranum++] = delay;
|
2006-03-23 08:19:09 +08:00
|
|
|
if ( friendly ) {
|
|
|
|
rargs[ranum++] = friendlyOpt;
|
|
|
|
}
|
2006-03-25 18:13:30 +08:00
|
|
|
if ( chaserefs ) {
|
|
|
|
rargs[ranum++] = "-C";
|
|
|
|
}
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( noattrs ) {
|
|
|
|
rargs[ranum++] = "-A";
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
rargs[ranum++] = "-e";
|
|
|
|
rargs[ranum++] = NULL; /* will hold the read entry */
|
2006-03-28 08:14:11 +08:00
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
rargs[ranum++] = NULL;
|
2006-03-28 08:14:11 +08:00
|
|
|
rargs[ranum] = NULL; /* might hold the filter arg */
|
|
|
|
|
|
|
|
rargs[ranum + 1] = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2003-02-22 20:01:59 +08:00
|
|
|
/*
|
|
|
|
* generate the modrdn clients
|
|
|
|
*/
|
|
|
|
|
|
|
|
manum = 0;
|
|
|
|
snprintf( mcmd, sizeof mcmd, "%s" LDAP_DIRSEP MODRDNCMD,
|
|
|
|
progdir );
|
|
|
|
margs[manum++] = mcmd;
|
|
|
|
if ( uri ) {
|
|
|
|
margs[manum++] = "-H";
|
|
|
|
margs[manum++] = uri;
|
|
|
|
} else {
|
|
|
|
margs[manum++] = "-h";
|
|
|
|
margs[manum++] = host;
|
|
|
|
margs[manum++] = "-p";
|
|
|
|
margs[manum++] = port;
|
|
|
|
}
|
|
|
|
margs[manum++] = "-D";
|
|
|
|
margs[manum++] = manager;
|
|
|
|
margs[manum++] = "-w";
|
|
|
|
margs[manum++] = passwd;
|
|
|
|
margs[manum++] = "-l";
|
2006-03-04 00:02:34 +08:00
|
|
|
margs[manum++] = mloops;
|
|
|
|
margs[manum++] = "-L";
|
|
|
|
margs[manum++] = outerloops;
|
2005-04-21 00:16:39 +08:00
|
|
|
margs[manum++] = "-r";
|
|
|
|
margs[manum++] = retries;
|
2005-08-19 15:27:32 +08:00
|
|
|
margs[manum++] = "-t";
|
|
|
|
margs[manum++] = delay;
|
2005-11-05 00:17:32 +08:00
|
|
|
if ( friendly ) {
|
2006-01-22 00:27:15 +08:00
|
|
|
margs[manum++] = friendlyOpt;
|
2005-11-05 00:17:32 +08:00
|
|
|
}
|
2006-03-25 18:13:30 +08:00
|
|
|
if ( chaserefs ) {
|
|
|
|
margs[manum++] = "-C";
|
|
|
|
}
|
2003-02-22 20:01:59 +08:00
|
|
|
margs[manum++] = "-e";
|
|
|
|
margs[manum++] = NULL; /* will hold the modrdn entry */
|
|
|
|
margs[manum++] = NULL;
|
2004-08-28 01:07:18 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* generate the modify clients
|
|
|
|
*/
|
|
|
|
|
|
|
|
modanum = 0;
|
|
|
|
snprintf( modcmd, sizeof modcmd, "%s" LDAP_DIRSEP MODIFYCMD,
|
|
|
|
progdir );
|
|
|
|
modargs[modanum++] = modcmd;
|
|
|
|
if ( uri ) {
|
|
|
|
modargs[modanum++] = "-H";
|
|
|
|
modargs[modanum++] = uri;
|
|
|
|
} else {
|
|
|
|
modargs[modanum++] = "-h";
|
|
|
|
modargs[modanum++] = host;
|
|
|
|
modargs[modanum++] = "-p";
|
|
|
|
modargs[modanum++] = port;
|
|
|
|
}
|
|
|
|
modargs[modanum++] = "-D";
|
|
|
|
modargs[modanum++] = manager;
|
|
|
|
modargs[modanum++] = "-w";
|
|
|
|
modargs[modanum++] = passwd;
|
|
|
|
modargs[modanum++] = "-l";
|
2006-03-04 00:02:34 +08:00
|
|
|
modargs[modanum++] = modloops;
|
|
|
|
modargs[modanum++] = "-L";
|
|
|
|
modargs[modanum++] = outerloops;
|
2005-04-21 00:16:39 +08:00
|
|
|
modargs[modanum++] = "-r";
|
|
|
|
modargs[modanum++] = retries;
|
2005-08-19 15:27:32 +08:00
|
|
|
modargs[modanum++] = "-t";
|
|
|
|
modargs[modanum++] = delay;
|
2005-11-05 00:17:32 +08:00
|
|
|
if ( friendly ) {
|
2006-01-22 00:27:15 +08:00
|
|
|
modargs[modanum++] = friendlyOpt;
|
2005-11-05 00:17:32 +08:00
|
|
|
}
|
2006-03-25 18:13:30 +08:00
|
|
|
if ( chaserefs ) {
|
|
|
|
modargs[modanum++] = "-C";
|
|
|
|
}
|
2004-08-28 01:07:18 +08:00
|
|
|
modargs[modanum++] = "-e";
|
|
|
|
modargs[modanum++] = NULL; /* will hold the modify entry */
|
|
|
|
modargs[modanum++] = "-a";;
|
|
|
|
modargs[modanum++] = NULL; /* will hold the ava */
|
|
|
|
modargs[modanum++] = NULL;
|
2003-02-22 20:01:59 +08:00
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
/*
|
|
|
|
* generate the add/delete clients
|
|
|
|
*/
|
|
|
|
|
|
|
|
aanum = 0;
|
2002-07-24 02:31:42 +08:00
|
|
|
snprintf( acmd, sizeof acmd, "%s" LDAP_DIRSEP ADDCMD,
|
|
|
|
progdir );
|
1999-02-15 18:49:20 +08:00
|
|
|
aargs[aanum++] = acmd;
|
2003-02-13 16:02:40 +08:00
|
|
|
if ( uri ) {
|
|
|
|
aargs[aanum++] = "-H";
|
|
|
|
aargs[aanum++] = uri;
|
|
|
|
} else {
|
|
|
|
aargs[aanum++] = "-h";
|
|
|
|
aargs[aanum++] = host;
|
|
|
|
aargs[aanum++] = "-p";
|
|
|
|
aargs[aanum++] = port;
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
aargs[aanum++] = "-D";
|
|
|
|
aargs[aanum++] = manager;
|
|
|
|
aargs[aanum++] = "-w";
|
|
|
|
aargs[aanum++] = passwd;
|
|
|
|
aargs[aanum++] = "-l";
|
2006-03-04 00:02:34 +08:00
|
|
|
aargs[aanum++] = aloops;
|
|
|
|
aargs[aanum++] = "-L";
|
|
|
|
aargs[aanum++] = outerloops;
|
2005-04-21 00:16:39 +08:00
|
|
|
aargs[aanum++] = "-r";
|
|
|
|
aargs[aanum++] = retries;
|
2005-08-19 15:27:32 +08:00
|
|
|
aargs[aanum++] = "-t";
|
|
|
|
aargs[aanum++] = delay;
|
2005-11-05 00:17:32 +08:00
|
|
|
if ( friendly ) {
|
2006-01-22 00:27:15 +08:00
|
|
|
aargs[aanum++] = friendlyOpt;
|
2005-11-05 00:17:32 +08:00
|
|
|
}
|
2006-03-25 18:13:30 +08:00
|
|
|
if ( chaserefs ) {
|
|
|
|
aargs[aanum++] = "-C";
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
aargs[aanum++] = "-f";
|
|
|
|
aargs[aanum++] = NULL; /* will hold the add data file */
|
|
|
|
aargs[aanum++] = NULL;
|
|
|
|
|
2006-01-09 22:21:33 +08:00
|
|
|
/*
|
|
|
|
* generate the bind clients
|
|
|
|
*/
|
|
|
|
|
|
|
|
banum = 0;
|
|
|
|
snprintf( bcmd, sizeof bcmd, "%s" LDAP_DIRSEP BINDCMD,
|
|
|
|
progdir );
|
|
|
|
bargs[banum++] = bcmd;
|
|
|
|
if ( uri ) {
|
|
|
|
bargs[banum++] = "-H";
|
|
|
|
bargs[banum++] = uri;
|
|
|
|
} else {
|
|
|
|
bargs[banum++] = "-h";
|
|
|
|
bargs[banum++] = host;
|
|
|
|
bargs[banum++] = "-p";
|
|
|
|
bargs[banum++] = port;
|
|
|
|
}
|
|
|
|
bargs[banum++] = "-l";
|
2006-03-04 00:02:34 +08:00
|
|
|
bargs[banum++] = bloops;
|
|
|
|
bargs[banum++] = "-L";
|
|
|
|
bargs[banum++] = outerloops;
|
2006-01-09 22:21:33 +08:00
|
|
|
#if 0
|
|
|
|
bargs[banum++] = "-r";
|
|
|
|
bargs[banum++] = retries;
|
|
|
|
bargs[banum++] = "-t";
|
|
|
|
bargs[banum++] = delay;
|
|
|
|
#endif
|
|
|
|
if ( friendly ) {
|
2006-01-22 00:27:15 +08:00
|
|
|
bargs[banum++] = friendlyOpt;
|
2006-01-09 22:21:33 +08:00
|
|
|
}
|
2006-03-25 18:13:30 +08:00
|
|
|
if ( chaserefs ) {
|
|
|
|
bargs[banum++] = "-C";
|
|
|
|
}
|
2006-01-09 22:21:33 +08:00
|
|
|
bargs[banum++] = "-D";
|
|
|
|
bargs[banum++] = NULL;
|
|
|
|
bargs[banum++] = "-w";
|
|
|
|
bargs[banum++] = NULL;
|
|
|
|
bargs[banum++] = NULL;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-01-09 22:21:33 +08:00
|
|
|
for ( j = 0; j < MAXREQS; j++ ) {
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( snum ) {
|
|
|
|
int jj = j % snum;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
sargs[sanum - 2] = sreqs[jj];
|
|
|
|
sargs[sanum - 4] = sbase[jj];
|
|
|
|
if ( sattrs[jj] != NULL ) {
|
2006-03-25 16:10:31 +08:00
|
|
|
sargs[sanum - 1] = "-a";
|
2006-03-28 08:14:11 +08:00
|
|
|
sargs[sanum] = sattrs[jj];
|
2006-03-25 16:10:31 +08:00
|
|
|
|
|
|
|
} else {
|
|
|
|
sargs[sanum - 1] = NULL;
|
|
|
|
}
|
2002-05-17 09:44:02 +08:00
|
|
|
fork_child( scmd, sargs );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( rnum ) {
|
|
|
|
int jj = j % rnum;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
rargs[ranum - 2] = rreqs[jj];
|
|
|
|
if ( rflts[jj] != NULL ) {
|
|
|
|
rargs[ranum - 1] = "-f";
|
|
|
|
rargs[ranum] = rflts[jj];
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
} else {
|
|
|
|
rargs[ranum - 1] = NULL;
|
|
|
|
}
|
|
|
|
fork_child( rcmd, rargs );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( mnum ) {
|
|
|
|
int jj = j % mnum;
|
2003-02-22 20:01:59 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
margs[manum - 2] = mreqs[jj];
|
2003-02-22 20:01:59 +08:00
|
|
|
fork_child( mcmd, margs );
|
2004-08-28 01:07:18 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( modnum ) {
|
|
|
|
int jj = j % modnum;
|
2004-08-28 01:07:18 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
modargs[modanum - 4] = moddn[jj];
|
|
|
|
modargs[modanum - 2] = modreqs[jj];
|
|
|
|
fork_child( modcmd, modargs );
|
2003-02-22 20:01:59 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( anum ) {
|
|
|
|
int jj = j % anum;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
aargs[aanum - 2] = afiles[jj];
|
2002-05-17 09:44:02 +08:00
|
|
|
fork_child( acmd, aargs );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( bnum ) {
|
|
|
|
int jj = j % bnum;
|
2006-01-09 22:21:33 +08:00
|
|
|
|
2006-03-28 08:14:11 +08:00
|
|
|
bargs[banum - 4] = breqs[jj];
|
|
|
|
bargs[banum - 2] = bcreds[jj];
|
2006-01-09 22:21:33 +08:00
|
|
|
fork_child( bcmd, bargs );
|
|
|
|
}
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
wait4kids( -1 );
|
|
|
|
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_SUCCESS );
|
1999-02-15 18:49:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
get_file_name( char *dirname, char *filename )
|
|
|
|
{
|
|
|
|
char buf[MAXPATHLEN];
|
|
|
|
|
2002-07-24 02:31:42 +08:00
|
|
|
snprintf( buf, sizeof buf, "%s" LDAP_DIRSEP "%s",
|
|
|
|
dirname, filename );
|
1999-02-15 18:49:20 +08:00
|
|
|
return( strdup( buf ));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2006-03-25 16:10:31 +08:00
|
|
|
get_search_filters( char *filename, char *filters[], char *attrs[], char *bases[] )
|
1999-02-15 18:49:20 +08:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int filter = 0;
|
|
|
|
|
1999-03-04 21:22:06 +08:00
|
|
|
if ( (fp = fopen( filename, "r" )) != NULL ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
char line[BUFSIZ];
|
|
|
|
|
|
|
|
while (( filter < MAXREQS ) && ( fgets( line, BUFSIZ, fp ))) {
|
|
|
|
char *nl;
|
|
|
|
|
|
|
|
if (( nl = strchr( line, '\r' )) || ( nl = strchr( line, '\n' )))
|
|
|
|
*nl = '\0';
|
2003-09-23 19:55:59 +08:00
|
|
|
bases[filter] = ArgDup( line );
|
|
|
|
fgets( line, BUFSIZ, fp );
|
|
|
|
if (( nl = strchr( line, '\r' )) || ( nl = strchr( line, '\n' )))
|
|
|
|
*nl = '\0';
|
|
|
|
|
2006-03-25 16:10:31 +08:00
|
|
|
filters[filter] = ArgDup( line );
|
|
|
|
if ( attrs ) {
|
|
|
|
if ( filters[filter][0] == '+') {
|
|
|
|
char *sep = strchr( filters[filter], ':' );
|
|
|
|
|
|
|
|
if ( sep != NULL ) {
|
|
|
|
attrs[ filter ] = &filters[ filter ][ 1 ];
|
|
|
|
sep[ 0 ] = '\0';
|
|
|
|
/* NOTE: don't free this! */
|
|
|
|
filters[ filter ] = &sep[ 1 ];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
attrs[ filter] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
filter++;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
fclose( fp );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( filter );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2006-03-28 08:14:11 +08:00
|
|
|
get_read_entries( char *filename, char *entries[], char *filters[] )
|
1999-02-15 18:49:20 +08:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
int entry = 0;
|
|
|
|
|
1999-03-04 21:22:06 +08:00
|
|
|
if ( (fp = fopen( filename, "r" )) != NULL ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
char line[BUFSIZ];
|
|
|
|
|
|
|
|
while (( entry < MAXREQS ) && ( fgets( line, BUFSIZ, fp ))) {
|
|
|
|
char *nl;
|
|
|
|
|
|
|
|
if (( nl = strchr( line, '\r' )) || ( nl = strchr( line, '\n' )))
|
|
|
|
*nl = '\0';
|
2006-03-28 08:14:11 +08:00
|
|
|
if ( filters != NULL && line[0] == '+' ) {
|
|
|
|
LDAPURLDesc *lud;
|
|
|
|
|
|
|
|
if ( ldap_url_parse( &line[1], &lud ) != LDAP_URL_SUCCESS ) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( lud->lud_dn == NULL || lud->lud_dn[ 0 ] == '\0' ) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
entries[entry] = ArgDup( lud->lud_dn );
|
|
|
|
|
|
|
|
if ( lud->lud_filter ) {
|
|
|
|
filters[entry] = ArgDup( lud->lud_filter );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
filters[entry] = ArgDup( "(objectClass=*)" );
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
entries[entry] = ArgDup( line );
|
|
|
|
}
|
|
|
|
|
|
|
|
entry++;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
fclose( fp );
|
|
|
|
}
|
|
|
|
|
|
|
|
return( entry );
|
|
|
|
}
|
|
|
|
|
2002-05-17 09:36:35 +08:00
|
|
|
#ifndef HAVE_WINSOCK
|
1999-02-15 18:49:20 +08:00
|
|
|
static void
|
2002-07-26 21:29:37 +08:00
|
|
|
fork_child( char *prog, char **args )
|
1999-02-15 18:49:20 +08:00
|
|
|
{
|
1999-03-29 09:40:17 +08:00
|
|
|
pid_t pid;
|
1999-02-15 18:49:20 +08:00
|
|
|
|
|
|
|
wait4kids( maxkids );
|
|
|
|
|
|
|
|
switch ( pid = fork() ) {
|
|
|
|
case 0: /* child */
|
2002-07-26 21:29:37 +08:00
|
|
|
#ifdef HAVE_EBCDIC
|
|
|
|
/* The __LIBASCII execvp only handles ASCII "prog",
|
|
|
|
* we still need to translate the arg vec ourselves.
|
|
|
|
*/
|
|
|
|
{ char *arg2[MAXREQS];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i=0; args[i]; i++) {
|
|
|
|
arg2[i] = ArgDup(args[i]);
|
|
|
|
__atoe(arg2[i]);
|
|
|
|
}
|
|
|
|
arg2[i] = NULL;
|
|
|
|
args = arg2; }
|
|
|
|
#endif
|
1999-02-15 18:49:20 +08:00
|
|
|
execvp( prog, args );
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_perror( "execvp" );
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-02-15 18:49:20 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case -1: /* trouble */
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_perror( "fork" );
|
1999-02-15 18:49:20 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* parent */
|
|
|
|
nkids++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
wait4kids( int nkidval )
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
|
|
|
|
while ( nkids >= nkidval ) {
|
|
|
|
wait( &status );
|
1999-03-29 09:40:17 +08:00
|
|
|
|
|
|
|
if ( WIFSTOPPED(status) ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"stopping: child stopped with signal %d\n",
|
1999-03-29 09:40:17 +08:00
|
|
|
(int) WSTOPSIG(status) );
|
|
|
|
|
|
|
|
} else if ( WIFSIGNALED(status) ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
fprintf( stderr,
|
1999-03-29 09:40:17 +08:00
|
|
|
"stopping: child terminated with signal %d%s\n",
|
|
|
|
(int) WTERMSIG(status),
|
|
|
|
#ifdef WCOREDUMP
|
|
|
|
WCOREDUMP(status) ? ", core dumped" : ""
|
|
|
|
#else
|
|
|
|
""
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
exit( WEXITSTATUS(status) );
|
|
|
|
|
|
|
|
} else if ( WEXITSTATUS(status) != 0 ) {
|
1999-02-15 18:49:20 +08:00
|
|
|
fprintf( stderr,
|
|
|
|
"stopping: child exited with status %d\n",
|
1999-03-29 09:40:17 +08:00
|
|
|
(int) WEXITSTATUS(status) );
|
|
|
|
exit( WEXITSTATUS(status) );
|
|
|
|
|
1999-02-15 18:49:20 +08:00
|
|
|
} else {
|
|
|
|
nkids--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2002-05-17 09:36:35 +08:00
|
|
|
#else
|
|
|
|
|
|
|
|
static void
|
|
|
|
wait4kids( int nkidval )
|
|
|
|
{
|
|
|
|
int rc, i;
|
|
|
|
|
|
|
|
while ( nkids >= nkidval ) {
|
|
|
|
rc = WaitForMultipleObjects( nkids, children, FALSE, INFINITE );
|
|
|
|
for ( i=rc - WAIT_OBJECT_0; i<nkids-1; i++)
|
|
|
|
children[i] = children[i+1];
|
|
|
|
nkids--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-07-26 21:29:37 +08:00
|
|
|
fork_child( char *prog, char **args )
|
2002-05-17 09:36:35 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
wait4kids( maxkids );
|
|
|
|
|
|
|
|
rc = _spawnvp( _P_NOWAIT, prog, args );
|
|
|
|
|
|
|
|
if ( rc == -1 ) {
|
2006-01-12 21:01:38 +08:00
|
|
|
tester_perror( "_spawnvp" );
|
2002-05-17 09:36:35 +08:00
|
|
|
} else {
|
|
|
|
children[nkids++] = (HANDLE)rc;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|