File: opt.c

package info (click to toggle)
pdsh 1.7-6-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,024 kB
  • ctags: 517
  • sloc: ansic: 6,164; sh: 5,783; makefile: 201; exp: 107; perl: 91
file content (662 lines) | stat: -rw-r--r-- 17,429 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
/*****************************************************************************\
 *
 *  $Id: opt.c,v 1.61 2002/10/02 19:36:08 grondo Exp $
 *  $Source: /chaos/cvs/pdsh/opt.c,v $
 *
 *  Copyright (C) 1998-2002 The Regents of the University of California.
 *  Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER).
 *  Written by Jim Garlick (garlick@llnl.gov>
 *  UCRL-CODE-980038
 *  
 *  This file is part of PDSH, a parallel remote shell program.
 *  For details, see <http://www.llnl.gov/linux/pdsh/>.
 *  
 *  PDSH is free software; you can redistribute it and/or modify it under
 *  the terms of the GNU General Public License as published by the Free
 *  Software Foundation; either version 2 of the License, or (at your option)
 *  any later version.
 *  
 *  PDSH 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 General Public License 
 *  for more details.
 *  
 *  You should have received a copy of the GNU General Public License along
 *  with PDSH; if not, write to the Free Software Foundation, Inc.,
 *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
\*****************************************************************************/

#if     HAVE_CONFIG_H
#include "config.h"
#endif

#if HAVE_STRING_H
#include <string.h>	/* strcpy */
#endif
#include <stdlib.h>	/* getenv */
#include <pwd.h>	/* getpwuid */

#include <sys/types.h>
#include <sys/stat.h>	/* stat */
#if	HAVE_UNISTD_H
#include <unistd.h>	/* getopt */
#endif

#include "dsh.h"
#include "hostlist.h"
#include "opt.h"
#include "err.h"
#include "list.h"
#include "wcoll.h"
#include "xstring.h"
#include "xmalloc.h"	

static void _usage(opt_t *opt);
static void _show_version(void);

#define OPT_USAGE_DSH "\
Usage: pdsh [-options] command ...\n\
-S                return largest of remote command return values\n"

#if	HAVE_MAGIC_RSHELL_CLEANUP
#define OPT_USAGE_STDERR "\
-s                separate stderr and stdout\n"
#else
#define OPT_USAGE_STDERR "\
-s                combine stderr with stdout to conserve sockets\n"
#endif


#define OPT_USAGE_PCP "\
Usage: pdcp [-options] src [src2...] dest\n\
-r                recursively copy files\n\
-p                preserve modification time and modes\n"

#define OPT_USAGE_COMMON "\
-a                target all nodes\n\
-i                with -a, request canonical hostnames if applicable\n\
-q                list the option settings and quit\n\
-b                disable ^C status feature (batch mode)\n\
-l user           execute remote commands as user\n\
-t seconds        set connect timeout (default is 10 sec)\n\
-u seconds        set command timeout (no default)\n\
-f n              use fanout of n nodes\n\
-w host,host,...  set target node list on command line\n\
-x host,host,...  set node exclusion list on command line\n\
-n n              set number of tasks per node\n"
/* undocumented "-T testcase" option */
/* undocumented "-Q" option */

#define OPT_USAGE_SDR "\
-G                for -a, include all partitions of SP System\n\
-v                for -a, skip node if host_responds is false\n"

#define OPT_USAGE_GEND "\
-g attribute      target nodes with specified genders attribute\n"

#define OPT_USAGE_ELAN "\
-E                run Quadrics Elan job using qshell\n\
-m block|cyclic   (qshell) control assignment of procs to nodes\n"

#define DSH_ARGS	"sS"
#define PCP_ARGS	"pr"
#define GEN_ARGS	"n:at:csqf:w:x:l:u:bI:ideVT:Q"
#define SDR_ARGS	"Gv"
#define GEND_ARGS	"g:"
#define ELAN_ARGS	"Em:"

/*
 * Set defaults for various options.
 *	opt (IN/OUT)	option struct
 */
