File: netstress.c

package info (click to toggle)
netstress 1.2.0-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 264 kB
  • sloc: ansic: 2,512; makefile: 214; sh: 6
file content (1817 lines) | stat: -rw-r--r-- 58,073 bytes parent folder | download | duplicates (4)
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
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
/*****************************************************************************
* File: netstress.c
* Desc: Networking stress utility
*****************************************************************************/

/*****************************************************************************
* Copyright (c) 2005, Avocent Corp.
* Written by Jim Gleason - July 5, 2005
* Copyright (c) 2006/2007, Helius, Inc.
* Enhanced by Jim Gleason - 2006 .. May 2007
******************************************************************************
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
*   this list of conditions and the following disclaimer.
* * 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.
* * Neither the name of its copyright holders nor the names of its contributors
*   may be used to endorse or promote products derived from this software without
*   specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "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 COPYRIGHT OWNER OR
* CONTRIBUTORS 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.
*
*****************************************************************************/

#define _GNU_SOURCE

#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>
#include <sys/socket.h>
#include <sys/wait.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/prctl.h>
#include <sys/uio.h>

#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#include <string.h>
#include <getopt.h>
#include <errno.h>
#include <time.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <signal.h>

/* Define the min & max packet size (min == packet_number & seed & length) */
#define KB					(1024)
#define LHEADER_SIZE		(3)
#define HEADER_SIZE			(LHEADER_SIZE*sizeof(uint32_t))
#define MAX_PACKET_SIZE		(4*KB)
#define LMAX_PACKET_SIZE	(MAX_PACKET_SIZE / sizeof(uint32_t))

#define DEFAULT_PORT	5678

#define DEFAULT_REPORT_EVERY_N_SECONDS		5
#define DEFAULT_BENCHMARK_EVERY_N_REPORTS	3

#define DAYS_IN_SECONDS		(24*60*60)
#define HOURS_IN_SECONDS	(60*60)
#define MINUTES_IN_SECONDS	(60)

/*** Global Variables *******************************************************/

int verbosity = 0;	/* 0 = no_verbosity, 1...n = verbosity_level */
int debug = 0;		/* 0 = no_debug, 1...n = debug_level */

int debugging_receive_loop = 0;
int debugging_transmit_loop = 0;


/****************************************************************************/

#define MAX_SLAVES		32

// NOTE: We limit the length of the childs connectionName and  identity here
//       because it doesn't make sense to print a name so long that we lose
//       reference to the actual message or data.
// NOTE: The identity is a combination of the connection ID & name
#define MAX_CONNECTIONNAME	32
#define MAX_IDENTITY	(MAX_CONNECTIONNAME+4)

typedef struct children_t {
	pid_t tx_pid;
	pid_t rx_pid;
	// The connectionID is really just the index (passed from master to slave)
	int32_t connectionID;
	// The connectionName is optional (passed from slave to master)
	char connectionName[MAX_CONNECTIONNAME];
	char identity[MAX_IDENTITY];
} children_t;

typedef struct context_t
{
	char *progname;						/* Program name */

	int master;							/* 1 = master, 0 = slave */
	char *host;							/* Hostname or IP Address to use */
	int port;							/* Port number to use */
	uint32_t seed;						/* Random number seed */

	time_t connect_time;				/* Actual connect time */
	int report_using_current_time;		/* Default = 0 = Report elapsed time */
	int report_every_n_seconds;			/* Default = 5 */
	int benchmark_every_n_reports;		/* Default = 3 */

	int benchmark_in_bytes_per_second;	/* 0 = bits, 1 = bytes */
	unsigned char measure;				/* m=1000000|k=1000|b=1 */
	float f_measure;					/* Benchmark divider */
	char s_measure[64];					/* Benchmark divider in string format */

	int master_write_slave_read_test;	/* default is 1 (enabled) */
	int master_read_slave_write_test;	/* default is 1 (enabled) */

	struct hostent *hostent;
	int socket_fd;						/* Socket file descriptor returned from socket() */
	struct sockaddr_in this_sockaddr;	/* Our socket address information */
	struct sockaddr_in that_sockaddr;	/* Their socket address information */

	pid_t pid;
	children_t children[MAX_SLAVES];
	// NOTE: The connectionName is optional
	//       The context->connectionName is the name of the master
	char connectionName[MAX_CONNECTIONNAME];

	/*
	* Provide a fixed random buffer (we pre-fill this)
	* This buffer is used UNLESS real_random is set.
	* When this buffer is used, we convert the seed to
	* an offset into this buffer.
	*/
	int real_random;		/* Default = 0 */
	unsigned char randomTxBuffer[(MAX_PACKET_SIZE+sizeof(long)) * 2];
	unsigned char randomRxBuffer[(MAX_PACKET_SIZE+sizeof(long)) * 2];

	/*
	* Run "Fast" as we can - Don't check the data!
	* NOTE: This overrides real_random!
	*/
	int fast;				/* Default = 0 */

} context_t;

context_t *global_context = NULL;

/****************************************************************************/

extern int errno;

/****************************************************************************/

/* "seconds_counter" needs to be shared amongst all processes */


#if (1)
#	define MY_SHM_KEY		0xDEADBEEF
#else
#	define MY_SHM_KEY		IPC_PRIVATE
#endif

static int ShmID;

struct shmid_ds Myshmid_ds;

static uint32_t *seconds_counter = NULL;
#define seconds_counter_SIZE	sizeof(uint32_t)

/****************************************************************************/

int main(
		int argc,
		char *argv[],
		char *envv[]);

static int parse_options(
		int argc,
		char *argv[],
		char *envv[],
		context_t *context);

static void give_usage(
		context_t *context);

static children_t *which_child(context_t *context, pid_t pid);

static char *SIGstring(int sig);

static void watch_for_DEATH_OF_PARENT(void);

static void DEATH_OF_PARENT_handler(
		int sig);

static void DEATH_OF_CHILD_handler(
		int sig);

static void SIGALRM_handler(
		int sig);

//static void generic_SIG_handler(
//		int sig);

static int handshakeConnectionInformation(
		context_t *context,
		int socket_fd,
		children_t *child);

static int netstress_master(
		context_t *context);

static int netstress_slave(
		context_t *context);

static char *time_stamp(context_t *context);
static char *elapsed_time_stamp(context_t *context);
static char *current_time_stamp(context_t *context);

static char *transfer_speed(
		context_t *context,
		time_t total_time, uint64_t total_byte_count,
		time_t delta_time, uint32_t delta_byte_count);

static void receive_loop(
		context_t *context,
		int socket_fd,
		char *identity);

static void transmit_loop(
		context_t *context,
		int socket_fd,
		char *identity);

/*****************************************************************************
* Func: Vprintf
* Desc: This is basically printf with a leading argument that is a debug level.
*       This also prepends a "DEBUG: " string
*       If debug is >= this debug level the printf will be performed.
*****************************************************************************/
void Vprintf(int verbosity_lvl, const char *format, ...)
{
	if (verbosity >= verbosity_lvl) {
		//pid_t pid = getpid();
		va_list ap;
		va_start(ap, format);
		//printf("VERBOSE(%d): ", pid);
		vprintf(format, ap);
		va_end(ap);
	}
	return;
} /* Vprintf */

/*****************************************************************************
* Func: Dprintf
* Desc: This is basically printf with a leading argument that is a debug level.
*       This also prepends a "DEBUG: " string
*       If debug is >= this debug level the printf will be performed.
*****************************************************************************/
void Dprintf(int dbg_lvl, const char *format, ...)
{
	if (debug >= dbg_lvl) {
		pid_t pid = getpid();
		va_list ap;
		va_start(ap, format);
		printf("DEBUG(%d): ", pid);
		vprintf(format, ap);
		va_end(ap);
	}
	return;
} /* Dprintf */

