summaryrefslogtreecommitdiff
path: root/usr/src/lib/libslp/javalib/com/sun/slp/SLPConfig.java
blob: c8675b5fa21755dce221d969a4cc07765a5b243c (plain)
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
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "License").
 * You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright 1999-2003 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 *
 */

//  SLPConfig.java
//

/**
 * This class is a singleton - it has the configuration which
 * is the default.  It reads from a configuration file and
 * this overrides the default.  If the config file does not
 * expressly forbid it, the ServiceLocationManager interface
 * allows some of these configuration options to be modified.
 * This configuration is refered to by many points of the
 * implementation. Note that the class itself is abstract,
 * and is extended by two classes, one that allows slpd to
 * run as an SA server only, the other allows it to run
 * as a DA as well.
 *
 * @see com.sun.slp.ServiceLocationManager
 */

package com.sun.slp;

import java.net.*;
import java.util.*;
import java.text.*;
import java.io.*;

/*
 * This class contains all configuration information.  It
 * is hard coded to know the defaults, and will read a config
 * file if it is present.  The config file will override the
 * default values and policy.  If the config file allows it
 * the user may reset some of these values using the
 * ServiceLocationManager interface.
 *
 */
class SLPConfig {

    /**
     * A Java properties file defines `\' as an escape character, which
     * conflicts with the SLP API escape convention. Therefore, we need
     * to subclass properties so we can parse in the file ourselves.
     */

    public static class SLPProperties extends Properties {

	SLPProperties(Properties p) {
	    super(p);

	}

	// Parse the SLP properties file ourselves. Groan! We don't recognize
	//  backslash as an escape.

	public synchronized void load(InputStream in) throws IOException {

	    BufferedReader rd = new BufferedReader(new InputStreamReader(in));

	    while (rd.ready()) {
		String ln = rd.readLine();

		// Throw out anything that begins with '#' or ';'.

		if (ln.startsWith("#") ||
		    ln.startsWith(";") ||
		    ln.length() <= 0) {
		    continue;

		}

		// Parse out equals sign, if any. Note that we trim any
		//  white space preceding or following data strings.   
		//  Although the grammar doesn't allow it, users may 
		//  enter blanks in their configuration files.
		// NOTE:  White space is not allowed in the data of
		//  property tag or values.  If included, according
		//  to RFC 2614, Section 2.1 these MUST be escaped, 
		//  ie. space would be represented with '\20'.  
		//  Therefore, it is *completely* safe to perform 
		//  these trim()s.  They will catch errors resulting 
		//  from sloppy data entry in slp.conf files and 
		//  never corrupt or alter correctly formatted 
		//  properties.

		SLPTokenizer tk = new SLPTokenizer(ln, "=");

		if (!tk.hasMoreTokens()) {// empty line...
		    continue;

		}

		String prop = tk.nextToken().trim();

		if (prop.trim().length() <= 0) {// line has just spaces...
		    continue;

		}

		if (!tk.hasMoreTokens()) {// line has no definition...
		    continue;

		}

		// Register the property.
		String def = tk.nextToken().trim();
		this.setProperty(prop, def);
	    }
	}

    }

    protected SLPConfig() {

	// Create a temporary, default log to report any errors during
	//  configuration.
	log = new StderrLog();

	// Initialize properties. Properties on command line override config
	//  file properties, and both override defaults.

	Properties sysProps = (Properties)(System.getProperties().clone());

	// Load Defalts.

	try {
	    Class.forName("com.sun.slp.Defaults");

	} catch (ClassNotFoundException ex) {

	    Assert.printMessageAndDie(this,
				      "no_class",
				      new Object[] {"com.sun.slp.Defaults"});
	}

	// System properties now contain Defaults
	Properties defaultProps = System.getProperties();

	// Load config file.

	SLPProperties slpProps = new SLPProperties(new Properties());
	try {
	    InputStream fis = getConfigURLStream();
	    if (fis != null) {
		slpProps.load(fis);
		System.setProperties(slpProps);
	    }

	} catch (IOException ex) {
	    writeLog("unparsable_config_file",
		     new Object[] {ex.getMessage()});
	}

	// Add config properties to Defaults, overwritting any pre-existing
	//  entries
	defaultProps.putAll(slpProps);

	// Now add in system props, overwritting any pre-existing entries
	defaultProps.putAll(sysProps);

	System.setProperties(defaultProps);


	// Initialize useScopes property. This is read-only after the file
	//  has been loaded.

	configuredScopes = initializeScopes("net.slp.useScopes");
	saConfiguredScopes = (Vector)configuredScopes.clone();

	// Add default scope to scopes for SA.

	if (saConfiguredScopes.size() <= 0) {
	    saConfiguredScopes.addElement(Defaults.DEFAULT_SCOPE);

	}

	// Initialize SA scopes. This uses a Sun specific property for
	//  scopes only used by the SA and adds in the DA scopes.

	saOnlyScopes = initializeScopes(DATable.SA_ONLY_SCOPES_PROP);

	// Initialized preconfigured DAs.

	preconfiguredDAs = initializePreconfiguredDAs();

	// Initialize broadcast flag.

	broadcastOnly = Boolean.getBoolean("net.slp.isBroadcastOnly");

	// Initialize logging. Default is stderr, first check for alternate.

	String failed = null;

	try {
	    String loggerClassName =
		System.getProperty("sun.net.slp.loggerClass");
	    if (loggerClassName != null) {
		Class loggerClass = Class.forName(loggerClassName);
		// Protect against disastrous pilot error, such as trying
		// to use com.sun.slp.SLPConfig as the log class
		// (causes stack recursion)
		if (Class.forName("java.io.Writer").isAssignableFrom(
							loggerClass)) {
		    Object logger = loggerClass.newInstance();
		    log = (Writer) logger;
		} else {
		    failed = formatMessage(
					   "bad_log_class",
					   new Object[] {
			loggerClass.toString()}) + "\n";
		}
	    }

	} catch (Throwable ex) {
	    log = null;
	    failed = formatMessage(
				   "bad_log",
				   new Object[] {
		ex.toString()}) + "\n";
	}

	// If no alternate log, revert to minimal default
	if (log == null) {
	    log = new StderrLog();

	    // If the alternate log failed, log it through the default log
	    if (failed != null) {
		try {
		    synchronized (log) {
			log.write(failed);
			log.flush();
		    }
		} catch (IOException giveUp) {}
	    }
	}

    }