void 
opt_default(opt_t *opt)
{
	struct passwd *pw;

	if ((pw = getpwuid(getuid())) != NULL) {
		strncpy(opt->luser, pw->pw_name, MAX_USERNAME);
		strncpy(opt->ruser, pw->pw_name, MAX_USERNAME);	
		opt->luid = pw->pw_uid;
        } else
                errx("%p: who are you?\n");

	/* set the default connect method */
#if 	HAVE_SSH
	opt->rcmd_type = RCMD_SSH;
#elif 	HAVE_KRB4
	opt->rcmd_type = RCMD_K4;
#else
	opt->rcmd_type = RCMD_BSD;
#endif

	opt->info_only = false;
	opt->test_range_expansion = false;
	opt->wcoll = NULL;
	opt->progname = NULL;
	opt->connect_timeout = CONNECT_TIMEOUT;
	opt->command_timeout = 0;
	opt->fanout = DFLT_FANOUT;
	opt->sigint_terminates = false;
	opt->infile_names = list_new();
	opt->allnodes = false;
	opt->altnames = false;
	opt->debug = false;
	opt->labels = true;

	/* SDR */
	opt->sdr_verify = false;
	opt->sdr_global = false;

	/* DSH specific */
	opt->dshpath = NULL;
	opt->getstat = NULL;
	opt->cmd = NULL;
	opt->stdin_unavailable = false;
#if	HAVE_MAGIC_RSHELL_CLEANUP
	opt->separate_stderr = false; /* save a socket per connection on aix */
#else
	opt->separate_stderr = true;
#endif
	*(opt->gend_attr) = '\0';
	opt->nprocs = 1;
	opt->q_allocation = ALLOC_UNSPEC;

	/* PCP specific */
	opt->outfile_name = NULL;
	opt->recursive = false;
	opt->preserve = false;
}

/*
 * Override default options with environment variables.
 *	opt (IN/OUT)	option struct	
 */
void 
opt_env(opt_t *opt)
{
	char *rhs;

	if ((rhs = getenv("WCOLL")) != NULL)
		opt->wcoll = read_wcoll(rhs, NULL);

        if ((rhs = getenv("FANOUT")) != NULL)
                opt->fanout = atoi(rhs);

        if ((rhs = getenv("DSHPATH")) != NULL) {
		struct passwd *pw = getpwnam(opt->luser);
		char *shell = "sh";

		if (pw && *pw->pw_shell)
			shell = xbasename(pw->pw_shell);
					/* c shell syntax */
		if (!strcmp(shell, "csh") || !strcmp(shell, "tcsh")) {
			opt->dshpath = Strdup("setenv PATH ");
			xstrcat(&opt->dshpath, rhs);
			xstrcat(&opt->dshpath, ";");

		} else {		/* bourne shell syntax */
			opt->dshpath = Strdup("PATH=");
			xstrcat(&opt->dshpath, rhs);
			xstrcat(&opt->dshpath, ";");
		}
        }
}

/*
 * Override  default/environment options with command line arguments.
 *	opt (IN/OUT)	option struct	
 * 	argc (IN)	arg count passed in from main
 * 	argv (IN)	arg vector passed in from main
 */