void setChildIdentity(children_t *child)
{
	// NOTE: The length of the child identity is limited
	//       because it doesn't make sense to print a name so
	//       long we lose reference to the actual message or data.
	if (child->connectionName[0] == '\0') {
		sprintf(child->identity, "%d", child->connectionID);
	} else {
		sprintf(child->identity, "%d=%s",
				child->connectionID, child->connectionName);
	}
	return;
} /* setChildIdentity */

/*****************************************************************************
* Func: main
* Desc: Main controlling function
*****************************************************************************/
int main(
		int argc,
		char *argv[],
		char *envv[])
{
	context_t _context;
	context_t *context = &_context;
	//int sts;
	char *cp;
	char *buff;
	int buff_size;
	int i;

	global_context = context;

	/* Initialize the context structure */
	memset(context, 0, sizeof(context_t));
	context->seed = (uint32_t)time(NULL);
	context->port = DEFAULT_PORT;
	context->report_using_current_time = 0;		/* 0 = Report elapsed time */
	context->report_every_n_seconds = DEFAULT_REPORT_EVERY_N_SECONDS;
	context->benchmark_every_n_reports = DEFAULT_BENCHMARK_EVERY_N_REPORTS;
	context->benchmark_in_bytes_per_second = 0;	/* 0=bits, 1=bytes */
	context->measure = 'm';		/* m=1000000|k=1000|b=1 */
	context->master_write_slave_read_test = 1;	/* default is 1 (enabled) */
	context->master_read_slave_write_test = 1;	/* default is 1 (enabled) */
	context->real_random = 0;					/* default is 0 (disabled) */
	context->fast = 0;							/* default is 0 (disabled) */
	context->pid = getpid();
	for (i = 0; i < MAX_SLAVES; i++) {
		// Let container know its own index (ID)
		context->children[i].connectionID=i;
	}

	/* Get the program name while Striping off any associated path */
	cp = rindex(argv[0],'/');
	if (cp) {
		cp++;
		context->progname = cp;
	} else {
		context->progname = argv[0];
	}

	parse_options(argc, argv, envv, context);

	if (context->fast) {
		context->real_random = 0;	/* Can't do "Fast" and real_random */
		printf("WARNING: Data validataion checks have been disabled\n");
	}

	/* Determine some stuff based on the options */
	buff = &context->s_measure[0];
	buff_size = sizeof(context->s_measure);
	if (context->measure == 'm') {
		context->f_measure = 1000000.0;
		*buff = 'm'; buff++;
		buff_size--;
	} else if (context->measure == 'k') {
		context->f_measure = 1000.0;
		*buff = 'k'; buff++;
		buff_size--;
	} else /* (context->measure == 'b') */ {
		context->f_measure = 1.0;
	}
	if (context->benchmark_in_bytes_per_second) {
		snprintf(buff, buff_size, "%s", "bytes");
	} else {
		snprintf(buff, buff_size, "%s", "bits");
		context->f_measure /= 8.0;
	}

#ifdef NOT_YET
	sts = setpriority(PRIO_PROCESS, 0, context->priority);
	if (sts < 0) {
		printf("ERROR: Unable to set priority to %d\n",
				context->priority);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
	}
#endif /* NOT_YET */

	Dprintf(1, "%s %s Host=%s Port=%d Seed=%lu\n",
			context->progname,
			context->master?"Master":"Slave",
			context->host,
			context->port,
			context->seed);

	/* Setup shared memory */
	/* Setup "seconds_counter" as shared memory for all processes */
		ShmID = shmget(MY_SHM_KEY, seconds_counter_SIZE, 0600 | IPC_CREAT);
		if (ShmID != -1) {
			/* Attach to the shared memory */
			seconds_counter = shmat(ShmID, 0, SHM_W);
			if (seconds_counter) {
				*seconds_counter = 0L;
				/* Catch and handle death of child processes */
				(void) signal(SIGCHLD, &DEATH_OF_CHILD_handler);
				/* Catch and handle an alarm every 1 second */
				(void) signal(SIGALRM, &SIGALRM_handler);
				(void) alarm(1);
//				(void) signal(SIGHUP,  &generic_SIG_handler); // = 1
//				(void) signal(SIGINT,  &generic_SIG_handler); // = 2 = ^C
//				(void) signal(SIGQUIT, &generic_SIG_handler); // = 3
//				(void) signal(SIGABRT, &generic_SIG_handler); // = 6
//				(void) signal(SIGKILL, &generic_SIG_handler); // = 9
//				(void) signal(SIGTERM, &generic_SIG_handler); // = 15 = kill default
//				(void) signal(SIGSTOP, &generic_SIG_handler); // = 19
				/* Farm off and do the real work */
				if (context->master) {
					/*sts =*/ netstress_master(context);
				} else {
					/*sts =*/ netstress_slave(context);
				}
			}
			/* Remove shared memory */
			shmctl(ShmID, IPC_RMID, &Myshmid_ds);
			seconds_counter = NULL;
		}

	exit(0);
	return(0);
} /* main() */

/*****************************************************************************
* Func: parse_options
* Desc: Parse the command line options
*****************************************************************************/
static int parse_options(
		int argc,
		char *argv[],
		char *envv[],
		context_t *context)
{
	int retval = 0;		/* Success */
	int c = -1;
	int optind = 0;
	int master_set = 0;
	int slave_set = 0;

	/***** For short_options *****/
	/* () --> no arg */
	/* (:) --> arg is required */
	/* (::) --> arg is optional */
	static char short_options[] = "m::s::h:p:S:cn:N:bMKBwrRfvd?";
	/***** For long_options *****/
	/* ARG1 = NAME */
	/* ARG2 = Has_Arg --> 0=no, 1=required, 2=optional */
	/* FLAG  = How results are returned for long option (see man page) */
	/* VAL  = Value to return if long option specified if FLAG == 0 */
	static struct option long_options[] = {
		{"master",		2, 0, 'm'},
		{"slave",		2, 0, 's'},
		{"host",		1, 0, 'h'},
		{"port",		1, 0, 'p'},
		{"seed",		1, 0, 'S'},
		{"ctime",		0, 0, 'c'},
		{"nsec",		1, 0, 'n'},
		{"nrep",		1, 0, 'N'},
		{"bytes",		0, 0, 'b'},
		{"mps",			0, 0, 'M'},
		{"kps",			0, 0, 'K'},
		{"bps",			0, 0, 'B'},
		{"mwo",			0, 0, 'w'},
		{"mro",			0, 0, 'r'},
		{"realrandom",	0, 0, 'R'},
		{"fast",		0, 0, 'f'},
		{"verbosity",	0, 0, 'v'},
		{"debug",		0, 0, 'd'},
		{"help",		0, 0, '?'},
		{0, 			0, 0, 0}
	};

	for ( ; ; ) {
		c = getopt_long(argc, argv, short_options, long_options, &optind);
		/* The following needs checked outside of switch so break work right */
		if (c < 0) {
			break;		/* Done with options, get out of loop */
		}
		/* See what options we were passed */
		switch (c) {
		case 'm':	/* Master */
			master_set = 1;
			context->master = 1;		/* 1 = master, 0 = slave */
			// Note: context was already initialized to zeroes
			if ((optarg != NULL) && (*optarg != '\0')) {
				strncpy(context->connectionName, optarg,
						sizeof(context->connectionName)-1);
			}
			break;
		case 's':	/* Slave */
			slave_set = 1;
			context->master = 0;		/* 1 = master, 0 = slave */
			// Note: context was already initialized to zeroes
			if ((optarg != NULL) && (*optarg != '\0')) {
				// NOTE: In slave mode, we always use the first child...
				strncpy(context->children[0].connectionName, optarg,
						sizeof(context->children[0].connectionName)-1);
			}
			break;
		case 'h':	/* Host or IP Address */
			context->host = optarg;
			break;
		case 'p':	/* Port */
			context->port = atoi(optarg);
			break;
		case 'S':	/* Seed */
			context->seed = atol(optarg);
			break;
		case 'c':	/* Report using current time */
			context->report_using_current_time = 1;
			break;
		case 'n':	/* Report every nnn seconds */
			context->report_every_n_seconds = atol(optarg);
			break;
		case 'N':	/* Benchmark every nnn reports */
			context->benchmark_every_n_reports = atol(optarg);
			break;
		case 'b':	/* bytes/sec (default is bits/sec) */
			context->benchmark_in_bytes_per_second = 1;	/* 0=bits, 1=bytes */
			break;
		case 'M':	/* mbytes/sec or mbits/sec */
			context->measure = 'm';
			break;
		case 'K':	/* kbytes/sec or kbits/sec */
			context->measure = 'k';
			break;
		case 'B':	/* bytes/sec or bits/sec */
			context->measure = 'b';
			break;
		case 'w':	/* Only test master write / slave read */
			context->master_write_slave_read_test = 1;
			context->master_read_slave_write_test = 0;
			break;
		case 'r':	/* Only test master read / slave write */
			context->master_write_slave_read_test = 0;
			context->master_read_slave_write_test = 1;
			break;
		case 'R':	/* Real-Random */
			context->real_random = 1;
			break;
		case 'f':	/* Fast (don't check data) */
			context->fast = 1;
			break;
		case 'v':	/* Verbosity */
			verbosity++;		/* 0 = no_verbosity, 1...n = verbosity_level */
			break;
		case 'd':	/* Debug */
			debug++;		/* 0 = no_debug, 1...n = debug_level */
			break;
		case '?':	/* Help */
		default:
			give_usage(context); /* NOTE: give_usage() doesn't return */
			break;
		}
	}
	if (((master_set == 0) && (slave_set == 0))
	||  ((master_set == 1) && (slave_set == 1))) {
		printf("\n");
		printf("ERROR: Either \"Master\" or \"Slave\" must be set\n");
		give_usage(context); /* NOTE: give_usage() doesn't return */
	}
	if (context->master == 0) {
		if (context->host == NULL) {
			printf("\n");
			printf("ERROR: \"Slave\" mode requires a HOST to be specified\n");
			give_usage(context); /* NOTE: give_usage() doesn't return */
		}
	}
	return(retval);
} /* parse_options() */