    private InputStream getConfigURLStream() {

	// Open a URL onto the configuration file.

	String conf = System.getProperty("sun.net.slp.configURL");

	if (conf == null) {
	    conf = Defaults.SOLARIS_CONF;

	}

	InputStream str = null;

	try {

	    URL confURL = new URL(conf);

	    str = confURL.openStream();

	} catch (MalformedURLException ex) {
	    writeLog("url_malformed",
		     new Object[] {conf});

	} catch (IOException ex) {
	    if (conf != Defaults.SOLARIS_CONF) {
		// don't complain if we can't find our own default
		writeLog("unparsable_config_file",
			 new Object[] {ex.getMessage()});
	    }

	}

	return str;
    }

    // ------------------------------------------------------------
    // Property manipulation functions
    //

    private boolean OKBound(int i, int lb, int ub) {
	if (i < lb || i > ub)
	    return false;
	else
	    return true;
    }

    int getIntProperty(String prop, int df, int lb, int ub) {

	int i = Integer.getInteger(prop, df).intValue();

	if (OKBound(i, lb, ub)) {
	    return i;

	} else {
	    writeLog("bad_prop_tag", new Object[] {prop});

	    return df;
	}
    }

    // ------------------------------------------------------------
    // Multicast radius
    //
    private int iMinMCRadius = 1;   // link local scope
    private int iMaxMCRadius = 255; // universal scope

    int getMCRadius() {
	return getIntProperty("net.slp.multicastTTL",
			      Defaults.iMulticastRadius,
			      iMinMCRadius,
			      iMaxMCRadius);
    }

    // ------------------------------------------------------------
    // Heartbeat interval, seconds.
    //
    private final int iMinHeart = 2000;    // 10 minutes
    private final int iMaxHeart = 259200000; // 3 days

    int getAdvertHeartbeatTime() {
	return getIntProperty("net.slp.DAHeartBeat",
			      Defaults.iHeartbeat,
			      iMinHeart,
			      iMaxHeart);
    }

    // ------------------------------------------------------------
    // Active discovery interval, seconds.
    //

    private final int iMinDisc = 300;    // 5 minutes
    private final int iMaxDisc = 10800;  // 3 hours

    int getActiveDiscoveryInterval() {

	// We allow zero in order to turn active discovery off, but
	//  if 5 minutes is the smallest actual time.

	int prop = getIntProperty("net.slp.DAActiveDiscoveryInterval",
				  Defaults.iActiveDiscoveryInterval,
				  0,
				  iMaxDisc);
	if (prop > 0 && prop < iMinDisc) {
	    writeLog("bad_prop_tag",
		     new Object[] {"net.slp.DAActiveDiscoveryInterval"});
	    return iMinDisc;

	}

	return prop;
    }


    // ------------------------------------------------------------
    // Active discovery granularity, seconds.
    //

    private int iMaxDiscGran = iMaxDisc * 2;

    int getActiveDiscoveryGranularity() {
	return getIntProperty("sun.net.slp.DAActiveDiscoveryGranularity",
			      Defaults.iActiveDiscoveryGranularity,
			      0,
			      iMaxDiscGran);
    }

    // ------------------------------------------------------------
    // Bound for random wait, milliseconds.
    //

    private final int iMinWait = 1000;  // 1 sec.
    private final int iMaxWait = 3000;  // 3 sec.

    int getRandomWaitBound() {
	return getIntProperty("net.slp.randomWaitBound",
			      Defaults.iRandomWaitBound,
			      iMinWait,
			      iMaxWait);
    }

    private static Random randomWait = null;

    long getRandomWait() {

	if (randomWait == null) {
	    randomWait = new Random();
	}

	double r = randomWait.nextDouble();
	double max = (double)getRandomWaitBound();

	return (long)(max * r);
    }