void 
opt_args(opt_t *opt, int argc, char *argv[])
{
	char *validargs = NULL;
	int c;
	extern int optind;
	extern char *optarg;
	char *wcoll_buf = NULL;
	char *exclude_buf = NULL;
	char *pname = xbasename(argv[0]);

	/* deal with program name */
	opt->progname = pname;
	if (!strcmp(pname, "pdsh") || !strcmp(pname, "dsh"))
		opt->personality = DSH;
	else if (!strcmp(pname, "pdcp") || !strcmp(pname, "dcp") 
	    || !strcmp(pname, "pcp"))
		opt->personality = PCP;
	else
		errx("%p: program must be named pdsh/dsh/pdcp/dcp/pcp\n");

	/* construct valid arg list */
	if (opt->personality == DSH) {
		xstrcpy(&validargs, DSH_ARGS);
#if 	HAVE_ELAN
		xstrcat(&validargs, ELAN_ARGS);
#endif
	} else
		xstrcpy(&validargs, PCP_ARGS);
	xstrcat(&validargs, GEN_ARGS);
#if	HAVE_SDR
 	xstrcat(&validargs, SDR_ARGS);
#endif
#if	HAVE_GENDERS
	xstrcat(&validargs, GEND_ARGS);
#endif
#ifdef __linux
	/* Tell glibc getopt to stop eating after the first non-option arg */
	putenv("POSIXLY_CORRECT=1");
#endif
	while ((c = getopt(argc, argv, validargs)) != EOF) {
		switch (c) {
			case 'S':	/* get remote command status */
				opt->getstat = ";echo " RC_MAGIC "$?";
				break;
			case 'd':	/* debug */
				opt->debug = true;
				break;
			case 'f':	/* fanout */
				opt->fanout = atoi(optarg);
				break;
			case 'w':	/* target node list */
				if (strcmp(optarg, "-") == 0)
					opt->wcoll = read_wcoll(NULL, stdin);
				else 
				        wcoll_buf = Strdup(optarg);
				break;
			case 'x':	/* exclude node list */
				exclude_buf = Strdup(optarg);
				break;
			case 'g':	/* genders attribute */
				strncpy(opt->gend_attr, optarg, MAX_GENDATTR);
				break;
			case 'q':	/* display fanout and wcoll then quit */
				opt->info_only = true;
				break;
			case 's':	/* split stderr and stdout */
				opt->separate_stderr = true;
				break;
			case 'E':	/* use qshell */
				opt->rcmd_type = RCMD_QSHELL;
				break;
			case 'n':	/* set number of tasks per node */
				opt->nprocs = atoi(optarg);
				break;
			case 'm':	/* set block or cyclic allocation (qshell) */
				if (strcmp(optarg, "block") == 0)
					opt->q_allocation = ALLOC_BLOCK;
				else if (strcmp(optarg, "cyclic") == 0)
					opt->q_allocation = ALLOC_CYCLIC;
				else
					_usage(opt);
				break;
			case 'a':	/* indicates all nodes */
				opt->allnodes = true;
				break;
			case 'G':	/* pass 'Global' opt to SDRGetObjects */
				opt->sdr_global = true;
				break;
			case 'i':	/* use alternate hostnames */
				opt->altnames = true;
#if	HAVE_MACHINES
				err("%p: warning: -i will have no effect\n");
#endif
				break;
			case 't':	/* set connect timeout */
				opt->connect_timeout = atoi(optarg);
				break;
			case 'u':	/* set command timeout */
				opt->command_timeout = atoi(optarg);
				break;
			case 'v':	/* verify hosts */
				opt->sdr_verify = true;
				break;
			case 'b':	/* "batch" */
				opt->sigint_terminates = true;
				break;
			case 'l':	/* specify remote username for rshd */
				strncpy(opt->ruser, optarg, MAX_USERNAME);
				break;
			case 'r':	/* rcp: copy recursively */
				opt->recursive = true;
				break;
			case 'p':	/* rcp: preserve permissions */
				opt->preserve = true;
				break;
			case 'V':	/* show version */
				_show_version();
				break;
			case 'T':	/* execute testcase */
				testcase(atoi(optarg));
				break;
			case 'Q':	/* info only, expand host ranges */
				opt->info_only = true;
				opt->test_range_expansion = true;
				break;
			case 'h':	/* display usage message */
			default:
				_usage(opt);
		}
	}

	Free((void **)&validargs);

	/* expand wcoll if needed */
	if (wcoll_buf != NULL) {
		opt->wcoll = hostlist_create(wcoll_buf);
		Free((void **)&wcoll_buf);
	}

	/* DSH: build command */
	if (opt->personality == DSH) {
		for ( ; optind < argc; optind++) {
			if (opt->cmd != NULL)
				xstrcat(&opt->cmd, " ");
			xstrcat(&opt->cmd, argv[optind]);
		}
	
	/* PCP: build file list */
	} else {
		for ( ; optind < argc - 1; optind++)
			list_push(opt->infile_names, argv[optind]);
		if (optind < argc)
			xstrcat(&opt->outfile_name, argv[optind]);
	}

	/* get wcoll, SDR, genders file, or MPICH machines file */
	if (opt->allnodes) {
#if	HAVE_MACHINES
		opt->wcoll = read_wcoll(_PATH_MACHINES, NULL);
#elif 	HAVE_SDR
		opt->wcoll = sdr_wcoll(opt->sdr_global, 
		    opt->altnames, opt->sdr_verify);
#elif 	HAVE_GENDERS
		opt->wcoll = read_genders("all", opt->altnames);
#else
		errx("%p: this pdsh configuration does not support -a\n");
#endif
	}

#if	HAVE_GENDERS
	/* get wcoll from genders - all nodes with a particular attribute */
	if (*(opt->gend_attr)) {
		opt->wcoll = read_genders(opt->gend_attr, opt->altnames);
	}
#endif
#if 	HAVE_RMSQUERY
	/* check RMS for pre-allocated nodes (RMS_RESOURCEID env var) */
	if (!opt->wcoll) {
		opt->wcoll = rms_wcoll(); /* null if no allocation */
	}
#endif /* HAVE_RMSQUERY */
#if 	HAVE_ELAN
	if (opt->rcmd_type == RCMD_QSHELL) {
		if (opt->fanout == DFLT_FANOUT && opt->wcoll != NULL)
			opt->fanout = hostlist_count(opt->wcoll);
		if (opt->q_allocation == ALLOC_UNSPEC)
			opt->q_allocation = ALLOC_BLOCK;
		opt->labels = false;
		if (opt->dshpath != NULL)
			Free((void **)&opt->dshpath);
	}
#endif /* HAVE_ELAN */

	/* handle -x option */
	if (exclude_buf != NULL && opt->wcoll) {
		if (hostlist_delete(opt->wcoll, exclude_buf) == 0) {
			errx("%p: Invalid argument to -x: `%s'\n", 
					exclude_buf);
			exit(1);
		}
		Free((void **)&exclude_buf);
	}
}

