summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cmscore/policy/GenericPolicyProcessor.java
blob: 63b28d995dce82dd6b131a4e2493e39adcade543 (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
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.cmscore.policy;


import java.util.*;
import java.text.*;
import com.netscape.certsrv.request.IRequest;
import com.netscape.certsrv.request.IPolicy;
import com.netscape.certsrv.request.PolicyResult;
import com.netscape.certsrv.apps.*;
import com.netscape.certsrv.policy.*;
import com.netscape.certsrv.authority.*;
import com.netscape.certsrv.common.*;
import com.netscape.certsrv.logging.*;
import com.netscape.certsrv.base.*;
import com.netscape.cmscore.base.*;
import com.netscape.certsrv.base.IConfigStore;
import com.netscape.cmscore.util.*;
import com.netscape.cmscore.request.ARequestQueue;


/**
 * This is a Generic policy processor. The three main functions of
 * this class are:
 *  1. To initialize policies by reading policy configuration from the
 *     config file, and maintain 5 sets of policies - viz Enrollment,
 *      Renewal, Revocation and KeyRecovery and KeyArchival.
 *  2. To apply the configured policies on the given request.
 *  3. To enable policy listing/configuration via MCC console.
 *
 * Since the policy processor also implements the IPolicy interface
 * the processor itself presents itself as one big policy to the
 * request processor.
 *
 * @author kanda
 * @version $Revision$, $Date$
 */
public class GenericPolicyProcessor implements IPolicyProcessor {
    protected IConfigStore mConfig = null;
    protected IConfigStore mGlobalStore = null;
    protected IAuthority mAuthority = null;

    // Default System Policies
    public final static String[] DEF_POLICIES = 
        {"com.netscape.cms.policy.constraints.ManualAuthentication"};

    // Policies that can't be deleted nor disabled.
    public final static Hashtable DEF_UNDELETABLE_POLICIES = 
        new Hashtable();

    private String mId = "Policy";
    private Vector mPolicyOrder = new Vector();
    private Hashtable mImplTable = new Hashtable();
    private Hashtable mInstanceTable = new Hashtable();
    PolicySet mEnrollmentRules = new PolicySet("EnrollmentRules");
    PolicySet mRenewalRules = new PolicySet("RenewalRules");
    PolicySet mRevocationRules = new PolicySet("RevocationRules");
    PolicySet mKeyRecoveryRules = new PolicySet("KeyRecoveryRules");
    PolicySet mKeyArchivalRules = new PolicySet("KeyArchivalRules");
    private String[] mSystemDefaults = null;
    private boolean mInitSystemPolicies;

    // A Table of persistent policies and their predicates.
    // The predicates cannot be changed during configuration.
    private Hashtable mUndeletablePolicies = null;

    public GenericPolicyProcessor() {
        mInitSystemPolicies = true; // CA & RA
    }

    public GenericPolicyProcessor(boolean initSystemPolicies) {
        mInitSystemPolicies = initSystemPolicies; // KRA
    }

    public void setId(String id) throws EBaseException {
        mId = id;
    }

    public String getId() {
        return mId;
    }

    public void startup() throws EBaseException {
    }

    /**
     * Shuts down this subsystem.
     * <P>
     */
    public void shutdown() {
    }

    public ISubsystem getAuthority() {
        return mAuthority;
    }

    /**
     * Returns  the configuration store.
     * <P>
     *
     * @return configuration store
     */
    public IConfigStore getConfigStore() {
        return mConfig;
    }

    /**
     * Initializes the PolicyProcessor
     * <P>
     *
     * @param owner owner of this subsystem
     * @param config configuration of this subsystem
     * @exception EBaseException failed to initialize this Subsystem.
     */
    public synchronized void init(ISubsystem owner, IConfigStore config)
        throws EBaseException {
        // Debug.trace("GenericPolicyProcessor::init");
        CMS.debug("GenericPolicyProcessor::init begins");
        mAuthority = (IAuthority) owner;
        mConfig = config;
        mGlobalStore = 
                SubsystemRegistry.getInstance().get("MAIN").getConfigStore();

        try {
            IConfigStore configStore = CMS.getConfigStore();
            String PKI_Subsystem = configStore.getString( "subsystem.0.id",
                                                          null );

            // CMS 6.1 began utilizing the "Certificate Profiles" framework
            // instead of the legacy "Certificate Policies" framework.
            //
            // Beginning with CS 8.1, to meet the Common Criteria evaluation
            // performed on this version of the product, it was determined
            // that this legacy "Certificate Policies" framework would be
            // deprecated and disabled by default (see Bugzilla Bug #472597).
            //
            // NOTE:  The "Certificate Policies" framework ONLY applied to
            //        to CA, KRA, and legacy RA (pre-CMS 7.0) subsystems.
            //
            if( PKI_Subsystem.trim().equalsIgnoreCase( "ca" ) ||
                PKI_Subsystem.trim().equalsIgnoreCase( "kra" ) ) {
                String policyStatus = PKI_Subsystem.trim().toLowerCase()
                                    + "." + "Policy"
                                    + "." + IPolicyProcessor.PROP_ENABLE;

                if( configStore.getBoolean( policyStatus, true ) == true ) {
                    // NOTE:  If "<subsystem>.Policy.enable=<boolean>" is
                    //        missing, then the referenced instance existed
                    //        prior to this name=value pair existing in its
                    //        'CS.cfg' file, and thus we err on the
                    //        side that the user may still need to
                    //        use the policy framework.
                    CMS.debug( "GenericPolicyProcessor::init Certificate "
                             + "Policy Framework (deprecated) "
                             + "is ENABLED" );
                } else {
                    // CS 8.1 Default:  <subsystem>.Policy.enable=false
                    CMS.debug( "GenericPolicyProcessor::init Certificate "
                             + "Policy Framework (deprecated) "
                             + "is DISABLED" );
                    return;
                }
            }
        } catch( EBaseException e ) {
            throw e;
        }

        // Initialize default policies system that would be
        // present in the system always.
        if (mInitSystemPolicies) {
            initSystemPolicies(mConfig);
        }

        // Read listing of undeletable policies if any.
        initUndeletablePolicies(mConfig);

        // Read all registered policies first..
        IConfigStore c;

        c = config.getSubStore(PROP_IMPL);
        Enumeration mImpls = c.getSubStoreNames();

        while (mImpls.hasMoreElements()) {
            String id = (String) mImpls.nextElement();

            // The implementation id should be unique
            if (mImplTable.containsKey(id))
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_DUPLICATE_IMPL_ID", id));

            String clPath = c.getString(id + "." + PROP_CLASS);

            // We should n't let the CatchAll policies to be configurable.
            if (isSystemDefaultPolicy(clPath))
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_SYSTEM_POLICY_CONFIG_ERROR", clPath));

                // Verify if the class is a valid implementation of
                // IPolicyRule
            try {
                Object o = Class.forName(clPath).newInstance();

                if (!(o instanceof IEnrollmentPolicy) &&
                    !(o instanceof IRenewalPolicy) &&
                    !(o instanceof IRevocationPolicy) &&
                    !(o instanceof IKeyRecoveryPolicy) &&
                    !(o instanceof IKeyArchivalPolicy))
                    throw new EPolicyException(
                            CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_IMPL", clPath));
            } catch (EBaseException e) {
                throw e;
            } catch (Exception e) {
                Debug.printStackTrace(e);
                throw new EPolicyException(CMS.getUserMessage("CMS_POLICY_NO_POLICY_IMPL",
                            id));
            }

            // Register the implementation.
            RegisteredPolicy regPolicy =
                new RegisteredPolicy(id, clPath);

            mImplTable.put(id, regPolicy);
        }

        // Now read the priority ordering of rule configurations.
        String policyOrder = config.getString(PROP_ORDER, null);

        if (policyOrder == null) {
            return;
            // throw new EPolicyException(PolicyResources.NO_POLICY_ORDERING);
        } else {
            StringTokenizer tokens = new StringTokenizer(policyOrder, ",");

            while (tokens.hasMoreTokens()) {
                mPolicyOrder.addElement(tokens.nextToken().trim());
            }
        }

        // Now Read Policy configurations and construct policy objects
        int numPolicies = mPolicyOrder.size();
        IConfigStore ruleStore = config.getSubStore(PROP_RULE);

        for (int i = 0; i < numPolicies; i++) {
            String instanceName = (String) mPolicyOrder.elementAt(i);

            // The instance id should be unique
            if (mInstanceTable.containsKey(instanceName))
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_DUPLICATE_INST_ID", instanceName));

            c = ruleStore.getSubStore(instanceName);
            if (c == null || c.size() == 0)
                throw new EPolicyException(CMS.getUserMessage("CMS_POLICY_NO_POLICY_CONFIG",
                            instanceName));
            IPolicyRule rule = null;
            String implName;
            boolean enabled;
            IExpression filterExp;

            // If the policy rule is not enabled, skip it.
            String enabledStr = c.getString(PROP_ENABLE, null);

            if (enabledStr == null || enabledStr.trim().length() == 0 ||
                enabledStr.trim().equalsIgnoreCase("true"))
                enabled = true;
            else
                enabled = false;

            implName = c.getString(PROP_IMPL_NAME, null);
            if (implName == null) {
                throw new EPolicyException(CMS.getUserMessage("CMS_POLICY_NO_POLICY_CONFIG",
                            instanceName));
            }

            // Make an instance of the specified policy.
            RegisteredPolicy regPolicy =
                (RegisteredPolicy) mImplTable.get(implName);

            if (regPolicy == null) {
                String[] params = {implName, instanceName};

                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_IMPL_NOT_FOUND", params));
            }
            
            String classpath = regPolicy.getClassPath();

            try {
                rule = (IPolicyRule)
                        Class.forName(classpath).newInstance();
                if (rule instanceof IPolicyRule)
                    ((IPolicyRule) rule).setInstanceName(instanceName);
                rule.init(this, c);
            } catch (Throwable e) {
                mAuthority.log(ILogger.LL_FAILURE, CMS.getLogMessage("CMSCORE_POLICY_INIT_FAILED", instanceName, e.toString()));
                // disable rule initialized if there is 
                // configuration error
                enabled = false;
                c.putString(PROP_ENABLE, "false");
            }

            if (rule == null)
                continue;

                // Read the predicate expression if any associated
                // with the rule
            String exp = c.getString(GenericPolicyProcessor.PROP_PREDICATE, null);

            if (exp != null)
                exp = exp.trim();
            if (exp != null && exp.length() > 0) {
                filterExp = PolicyPredicateParser.parse(exp);
                rule.setPredicate(filterExp);
            }

            // Add the rule to the instance table
            mInstanceTable.put(instanceName,
                new PolicyInstance(instanceName, implName, rule, enabled));

            if (!enabled)
                continue;

                // Add the rule to the policy set according to category if a
                // rule is enabled.
            addRule(instanceName, rule);
        }

        // Verify that the default policies are present and enabled.
        verifyDefaultPolicyConfig();

        // printPolicies();
    }

    public boolean isProfileRequest(IRequest request) {
        String profileId = request.getExtDataInString("profileId");

        if (profileId == null || profileId.equals(""))
            return false;
        else
            return true;
    }

    /**
     * Apply policies on the given request.
     *
     * @param IRequest  The given request
     * @return The policy result object.
     */
    public PolicyResult apply(IRequest req) {
        IPolicySet rules = null;
        String op = (String) req.getRequestType();

        CMS.debug("GenericPolicyProcessor: apply begins");
        if (op == null) {
            CMS.debug("GenericPolicyProcessor: apply op null");
            // throw new AssertionException("Missing operation type in request. Can't happen!");
            // Return ACCEPTED for now. Looks like even get CA chain 
            // is being passed in here with request type set elsewhere 
            // on the request. 
            return PolicyResult.ACCEPTED;
        }
        if (isProfileRequest(req)) {
            Debug.trace("GenericPolicyProcessor: Profile-base Request " + 
                req.getRequestId().toString());
            return PolicyResult.ACCEPTED;
        }
        CMS.debug("GenericPolicyProcessor: apply not ProfileRequest. op="+op);

        if (op.equalsIgnoreCase(IRequest.ENROLLMENT_REQUEST))
            rules = mEnrollmentRules;
        else if (op.equalsIgnoreCase(IRequest.RENEWAL_REQUEST))
            rules = mRenewalRules;
        else if (op.equalsIgnoreCase(IRequest.REVOCATION_REQUEST))
            rules = mRevocationRules;
        else if (op.equalsIgnoreCase(IRequest.KEY_RECOVERY_REQUEST))
            rules = mKeyRecoveryRules;
        else if (op.equalsIgnoreCase(IRequest.KEY_ARCHIVAL_REQUEST))
            rules = mKeyArchivalRules;
        else {
            // It aint' a CMP request. We don't care.
            return PolicyResult.ACCEPTED;
            // throw new AssertionException("Invalid request type. Can't Happen!");
        }

        // ((PolicySet)rules).printPolicies();
        // If there are no rules, then it is a serious error.
        if (rules.count() == 0) {
            CMS.debug("GenericPolicyProcessor: apply: rule count 0");
            // if no policy is specified, just accept the request.
            // KRA has no policy configured by default
            return PolicyResult.ACCEPTED;

            /**
             setError(req, PolicyResources.NO_RULES_CONFIGURED, op);
             return PolicyResult.REJECTED;
             **/
        }
        CMS.debug("GenericPolicyProcessor: apply: rules.count="+ rules.count());

        // request must be up to date or can't process it.
        PolicyResult res = PolicyResult.ACCEPTED;
        String mVersion = ARequestQueue.REQUEST_VERSION;
        String vers = req.getRequestVersion();

        if (vers == null || !vers.equals(mVersion)) {
            if (vers == null || vers.length() == 0)
                vers = "none";
            res = PolicyResult.REJECTED;
        }

        if (res == PolicyResult.REJECTED)
            return res;

        CMS.debug("GenericPolicyProcessor: apply: calling rules.apply()");
        // Apply the policy rules.
        return rules.apply(req);
    }

    public void printPolicies() {
        mEnrollmentRules.printPolicies();
        mRenewalRules.printPolicies();
        mRevocationRules.printPolicies();
        mKeyRecoveryRules.printPolicies();
        mKeyArchivalRules.printPolicies();
    }

    public String getPolicySubstoreId() {
        return mAuthority.getId() + ".Policy";
    }

    private void setError(IRequest req, String format, String arg) {
        if (format == null)
            return;
        EPolicyException ex = new EPolicyException(format, arg);

        Vector ev = req.getExtDataInStringVector(IRequest.ERRORS);
        if (ev == null) {
            ev = new Vector();
        }
        ev.addElement(ex.toString());
        req.setExtData(IRequest.ERRORS, ev);
    }

    public Enumeration getPolicyImpls() {
        Vector impls = new Vector();
        Enumeration enum1 = mImplTable.elements();
        Enumeration ret = null;

        try {
            while (enum1.hasMoreElements()) {
                RegisteredPolicy regPolicy =
                    (RegisteredPolicy) enum1.nextElement();

                // Make an Instance of it
                IPolicyRule ruleImpl = (IPolicyRule)
                    Class.forName(regPolicy.getClassPath()).newInstance();

                impls.addElement(ruleImpl);
            }
            ret = impls.elements();
        } catch (Exception e) {
            Debug.printStackTrace(e);
        }
        return ret;
    }

    public Enumeration getPolicyImplsInfo() {
        Vector impls = new Vector();
        Enumeration enum1 = mImplTable.elements();
        Enumeration ret = null;

        try {
            while (enum1.hasMoreElements()) {
                RegisteredPolicy regPolicy =
                    (RegisteredPolicy) enum1.nextElement();

                impls.addElement(regPolicy.getId());

            }
            ret = impls.elements();
        } catch (Exception e) {
            Debug.printStackTrace(e);
        }
        return ret;
    }

    public IPolicyRule getPolicyImpl(String id) {
        RegisteredPolicy regImpl = (RegisteredPolicy)
            mImplTable.get(id);

        if (regImpl == null)
            return null;
        IPolicyRule impl = null;

        try {
            impl =
                    (IPolicyRule) Class.forName(regImpl.getClassPath()).newInstance();
        } catch (Exception e) {
            Debug.printStackTrace(e);
        }
        return impl;
    }

    public Vector getPolicyImplConfig(String id) {
        IPolicyRule rp = getPolicyImpl(id);

        if (rp == null)
            return null;
        Vector v = rp.getDefaultParams();

        if (v == null)
            v = new Vector();
        v.insertElementAt(IPolicyRule.PROP_ENABLE + "=" + "true", 0);
        v.insertElementAt(IPolicyRule.PROP_PREDICATE + "=" + " ", 1);
        return v;
    }

    public void deletePolicyImpl(String id)
        throws EBaseException {
        // First check if the id is valid;
        RegisteredPolicy regPolicy =
            (RegisteredPolicy) mImplTable.get(id);

        if (regPolicy == null)
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_NO_POLICY_IMPL", id));

            // If any instance exists for this impl, can't delete it.
        boolean instanceExist = false;
        Enumeration e = mInstanceTable.elements();

        for (; e.hasMoreElements();) {
            PolicyInstance inst = (PolicyInstance) e.nextElement();

            if (inst.isInstanceOf(id)) {
                instanceExist = true;
                break;
            }
        }
        if (instanceExist) // we found an instance
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_ACTIVE_POLICY_RULES_EXIST", id));

            // Else delete the implementation
        mImplTable.remove(id);
        IConfigStore policyStore = 
            mGlobalStore.getSubStore(getPolicySubstoreId());
        IConfigStore implStore = 
            policyStore.getSubStore(PROP_IMPL);

        implStore.removeSubStore(id);

        // committing
        try {
            mGlobalStore.commit(true);
        } catch (Exception ex) {
            Debug.printStackTrace(ex);
            String[] params = {"implementation", id};

            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_DELETING_POLICY_ERROR", params));
        }
    }

    public void addPolicyImpl(String id, String classPath)
        throws EBaseException {
        // See if the id is unique
        if (mImplTable.containsKey(id))
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_DUPLICATE_IMPL_ID", id));

            // See if the classPath is ok
        Object impl = null;

        try {
            impl = Class.forName(classPath).newInstance();
        }catch (Exception e) {
            throw new EPolicyException(CMS.getUserMessage("CMS_POLICY_NO_POLICY_IMPL",
                        id));
        }

        // Does the class implement one of the four interfaces?
        if (!(impl instanceof IEnrollmentPolicy) &&
            !(impl instanceof IRenewalPolicy) &&
            !(impl instanceof IRevocationPolicy) &&
            !(impl instanceof IKeyRecoveryPolicy) &&
            !(impl instanceof IKeyArchivalPolicy))
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_IMPL", classPath));

            // Add the implementation to the registry
        RegisteredPolicy regPolicy =
            new RegisteredPolicy(id, classPath);

        mImplTable.put(id, regPolicy);

        // Store the impl in the configuration.
        IConfigStore policyStore = 
            mGlobalStore.getSubStore(getPolicySubstoreId());
        IConfigStore implStore = 
            policyStore.getSubStore(PROP_IMPL);
        IConfigStore newStore = implStore.makeSubStore(id);

        newStore.put(PROP_CLASS, classPath);
        try {
            mGlobalStore.commit(true);
        } catch (Exception e) {
            String[] params = {"implementation", id};

            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_ADDING_POLICY_ERROR", params));
        }
    }

    public Enumeration getPolicyInstances() {
        Vector rules = new Vector();
        Enumeration enum1 = mPolicyOrder.elements();
        Enumeration ret = null;

        try {
            while (enum1.hasMoreElements()) {
                PolicyInstance instance =
                    (PolicyInstance) mInstanceTable.get((String) enum1.nextElement());

                rules.addElement(instance.getRule());

            }
            ret = rules.elements();
        } catch (Exception e) {
            Debug.printStackTrace(e);
        }
        return ret;
    }

    public Enumeration getPolicyInstancesInfo() {
        Vector rules = new Vector();
        Enumeration enum1 = mPolicyOrder.elements();
        Enumeration ret = null;

        try {
            while (enum1.hasMoreElements()) {
                String ruleName = (String) enum1.nextElement();
                PolicyInstance instance =
                    (PolicyInstance) mInstanceTable.get(ruleName);

                rules.addElement(instance.getRuleInfo());
            }
            ret = rules.elements();
        } catch (Exception e) {
            Debug.printStackTrace(e);
        }
        return ret;
    }

    public IPolicyRule getPolicyInstance(String id) {
        PolicyInstance policyInstance = (PolicyInstance)
            mInstanceTable.get(id);

        return (policyInstance == null) ? null : policyInstance.getRule();
    }

    public Vector getPolicyInstanceConfig(String id) {
        PolicyInstance policyInstance = (PolicyInstance)
            mInstanceTable.get(id);

        if (policyInstance == null)
            return null;
        Vector v = policyInstance.getRule().getInstanceParams();

        if (v == null)
            v = new Vector();
        v.insertElementAt(PROP_IMPL_NAME + "=" + policyInstance.getImplId(), 0);
        v.insertElementAt(PROP_ENABLE + "=" + policyInstance.isActive(), 1);
        String predicate = " ";

        if (policyInstance.getRule().getPredicate() != null)
            predicate = policyInstance.getRule().getPredicate().toString();
        v.insertElementAt(PROP_PREDICATE + "=" + predicate, 2);
        return v;
    }

    public void deletePolicyInstance(String id)
        throws EBaseException {
        // If the rule is a persistent rule, we can't delete it.
        if (mUndeletablePolicies.containsKey(id))
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_CANT_DELETE_PERSISTENT_POLICY", id));

            // First check if the instance is present.
        PolicyInstance instance =
            (PolicyInstance) mInstanceTable.get(id);

        if (instance == null)
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_INSTANCE", id));

        IConfigStore policyStore =
            mGlobalStore.getSubStore(getPolicySubstoreId());
        IConfigStore instanceStore = 
            policyStore.getSubStore(PROP_RULE);

        instanceStore.removeSubStore(id);

        // Remove the rulename from the rder list
        int index = mPolicyOrder.indexOf(id);

        mPolicyOrder.removeElement(id);

        // Now change the ordering in the config file.
        policyStore.put(PROP_ORDER, getRuleOrderString(mPolicyOrder));

        // Commit changes to file.
        try {
            mGlobalStore.commit(true);
        } catch (Exception e) {
            // Put the rule back in the rule order vector.
            mPolicyOrder.insertElementAt(id, index);

            Debug.printStackTrace(e);
            String[] params = {"instance", id};

            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_DELETING_POLICY_ERROR", params));
        }

        IPolicyRule rule = instance.getRule();

        if (rule instanceof IEnrollmentPolicy)
            mEnrollmentRules.removeRule(id);
        if (rule instanceof IRenewalPolicy)
            mRenewalRules.removeRule(id);
        if (rule instanceof IRevocationPolicy)
            mRevocationRules.removeRule(id);
        if (rule instanceof IKeyRecoveryPolicy)
            mKeyRecoveryRules.removeRule(id);
        if (rule instanceof IKeyArchivalPolicy)
            mKeyArchivalRules.removeRule(id);

            // Delete the instance
        mInstanceTable.remove(id);
    }

    public void addPolicyInstance(String id, Hashtable ht)
        throws EBaseException {
        // The instance id should be unique
        if (getPolicyInstance(id) != null)
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_DUPLICATE_INST_ID", id));
            // There should be an implmentation for this rule.
        String implName = (String) ht.get(IPolicyRule.PROP_IMPLNAME);

        // See if there is an implementation with this name.
        IPolicyRule rule = getPolicyImpl(implName);

        if (rule == null)
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_NO_POLICY_IMPL", implName));

            // Prepare config file entries.
        IConfigStore policyStore = 
            mGlobalStore.getSubStore(getPolicySubstoreId());
        IConfigStore instanceStore = 
            policyStore.getSubStore(PROP_RULE);
        IConfigStore newStore = instanceStore.makeSubStore(id);

        for (Enumeration keys = ht.keys(); keys.hasMoreElements();) {
            String key = (String) keys.nextElement();
            String val = (String) ht.get(key);

            newStore.put(key, val);
        }

        // Set the order string.
        policyStore.put(PROP_ORDER,
            getRuleOrderString(mPolicyOrder, id));

        // Try to initialize this rule.
        rule.init(this, newStore);

        // Add the rule to the table.
        String enabledStr = (String) ht.get(IPolicyRule.PROP_ENABLE);
        boolean active = false;

        if (enabledStr == null || enabledStr.trim().length() == 0 ||
            enabledStr.equalsIgnoreCase("true"))
            active = true;

            // Set the predicate if any present on the rule.
        String predicate = ((String) ht.get(IPolicyRule.PROP_PREDICATE)).trim();
        IExpression exp = null;

        if (predicate.trim().length() > 0)
            exp = PolicyPredicateParser.parse(predicate.trim());
        rule.setPredicate(exp);

        // Store the changes in the file.
        try {
            mGlobalStore.commit(true);
        } catch (Exception e) {
            String[] params = {"instance", id};

            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_ADDING_POLICY_ERROR", params));
        }

        // Add the rule to the instance table.
        PolicyInstance policyInst = new PolicyInstance(id, implName,
                rule, active);

        mInstanceTable.put(id, policyInst);

        // Add the rule to the end of order table.
        mPolicyOrder.addElement(id);

        // If the rule is not active, return.
        if (!active)
            return;

        addRule(id, rule);
    }

    public void modifyPolicyInstance(String id, Hashtable ht)
        throws EBaseException {
        // The instance id should be there already
        PolicyInstance policyInstance = (PolicyInstance)
            mInstanceTable.get(id);

        if (policyInstance == null)
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_INSTANCE", id));
        IPolicyRule rule = policyInstance.getRule();

        // The impl id shouldn't change
        String implId = (String) ht.get(IPolicyRule.PROP_IMPLNAME);

        if (!implId.equals(policyInstance.getImplId()))
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_IMPLCHANGE_ERROR", id));
					
            // Make a new rule instance
        IPolicyRule newRule = getPolicyImpl(implId);

        if (newRule == null) // Can't happen, but just in case..
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_IMPL", implId));
			
            // Try to init this rule.
        IConfigStore policyStore = 
            mGlobalStore.getSubStore(getPolicySubstoreId());
        IConfigStore instanceStore = 
            policyStore.getSubStore(PROP_RULE);
        IConfigStore oldStore = instanceStore.getSubStore(id);
        IConfigStore newStore = new PropConfigStore(id);
			
        // See if the rule is disabled.
        String enabledStr = (String) ht.get(IPolicyRule.PROP_ENABLE);
        boolean active = false;

        if (enabledStr == null || enabledStr.trim().length() == 0 ||
            enabledStr.equalsIgnoreCase("true"))
            active = true;

            // Set the predicate expression.
        String predicate = ((String) ht.get(IPolicyRule.PROP_PREDICATE)).trim();
        IExpression exp = null;

        if (predicate.trim().length() > 0)
            exp = PolicyPredicateParser.parse(predicate.trim());

            // See if this a persistent rule.
        if (mUndeletablePolicies.containsKey(id)) {
            // A persistent rule can't be disabled.
            if (!active) {
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_INACTIVE", id));
            }

            IExpression defPred = (IExpression)
                mUndeletablePolicies.get(id);

            if (defPred == SimpleExpression.NULL_EXPRESSION)
                defPred = null;
            if (exp == null && defPred != null) {
                String[] params = {id, defPred.toString(),
                        "null" };

                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_MISCONFIG", params));
            } else if (exp != null && defPred == null) {
                String[] params = {id, "null", exp.toString()};

                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_MISCONFIG", params));
            } else if (exp != null && defPred != null) {
                if (!defPred.toString().equals(exp.toString())) {
                    String[] params = {id, defPred.toString(),
                            exp.toString() };

                    throw new EPolicyException(
                            CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_MISCONFIG", params));
                }
            }
        }

        // Predicate for the persistent rule can't be changed.
        ht.put(IPolicyRule.PROP_ENABLE, String.valueOf(active));

        // put old config store parameters first. 
        for (Enumeration oldkeys = oldStore.keys(); 
            oldkeys.hasMoreElements();) {
            String k = (String) oldkeys.nextElement();
            String v = (String) oldStore.getString(k);

            newStore.put(k, v);
        }

        // put modified params.
        for (Enumeration newkeys = ht.keys(); 
            newkeys.hasMoreElements();) {
            String k = (String) newkeys.nextElement();
            String v = (String) ht.get(k);

            Debug.trace("newstore key " + k + "=" + v);
            if (v != null) {
                if (!k.equals(Constants.OP_TYPE) && !k.equals(Constants.OP_SCOPE) &&
                    !k.equals(Constants.RS_ID) && !k.equals("RULENAME")) {
                    Debug.trace("newstore.put(" + k + "=" + v + ")");
                    newStore.put(k, v);
                }
            }
        }

        // include impl default params in case we missed any.

        /*
         for (Enumeration keys = ht.keys(); keys.hasMoreElements();)
         {
         String key = (String)keys.nextElement();
         String val = (String)ht.get(key);
         newStore.put(key, val);
         }
         */


        // Try to initialize this rule.
        newRule.init(this, newStore);
			
        // If we are successfully initialized, replace the rule 
        // instance
        policyInstance.setRule(newRule);
        policyInstance.setActive(active);

        // Set the predicate expression.
        if (exp != null)
            newRule.setPredicate(exp);

            // Store the changes in the file.
        try {
            for (Enumeration e = newStore.keys(); e.hasMoreElements();) {
                String key = (String) e.nextElement();

                if (key != null) {
                    Debug.trace(
                        "oldstore.put(" + key + "," +
                        (String) newStore.getString(key) + ")");
                    oldStore.put(key, (String) newStore.getString(key));
                }
            }
            mGlobalStore.commit(true);
        } catch (Exception e) {
            String[] params = {"instance", id};

            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_ADDING_POLICY_ERROR", params));
        }

        // If rule is disabled, we need to remove it from the
        // policy set.
        if (!active) {
            if (rule instanceof IEnrollmentPolicy)
                mEnrollmentRules.removeRule(id);
            if (rule instanceof IRenewalPolicy)
                mRenewalRules.removeRule(id);
            if (rule instanceof IRevocationPolicy)
                mRevocationRules.removeRule(id);
            if (rule instanceof IKeyRecoveryPolicy)
                mKeyRecoveryRules.removeRule(id);
            if (rule instanceof IKeyArchivalPolicy)
                mKeyArchivalRules.removeRule(id);
        } else // replace the rule
        {
            if (rule instanceof IEnrollmentPolicy)
                mEnrollmentRules.replaceRule(id, newRule);
            if (rule instanceof IRenewalPolicy)
                mRenewalRules.replaceRule(id, newRule);
            if (rule instanceof IRevocationPolicy)
                mRevocationRules.replaceRule(id, newRule);
            if (rule instanceof IKeyRecoveryPolicy)
                mKeyRecoveryRules.replaceRule(id, newRule);
            if (rule instanceof IKeyArchivalPolicy)
                mKeyArchivalRules.replaceRule(id, newRule);
        }
    }

    public synchronized void changePolicyInstanceOrdering(
        String policyOrderStr)
        throws EBaseException {
        Vector policyOrder = new Vector();
        StringTokenizer tokens = new StringTokenizer(policyOrderStr, ",");

        // Get all the elements
        while (tokens.hasMoreTokens()) {
            String instanceId = tokens.nextToken().trim();

            // Check if we have that instance configured.
            if (!mInstanceTable.containsKey(instanceId))
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_INSTANCE", instanceId));
            policyOrder.addElement(instanceId);
        }

        // Now enforce the new ordering
        // First if the order is the same as what we have,
        // return.
        if (policyOrder.size() == mPolicyOrder.size()) {
            if (areSameVectors(policyOrder, mPolicyOrder))
                return;
        }
        PolicySet enrollmentRules = new PolicySet("EnrollmentRules");
        PolicySet renewalRules = new PolicySet("RenewalRules");
        PolicySet revocationRules = new PolicySet("RevocationRules");
        PolicySet keyRecoveryRules = new PolicySet("KeyRecoveryRules");
        PolicySet keyArchivalRules = new PolicySet("KeyArchivalRules");

        // add system default rules first.
        try {
            for (int i = 0; i < mSystemDefaults.length; i++) {
                String defRuleName = mSystemDefaults[i].substring(
                        mSystemDefaults[i].lastIndexOf('.') + 1);
                IPolicyRule defRule = (IPolicyRule)
                    Class.forName(mSystemDefaults[i]).newInstance();
                IConfigStore ruleConfig = 
                    mConfig.getSubStore(PROP_DEF_POLICIES + "." + defRuleName);

                defRule.init(this, ruleConfig);
                if (defRule instanceof IEnrollmentPolicy)
                    enrollmentRules.addRule(defRuleName, defRule);
                else if (defRule instanceof IRenewalPolicy)
                    renewalRules.addRule(defRuleName, defRule);
                else if (defRule instanceof IRevocationPolicy)
                    revocationRules.addRule(defRuleName, defRule);
                else if (defRule instanceof IKeyRecoveryPolicy)
                    keyRecoveryRules.addRule(defRuleName, defRule);
                else if (defRule instanceof IKeyArchivalPolicy)
                    keyArchivalRules.addRule(defRuleName, defRule);
                // else ignore the darned rule.
            }
        } catch (Throwable e) {
            Debug.printStackTrace(e);
            EBaseException ex = new EBaseException(CMS.getUserMessage("CMS_BASE_INTERNAL_ERROR", 
                        "Cannot create default policy rule. Error: " + e.getMessage()));

            mAuthority.log(ILogger.LL_FAILURE, CMS.getLogMessage("CMSCORE_POLICY_DEF_CREATE", e.toString()));
            throw ex;
        }

        // add rules specified in the new order.
        for (Enumeration enum1 = policyOrder.elements();
            enum1.hasMoreElements();) {
            String instanceName = (String) enum1.nextElement();
            PolicyInstance pInstance = (PolicyInstance)
                mInstanceTable.get(instanceName);
				
            if (!pInstance.isActive())
                continue;

                // Add the rule to the policy set according to category if a
                // rule is enabled.
            IPolicyRule rule = pInstance.getRule();

            if (rule instanceof IEnrollmentPolicy)
                enrollmentRules.addRule(instanceName, rule);
            else if (rule instanceof IRenewalPolicy)
                renewalRules.addRule(instanceName, rule);
            else if (rule instanceof IRevocationPolicy)
                revocationRules.addRule(instanceName, rule);
            else if (rule instanceof IKeyRecoveryPolicy)
                keyRecoveryRules.addRule(instanceName, rule);
            else if (rule instanceof IKeyArchivalPolicy)
                keyArchivalRules.addRule(instanceName, rule);
            // else ignore the darned rule.
        }

        mEnrollmentRules = enrollmentRules;
        mRenewalRules = renewalRules;
        mRevocationRules = revocationRules;
        mKeyRecoveryRules = keyRecoveryRules;
        mKeyArchivalRules = keyArchivalRules;
        mPolicyOrder = policyOrder;

        // Now change the ordering in the config file.
        IConfigStore policyStore = 
            mGlobalStore.getSubStore(getPolicySubstoreId());

        policyStore.put(PROP_ORDER, policyOrderStr);

        // committing
        try {
            mGlobalStore.commit(true);
        } catch (Exception ex) {
            Debug.printStackTrace(ex);
            throw new EPolicyException(
                    CMS.getUserMessage("CMS_POLICY_ORDER_ERROR", policyOrderStr));
        }
    }

    private boolean areSameVectors(Vector v1, Vector v2) {
        if (v1.size() != v2.size())
            return false;
        int size = v1.size();
        int i = 0;

        for (; i < size; i++)
            if (v2.indexOf(v1.elementAt(i)) != i)
                break;
        return (i == size ? true : false);
    }

    private String getRuleOrderString(Vector rules) {
        StringBuffer sb = new StringBuffer();

        for (Enumeration e = rules.elements(); e.hasMoreElements();) {
            sb.append((String) e.nextElement());
            sb.append(",");
        }
        if (sb.length() > 0)
            sb.setLength(sb.length() - 1);
        return new String(sb);
    }

    private String getRuleOrderString(Vector rules, String newRule) {
        String currentRules = getRuleOrderString(rules);

        if (currentRules == null || currentRules.length() == 0)
            return newRule;
        else
            return currentRules + "," + newRule;
    }

    /**
     * Initializes the default system policies. Currently there is only
     * one policy - ManualAuthentication. More may be added later on.
     *
     * The default policies may be disabled - for example to over-ride
     * agent approval for testing the system by setting the following
     * property in the config file:
     * 
     *	<subsystemId>.Policy.systemPolicies.enable=false
     * 
     *  By default the value for this property is true.
     *
     * Users can over-ride the default system policies by listing their 
     * 'custom' system policies under the following property:
     * 
     *	<subsystemId>.Policy.systemPolicies=<system policy1 class path>,
     *		<system policy2 class path>
     *
     * There can only be one instance of the system policy in the system
     * and will apply to all requests, and hence predicates are not used 
     * for a system policy.  Due to the same reason, these properties are 
     * not configurable using the Console.
     * 
     * A System policy may read config properties from a subtree under
     * <subsystemId>.Policy.systemPolicies.<ClassName>. An example is
     * ra.Policy.systemPolicies.ManualAuthentication.param1=value
     */
    private void initSystemPolicies(IConfigStore mConfig)
        throws EBaseException {
        // If system policies are disabled, return. No Deferral of
        // requests may be done.
        String enable = mConfig.getString(PROP_DEF_POLICIES + "." + 
                PROP_ENABLE, "true").trim();

        if (enable.equalsIgnoreCase("false")) {
            mSystemDefaults = DEF_POLICIES;
            return;
        }

        // Load default policies that are always present.
        String configuredDefaults = mConfig.getString(PROP_DEF_POLICIES, 
                null);

        if (configuredDefaults == null || 
            configuredDefaults.trim().length() == 0)
            mSystemDefaults = DEF_POLICIES;
        else {
            Vector rules = new Vector();
            StringTokenizer tokenizer = new 
                StringTokenizer(configuredDefaults.trim(), ",");
	
            while (tokenizer.hasMoreTokens()) {
                String rule = tokenizer.nextToken().trim();

                rules.addElement(rule);
            }
            if (rules.size() > 0) {
                mSystemDefaults = new String[rules.size()];
                rules.copyInto(mSystemDefaults);
            } else 
                mSystemDefaults = DEF_POLICIES;
        }
	
        // Now Initialize the rules. These defaults have only one 
        // instance and the rule name is the name of the class itself.
        // Any configuration parameters required could be read from
        // <subsystemId>.Policy.default.RuleName.
        for (int i = 0; i < mSystemDefaults.length; i++) {
            // Load the class and make an instance.
            // Verify if the class is a valid implementation of
            // IPolicyRule
            String ruleName = null;

            try {
                Object o = Class.forName(mSystemDefaults[i]).newInstance();

                if (!(o instanceof IEnrollmentPolicy) &&
                    !(o instanceof IRenewalPolicy) &&
                    !(o instanceof IRevocationPolicy) &&
                    !(o instanceof IKeyRecoveryPolicy) &&
                    !(o instanceof IKeyArchivalPolicy))
                    throw new EPolicyException(
                            CMS.getUserMessage("CMS_POLICY_INVALID_POLICY_IMPL",
                                mSystemDefaults[i]));
	
                IPolicyRule rule = (IPolicyRule) o;
	
                // Initialize the rule.
                ruleName = mSystemDefaults[i].substring(
                            mSystemDefaults[i].lastIndexOf('.') + 1);
                IConfigStore ruleConfig = mConfig.getSubStore(
                        PROP_DEF_POLICIES + "." + ruleName);

                rule.init(this, ruleConfig);
	
                // Add the rule to the appropriate PolicySet.
                addRule(ruleName, rule);
            } catch (EBaseException e) {
                throw e;
            } catch (Exception e) {
                Debug.printStackTrace(e);
                throw new EPolicyException(CMS.getUserMessage("CMS_POLICY_NO_POLICY_IMPL", 
                            ruleName));
            }
        }
    }

    /**
     * Read list of undeletable policies if any configured in the
     * system. 
     *
     * These are required to protect the system from being misconfigured
     * to the point that the requests wouldn't serialize or certain
     * fields in the certificate(s) being checked will go unchecked 
     * ..etc.
     *
     * For now the following policies are undeletable: 
     *
     *	DirAuthRule:	This is a default DirectoryAuthentication policy
     *					for user certificates that interprets directory
     *					credentials. The presence of this policy is needed
     *					if the OOTB DirectoryAuthentication-based automatic
     *					certificate issuance is supported.
     *
     *	DefaultUserNameRule: This policy verifies/sets subjectDn for user
     *						 certificates.
     *
     *	DefaultServerNameRule: This policy verifies/sets subjectDn for 
     *							server certificates.
     *
     *	DefaultValidityRule:	Verifies/sets validty for all certificates.
     *
     *	DefaultRenewalValidityRule: Verifies/sets validity for certs being
     *							renewed.
     *
     *  The 'undeletables' cannot be deleted from the config file, nor
     *	can the be disabled. If any predicates are associated with them
     *	the predicates can't be changed either. But, other config parameters
     *	such as maxValidity, renewalInterval ..etc can be changed to suit 
     *	local policy requirements.
     *
     *  During start up the policy processor will verify if the undeletables
     *	are present, and that they are enabled and that their predicates are
     *	not changed.
     *
     *  The rules mentioned above are currently hard coded. If these need to
     *  read from the config file, the 'undeletables' can be configured as
     *  as follows:
     *
     *	<subsystemId>.Policy.undeletablePolicies=<comma separated rule names>
     *	Example:
     *	ra.Policy.undeletablePolicies=DirAuthRule, DefaultUserNameRule, DefaultServerNameRule, DefaultValidityRule, DefaultRenewalValidityRule
     *
     *  The predicates if any associated with them may be configured as
     *  follows:
     *		<subsystemId>.Policy.undeletablePolicies.DirAuthRule.predicate= certType == client.
     *
     *		where subsystemId is ra or ca.
     *
     * If the undeletables are configured in the file,the configured entries
     * take precedence over the hardcoded ones in this file. If you are 
     * configuring them in the file, please remember to configure the 
     * predicates if applicable.
     *
     * During policy configuration from MCC, the policy processor will not
     * let you delete an 'undeletable', nor will it let you disable it. 
     * You will not be able to change the predicate either. Other parameters
     * can be configured as needed.
     *
     * If a particular rule needs to be removed from the 'undeletables', 
     * either remove it from the hard coded list above, or configure the
     * rules required rules only via the config file. The former needs 
     * recompilation of the source. The later is flexible to be able to
     * make any rule an 'undeletable' or nor an 'undeletable'.
     *
     * Example: We want to use only manual forms for enrollment. 
     * We do n't need to burn in DirAuthRule. We need to configure all
     * other rules except the DirAuthRule as follows:
     *
     *	ra.Policy.undeletablePolicies = DefaultUserNameRule, DefaultServerNameRule, DefaultValidityRule, DefaultRenewalValidityRule
     *
     * The following predicates are necessary:
     *
     *	ra.Policy.undeletablePolicies.DefaultUserNameRule.predicate = certType == client
     *	ra.Policy.undeletablePolicies.DefaultServerNameRule.predicate = certType == server
     *
     *	The other two rules do not have any predicates.
     */
    private void initUndeletablePolicies(IConfigStore mConfig)
        throws EBaseException {
        // Read undeletable policies if any configured.
        String configuredUndeletables = 
            mConfig.getString(PROP_UNDELETABLE_POLICIES, null);

        if (configuredUndeletables == null || 
            configuredUndeletables.trim().length() == 0) {
            mUndeletablePolicies = DEF_UNDELETABLE_POLICIES;
            return;
        }

        Vector rules = new Vector();
        StringTokenizer tokenizer = new 
            StringTokenizer(configuredUndeletables.trim(), ",");
	
        while (tokenizer.hasMoreTokens()) {
            String rule = tokenizer.nextToken().trim();

            rules.addElement(rule);
        }

        if (rules.size() == 0) {
            mUndeletablePolicies = DEF_UNDELETABLE_POLICIES;
            return;
        }

        // For each rule read from the config file, see if any 
        // predicate is set.
        mUndeletablePolicies = new Hashtable();
        for (Enumeration e = rules.elements(); e.hasMoreElements();) {
            String urn = (String) e.nextElement();
			
            // See if there is predicate in the file
            String pred = mConfig.getString(PROP_UNDELETABLE_POLICIES +
                    "." + urn + "." + PROP_PREDICATE, null);
			
            IExpression exp = SimpleExpression.NULL_EXPRESSION;
			
            if (pred != null)
                exp = PolicyPredicateParser.parse(pred);
            mUndeletablePolicies.put(urn, exp);
        }
    }

    private void addRule(String ruleName, IPolicyRule rule) {
        if (rule instanceof IEnrollmentPolicy)
            mEnrollmentRules.addRule(ruleName, rule);
        if (rule instanceof IRenewalPolicy)
            mRenewalRules.addRule(ruleName, rule);
        if (rule instanceof IRevocationPolicy)
            mRevocationRules.addRule(ruleName, rule);
        if (rule instanceof IKeyRecoveryPolicy)
            mKeyRecoveryRules.addRule(ruleName, rule);
        if (rule instanceof IKeyArchivalPolicy)
            mKeyArchivalRules.addRule(ruleName, rule);
    }

    private boolean isSystemDefaultPolicy(String clPath) {
        boolean ret = false;

        if (mSystemDefaults == null)
            return false;
        for (int i = 0; i < mSystemDefaults.length; i++) {
            if (clPath.equals(mSystemDefaults[i])) {
                ret = true;
                break;
            }
        }
        return ret;
    }

    private void verifyDefaultPolicyConfig()
        throws EPolicyException {
        // For each policy in undeletable list make sure that
        // the policy is present, is not disabled and its predicate
        // is not tampered with.
        for (Enumeration e = mUndeletablePolicies.keys(); 
            e.hasMoreElements();) {
            String urn = (String) e.nextElement();

            // See if the rule is in the instance table.
            PolicyInstance inst = (PolicyInstance) mInstanceTable.get(urn);

            if (inst == null)
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_MISSING_PERSISTENT_RULE", urn));

                // See if the instance is disabled.
            if (!inst.isActive())
                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_INACTIVE", urn));

                // See if the predicated is misconfigured.
            IExpression defPred = (IExpression)
                mUndeletablePolicies.get(urn);

            // We used SimpleExpression.NULL_EXPRESSION to indicate a null.
            if (defPred == SimpleExpression.NULL_EXPRESSION)
                defPred = null;
            IExpression confPred = inst.getRule().getPredicate();

            if (defPred == null && confPred != null) {
                String[] params = {urn, "null", confPred.toString()};

                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_MISCONFIG", params));
            } else if (defPred != null && confPred == null) {
                String[] params = {urn, defPred.toString(), "null"};

                throw new EPolicyException(
                        CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_MISCONFIG", params));
            } else if (defPred != null && confPred != null) {
                if (!defPred.toString().equals(confPred.toString())) {
                    String[] params = {urn, defPred.toString(), 
                            confPred.toString()};

                    throw new EPolicyException(
                            CMS.getUserMessage("CMS_POLICY_PERSISTENT_RULE_MISCONFIG", params));
                }
            }
        }
    }
}


/**
 * Class to keep track of various configurable implementations.
 */
class RegisteredPolicy {
    String mId;
    String mClPath;
    public RegisteredPolicy (String id, String clPath) {
        if (id == null || clPath == null)
            throw new 
                AssertionException("Policy id or classpath can't be null");
        mId = id;
        mClPath = clPath;
    }
	
    public String getClassPath() {
        return mClPath;
    }
	
    public String getId() {
        return mId;
    }
}


class PolicyInstance {
    String mInstanceId;
    String mImplId;
    IPolicyRule mRule;
    boolean mIsEnabled;

    public PolicyInstance(String instanceId, String implId,
        IPolicyRule rule, boolean isEnabled) {
        mInstanceId = instanceId;
        mImplId = implId;
        mRule = rule;
        mIsEnabled = isEnabled;
    }

    public String getInstanceId() {
        return mInstanceId;
    }

    public String getImplId() {
        return mImplId;
    }

    public String getRuleInfo() {
        String enabled = mIsEnabled ? "enabled" : "disabled";

        return mInstanceId + ";" + mImplId + ";visible;" + enabled;
    }

    public IPolicyRule getRule() {
        return mRule;
    }

    public boolean isInstanceOf(String implId) {
        return mImplId.equals(implId);
    }

    public boolean isActive() {
        return mIsEnabled;
    }

    public void setActive(boolean stat) {
        mIsEnabled = stat;
    }
	
    public void setRule(IPolicyRule newRule) {
        mRule = newRule;
    }
}