    // ------------------------------------------------------------
    // TCP timeout, milliseconds.
    //
    final static private int iMinTimeout = 100;
    final static private int iMaxTimeout = 360000;

    int getTCPTimeout() {
	return getIntProperty("sun.net.slp.TCPTimeout",
			      Defaults.iTCPTimeout,
			      iMinTimeout,
			      iMaxTimeout);
    }

    // ------------------------------------------------------------
    //  Path MTU
    //
    private final int iMinMTU = 128; // used for some ppp connections
    private final int iMaxMTU = 8192; // used on some LANs

    int getMTU() {
	return getIntProperty("net.slp.MTU",
			      Defaults.iMTU,
			      iMinMTU,
			      iMaxMTU);
    }


    // ------------------------------------------------------------
    // Serialized registrations.
    //

    String getSerializedRegURL() {

	return System.getProperty("net.slp.serializedRegURL", null);

    }

    // ------------------------------------------------------------
    // Are we running as a DA or SA server?
    //

    protected static boolean isSA = false;

    boolean isDA() {
	return false;
    }

    boolean isSA() {
	return isSA;
    }

    // ------------------------------------------------------------
    // DA and SA attributes
    //

    Vector getDAAttributes() {
	return getAttributes("net.slp.DAAttributes",
			     Defaults.defaultDAAttributes,
			     true);
    }

    Vector getSAAttributes() {
	return getAttributes("net.slp.SAAttributes",
			     Defaults.defaultSAAttributes,
			     false);
    }

    private Vector getAttributes(String prop,
				 Vector defaults,
				 boolean daAttrs) {
	String attrList =
	    System.getProperty(prop);

	if (attrList == null || attrList.length() <= 0) {
	    return (Vector)defaults.clone();

	}

	try {
	    Vector sAttrs =
		SrvLocHeader.parseCommaSeparatedListIn(attrList, false);

	    Vector attrs = new Vector();
	    int i, n = sAttrs.size();

	    // Create attribute objects.

	    for (i = 0; i < n; i++) {
		String attrExp = (String)sAttrs.elementAt(i);
		ServiceLocationAttribute attr =
		    new ServiceLocationAttribute(attrExp, false);

		// If this is the min-refresh-interval, then check the value.

		if (daAttrs &&
		    attr.getId().equals(
				Defaults.MIN_REFRESH_INTERVAL_ATTR_ID)) {
		    Vector values = attr.getValues();
		    boolean errorp = true;
	
		    if (values != null && values.size() == 1) {
			Object val = values.elementAt(0);

			if (val instanceof Integer) {
			    int ival = ((Integer)val).intValue();

			    if (ival >= 0 &&
				ival <= ServiceURL.LIFETIME_MAXIMUM) {
				errorp = false;

			    }
			}
		    }

		    // Throw exception if it didn't work.

		    if (errorp) {
			throw new ServiceLocationException(
				ServiceLocationException.PARSE_ERROR,
				"syntax_error_prop",
				new Object[] {prop, attrs});

		    }
		}

		// Add attribute to vector.

		attrs.addElement(attr);

	    }

	    return attrs;

	} catch (Exception ex) {

	    writeLog("syntax_error_prop",
		     new Object[] {prop, attrList});
	    return (Vector)defaults.clone();

	}
    }

    // -------------------------------------------------------------
    // Do we support V1?
    //

    boolean isV1Supported() {
	return false;
    }

    // -------------------------------------------------------------
    // Queue length for server socket.
    //

    int getServerSocketQueueLength() {
	return getIntProperty("sun.net.slp.serverSocketQueueLength",
			      Defaults.iSocketQueueLength,
			      0,
			      Integer.MAX_VALUE);
    }

    // ------------------------------------------------------------
    // Testing options
    //


    boolean traceAll() {// not official!
	return Boolean.getBoolean("sun.net.slp.traceALL");
    }

    boolean regTest() {
	if (Boolean.getBoolean("sun.net.slp.traceALL") ||
	    Boolean.getBoolean("net.slp.traceReg"))
	    return true;
	else
	    return false;
    }

    boolean traceMsg() {
	if (Boolean.getBoolean("sun.net.slp.traceALL") ||
	    Boolean.getBoolean("net.slp.traceMsg"))
	    return true;
	else
	    return false;
    }

    boolean traceDrop() {
	if (Boolean.getBoolean("sun.net.slp.traceALL") ||
	    Boolean.getBoolean("net.slp.traceDrop"))
	    return true;
	else
	    return false;
    }

    boolean traceDATraffic() {
	if (Boolean.getBoolean("sun.net.slp.traceALL") ||
	    Boolean.getBoolean("net.slp.traceDATraffic"))
	    return true;
	else
	    return false;
    }

    // cannot use Boolean.getBoolean as the default is 'true'
    // using that mechanism, absense would be considered 'false'

    boolean passiveDADetection() {

	String sPassive =
	    System.getProperty("net.slp.passiveDADetection", "true");
	if (sPassive.equalsIgnoreCase("true"))
	    return true;
	else
	    return false;

    }