/*
 * Trap a few option inconsitencies.
 *	opt (IN)	option struct
 */
bool 
opt_verify(opt_t *opt)
{
	bool verified = true;
	int i;

	/* can't prompt for command if stdin was used for wcoll */
	if (opt->personality == DSH && opt->stdin_unavailable && !opt->cmd) {
		_usage(opt);
		verified = false;
	}

	/* wcoll is required */
	if (opt->wcoll == NULL || hostlist_count(opt->wcoll) == 0) {
		err("%p: no remote hosts specified\n");
		verified = false;
	}

	/* connect and command timeouts must be reasonable */
	if (opt->connect_timeout < 0) {
		err("%p: connect timeout must be >= 0\n");
		verified = false;
	}
	if (opt->command_timeout < 0) {
		err("%p: command timeout must be >= 0\n");
		verified = false;
	}

	/* When using ssh, connect timeout is out of our juristiction */
	if (opt->rcmd_type == RCMD_SSH) {
		if (opt->connect_timeout != CONNECT_TIMEOUT) {
			err("%p: -e and -t are incompatible\n");
			verified = false;
		}
	}

	/* PCP: must have source and destination filename(s) */
	if (opt->personality == PCP) {
		if (!opt->outfile_name || list_length(opt->infile_names) == 0) {
			err("%p: pcp requires source and dest filenames\n");
			verified = false;
		}
	}

	/* verify infile(s) */
	for (i = 0; i < list_length(opt->infile_names); i++) {
		struct stat sb;
		char *name = list_nth(opt->infile_names, i);

		if (stat(name, &sb) < 0) {
			err("%p: can't stat %s\n", name);
			verified = false;
			continue;
		}
		if (!S_ISREG(sb.st_mode) && !S_ISDIR(sb.st_mode)) {
			err("%p: not a regular file or directory: %s\n", name);
			verified = false;
			break;
		}
		if (S_ISDIR(sb.st_mode) && !opt->recursive) {
			err("%p: use -r to copy directories: %s\n", name);
			verified = false;
			break;
		}
	}		

	/* Constraints when running Elan jobs */
	if (opt->rcmd_type == RCMD_QSHELL) {
		if (opt->wcoll != NULL) {
			if (opt->fanout != hostlist_count(opt->wcoll)) {
				err("%p: fanout must = target node list length with -E\n");
				verified = false;
			}
		}
		if (opt->nprocs <= 0) {
			err("%p: -n option should be > 0\n");
			verified = false;
		}
	} else {
		if (opt->nprocs != 1) {
			err("%p: -n can only be specified with -E\n");
			verified = false;
		}
		if (opt->q_allocation != ALLOC_UNSPEC) {
			err("%p: -m can only be specified with -E\n");
			verified = false;
		}
	}

	return verified;
}

/* printf args */
#define BOOLSTR(x)	((x) ? "Yes" : "No")
#define STRORNULL(x)	((x) ? (x) : "none")
#define RCMDSTR(x)	(x == RCMD_BSD ? "RCMD_BSD" :  \
			  (x == RCMD_K4 ? "RCMD_K4" : \
			    (x == RCMD_QSHELL ? "RCMD_QSHELL" : \
			      (x == RCMD_SSH ? "RCMD_SSH" : "<Unknown>"))))
#define ALLOCSTR(x)	(x == ALLOC_BLOCK ? "ALLOC_BLOCK" : \
			  (x == ALLOC_CYCLIC ? "ALLOC_CYCLIC" : "<Unknown>"))

/*
 * List the current options.
 *	opt (IN)	option list
 */