/*****************************************************************************
* Func: give_usage
* Desc: Give the command line usage (help)
* NOTE: This function does NOT return.
*****************************************************************************/
static void give_usage(
		context_t *context)
{
	printf("\n");
	printf("Usage: %s -m[NAME] | --master=[NAME] [OPTIONS]\n",
			context->progname);
	printf("    --- or ---\n");
	printf("Usage: %s -s[NAME] | --slave=[NAME] -hHOST|--host=HOST [OPTIONS]\n",
			context->progname);
	printf("    --- or ---\n");
	printf("Usage: %s --help|-?\n",
			context->progname);

	printf("\n");
	printf("%s is designed to stress/benchmark a network device or\n",
			context->progname);
	printf("connection. Two or more sessions are required to use this utility.\n");
	printf("One must specify \"--master\" while the others specify \"--slave\".\n");
	printf("\n");
	printf("Benchmark timings are given independently for read and write\n");
	printf("transactions. Benchmark times are reported in xxx/yyy format\n");
	printf("where xxx is the total transfer speed and yyy is the transfer\n");
	printf("speed for transfers since it was last reported.\n");

	printf("\n");
	printf("  OPTIONS:\n");
	printf("  -m[NAME]|--master[=NAME]   = This instance is the master\n");
	printf("  -s[NAME]|--slave[=NAME]    = This instance is the slave\n");
	printf("  -h|--host nnn.nnn.nnn.nnn  = Use this host or IP address\n");
	printf("  -p|--port nnn    = Use this port (default=%d)\n", DEFAULT_PORT);
	printf("  --seed|-S nnn    = Use this random number seed (master only)\n");
	printf("  -c|--ctime       = Report current time (default reports elapsed time)\n");
	printf("  -n|--nsec nnn    = Report every nnn seconds (default=%d)\n",
			DEFAULT_REPORT_EVERY_N_SECONDS);
	printf("  -N|--nrep nnn    = Benchmark every nnn reports (default=%d)\n",
			DEFAULT_BENCHMARK_EVERY_N_REPORTS);
	printf("  -b|--bytes       = Benchmark using bytes (default is bits)\n");
	printf("  -M|--mps         = Benchmark using mbytes/sec or mbits/sec (default)\n");
	printf("  -K|--kps         = Benchmark using kbytes/sec or kbits/sec\n");
	printf("  -B|--bps         = Benchmark using  bytes/sec or  bits/sec\n");
	printf("  -w|--mwo         = Only test master write / slave read\n");
	printf("  -r|--mro         = Only test master read / slave write\n");
	printf("  -R|--realrandom  = Do real random test (not pseudo random)\n");
	printf("  -f|--fast        = Run Fast (no checking, no real_random)\n");
	printf("  -v|--verbosity   = Enable verbosity (multiples increase level)\n");
	printf("  -d|--debug       = Enable debugging (multiples increase level)\n");
	printf("  -?|--help        = Give this information\n");
	printf("\n");
	exit(-1);
} /* give_usage() */

/*****************************************************************************
* Func: which_child
* Desc: The funtion used to determine which children are asssociated with a pid
*****************************************************************************/
static children_t *which_child(context_t *context, pid_t pid)
{
	children_t *child = NULL;
	int i;
	if (pid > 0) {
		for (i = 0; i < MAX_SLAVES; i++) {
			if ((context->children[i].tx_pid == pid)
			||  (context->children[i].rx_pid == pid)) {
				child = &(context->children[i]);
				break;
			}
		}
	}
	return(child);
} /* which_child() */

/*****************************************************************************
* Func: SIGstring
* Desc: Return a string of the signal specified.
*****************************************************************************/
static char *SIGstring(int sig)
{
	char *str;
	static char *SIGstrings[] =
	{
	"1 SIGHUP",       "2 SIGINT",       "3 SIGQUIT",      "4 SIGILL",
	"5 SIGTRAP",      "6 SIGABRT",      "7 SIGBUS",       "8 SIGFPE",
	"9 SIGKILL",      "10 SIGUSR1",     "11 SIGSEGV",     "12 SIGUSR2",
	"13 SIGPIPE",     "14 SIGALRM",     "15 SIGTERM",     "16 SIGSTKFLT",
	"17 SIGCHLD",     "18 SIGCONT",     "19 SIGSTOP",     "20 SIGTSTP",
	"21 SIGTTIN",     "22 SIGTTOU",     "23 SIGURG",      "24 SIGXCPU",
	"25 SIGXFSZ",     "26 SIGVTALRM",   "27 SIGPROF",     "28 SIGWINCH",
	"29 SIGIO",       "30 SIGPWR",      "31 SIGSYS",      "34 SIGRTMIN",
	"35 SIGRTMIN+1",  "36 SIGRTMIN+2",  "37 SIGRTMIN+3",  "38 SIGRTMIN+4",
	"39 SIGRTMIN+5",  "40 SIGRTMIN+6",  "41 SIGRTMIN+7",  "42 SIGRTMIN+8",
	"43 SIGRTMIN+9",  "44 SIGRTMIN+10", "45 SIGRTMIN+11", "46 SIGRTMIN+12",
	"47 SIGRTMIN+13", "48 SIGRTMIN+14", "49 SIGRTMIN+15", "50 SIGRTMAX-14",
	"51 SIGRTMAX-13", "52 SIGRTMAX-12", "53 SIGRTMAX-11", "54 SIGRTMAX-10",
	"55 SIGRTMAX-9",  "56 SIGRTMAX-8",  "57 SIGRTMAX-7",  "58 SIGRTMAX-6",
	"59 SIGRTMAX-5",  "60 SIGRTMAX-4",  "61 SIGRTMAX-3",  "62 SIGRTMAX-2",
	"63 SIGRTMAX-1",  "64 SIGRTMAX"
	};

	if ((sig >= 1) && (sig <= 64)) {
		str = SIGstrings[sig-1];
	} else {
		str = "Unknown";
	}
	return(str);
} /* SIGstring() */