    // Initialized when the SLPConfig object is created to avoid changing
    //  during the program.
    private boolean broadcastOnly = false;

    boolean isBroadcastOnly() {
	return broadcastOnly;
    }


    // ------------------------------------------------------------
    // Multicast/broadcast socket mangement.
    //
    DatagramSocket broadSocket = null;   // cached broadcast socket.


    // Reopen the multicast/broadcast socket bound to the
    //  interface. If groups is not null, then join all
    //  the groups. Otherwise, this is send only.

    DatagramSocket
	refreshMulticastSocketOnInterface(InetAddress interfac,
					  Vector groups) {

	try {

	    // Reopen it.

	    DatagramSocket dss =
		getMulticastSocketOnInterface(interfac,
					      (groups == null ? true:false));

	    if ((groups != null) && (dss instanceof MulticastSocket)) {
		int i, n = groups.size();
		MulticastSocket mss = (MulticastSocket)dss;

		for (i = 0; i < n; i++) {
		    InetAddress maddr = (InetAddress)groups.elementAt(i);

		    mss.joinGroup(maddr);

		}
	    }

	    return dss;

	} catch (Exception ex) {

	    // Any exception in error recovery causes program to die.

	    Assert.slpassert(false,
			  "cast_socket_failure",
			  new Object[] {ex, ex.getMessage()});

	}

	return null;
    }

    // Open a multicast/broadcast socket on the interface. Note that if
    //  the socket is broadcast, the network interface is not specified in the
    //  creation message. Is it bound to all interfaces? The isSend parameter
    //  specifies whether the socket is for send only.

    DatagramSocket
	getMulticastSocketOnInterface(InetAddress interfac, boolean isSend)
	throws ServiceLocationException {

	DatagramSocket castSocket = null;

	// Substitute broadcast if we are configured for it.

	if (isBroadcastOnly()) {

	    try {

		// If transmit, then simply return a new socket.

		if (isSend) {
		    castSocket = new DatagramSocket();

		} else {

		    // Return cached socket if there.

		    if (broadSocket != null) {
			castSocket = broadSocket;

		    } else {

			// Make a new broadcast socket.

			castSocket =
			    new DatagramSocket(Defaults.iSLPPort,
					       getBroadcastAddress());

		    }

		    // Cache for future reference.

		    broadSocket = castSocket;
		}
	    } catch (SocketException ex) {
		throw 	
		    new ServiceLocationException(
				ServiceLocationException.NETWORK_INIT_FAILED,
				"socket_creation_failure",
				new Object[] {
			getBroadcastAddress(), ex.getMessage()});
	    }

	} else {

	    // Create a multicast socket.

	    MulticastSocket ms;

	    try {

		if (isSend) {
		    ms = new MulticastSocket();

		} else {
		    ms = new MulticastSocket(Defaults.iSLPPort);

		}

	    } catch (IOException ex) {
		throw
		    new ServiceLocationException(
				ServiceLocationException.NETWORK_INIT_FAILED,
				"socket_creation_failure",
				new Object[] {interfac, ex.getMessage()});
	    }


	    try {

		// Set the TTL and the interface on the multicast socket.
		//  Client is responsible for joining group.

		ms.setTimeToLive(getMCRadius());
		ms.setInterface(interfac);

	    } catch (IOException ex) {
		throw
		    new ServiceLocationException(
				ServiceLocationException.NETWORK_INIT_FAILED,
				"socket_initializtion_failure",
				new Object[] {interfac, ex.getMessage()});
	    }

	    castSocket = ms;

	}

	return castSocket;
    }

    // ------------------------------------------------------------
    // Type hint
    //

    // Return a vector of ServiceType objects for the type hint.

    Vector getTypeHint() {
	Vector hint = new Vector();
	String sTypeList = System.getProperty("net.slp.typeHint", "");

	if (sTypeList.length() <= 0) {
	    return hint;

	}

	// Create a vector of ServiceType objects for the type hint.

	try {

	    hint = SrvLocHeader.parseCommaSeparatedListIn(sTypeList, true);

	    int i, n = hint.size();

	    for (i = 0; i < n; i++) {
		String type = (String)hint.elementAt(i);

		hint.setElementAt(new ServiceType(type), i);

	    }
	} catch (ServiceLocationException ex) {

	    writeLog("syntax_error_prop",
		     new Object[] {"net.slp.typeHint", sTypeList});

	    hint.removeAllElements();

	}

	return hint;

    }

    // ------------------------------------------------------------
    // Configured scope handling
    //

    // Vector of configured scopes.

    private Vector configuredScopes = null;

    // Vector of configures scopes for SA.

    private Vector saConfiguredScopes = null;

    // Vector of scopes only in the sa server.

    private Vector saOnlyScopes = null;

    // Return the configured scopes.

    Vector getConfiguredScopes() {
	return (Vector)configuredScopes.clone();
    }

    // Return SA scopes.

    Vector getSAOnlyScopes() {
	return (Vector)saOnlyScopes.clone();

    }

    // Return the configured scopes for the SA.

    Vector getSAConfiguredScopes() {
	return (Vector)saConfiguredScopes.clone();

    }