void 
opt_list(opt_t *opt)
{
	char *infile_str;
	char wcoll_str[1024];
	int n;

	if (opt->personality == DSH) {
	out("-- DSH-specific options --\n");
	out("Separate stderr/stdout	%s\n", BOOLSTR(opt->separate_stderr));
	out("Procs per node       	%d\n", opt->nprocs);
	out("(elan) allocation     	%s\n", ALLOCSTR(opt->q_allocation));
	out("Path prepended to cmd	%s\n", STRORNULL(opt->dshpath));
	out("Appended to cmd         %s\n", STRORNULL(opt->getstat));
	out("Command:		%s\n", STRORNULL(opt->cmd));
	} else {
	out("-- PCP-specific options --\n");
	out("Outfile			%s\n", STRORNULL(opt->outfile_name));
	out("Recursive		%s\n", BOOLSTR(opt->recursive));
	out("Preserve mod time/mode	%s\n", BOOLSTR(opt->preserve));
	}
	out("\n-- Generic options --\n");
	out("Local username		%s\n", opt->luser);
	out("Local uid     		%d\n", opt->luid);
	out("Remote username		%s\n", opt->ruser);
	out("Rcmd type		%s\n", RCMDSTR(opt->rcmd_type));
	out("one ^C will kill pdsh   %s\n", BOOLSTR(opt->sigint_terminates));
	out("Connect timeout (secs)	%d\n", opt->connect_timeout);
	out("Command timeout (secs)	%d\n", opt->command_timeout);
	out("Fanout			%d\n", opt->fanout);
	out("Display hostname labels	%s\n", BOOLSTR(opt->labels));
	out("All nodes       	%s\n", BOOLSTR(opt->allnodes));
	infile_str = list_join(", ", opt->infile_names);
	if (infile_str) {
		out("Infile(s)		%s\n", infile_str);
		Free((void **)&infile_str);
	}
	out("Use alt hostname	%s\n", BOOLSTR(opt->altnames));
	out("Debugging       	%s\n", BOOLSTR(opt->debug));

#if HAVE_SDR
	out("\n-- SDR options --\n");
	out("Verify SDR nodes  	%s\n", BOOLSTR(opt->sdr_verify));
	out("All SDR partitions	%s\n", BOOLSTR(opt->sdr_global));
#endif /* HAVE_SDR */

	out("\n-- Target nodes --\n");
	if (opt->test_range_expansion) {
		n = hostlist_deranged_string(opt->wcoll, sizeof(wcoll_str),
					     wcoll_str);
	} else {
		n = hostlist_ranged_string(opt->wcoll, sizeof(wcoll_str), 
				           wcoll_str); 
	}

	if (n < 0)
		out("%s[truncated]\n", wcoll_str);
	else
		out("%s\n", wcoll_str);
}

/*
 * Free heap-allocated memory associated with options, etc.
 *	opt (IN/OUT)	option struct
 */
void 
opt_free(opt_t *opt)
{
	if (opt->wcoll != NULL)
		hostlist_destroy(opt->wcoll);
	if (opt->cmd != NULL)
		Free((void **)&opt->cmd);		
}

/*
 * Spit out all the options and their one-line synopsis for the user, 
 * then exit.
 */
static void 
_usage(opt_t *opt)
{
	if (opt->personality == DSH) {
		err(OPT_USAGE_DSH);
		err(OPT_USAGE_STDERR);
#if 	HAVE_ELAN
		err(OPT_USAGE_ELAN);
#endif
	} else /* PCP */
		err(OPT_USAGE_PCP);
	err(OPT_USAGE_COMMON);
#if 	HAVE_KRB4
	err(OPT_USAGE_KRB4);
#endif
#if	HAVE_SDR
	err(OPT_USAGE_SDR);
#endif
#if	HAVE_GENDERS
	err(OPT_USAGE_GEND);
#endif
	exit(1);
}

static void 
_show_version(void)
{
	printf("%s-%s-%s (", PROJECT, VERSION, RELEASE);
#if	HAVE_SDR
	printf("+sdr");
#endif
#if	HAVE_GENDERS
	printf("+genders");
#endif
#if	HAVE_MACHINES
	printf("+machines");
#endif
#if	HAVE_ELAN
	printf("+elan");
#endif
#if	HAVE_RMSQUERY
	printf("+rmsquery");
#endif
#if	HAVE_SSH
	printf("+ssh");
#endif
#if	HAVE_KRB4
	printf("+krb4");
#endif
#if	!NDEBUG
	printf("+debug");
#endif
#if 	WITH_DMALLOC
	printf("+dmalloc");
#endif
	printf(")\n");
	exit(0);
}