#define SIGPARENT SIGUSR1
/*****************************************************************************
* Func: watch_for_DEATH_OF_PARENT
* Desc: Prepare to catch a signal indicating the death of our parent process
*		Cleanup and notify the user if one of our parent dies
*****************************************************************************/
void watch_for_DEATH_OF_PARENT(void)
{
	uint32_t junk = 0;
	uint32_t new_sig = SIGPARENT;
	int sts;
	sts = prctl(PR_SET_PDEATHSIG, new_sig, junk, junk, junk);
	Dprintf(1, "watch_for_DEATH_OF_PARENT: sts=%d, new_sig=%s\n",
			sts, SIGstring((int)new_sig));
	return;
} /* watch_for_DEATH_OF_PARENT() */

/*****************************************************************************
* Func: DEATH_OF_PARENT_handler
* Desc: The funtion used to catch death of a child signals
*		Cleanup and notify the user if one of our children dies
* Rule: If our parent dies, we are to die.
*       and we attempt to kill our sibling (this last piece is extra I think)
*****************************************************************************/
void DEATH_OF_PARENT_handler(
		int sig)
{
	children_t *child;
	pid_t pid;
	if (sig == SIGPARENT) {
		/* Let the user know what happened */
		printf("SIGNAL: %s: Our parent process died!\n", SIGstring(sig));
		/* Determine what child we are so we can comment and cleanup */
		pid = getpid();
		child = which_child(global_context, pid);
		if (child) {
			if (child->tx_pid == pid) {
				printf("WARNING: ID=%s: TX process terminating\n", child->identity);
				child->tx_pid = 0;
			} else /* (child->rx_pid == pid) */ {
				printf("WARNING: ID=%s: RX process terminating\n", child->identity);
				child->rx_pid = 0;
			}
		}
		exit(0);
	}
	return;
} /* DEATH_OF_PARENT_handler() */

/*****************************************************************************
* Func: DEATH_OF_CHILD_handler
* Desc: The funtion used to catch death of a child signals
*		Cleanup and notify the user if one of our children dies
* Rule: If we are the master: Kill the associated RX or TX child.
* Rule: If we are the slave: Kill all our children and die.
*****************************************************************************/
void DEATH_OF_CHILD_handler(
		int sig)
{
	pid_t pid;
	children_t *child = NULL;
	int i;
	if (sig == SIGCHLD) {
		int status;
		int terminating_signal = -1;
		int ret_value = -1;
		char *process_type = "A";
		char *description = "";
		/* Re-Enable the signal */
		(void) signal(sig, DEATH_OF_CHILD_handler);
		/* Wait for the child to be cleaned up */
		pid = waitpid (-1, &status, WNOHANG);
		/* Who died ? */
		child = which_child(global_context, pid);
		if (child) {
			if (child->rx_pid == pid) {
				process_type = "RX";
			}
			if (child->tx_pid == pid) {
				process_type = "TX";
			}
		}
		/* Let the user know what happened */
		if (WIFSIGNALED(status)) {
			terminating_signal = WTERMSIG(status);
			description = SIGstring(terminating_signal);
		}
		if (WIFEXITED(status)) {
			ret_value = WEXITSTATUS(status);
			description = strerror(status);
		}
		if (child) {
			printf("WARNING: ID=%s: %s child process died: pid=%d: sts=%d: sig=%d: ret=%d: %s!\n",
					child->identity, process_type, pid, status,
					terminating_signal, ret_value, description);
		} else {
			printf("WARNING: %s child process died: pid=%d: sts=%d: sig=%d: ret=%d: %s!\n",
					process_type, pid, status,
					terminating_signal, ret_value, description);
		}
		/* If a master: Kill our childs RX/TX sibling */
		/* If a slave: Kill all our other children */
		/* There should be only 1 set of children so the behavior is the same */
		if (child) {
			if (child->tx_pid == pid) {
				// Kill RX sibling
				if (child->rx_pid > 0) {
					printf("WARNING: ID=%s: Terminating RX process\n",
							child->identity);
					kill(child->rx_pid, SIGTERM);
					child->rx_pid = 0;
				}
			} else /* (child->rx_pid == pid) */ {
				// Kill TX sibling
				if (child->tx_pid > 0) {
					printf("WARNING: ID=%s: Terminating TX process\n",
							child->identity);
					kill(child->tx_pid, SIGTERM);
					child->tx_pid = 0;
				}
			}
		}
		// Look for children where (only) one child has died.
		for (i = 0; i < MAX_SLAVES; i++) {
			for (i = 0; i < MAX_SLAVES; i++) {
				int alive_count = 0;
				if (global_context->children[i].rx_pid > 0) alive_count++;
				if (global_context->children[i].tx_pid > 0) alive_count++;
				if (alive_count == 1) {
					// Kill the remaining child.
					if (global_context->children[i].rx_pid > 0) {
						printf("WARNING: ID=%s: Terminating RX process\n",
								global_context->children[i].identity);
						kill(global_context->children[i].rx_pid, SIGTERM);
						global_context->children[i].rx_pid = 0;
					}
					if (global_context->children[i].tx_pid > 0) {
						printf("WARNING: ID=%s: Terminating TX process\n",
								global_context->children[i].identity);
						kill(global_context->children[i].tx_pid, SIGTERM);
						global_context->children[i].tx_pid = 0;
					}
				}
			}
		}
		// If slave: Check if all children have died.  If so, die.
		if (global_context->master == 0) {
			for (i = 0; i < MAX_SLAVES; i++) {
				if ((global_context->children[i].rx_pid > 0)
				||  (global_context->children[i].tx_pid > 0)) {
					break;
				}
			}
			if (i >= MAX_SLAVES) {
				printf("WARNING: Slave parent process terminating\n");
				exit(0);
			}
		}
	}
	return;
} /* DEATH_OF_CHILD_handler() */

/*****************************************************************************
* Func: SIGALRM_handler
* Desc: The funtion used to catch SIGALRM signals
*		Receive and handle an alarm every 1 second
*****************************************************************************/
static void SIGALRM_handler(int sig)
{
	if (sig == SIGALRM) {
		/* Re-Enable the signal and submit another alarm */
		(void) signal(sig, SIGALRM_handler);
		(void) alarm(1);
		(*seconds_counter)++;
		//Dprintf(2, "SIGNAL: %s: %lu\n", SIGstring(sig), *seconds_counter);
		Vprintf(1, "%lu seconds\n", *seconds_counter);
	}
	return;
} /* SIGALRM_handler() */

/*****************************************************************************
* Func: generic_SIG_handler
* Desc: The funtion used to catch generic signals
*****************************************************************************/
//static void generic_SIG_handler(int sig)
//{
//	//DON'T//(void) signal(sig, generic_SIG_handler);
//	printf("SIGNAL: %s\n", SIGstring(sig));
//	if ((sig == SIGINT)
//	||  (sig == SIGTERM))
//	{
//		// ^C
//		exit(0);
//	}
//	return;
//} /* generic_SIG_handler() */