    // Add scopes discovered during preconfigured DA contact.
    //  These count as configured scopes.

    void addPreconfiguredDAScopes(Vector scopes) {

	int i, n = scopes.size();

	for (i = 0; i < n; i++) {
	    Object scope = scopes.elementAt(i);

	    if (!configuredScopes.contains(scope)) {
		configuredScopes.addElement(scope);

	    }

	    // There better be none extra here for the SA server/DA.

	    if (isSA() || isDA()) {
		Assert.slpassert(saConfiguredScopes.contains(scope),
			      "sa_new_scope",
			      new Object[] {scope, saConfiguredScopes});

	    }
	}
    }

    // Initialize the scopes list on property.

    private Vector initializeScopes(String prop) {

	String sScopes = System.getProperty(prop);

	if (sScopes == null || sScopes.length() <= 0) {
	    return new Vector();
	}

	try {

	    Vector vv =
		SrvLocHeader.parseCommaSeparatedListIn(sScopes, true);

	    // Unescape scope strings.

	    SLPHeaderV2.unescapeScopeStrings(vv);

	    // Validate, lower case scope names.

	    DATable.validateScopes(vv, getLocale());

	    if (vv.size() > 0) {
		return vv;
	    }

	} catch (ServiceLocationException ex) {
	    writeLog("syntax_error_prop",
		     new Object[] {
		prop,
		    sScopes});
	

	}

	return new Vector();
    }

    // Vector of preconfigured DAs. Read only after initialized.

    private Vector preconfiguredDAs = null;

    // Return a vector of DA addresses.

    Vector getPreconfiguredDAs() {
	return (Vector)preconfiguredDAs.clone();

    }

    // Initialize preconfigured DA list.

    private Vector initializePreconfiguredDAs() {
	String sDAList = System.getProperty("net.slp.DAAddresses", "");
	Vector ret = new Vector();

	sDAList.trim();

	if (sDAList.length() <= 0) {
	    return ret;

	}

	try {

	    ret = SrvLocHeader.parseCommaSeparatedListIn(sDAList, true);

	} catch (ServiceLocationException ex) {

	    writeLog("syntax_error_prop",
		     new Object[] {"net.slp.DAAddress", sDAList});

	    return ret;

	}

	// Convert to InetAddress objects.

	int i;

	for (i = 0; i < ret.size(); i++) {
	    String da = "";

	    try {
		da = ((String)ret.elementAt(i)).trim();
		InetAddress daAddr = InetAddress.getByName(da);

		ret.setElementAt(daAddr, i);

	    } catch (UnknownHostException ex) {

		writeLog("resolve_failed",
			 new Object[] {da});

		/*
		 *  Must decrement the index 'i' otherwise the next iteration
		 *  around the loop will miss the element immediately after
		 *  the element removed.
		 *
		 *  WARNING: Do not use 'i' again until the loop has
		 *           iterated as it may, after decrementing,
		 *           be negative.
		 */
		ret.removeElementAt(i);
		i--;
		continue;
	    }
	}


	return ret;
    }

    // ------------------------------------------------------------
    // SLPv1 Support Switches
    //

    boolean getSLPv1NotSupported() {// not official!
	return Boolean.getBoolean("sun.net.slp.SLPv1NotSupported");

    }

    boolean getAcceptSLPv1UnscopedRegs() {// not official!

	if (!getSLPv1NotSupported()) {
	    return Boolean.getBoolean("sun.net.slp.acceptSLPv1UnscopedRegs");

	}

	return false;
    }

    // ------------------------------------------------------------
    // Accessor for SLPConfig object
    //

    protected static SLPConfig theSLPConfig = null;

    static SLPConfig getSLPConfig() {

	if (theSLPConfig == null) {
	    theSLPConfig = new SLPConfig();
	}

	return theSLPConfig;

    }

    /**
     * @return Maximum number of messages/objects to return.
     */

    int getMaximumResults()  {
	int i = Integer.getInteger("net.slp.maxResults",
				   Defaults.iMaximumResults).intValue();
	if (i == -1) {
	    i = Integer.MAX_VALUE;

	}

	if (OKBound(i, 1, Integer.MAX_VALUE)) {
	    return i;

	} else {

	    writeLog("bad_prop_tag",
		     new Object[] {
		"net.slp.maxResults"});

	    return Defaults.iMaximumResults;

	}
    }

    /**
     * Convert a language tag into a locale.
     */

    static Locale langTagToLocale(String ltag) {

	// We treat the first part as the ISO 639 language and the
	// second part as the ISO 3166 country tag, even though RFC
	// 1766 doesn't necessarily require that. We should probably
	// use a lookup table here to determine if they are correct.

	StringTokenizer tk = new StringTokenizer(ltag, "-");
	String lang = "";
	String country = "";

	if (tk.hasMoreTokens()) {
	    lang = tk.nextToken();

	    if (tk.hasMoreTokens()) {
		country = tk.nextToken("");
					// country name may have "-" in it...

	    }
	}

	return new Locale(lang, country);
    }