/*****************************************************************************
* Func: fillRandomBuffer
* Desc: Fill the TX or RX random buffer twice the size of MAX_PACKET_SIZE with
*       random numbers we can use instead of getting random numbers each time.
*       Basically we can randomly point into the first half of this data
*       as a starting point, and then use a random size of data no greater
*       than MAX_PACKET_SIZE.
*****************************************************************************/
void fillRandomBuffer(
		context_t *context,
		char bufferID,  /* "T"x or "R"x */
		uint32_t seed)
{
	static int tx_done_once = 0;
	static int rx_done_once = 0;
	int done_once = 0;
	int i;
	int llength;
	uint32_t *lbuffer = NULL;
	if ((bufferID == 'T') || (bufferID == 'T')) {
		/* Use TX BUffer */
		lbuffer = (uint32_t *)context->randomTxBuffer;
		llength = sizeof(context->randomTxBuffer) / sizeof(uint32_t);
		done_once = tx_done_once;
		tx_done_once = 1;
	} else {
		/* Use RX BUffer */
		lbuffer = (uint32_t *)context->randomRxBuffer;
		llength = sizeof(context->randomRxBuffer) / sizeof(uint32_t);
		done_once = rx_done_once;
		rx_done_once = 1;
	}
	if ( ! done_once) {
		Dprintf(1, "RANDOM: %c: %lu\n", bufferID, seed);
		srandom((unsigned int)seed);
		for (i = 0; i < llength; i++) {
			lbuffer[i] = random();
		}
	}
	return;
} /* fillRandomBuffer() */