    /**
     * Convert a Locale object into a language tag for output.
     *
     * @param locale The Locale.
     * @return String with the language tag encoded.
     */

    static String localeToLangTag(Locale locale) {

	// Construct the language tag.

	String ltag = locale.getCountry();
	ltag = locale.getLanguage() + (ltag.length() <= 0 ? "" : ("-" + ltag));

	return ltag;

    }

    /**
     * @return the language requests will be made in.
     */
    static Locale  getLocale()    {
	String s = System.getProperty("net.slp.locale");

	if (s != null && s.length() > 0) {
	    return langTagToLocale(s);

	} else {

	    // Return the Java default if the SLP property is not set.

	    return Locale.getDefault();

	}
    }

    /**
     * @return the InetAddress of the broadcast interface.
     */

    static private InetAddress broadcastAddress;

    static InetAddress getBroadcastAddress() {
	if (broadcastAddress == null) {

	    try {
		broadcastAddress =
		    InetAddress.getByName(Defaults.sBroadcast);
	    } catch (UnknownHostException uhe) {

		Assert.slpassert(false,
			      "cast_address_failure",
			      new Object[] {Defaults.sBroadcast});

	    }
	}
	return broadcastAddress;
    }


    /**
     * @return the InetAddress of the multicast group.
     */

    static private InetAddress multicastAddress;

    static InetAddress getMulticastAddress() {
	if (multicastAddress == null) {

	    try {
		multicastAddress =
		    InetAddress.getByName(Defaults.sGeneralSLPMCAddress);
	    } catch (UnknownHostException uhe) {
		Assert.slpassert(false,
			      "cast_address_failure",
			      new Object[] {Defaults.sGeneralSLPMCAddress});

	    }
	}
	return multicastAddress;
    }

    /**
     * @return the interfaces on which SLP should listen and transmit.
     */

    private static Vector interfaces = null;

    Vector getInterfaces() {

	if (interfaces == null) {
	    InetAddress iaLocal = null;

	    // Get local host.

	    try {
		iaLocal =  InetAddress.getLocalHost();

	    }  catch (UnknownHostException ex) {
		Assert.slpassert(false,
			      "resolve_failed",
			      new Object[] {"localhost"});
	    }

	    String mcastI = System.getProperty("net.slp.interfaces");
	    interfaces = new Vector();

	    // Only add local host if nothing else is given.

	    if (mcastI == null || mcastI.length() <= 0) {
		interfaces.addElement(iaLocal);
		return interfaces;

	    }

	    Vector nintr;

	    try {

		nintr = SrvLocHeader.parseCommaSeparatedListIn(mcastI, true);

	    } catch (ServiceLocationException ex) {
		writeLog("syntax_error_prop",
			 new Object[] {
		    "net.slp.multicastInterfaces",
			mcastI});

		// Add local host.

		interfaces.addElement(iaLocal);
	
		return interfaces;

	    }

	    // See if they are really there.

	    int i, n = nintr.size();

	    for (i = 0; i < n; i++) {
		InetAddress ia;
		String host = (String)nintr.elementAt(i);

		try {

		    ia = InetAddress.getByName(host);

		} catch (UnknownHostException ex) {
		    writeLog("unknown_interface",
			     new Object[] {host,
					       "net.slp.multicastInterfaces"});
		    continue;

		}

		if (!interfaces.contains(ia)) {

		    // Add default at beginning.

		    if (ia.equals(iaLocal)) {
			interfaces.insertElementAt(ia, 0);

		    } else {
			interfaces.addElement(ia);

		    }
		}
	    }
	}

	return interfaces;

    }

    /**
     * @return An InetAddress object representing 127.0.0.1
     */
    InetAddress getLoopback() {
	InetAddress iaLoopback = null;

	try {
	    iaLoopback = InetAddress.getByName(Defaults.LOOPBACK_ADDRESS);

	}  catch (UnknownHostException ex) {
	    Assert.slpassert(false,
			  "resolve_failed",
			  new Object[] {"localhost loopback"});
	}

	return iaLoopback;
    }

    /**
     * @return The default interface, which should be the first in the
     *         interfaces vector Vector.
     */

    InetAddress getLocalHost() {
	Vector inter = getInterfaces();
	return (InetAddress)inter.elementAt(0);

    }

    // Return true if the address is one of the local interfaces.

    boolean isLocalHostSource(InetAddress addr) {

	// First check loopback

	if (addr.equals(getLoopback())) {
	    return true;

	}

	return interfaces.contains(addr);

    }

    // -----------------
    // Timeouts
    //

    // Return the maximum wait for multicast convergence.

    final static private int iMultiMin = 1000;  // one second
    final static private int iMultiMax = 60000; // one minute

    int getMulticastMaximumWait() {

	return getIntProperty("net.slp.multicastMaximumWait",
			      Defaults.iMulticastMaxWait,
			      iMultiMin,
			      iMultiMax);
    }

    /*
     * @return Vector of timeouts for multicast convergence.
     */

    int[] getMulticastTimeouts() {
	int[] timeouts = parseTimeouts("net.slp.multicastTimeouts",
			     Defaults.a_iConvergeTimeout);

	timeouts = capTimeouts("net.slp.multicastTimeouts",
			       timeouts,
			       false,
			       0,
			       0);

	return timeouts;
    }

    /**
     * @return Vector of timeouts to try for datagram transmission.
     */

    int[] getDatagramTimeouts() {
	int[] timeouts = parseTimeouts("net.slp.datagramTimeouts",
			     Defaults.a_iDatagramTimeout);

	timeouts = capTimeouts("net.slp.datagramTimeouts",
			       timeouts,
			       true,
			       iMultiMin,
			       iMultiMax);

	return timeouts;
    }

    /**
     * @return Vector of timeouts for DA discovery multicast.
     */

    int[] getDADiscoveryTimeouts() {
	int[] timeouts = parseTimeouts("net.slp.DADiscoveryTimeouts",
			     Defaults.a_iDADiscoveryTimeout);

	timeouts = capTimeouts("net.slp.DADiscoveryTimeouts",
				timeouts,
				false,
				0,
				0);

	return timeouts;
    }

    /**
     *  This method ensures that all the timeouts are within valid ranges.
     *  The sum of all timeouts for the given property name must not
     *  exceed the value returned by <i>getMulticastMaximumWait()</i>. If
     *  the sum of all timeouts does exceed the maximum wait period the
     *  timeouts are averaged out so that the sum equals the maximum wait
     *  period.
     *	<br>
     *  Additional range checking is also performed when <i>rangeCheck</i>
     *  is true. Then the sum of all timeouts must also be between <i>min</i>
     *  and <i>max</i>. If the sum of all timeouts is not within the range
     *  the average is taken from the closest range boundary.
     *
     *  @param property
     *	    Name of timeout property being capped. This is only present for
     *	    reporting purposes and no actual manipulation of the property
     *      is made within this method.
     *  @param timeouts
     *      Array of timeout values.
     *  @param rangeCheck
     *      Indicator of whether additional range checking is required. When
     *      false <i>min</i> and <i>max</i> are ignored.
     *  @param min
     *      Additional range checking lower boundary.
     *  @param max
     *      Additional range checking upper boundary.
     *  @return
     *      Array of capped timeouts. Note this may be the same array as
     *      passed in (<i>timeouts</i>).
     */
    private int[] capTimeouts(String property,
			      int[] timeouts,
			      boolean rangeCheck,
			      int min,
			      int max) {

	int averagedTimeout;
	int totalWait = 0;

	for (int index = 0; index < timeouts.length; index++) {
	    totalWait += timeouts[index];
	}

	if (rangeCheck) {
	    // If sum of timeouts within limits then finished.
	    if (totalWait >= min && totalWait <= max) {
		return timeouts;
	    }

	    // Average out the timeouts so the sum is equal to the closest
	    // range boundary.
	    if (totalWait < min) {
		averagedTimeout = min / timeouts.length;
	    } else {
		averagedTimeout = max / timeouts.length;
	    }

	    writeLog("capped_range_timeout_prop",
		     new Object[] {property,
				   String.valueOf(totalWait),
				   String.valueOf(min),
				   String.valueOf(max),
				   String.valueOf(timeouts.length),
				   String.valueOf(averagedTimeout)});
	} else {
	    // Sum of all timeouts must not exceed this value.
	    int maximumWait = getMulticastMaximumWait();

	    // If sum of timeouts within limits then finished.
	    if (totalWait <= maximumWait) {
		return timeouts;
	    }

	    // Average out the timeouts so the sum is equal to the maximum
	    // timeout.
	    averagedTimeout = maximumWait / timeouts.length;

	    writeLog("capped_timeout_prop",
		     new Object[] {property,
				   String.valueOf(totalWait),
				   String.valueOf(maximumWait),
				   String.valueOf(timeouts.length),
				   String.valueOf(averagedTimeout)});
	}

	for (int index = 0; index < timeouts.length; index++) {
	    timeouts[index] = averagedTimeout;
	}

	return timeouts;
    }

    private int[] parseTimeouts(String property, int[] defaults) {

	String sTimeouts = System.getProperty(property);

	if (sTimeouts == null || sTimeouts.length() <= 0) {
	    return defaults;

	}

	Vector timeouts = null;

	try {
	    timeouts = SrvLocHeader.parseCommaSeparatedListIn(sTimeouts, true);

	} catch (ServiceLocationException ex) {
	    writeLog("syntax_error_prop",
		     new Object[] {property, sTimeouts});
	    return defaults;

	}

	int iCount = 0;
	int[] iTOs = new int[timeouts.size()];

	for (Enumeration en = timeouts.elements(); en.hasMoreElements(); ) {
	    String s1 = (String)en.nextElement();

	    try {
		iTOs[iCount] = Integer.parseInt(s1);

	    }	catch (NumberFormatException nfe) {
		writeLog("syntax_error_prop",
			 new Object[] {property, sTimeouts});
		return defaults;

	    }

	    if (iTOs[iCount] < 0) {
		writeLog("invalid_timeout_prop",
			 new Object[] {property, String.valueOf(iTOs[iCount])});
		return defaults;
	    }

	    iCount++;
	}

	return iTOs;
    }