/*****************************************************************************
* Func: handshakeConnectionInformation
* Desc: exchange the connectionID and connectionName 
* Desc: Send the Master's random seed against the Slave's
*****************************************************************************/
static int handshakeConnectionInformation(
		context_t *context,
		int socket_fd,
		children_t *child)
{
	int retval = 0;		/* Success */
	uint32_t checksum = 0;
	int i;
	if (context->master) {
		// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		// NOTE: The sum here includes the connectionID and the sum of the name
		checksum = child->connectionID;
		// write(child->connectionID)
		(void) write(socket_fd, &child->connectionID,
				sizeof(child->connectionID));
		// write(context->connectionName)
		(void) write(socket_fd, context->connectionName,
				sizeof(context->connectionName));
		// write(sum(context->connectionName))
		for (i = 0; i < sizeof(context->connectionName); i++) {
			checksum+=context->connectionName[i];
		}
		(void) write(socket_fd, &checksum, sizeof(checksum));
		// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		// read(child->connectionName)
		(void) read(socket_fd, child->connectionName,
				sizeof(child->connectionName));
		// read(sum(child->connectionName))
		(void) read(socket_fd, &checksum, sizeof(checksum));
		//Test sum just read
		// NOTE: The sum here is the sum of the name only
		for (i = 0; i < sizeof(child->connectionName); i++) {
			checksum-=child->connectionName[i];
		}
		if (checksum != 0) {
			printf("ERROR: connectionName sum mismatch\n");
			printf("Connection aborted...\n");
			retval = -1;
		}
		// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	} else /* SLAVE */ {
		// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		// read(child->connectionID)
		(void) read(socket_fd, &child->connectionID,
				sizeof(child->connectionID));
		// read(context->connectionName)
		(void) read(socket_fd, context->connectionName,
				sizeof(context->connectionName));
		// read(sum(context->connectionName))
		(void) read(socket_fd, &checksum, sizeof(checksum));
		//Test sum just read
		// NOTE: The sum here includes the connectionID and the sum of the name
		for (i = 0; i < sizeof(context->connectionName); i++) {
			checksum-=context->connectionName[i];
		}
		if (checksum != child->connectionID) {
			printf("ERROR: connectionName sum mismatch\n");
			printf("Connection aborted...\n");
			retval = -1;
		}
		// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		// write(child->connectionName)
		(void) write(socket_fd, child->connectionName, sizeof(child->connectionName));
		// write(sum(child->connectionName))
		// NOTE: The sum here is the sum of the name only
		checksum = 0;
		for (i = 0; i < sizeof(child->connectionName); i++) {
			checksum+=child->connectionName[i];
		}
		(void) write(socket_fd, &checksum, sizeof(checksum));
		// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	}
	setChildIdentity(child);
	return(retval);
} /* handshakeConnectionInformation() */

/*****************************************************************************
* Func: netstress_master
* Desc: The master portion of the stressnet utility.
*****************************************************************************/
static int netstress_master(
		context_t *context)
{
	int retval = 0;		/* Success */
	int i;
	children_t *child = NULL;

	Dprintf(1, "%s(ENTER): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	/* Open/Esstablish the socket connection(s) to the specified host */

	context->socket_fd = socket(AF_INET, SOCK_STREAM, 0);
	if (context->socket_fd < 0) {
		retval = -1;		/* Failure */
		printf("ERROR: Unable to create socket %s:%d\n",
				context->host, context->port);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	/* Initialize our socket information */
	memset(&context->this_sockaddr, 0, sizeof(struct sockaddr_in));
	context->this_sockaddr.sin_family = AF_INET;
	context->this_sockaddr.sin_addr.s_addr = htonl(INADDR_ANY);
	context->this_sockaddr.sin_port = htons(context->port);

	retval = bind(context->socket_fd,
			(struct sockaddr *)&context->this_sockaddr,
			sizeof(struct sockaddr_in));
	if (retval < 0) {
		printf("ERROR: Unable to bind to socket %s:%d\n",
				context->host, context->port);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	retval = listen(context->socket_fd, 5);
	if (retval < 0) {
		printf("ERROR: Unable to listen to socket %s:%d\n",
				context->host, context->port);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	for ( ; ; ) {
		// Find an unused set of pid's for the new child and point to them.
		// For the master side of this, we rotate through all entries.
		int newsocket_fd;	/* Socket file descriptor returned from accept() */
		child = NULL;
		for (i = 0; i < MAX_SLAVES; i++) {
			if (context->children[i].tx_pid <= 0) {
				child = &(context->children[i]);
				break;
			}
		}
		if (child == NULL) {
			sleep(1);
			continue;
		}

		newsocket_fd = accept(context->socket_fd, NULL, NULL);
		if (newsocket_fd >= 0) {
			/* We have someone trying to talk to us */
		} else {
			printf("ERROR: Unable to accept a connecting socket %s:%d\n",
					context->host, context->port);
			printf("errno = %d = \"%s\"\n", errno, strerror(errno));
			continue;
		}
		/*
		* ((( Master )))
		* First handshake the connectionID and connectionName
		* so we can reference any output by its associated connection
		*/
		retval = handshakeConnectionInformation(context,
				newsocket_fd, child);
		if (retval < 0) {
			/* An error occurred ... Abort the connection */
			/* A message has already been given */
			close(newsocket_fd);
			continue;
		}
		/* Now fork a tx process and an rx process */
		child->tx_pid = fork();
		if (child->tx_pid == 0) {
			/* Child Process */
			transmit_loop(context, newsocket_fd, child->identity);
			child->tx_pid = 0;	/* Leave empty when done */
			exit(0);
		} else {
			/* Parent Process */
			if (child->tx_pid < 0) {
				printf("ERROR: Unable to fork a TX process\n");
				printf("errno = %d = \"%s\"\n", errno, strerror(errno));
				child->tx_pid = 0;	/* Leave empty when done */
			}
		}
		child->rx_pid = fork();
		if (child->rx_pid == 0) {
			/* Child Process */
			receive_loop(context, newsocket_fd, child->identity);
			child->rx_pid = 0;	/* Leave empty when done */
			exit(0);
		} else {
			/* Parent Process */
			if (child->rx_pid < 0) {
				printf("ERROR: Unable to fork an RX process\n");
				printf("errno = %d = \"%s\"\n", errno, strerror(errno));
				printf("WARNING: ID=%s: Terminating TX process\n",
						child->identity);
				kill(child->tx_pid, SIGTERM); // = 15 = kill default
				child->tx_pid = 0;	/* Leave empty when done */
				child->rx_pid = 0;	/* Leave empty when done */
			}
		}
	}
	Dprintf(1, "%s(LEAVE): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	return(retval);
} /* netstress_master() */

/*****************************************************************************
* Func: netstress_slave
* Desc: The slave portion of the stressnet utility.
*****************************************************************************/
static int netstress_slave(
		context_t *context)
{
	int retval = 0;		/* Success */
	children_t *child = NULL;

	Dprintf(1, "%s(ENTER): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	/* Open/Esstablish the socket connection(s) to the specified host */

	if (context->host == NULL) {
		printf("ERROR: No hostname or IP was specified\n");
		return(retval);
	}

	context->hostent = gethostbyname(context->host);
	if (context->hostent == NULL) {
		printf("ERROR: Invalid hostname or IP address specified: %s\n",
				context->host);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	context->socket_fd = socket(AF_INET, SOCK_STREAM, 0);
	if (context->socket_fd < 0) {
		printf("ERROR: Unable to create socket\n");
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	/* Initialize their socket address information */
	memset(&context->that_sockaddr, 0, sizeof(struct sockaddr_in));
	context->that_sockaddr.sin_family = context->hostent->h_addrtype;
	memcpy((char *)&context->that_sockaddr.sin_addr.s_addr,
			context->hostent->h_addr_list[0],
			context->hostent->h_length);
	context->that_sockaddr.sin_port = htons(context->port);

	/* Initialize our socket address information */
	memset(&context->this_sockaddr, 0, sizeof(struct sockaddr_in));
	context->this_sockaddr.sin_family = AF_INET;
	context->this_sockaddr.sin_addr.s_addr = htonl(INADDR_ANY);
	context->this_sockaddr.sin_port = htons(0);

	retval = bind(context->socket_fd,
			(struct sockaddr *)&context->this_sockaddr,
			sizeof(struct sockaddr_in));
	if (retval < 0) {
		printf("ERROR: Unable to bind to socket%s:%d\n",
				context->host, context->port);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	retval = connect(context->socket_fd,
			(struct sockaddr *)&context->that_sockaddr,
			sizeof(struct sockaddr_in));
	if (retval < 0) {
		printf("ERROR: Unable to connect to socket %s:%d\n",
				context->host, context->port);
		printf("errno = %d = \"%s\"\n", errno, strerror(errno));
		return(retval);
	}

	// NOTE: In slave mode, we always use the first child...
	child = &(context->children[0]);
	/*
	* ((( Slave )))
	* First handshake the connectionID and connectionName
	* so we can reference any output by its associated connection
	*/
	retval = handshakeConnectionInformation(context,
			context->socket_fd, child);
	if (retval < 0) {
		/* An error occurred ... Abort the connection */
		/* A message has already been given */
		return(retval);
	}
	if (child != NULL) {
		/* Now fork a tx process and an rx process */
		child->tx_pid = fork();
		if (child->tx_pid == 0) {
			/* Child Process */
			transmit_loop(context, context->socket_fd, child->identity);
			child->tx_pid = 0;	/* Leave empty when done */
			printf("WARNING: Terminating Slave Parent process\n");
			kill(context->pid, SIGTERM);
			context->pid = 0;
			exit(0);
		} else {
			/* Parent Process */
			if (child->tx_pid < 0) {
				printf("ERROR: Unable to fork a TX process\n");
				printf("errno = %d = \"%s\"\n", errno, strerror(errno));
				child->tx_pid = 0;	/* Leave empty when done */
			}
		}
		child->rx_pid = fork();
		if (child->rx_pid == 0) {
			/* Child Process */
			receive_loop(context, context->socket_fd, child->identity);
			child->rx_pid = 0;	/* Leave empty when done */
			exit(0);
		} else {
			/* Parent Process */
			if (child->rx_pid < 0) {
				printf("ERROR: Unable to fork an RX process\n");
				printf("errno = %d = \"%s\"\n", errno, strerror(errno));
				printf("WARNING: ID=%s: Terminating TX process\n",
						child->identity);
				kill(child->tx_pid, SIGTERM); // = 15 = kill default
				child->tx_pid = 0;	/* Leave empty when done */
				child->rx_pid = 0;	/* Leave empty when done */
				printf("WARNING: Terminating Slave Parent process\n");
				kill(context->pid, SIGTERM);
				context->pid = 0;
			}
		}
	}
	for ( ; ; ) {
		sleep(1);
	}
	Dprintf(1, "%s(LEAVE): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	return(retval);
} /* netstress_slave() */

/*****************************************************************************
* Func: time_stamp
* Desc: Returns an ascii string representing either
*       the elapsed time or the current time
* elapsed time example output:  "0d 19h 32m 04s"
* current time example output:  "Mon Dec 14 19:32:04 2009"
*****************************************************************************/
static char *time_stamp(context_t *context)
{
	if (context->report_using_current_time == 0) {
		return(elapsed_time_stamp(context));
	} else {
		return(current_time_stamp(context));
	}
} /* time_stamp() */

/*****************************************************************************
* Func: elapsed_time_stamp
* Desc: Returns an ascii string representing the elapsed time
* example output:  "0d 09h 32m 04s"
*****************************************************************************/
static char *elapsed_time_stamp(context_t *context)
{
	static char time_buffer[64];
	time_t current_time;
	time_t elapsed_time;
	long days, hours, minutes, seconds;
	current_time = time(NULL);
	if (context->connect_time == 0L) {
		elapsed_time = 0; /* Not set yet - Assume times are the same */
	} else {
		elapsed_time = current_time - context->connect_time;
	}
	days = elapsed_time / DAYS_IN_SECONDS;
	if ((days * DAYS_IN_SECONDS) > elapsed_time) days--;
	elapsed_time -= (days * DAYS_IN_SECONDS);
	hours = elapsed_time / HOURS_IN_SECONDS;
	if ((hours * HOURS_IN_SECONDS) > elapsed_time) hours--;
	elapsed_time -= (hours * HOURS_IN_SECONDS);
	minutes = elapsed_time / MINUTES_IN_SECONDS;
	if ((minutes * MINUTES_IN_SECONDS) > elapsed_time) minutes--;
	elapsed_time -= (minutes * MINUTES_IN_SECONDS);
	seconds = elapsed_time;
	sprintf(time_buffer, "%ldd %02ldh %02ldm %02lds",
			days, hours, minutes, seconds);
	return(time_buffer);
} /* elapsed_time_stamp() */

/*****************************************************************************
* Func: current_time_stamp
* Desc: Returns an ascii string representing the current time
* example output:  "Mon Dec 14 19:32:04 2009"
*****************************************************************************/
static char *current_time_stamp(context_t *context)
{
	static char time_buffer[64];
	time_t current_time;
	char *cp;
	current_time = time(NULL);
	strncpy(time_buffer, ctime(&current_time), sizeof(time_buffer));
	cp = strchr(time_buffer, '\n');
	if (cp) {
		*cp = '\0';
	}
	return(time_buffer);
} /* current_time_stamp() */

/*****************************************************************************
* Func: transfer_speed
* Desc: return the transfer speed information in string format
*****************************************************************************/
static char *transfer_speed(
		context_t *context,
		time_t total_time, uint64_t total_byte_count,
		time_t delta_time, uint32_t delta_byte_count)
{
	static char speed_buffer[64];
	speed_buffer[0] = '\0';
	if (delta_time != 0L) {
		snprintf(speed_buffer, sizeof(speed_buffer), "%0.1f/%0.1f %s/sec",
				(((double)total_byte_count / (double)total_time) / context->f_measure),
				(((float)delta_byte_count / (float)delta_time) / context->f_measure),
				context->s_measure);
	}
	return(speed_buffer);
} /* transfer_speed() */

/*****************************************************************************
* Func: read_nBytes
* Desc: Read an incoming data packet of nBytes2Read size
* Returns: N < 0 == ERROR, N >= 0 == number of bytes read
*****************************************************************************/
static long read_nBytes(
		context_t *context,
		int socket_fd,
		unsigned char *buffer,
		long nBytes2Read)
{
	int total_nBytesRead = 0;
	int nBytesRead = 0;
	unsigned char *cp = buffer;
	for ( ; ; ) {
		nBytesRead = read(socket_fd, cp, (int)nBytes2Read);
		if (nBytesRead < 0) {
			if ((errno == EINTR) || (errno == EAGAIN)) {
				printf("WARNING: read interrupted, errno = %d = \"%s\"\n",
						errno, strerror(errno));
				continue;
			}
			printf("ERROR: read failure, errno = %d = \"%s\"\n",
					errno, strerror(errno));
			total_nBytesRead = nBytesRead; /* NOTE: nBytesRead < 0 == ERROR */
			break;
		} else {
			total_nBytesRead += nBytesRead;
			cp += nBytesRead;
			nBytes2Read -= nBytesRead;
			if (nBytes2Read <= 0) {
				/* NOTE: nBytesRead >= 0 == number of bytes read */
				break;
			}
		}
	} /* End of loop */
	return((long)total_nBytesRead);
} /* read_nBytes() */

/*****************************************************************************
* Func: receive_loop
* Desc: The receive (RX) loop
*****************************************************************************/
static void receive_loop(
		context_t *context,
		int socket_fd,
		char *identity)
{
	uint32_t loopcount = 0;
	unsigned char buffer[MAX_PACKET_SIZE+sizeof(long)];
	uint32_t *lbuffer = (uint32_t *)buffer;
	uint32_t *lrbuffer = (uint32_t *)context->randomRxBuffer;

	uint32_t delta_byte_count = 0L;
	uint64_t total_byte_count = 0L;
	uint32_t our_last_seconds_counter = *seconds_counter;
	uint32_t our_seconds_counter = 0L;
	int our_report_count = 0;
	time_t start_time = 0L;

	/*
	* Allow the developer to pause to attach a debugger
	*/
	if (debugging_receive_loop) {
		int wait_here = 30;
		while(wait_here > 0) {
			wait_here--;
			sleep(1);
		}
	}

	/*
	* Don't do unwanted test
	*/
	if (((context->master == 1)&&(context->master_read_slave_write_test == 0))
	||  ((context->master == 0)&&(context->master_write_slave_read_test == 0)))
	{
		for ( ; ; ) {
			sleep(1);
			continue;
		}
		exit(0);
		return;
	}

	Dprintf(1, "%s(ENTER): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	Dprintf(1, "%s(): %s: PPid:Pid=%d:%d\n",
			__FUNCTION__,
			context->master?"Master":"Slave",
			getppid(), getpid());

	/* Catch and handle death of parent process */
	(void) signal(SIGPARENT, &DEATH_OF_PARENT_handler);
	watch_for_DEATH_OF_PARENT();

	printf("ID=%s: %s: %u read transactions\n",
			identity, time_stamp(context), loopcount);
	context->connect_time = time(NULL);
	start_time = context->connect_time;

	/*
	* Loop until we error out, detect data corruption, or quit
	*/
	for ( ; ; ) {

		static int initialized_randomRxBuffer = 0;
		uint32_t packet_number;
		uint32_t seed;
		long nBytes2Read;
		long nBytesRead;
		long nLongsRead;

		/*
		* Read an incoming header & buffer
		* [ packet_number:4 ] [ seed:4 ] [ length:4 ]
		*/
		nBytes2Read = HEADER_SIZE;
		nBytesRead =  read_nBytes(context, socket_fd, buffer, nBytes2Read);
		if (nBytesRead < nBytes2Read) {
			/*
			* Read encountered an error
			* OR
			* Read did not get enough data for a valid header
			*/
			break;
		}

		/*
		* Extract the header information
		*/
		packet_number = lbuffer[0];
		seed = lbuffer[1];
		nBytes2Read = lbuffer[2];
		Vprintf(2, "Read(N:%lu,S:%lu,L:%lu)\n", packet_number, seed, nBytes2Read);
		//printf("-");

		/*
		* Fill a buffer twice the size of MAX_PACKET_SIZE with random
		* numbers we can use instead of getting random numbers each time.
		*/
		if ( ! initialized_randomRxBuffer) {
			initialized_randomRxBuffer++;
			fillRandomBuffer(context, 'R', seed);
		}

		/*
		* Read an incoming buffer
		* [ data:length ]
		*/
		nBytesRead =  read_nBytes(context, socket_fd, buffer, nBytes2Read);
		if (nBytesRead < nBytes2Read) {
			/*
			* Read encountered an error
			* OR
			* Read did not get specified amount of data
			*/
			break;
		}
		nLongsRead = nBytesRead / sizeof(uint32_t);

		/*
		* Verify the data read
		*/
		if ( ! context->fast) {
			/* Use seed if using real_random, else use seed converted to an offset */
			if (context->real_random) {
				int i;
				srandom((unsigned int)seed);
				for (i = 0; i < nLongsRead; i++) {
					uint32_t random_number = random();
					if (lbuffer[i] != random_number) {
						printf("!!! READ: Data error @ %d !!!!!!!!!!!!!!!!!!!\n", i);
						break;
					}
				}
			} else {
				int offset = (seed%(uint32_t)(LMAX_PACKET_SIZE)) & (~3);
				Vprintf(2, "READ: %lu, %u: %lu:%lu\n",
						seed, (size_t)nBytesRead,
						lbuffer[0], lrbuffer[offset]);
				if (memcmp(buffer, &(lrbuffer[offset]), nBytesRead) != 0) {
					printf("!!! READ: Data error !!!!!!!!!!!!!!!!!!!\n");
					break;
				}
			}
		}

		/*
		* Gather statistics
		*/
		loopcount++;
		delta_byte_count += (uint32_t)nBytesRead + (uint32_t)HEADER_SIZE;
		total_byte_count += (uint64_t)nBytesRead + (uint32_t)HEADER_SIZE;
		if (our_last_seconds_counter != *seconds_counter) {
			our_last_seconds_counter = *seconds_counter;
			our_seconds_counter++;
			//printf("Read second counter = %lu\n", our_seconds_counter);
			//printf("Read loop counter = %lu\n", loopcount);
		}

		/*
		* Report statistics
		*/
		if (our_seconds_counter >= context->report_every_n_seconds) {
			time_t current_time = 0L;
			time_t delta_time = 0L;
			time_t total_time = 0L;
			our_seconds_counter = 0L;
			our_report_count++;
			printf("ID=%s: %s: %u read transactions",
					identity, time_stamp(context), loopcount);
			if (our_report_count >= context->benchmark_every_n_reports) {
				our_report_count = 0;
				current_time = time(NULL);
				delta_time = current_time - start_time;
				total_time = current_time - context->connect_time;
				printf(" @ %s", transfer_speed(context,
							total_time, total_byte_count,
							delta_time, delta_byte_count));
				start_time = current_time;
				delta_byte_count = 0L;
			}
			printf("\n");
		}

	} /* End of outer loop */
	Dprintf(1, "%s(LEAVE): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	exit(0);
	return;
} /* receive_loop() */

/*****************************************************************************
* Func: write_nBytes
* Desc: Write an outgoing data packet of nBytes2Write size
* Returns: N < 0 == ERROR, N >= 0 == number of bytes written
*****************************************************************************/
static long write_nBytes(
		context_t *context,
		int socket_fd,
		unsigned char *buffer,
		long nBytes2Write)
{
	int total_nBytesWritten = 0;
	unsigned char *cp = buffer;
	for ( ; ; ) {
		long nBytesWritten = write(socket_fd, cp, (int)nBytes2Write);
		if (nBytesWritten < 0) {
			if ((errno == EINTR) || (errno == EAGAIN)) {
				printf("WARNING: write interrupted, errno = %d = \"%s\"\n",
						errno, strerror(errno));
				continue;
			}
			printf("ERROR: write failure, errno = %d = \"%s\"\n",
					errno, strerror(errno));
			total_nBytesWritten = nBytesWritten; /* NOTE: nBytesWritten < 0 == ERROR */
			break;
		} else {
			total_nBytesWritten += nBytesWritten;
			cp += nBytesWritten;
			nBytes2Write -= nBytesWritten;
			if (nBytes2Write <= 0) {
				/* NOTE: nBytesWritten >= 0 == number of bytes written */
				break;
			}
		}
	} /* End of loop */
	return((long)total_nBytesWritten);
} /* write_nBytes() */

/*****************************************************************************
* Func: transmit_loop
* Desc: The transmit (TX) loop
*****************************************************************************/
static void transmit_loop(
		context_t *context,
		int socket_fd,
		char *identity)
{
	uint32_t packet_number = 0;
	uint32_t loopcount = 0;

	unsigned char buffer[MAX_PACKET_SIZE+sizeof(long)+HEADER_SIZE];
	uint32_t *lbuffer = (uint32_t *)buffer;
	uint32_t *lrbuffer = (uint32_t *)context->randomTxBuffer;

	uint32_t next_seed=0L;

	uint32_t delta_byte_count = 0L;
	uint64_t total_byte_count = 0L;
	uint32_t our_last_seconds_counter = *seconds_counter;
	uint32_t our_seconds_counter = 0L;
	int our_report_count = 0;
	time_t start_time = 0L;

	/*
	* Allow the developer to pause to attach a debugger
	*/
	if (debugging_transmit_loop) {
		int wait_here = 30;
		while(wait_here > 0) {
			wait_here--;
			sleep(1);
		}
	}

	/*
	* Don't do unwanted test
	*/
	if (((context->master == 1)&&(context->master_write_slave_read_test == 0))
	||  ((context->master == 0)&&(context->master_read_slave_write_test == 0)))
	{
		for ( ; ; ) {
			sleep(1);
			continue;
		}
		exit(0);
		return;
	}

	Dprintf(1, "%s(ENTER): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	Dprintf(1, "%s(): %s: PPid:Pid=%d:%d\n",
			__FUNCTION__,
			context->master?"Master":"Slave",
			getppid(), getpid());

	/* Catch and handle death of parent process */
	(void) signal(SIGPARENT, &DEATH_OF_PARENT_handler);
	watch_for_DEATH_OF_PARENT();

	/*
	* Fill a buffer twice the size of MAX_PACKET_SIZE with random
	* numbers we can use instead of getting random numbers each time.
	*/
	fillRandomBuffer(context, 'T', context->seed);

	/* Use seed if using real_random */
	next_seed = context->seed;
	printf("ID=%s: %s: %u write transactions\n",
			identity, time_stamp(context), loopcount);
	context->connect_time = time(NULL);
	start_time = context->connect_time;

	/*
	* Loop until we error out, detect data corruption, or quit
	*/
	for ( ; ; ) {
		int nBytes2Write, total_nBytes2Write;
		int nBytesWritten;
		uint32_t seed;
		int offset;
		/*
		* Increment the packet number
		*/
		packet_number++;

		/*
		* Construct an outgoing header & buffer
		* [ packet_number:4 ] [ seed:4 ] [ length:4 ]
		* [ data:length ]
		*/

		/*
		* Fill in the header information
		*/
		seed = next_seed;
		offset = (seed%(uint32_t)(LMAX_PACKET_SIZE)) & (~3);
		next_seed = random();
		nBytes2Write = random()%(uint32_t)(MAX_PACKET_SIZE-HEADER_SIZE);
		/* Ensure at least the seed & next length get sent */
		lbuffer[0] = packet_number;			/* Packet Number */
		lbuffer[1] = seed;		/* Seed */
		lbuffer[2] = nBytes2Write;			/* Data Length */
		total_nBytes2Write = nBytes2Write + HEADER_SIZE;

		/*
		* Fill in the buffer
		*/
		if (context->real_random) {
			int i;
			long total_nLongs2Write = total_nBytes2Write / sizeof(uint32_t);
			srandom((unsigned int)seed);
			for (i = LHEADER_SIZE; i < total_nLongs2Write; i++) {
				uint32_t random_number = random();
				lbuffer[i] = random_number;
			}
		} else {
			memcpy(&(lbuffer[LHEADER_SIZE]), &(lrbuffer[offset]), (size_t)nBytes2Write);
			Vprintf(3, "WRITE: %lu, %u: %lu:%lu\n",
					seed, (size_t)nBytes2Write,
					lbuffer[LHEADER_SIZE], lrbuffer[offset]);
		}

		Vprintf(3, "Writing(N:%lu,S:%lu,L:%lu)\n", packet_number, seed, nBytes2Write);
		//printf("+");

		/*
		* Write an outgoing header & buffer
		* [packet_number:4] [ seed:4 ] [ next_length:4 ] [ data:length ]
		*/
		nBytesWritten = write_nBytes(context, socket_fd, buffer, total_nBytes2Write);
		if (nBytesWritten < total_nBytes2Write) {
			/*
			* Write encountered an error
			* OR
			* Write did not send all of the data
			*/
			break;	/* Outer loop */
		}

		/*
		* Gather statistics
		*/
		loopcount++;
		delta_byte_count += (uint32_t)nBytesWritten;
		total_byte_count += (uint64_t)nBytesWritten;
		if (our_last_seconds_counter != *seconds_counter) {
			our_last_seconds_counter = *seconds_counter;
			our_seconds_counter++;
			//printf("Write second counter = %lu\n", our_seconds_counter);
			//printf("Write loop counter = %lu\n", loopcount);
		}

		/*
		* Report statistics
		*/
		if (our_seconds_counter >= context->report_every_n_seconds) {
			time_t current_time = 0L;
			time_t delta_time = 0L;
			time_t total_time = 0L;
			our_seconds_counter = 0L;
			our_report_count++;
			printf("ID=%s: %s: %u write transactions",
					identity, time_stamp(context), loopcount);
			if (our_report_count >= context->benchmark_every_n_reports) {
				our_report_count = 0;
				current_time = time(NULL);
				delta_time = current_time - start_time;
				total_time = current_time - context->connect_time;
				printf(" @ %s", transfer_speed(context,
							total_time, total_byte_count,
							delta_time, delta_byte_count));
				start_time = current_time;
				delta_byte_count = 0L;
			}
			printf("\n");
		}

	} /* End of outer loop */
	Dprintf(1, "%s(LEAVE): %s\n",
			__FUNCTION__, context->master?"master":"Slave");
	exit(0);
	return;
} /* transmit_loop() */



//----------------------------------------------------------------------------//
// Emacs Editor Settings
//
// Local Variables:
// indent-tabs-mode:t
// End:
//----------------------------------------------------------------------------//