    // -----------------------------
    // SLP Time Calculation
    //

    /**
     * Returns the number of seconds since 00:00 Universal Coordinated
     * Time, January 1, 1970.
     *
     * Java returns the number of milliseconds, so all the method does is
     * divide by 1000.
     *
     * This implementation still will have a problem when the Java time
     * values wraps, but there isn't much we can do now.
     */
    static long currentSLPTime() {
	return (System.currentTimeMillis() / 1000);
    }

    /* security */

    // Indicates whether security class is available.

    boolean getSecurityEnabled() {
	return securityEnabled;

    }

    private static boolean securityEnabled;

    // Indicates whether the securityEnabled property is true

    boolean getHasSecurity() {
	return securityEnabled &&
	    (new Boolean(System.getProperty("net.slp.securityEnabled",
					    "false")).booleanValue());
    }

    // I18N Support.

    private static final String BASE_BUNDLE_NAME = "com/sun/slp/ClientLib";

    ResourceBundle getMessageBundle(Locale locale) {

	ResourceBundle msgBundle = null;

	// First try the Solaris Java locale area

	try {
	    URL[] urls = new URL[] {new URL("file:/usr/share/lib/locale/")};

	    URLClassLoader ld = new URLClassLoader(urls);

	    msgBundle = ResourceBundle.getBundle(BASE_BUNDLE_NAME, locale, ld);

	    return msgBundle;
	} catch (MalformedURLException e) {	// shouldn't get here
	} catch (MissingResourceException ex) {
	    System.err.println("Missing resource bundle ``"+
			       "/usr/share/lib/locale/" + BASE_BUNDLE_NAME +
			       "'' for locale ``" +
			       locale + "''; trying default...");
	}

	try {
	    msgBundle = ResourceBundle.getBundle(BASE_BUNDLE_NAME, locale);

	} catch (MissingResourceException ex) {  // can't localize this one!

	    // We can't print out to the log, because we may be in the
	    //  process of trying to.

	    System.err.println("Missing resource bundle ``"+
			       BASE_BUNDLE_NAME+
			       "'' for locale ``"+
			       locale+
			       "''");
	    // Hosed if the default locale is missing.

	    if (locale.equals(Defaults.locale)) {

		System.err.println("Exiting...");
		System.exit(1);
	    }

	    // Otherwise, return the default locale.

	    System.err.println("Using SLP default locale ``" +
			       Defaults.locale +
			       "''");

	    msgBundle = getMessageBundle(Defaults.locale);

	}

	return msgBundle;
    }

    String formatMessage(String msgTag, Object[] params) {
	ResourceBundle bundle = getMessageBundle(getLocale());
	return formatMessageInternal(msgTag, params, bundle);

    }

    // MessageFormat is picky about types. Convert the params into strings.

    static void convertToString(Object[] params) {
	int i, n = params.length;

	for (i = 0; i < n; i++) {

	    if (params[i] != null) {
		params[i] = params[i].toString();

	    } else {
		params[i] = "<null>";

	    }
	}
    }

    static String
	formatMessageInternal(String msgTag,
			      Object[] params,
			      ResourceBundle bundle) {
	String pattern = "";

	try {
	    pattern = bundle.getString(msgTag);

	} catch (MissingResourceException ex) {

	    // Attempt to report error. Can't use Assert here because it
	    //  calls back into SLPConfig.
	    String msg = "Can''t find message ``{0}''''.";

	    try {
		pattern = bundle.getString("cant_find_resource");
		msg = MessageFormat.format(pattern, new Object[] {msgTag});
	
	    } catch (MissingResourceException exx) {

	    }

	    System.err.println(msg);
	    System.exit(-1);
	}

	convertToString(params);

	return MessageFormat.format(pattern, params);
    }

    // logging.

    // Protected so slpd can replace it.

    protected Writer log;

    // Synchronized so writes from multiple threads don't get interleaved.

    void writeLog(String msgTag, Object[] params) {

	// MessageFormat is picky about types. Convert the params into strings.

	convertToString(params);

	try {
	    synchronized (log) {
		log.write(formatMessage(msgTag, params));
		log.flush();
	    }
	} catch (IOException ex) {}
    }

    void writeLogLine(String msgTag, Object[] params) {

	try {
	    String pattern = getMessageBundle(getLocale()).getString(msgTag);

	    synchronized (log) {
		log.write(formatMessage(msgTag, params));
		log.write("\n");
		log.flush();
	    }
	} catch (IOException ex) {}

    }

    static String getDateString() {

	DateFormat df = DateFormat.getDateTimeInstance(DateFormat.DEFAULT,
						       DateFormat.DEFAULT,
						       getLocale());
	Calendar calendar = Calendar.getInstance(getLocale());
	return df.format(calendar.getTime());

    }


    // On load, check whether the signature class is available, and turn
    //  security off if not.

    static {

	securityEnabled = true;
	try {
	    Class c = Class.forName("com.sun.slp.AuthBlock");

	} catch (ClassNotFoundException e) {
	    securityEnabled = false;
	}
    }

}