summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/servlet/csadmin/DatabasePanel.java
blob: 5615c6dfb012adcb502f7b4531f26c19834ffccb (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
// --- 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.cms.servlet.csadmin;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.PrintStream;
import java.util.Enumeration;
import java.util.Random;
import java.util.StringTokenizer;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import netscape.ldap.LDAPAttribute;
import netscape.ldap.LDAPAttributeSet;
import netscape.ldap.LDAPConnection;
import netscape.ldap.LDAPDN;
import netscape.ldap.LDAPEntry;
import netscape.ldap.LDAPException;
import netscape.ldap.LDAPModification;
import netscape.ldap.LDAPSearchConstraints;
import netscape.ldap.LDAPSearchResults;
import netscape.ldap.LDAPv3;

import org.apache.velocity.context.Context;

import com.netscape.certsrv.apps.CMS;
import com.netscape.certsrv.authentication.IAuthSubsystem;
import com.netscape.certsrv.authorization.IAuthzSubsystem;
import com.netscape.certsrv.base.EBaseException;
import com.netscape.certsrv.base.IConfigStore;
import com.netscape.certsrv.ca.ICertificateAuthority;
import com.netscape.certsrv.dbs.IDBSubsystem;
import com.netscape.certsrv.property.Descriptor;
import com.netscape.certsrv.property.IDescriptor;
import com.netscape.certsrv.property.PropertySet;
import com.netscape.certsrv.usrgrp.IUGSubsystem;
import com.netscape.certsrv.util.HttpInput;
import com.netscape.cms.servlet.wizard.WizardServlet;
import com.netscape.cmsutil.ldap.LDAPUtil;

public class DatabasePanel extends WizardPanelBase {

    private static final String HOST = "localhost";
    private static final String CLONE_HOST = "Enter FQDN here";
    private static final String PORT = "389";
    private static final String BASEDN = "o=netscapeCertificateServer";
    private static final String BINDDN = "cn=Directory Manager";
    private static final String DATABASE = "csRoot";
    private static final String MASTER_AGREEMENT = "masteragreement-";
    private static final String CLONE_AGREEMENT = "cloneagreement-";

    private WizardServlet mServlet = null;

    public DatabasePanel() {
    }

    /**
     * Initializes this panel.
     */
    public void init(ServletConfig config, int panelno)
            throws ServletException {
        setPanelNo(panelno);
        setName("Internal Database");
    }

    public void init(WizardServlet servlet, ServletConfig config, int panelno, String id)
            throws ServletException {
        setPanelNo(panelno);
        setName("Internal Database");
        setId(id);
        mServlet = servlet;
    }

    public void cleanUp() throws IOException {
        IConfigStore cs = CMS.getConfigStore();
        cs.putBoolean("preop.Database.done", false);
    }

    public boolean isPanelDone() {
        IConfigStore cs = CMS.getConfigStore();
        try {
            boolean s = cs.getBoolean("preop.Database.done",
                    false);

            if (s != true) {
                return false;
            } else {
                return true;
            }
        } catch (EBaseException e) {
        }

        return false;
    }

    public PropertySet getUsage() {
        PropertySet set = new PropertySet();
        Descriptor hostDesc = new Descriptor(IDescriptor.STRING, null, null,
                "Host name");

        set.add("hostname", hostDesc);

        Descriptor portDesc = new Descriptor(IDescriptor.INTEGER, null, null,
                "Port");

        set.add("portStr", portDesc);

        Descriptor basednDesc = new Descriptor(IDescriptor.STRING, null, null,
                "Base DN");

        set.add("basedn", basednDesc);

        Descriptor binddnDesc = new Descriptor(IDescriptor.STRING, null, null,
                "Bind DN");

        set.add("binddn", binddnDesc);

        Descriptor bindpwdDesc = new Descriptor(IDescriptor.PASSWORD, null, null,
                "Bind Password");

        set.add("bindpwd", bindpwdDesc);

        Descriptor databaseDesc = new Descriptor(IDescriptor.STRING, null, null,
                "Database");

        set.add("database", databaseDesc);

        return set;
    }

    /**
     * Display the panel.
     */
    public void display(HttpServletRequest request,
            HttpServletResponse response,
            Context context) {
        CMS.debug("DatabasePanel: display()");
        context.put("title", "Internal Database");
        context.put("firsttime", "false");
        IConfigStore cs = CMS.getConfigStore();
        String hostname = null;
        String portStr = null;
        String basedn = null;
        String binddn = null;
        String bindpwd = "";
        String database = null;
        String errorString = "";
        String secure = "false";
        String cloneStartTLS = "false";
        try {
            @SuppressWarnings("unused")
            String s = cs.getString("preop.database.removeData"); // check whether it's first time
        } catch (Exception e) {
            context.put("firsttime", "true");
        }

        String select = "";
        try {
            select = cs.getString("preop.subsystem.select", "");
        } catch (Exception e) {
        }

        if (isPanelDone()) {
            try {
                hostname = cs.getString("internaldb.ldapconn.host", "");
                portStr = cs.getString("internaldb.ldapconn.port", "");
                basedn = cs.getString("internaldb.basedn", "");
                binddn = cs.getString("internaldb.ldapauth.bindDN", "");
                database = cs.getString("internaldb.database", "");
                secure = cs.getString("internaldb.ldapconn.secureConn", "");
                cloneStartTLS = cs.getString("internaldb.ldapconn.cloneStartTLS", "");
                errorString = cs.getString("preop.database.errorString", "");
            } catch (Exception e) {
                CMS.debug("DatabasePanel display: " + e.toString());
            }
        } else if (select.equals("clone")) {
            hostname = CLONE_HOST;
            portStr = PORT;
            try {
                basedn = cs.getString("internaldb.basedn", "");
            } catch (Exception e) {
                CMS.debug("DatabasePanel::display() - "
                         + "Exception=" + e.toString());
                return;
            }
            binddn = BINDDN;
            database = basedn.substring(basedn.lastIndexOf('=') + 1);
            CMS.debug("Clone: database=" + database);
        } else {
            hostname = HOST;
            portStr = PORT;
            String instanceId = "";
            String machineName = "";

            try {
                instanceId = cs.getString("instanceId", "");
                machineName = cs.getString("machineName", "");
            } catch (Exception e) {
                CMS.debug("DatabasePanel display: " + e.toString());
            }
            String suffix = "dc=" + machineName + "-" + instanceId;

            boolean multipleEnable = false;
            try {
                multipleEnable = cs.getBoolean(
                        "internaldb.multipleSuffix.enable", false);
            } catch (Exception e) {
            }

            if (multipleEnable)
                basedn = "ou=" + instanceId + "," + suffix;
            else
                basedn = suffix;
            binddn = BINDDN;
            database = machineName + "-" + instanceId;
        }

        context.put("clone", select);
        context.put("hostname", hostname);
        context.put("portStr", portStr);
        context.put("basedn", basedn);
        context.put("binddn", binddn);
        context.put("bindpwd", bindpwd);
        context.put("database", database);
        context.put("secureConn", (secure.equals("true") ? "on" : "off"));
        context.put("cloneStartTLS", (cloneStartTLS.equals("true") ? "on" : "off"));
        context.put("panel", "admin/console/config/databasepanel.vm");
        context.put("errorString", errorString);
    }

    public void initParams(HttpServletRequest request, Context context)
                   throws IOException {
        IConfigStore config = CMS.getConfigStore();
        String select = "";
        try {
            select = config.getString("preop.subsystem.select", "");
        } catch (Exception e) {
        }
        context.put("clone", select);
        context.put("hostname", request.getParameter("host"));
        context.put("portStr", request.getParameter("port"));
        context.put("basedn", request.getParameter("basedn"));
        context.put("binddn", request.getParameter("binddn"));
        context.put("bindpwd", request.getParameter("__bindpwd"));
        context.put("database", request.getParameter("database"));
    }

    /**
     * Checks if the given parameters are valid.
     */
    public void validate(HttpServletRequest request,
            HttpServletResponse response,
            Context context) throws IOException {

        IConfigStore cs = CMS.getConfigStore();
        context.put("firsttime", "false");
        try {
            @SuppressWarnings("unused")
            String s = cs.getString("preop.database.removeData"); // check whether it's first time
        } catch (Exception e) {
            context.put("firsttime", "true");
        }

        String hostname = HttpInput.getHostname(request, "host");
        context.put("hostname", hostname);

        String portStr = HttpInput.getPortNumber(request, "port");
        context.put("portStr", portStr);

        String basedn = HttpInput.getDN(request, "basedn");
        context.put("basedn", basedn);

        String binddn = HttpInput.getDN(request, "binddn");
        context.put("binddn", binddn);

        String database = HttpInput.getLdapDatabase(request, "database");
        context.put("database", database);

        String bindpwd = HttpInput.getPassword(request, "__bindpwd");
        context.put("bindpwd", bindpwd);

        String secure = HttpInput.getCheckbox(request, "secureConn");
        context.put("secureConn", secure);

        String cloneStartTLS = HttpInput.getCheckbox(request, "cloneStartTLS");
        context.put("cloneStartTLS", cloneStartTLS);

        String select = "";
        try {
            select = cs.getString("preop.subsystem.select", "");
        } catch (Exception e) {
        }

        if (select.equals("clone")) {
            String masterhost = "";
            String masterport = "";
            String masterbasedn = "";
            try {
                masterhost = cs.getString("preop.internaldb.master.hostname", "");
                masterport = cs.getString("preop.internaldb.master.port", "");
                masterbasedn = cs.getString("preop.internaldb.master.basedn", "");
            } catch (Exception e) {
            }

            //get the real host name
            String realhostname = "";
            if (hostname.equals("localhost")) {
                try {
                    realhostname = cs.getString("machineName", "");
                } catch (Exception ee) {
                }
            }
            if (masterhost.equals(realhostname) && masterport.equals(portStr)) {
                context.put("updateStatus", "validate-failure");
                throw new IOException("Master and clone must not share the same internal database");
            }

            if (!masterbasedn.equals(basedn)) {
                context.put("updateStatus", "validate-failure");
                throw new IOException("Master and clone should have the same base DN");
            }
        }

        if (hostname == null || hostname.length() == 0) {
            cs.putString("preop.database.errorString", "Host is empty string");
            context.put("updateStatus", "validate-failure");
            throw new IOException("Host is empty string");
        }

        if (portStr != null && portStr.length() > 0) {
            try {
                Integer.parseInt(portStr); // check for errors
            } catch (Exception e) {
                cs.putString("preop.database.errorString", "Port is invalid");
                context.put("updateStatus", "validate-failure");
                throw new IOException("Port is invalid");
            }
        } else {
            cs.putString("preop.database.errorString", "Port is empty string");
            context.put("updateStatus", "validate-failure");
            throw new IOException("Port is empty string");
        }

        if (basedn == null || basedn.length() == 0) {
            cs.putString("preop.database.errorString", "Base DN is empty string");
            context.put("updateStatus", "validate-failure");
            throw new IOException("Base DN is empty string");
        }

        if (binddn == null || binddn.length() == 0) {
            cs.putString("preop.database.errorString", "Bind DN is empty string");
            context.put("updateStatus", "validate-failure");
            throw new IOException("Bind DN is empty string");
        }

        if (database == null || database.length() == 0) {
            cs.putString("preop.database.errorString",
                    "Database is empty string");
            context.put("updateStatus", "validate-failure");
            throw new IOException("Database is empty string");
        }

        if (bindpwd == null || bindpwd.length() == 0) {
            cs.putString("preop.database.errorString",
                    "Bind password is empty string");
            context.put("updateStatus", "validate-failure");
            throw new IOException("Bind password is empty string");
        }

        context.put("errorString", "");
        cs.putString("preop.database.errorString", "");
    }

    private LDAPConnection getLocalLDAPConn(Context context, String secure)
                throws IOException {
        IConfigStore cs = CMS.getConfigStore();

        String host = "";
        String port = "";
        String pwd = "";
        String binddn = "";
        String security = "";

        try {
            host = cs.getString("internaldb.ldapconn.host");
            port = cs.getString("internaldb.ldapconn.port");
            binddn = cs.getString("internaldb.ldapauth.bindDN");
            pwd = (String) context.get("bindpwd");
            security = cs.getString("internaldb.ldapconn.secureConn");
        } catch (Exception e) {
            CMS.debug("DatabasePanel populateDB: " + e.toString());
            throw new IOException(
                    "Failed to retrieve LDAP information from CS.cfg.");
        }

        int p = -1;

        try {
            p = Integer.parseInt(port);
        } catch (Exception e) {
            CMS.debug("DatabasePanel populateDB: " + e.toString());
            throw new IOException("Port is not valid");
        }

        LDAPConnection conn = null;
        if (security.equals("true")) {
            CMS.debug("DatabasePanel populateDB: creating secure (SSL) connection for internal ldap");
            conn = new LDAPConnection(CMS.getLdapJssSSLSocketFactory());
        } else {
            CMS.debug("DatabasePanel populateDB: creating non-secure (non-SSL) connection for internal ldap");
            conn = new LDAPConnection();
        }

        CMS.debug("DatabasePanel connecting to " + host + ":" + p);
        try {
            conn.connect(host, p, binddn, pwd);
        } catch (LDAPException e) {
            CMS.debug("DatabasePanel populateDB: " + e.toString());
            throw new IOException("Failed to connect to the internal database.");
        }

        return conn;
    }

    private boolean deleteDir(File dir) {
        if (dir.isDirectory()) {
            String[] children = dir.list();
            for (int i = 0; i < children.length; i++) {
                boolean success = deleteDir(new File(dir, children[i]));
                if (!success) {
                    return false;
                }
            }
        }

        // The directory is now empty so delete it
        return dir.delete();
    }

    private void cleanupDB(LDAPConnection conn, String baseDN, String database) {
        String[] entries = {};
        String filter = "objectclass=*";
        LDAPSearchConstraints cons = null;
        String[] attrs = null;
        String dn = "";
        try {
            CMS.debug("Deleting baseDN: " + baseDN);
            LDAPSearchResults res = conn.search(baseDN, LDAPConnection.SCOPE_BASE, filter,
                    attrs, true, cons);
            if (res != null)
                deleteEntries(res, conn, baseDN, entries);
        } catch (LDAPException e) {
        }

        try {
            dn = "cn=mapping tree, cn=config";
            filter = "nsslapd-backend=" + database;
            LDAPSearchResults res = conn.search(dn, LDAPConnection.SCOPE_ONE, filter,
                    attrs, true, cons);
            if (res != null) {
                while (res.hasMoreElements()) {
                    dn = res.next().getDN();
                    filter = "objectclass=*";
                    LDAPSearchResults res2 = conn.search(dn, LDAPConnection.SCOPE_BASE, filter,
                            attrs, true, cons);
                    if (res2 != null)
                        deleteEntries(res2, conn, dn, entries);
                }
            }
        } catch (LDAPException e) {
        }

        try {
            dn = "cn=" + database + ",cn=ldbm database, cn=plugins, cn=config";
            LDAPSearchResults res = conn.search(dn, LDAPConnection.SCOPE_BASE, filter,
                    attrs, true, cons);
            if (res != null) {
                deleteEntries(res, conn, dn, entries);
                String dbdir = getInstanceDir(conn) + "/db/" + database;
                if (dbdir != null) {
                    CMS.debug(" Deleting dbdir " + dbdir);
                    boolean success = deleteDir(new File(dbdir));
                    if (!success) {
                        CMS.debug("Unable to delete database directory " + dbdir);
                    }
                }
            }
        } catch (LDAPException e) {
        }
    }

    private void populateDB(HttpServletRequest request, Context context, String secure)
            throws IOException {
        IConfigStore cs = CMS.getConfigStore();

        String baseDN = "";
        String database = "";
        String dn = "";
        String dbuser = "";

        try {
            baseDN = cs.getString("internaldb.basedn");
            database = cs.getString("internaldb.database", "");
            dbuser = "uid=" + cs.getString("cs.type") + "-" + cs.getString("machineName") + "-"
                    + cs.getString("service.securePort") + ",ou=people," + baseDN;
        } catch (Exception e) {
            CMS.debug("DatabasePanel populateDB: " + e.toString());
            throw new IOException(
                    "Failed to retrieve LDAP information from CS.cfg.");
        }

        String remove = HttpInput.getID(request, "removeData");
        LDAPConnection conn = getLocalLDAPConn(context, secure);

        // check that the database and baseDN do not exist

        boolean foundBaseDN = false;
        boolean foundDatabase = false;
        try {
            LDAPEntry entry = conn.read(baseDN);
            if (entry != null)
                foundBaseDN = true;
        } catch (LDAPException e) {
            switch (e.getLDAPResultCode()) {
            case LDAPException.NO_SUCH_OBJECT:
                break;
            default:
                CMS.debug("DatabasePanel update: LDAPException " + e.toString());
                throw new IOException("Failed to create the database");
            }
        }

        try {
            dn = "cn=" + database + ",cn=ldbm database, cn=plugins, cn=config";
            LDAPEntry entry = conn.read(dn);
            if (entry != null)
                foundDatabase = true;
        } catch (LDAPException e) {
            switch (e.getLDAPResultCode()) {
            case LDAPException.NO_SUCH_OBJECT:
                break;
            default:
                CMS.debug("DatabasePanel update: LDAPException " + e.toString());
                throw new IOException("Failed to create the database");
            }
        }
        try {
            dn = "cn=\"" + baseDN + "\",cn=mapping tree, cn=config";
            LDAPEntry entry = conn.read(dn);
            if (entry != null)
                foundDatabase = true;
        } catch (LDAPException e) {
            switch (e.getLDAPResultCode()) {
            case LDAPException.NO_SUCH_OBJECT:
                break;
            default:
                CMS.debug("DatabasePanel update: LDAPException " + e.toString());
                throw new IOException("Failed to create the database");
            }
        }

        if (foundDatabase) {
            CMS.debug("DatabasePanel update: This database has already been used.");
            if (remove == null) {
                throw new IOException(
                        "This database has already been used. Select the checkbox below to remove all data and reuse this database");
            } else {
                CMS.debug("DatabasePanel update: Deleting existing DB and reusing base DN");
                cleanupDB(conn, baseDN, database);
                foundBaseDN = false;
                foundDatabase = false;
            }
        }

        if (foundBaseDN) {
            CMS.debug("DatabasePanel update: This base DN has already been used.");
            if (remove == null) {
                throw new IOException(
                        "This base DN ("
                                + baseDN
                                + ") has already been used. Select the checkbox below to remove all data and reuse this base DN");
            } else {
                CMS.debug("DatabasePanel update: Deleting existing DB and reusing base DN");
                cleanupDB(conn, baseDN, database);
                foundBaseDN = false;
                foundDatabase = false;
            }
        }

        // create database
        try {
            LDAPAttributeSet attrs = new LDAPAttributeSet();
            String oc[] = { "top", "extensibleObject", "nsBackendInstance" };
            attrs.add(new LDAPAttribute("objectClass", oc));
            attrs.add(new LDAPAttribute("cn", database));
            attrs.add(new LDAPAttribute("nsslapd-suffix", baseDN));
            dn = "cn=" + database + ",cn=ldbm database, cn=plugins, cn=config";
            LDAPEntry entry = new LDAPEntry(dn, attrs);
            conn.add(entry);
        } catch (Exception e) {
            CMS.debug("Warning: database creation error - " + e.toString());
            throw new IOException("Failed to create the database.");
        }

        try {
            LDAPAttributeSet attrs = new LDAPAttributeSet();
            String oc2[] = { "top", "extensibleObject", "nsMappingTree" };
            attrs.add(new LDAPAttribute("objectClass", oc2));
            attrs.add(new LDAPAttribute("cn", baseDN));
            attrs.add(new LDAPAttribute("nsslapd-backend", database));
            attrs.add(new LDAPAttribute("nsslapd-state", "Backend"));
            dn = "cn=\"" + baseDN + "\",cn=mapping tree, cn=config";
            LDAPEntry entry = new LDAPEntry(dn, attrs);
            conn.add(entry);
        } catch (Exception e) {
            CMS.debug("Warning: database mapping tree creation error - " + e.toString());
            throw new IOException("Failed to create the database.");
        }

        try {
            // create base dn
            CMS.debug("Creating base DN: " + baseDN);
            String dns3[] = LDAPDN.explodeDN(baseDN, false);
            StringTokenizer st = new StringTokenizer(dns3[0], "=");
            String n = st.nextToken();
            String v = st.nextToken();
            LDAPAttributeSet attrs = new LDAPAttributeSet();
            String oc3[] = { "top", "domain" };
            if (n.equals("o")) {
                oc3[1] = "organization";
            } else if (n.equals("ou")) {
                oc3[1] = "organizationalUnit";
            }
            attrs.add(new LDAPAttribute("objectClass", oc3));
            attrs.add(new LDAPAttribute(n, v));

            String dbuserACI = "(targetattr=\"*\")(version 3.0; acl \"Cert Manager access\"; allow (all) userdn=\"ldap:///"
                    + dbuser + "\";)";
            CMS.debug("ACI string is ["+ dbuserACI + "]");
            attrs.add(new LDAPAttribute("aci", dbuserACI));
            LDAPEntry entry = new LDAPEntry(baseDN, attrs);
            conn.add(entry);
        } catch (Exception e) {
            CMS.debug("Warning: suffix creation error - " + e.toString());
            throw new IOException("Failed to create the base DN: " + baseDN);
        }

        // check to see if the base dn exists
        CMS.debug("DatabasePanel checking existing " + baseDN);

        try {
            LDAPEntry entry = conn.read(baseDN);

            if (entry != null) {
                foundBaseDN = true;
            }
        } catch (LDAPException e) {
        }
        boolean createBaseDN = true;

        boolean testing = false;
        try {
            testing = cs.getBoolean("internaldb.multipleSuffix.enable", false);
        } catch (Exception e) {
        }

        if (!foundBaseDN) {
            if (!testing) {
                context.put("errorString",
                        "Base DN was not found. Please make sure to create the suffix in the internal database.");
                throw new IOException("Base DN not found");
            }

            if (createBaseDN) {
                // only auto create if it is an ou entry
                String dns1[] = LDAPDN.explodeDN(baseDN, false);

                if (dns1 == null) {
                    throw new IOException("Invalid base DN");
                }
                if (!dns1[0].startsWith("ou")) {
                    throw new IOException(
                            "Failed to find base DN, and failed to create non ou entry.");
                }
                String dns2[] = LDAPDN.explodeDN(baseDN, true);
                // support only one level creation - create new entry
                // right under the suffix
                LDAPAttributeSet attrs = new LDAPAttributeSet();
                String oc[] = { "top", "organizationalUnit" };

                attrs.add(new LDAPAttribute("objectClass", oc));
                attrs.add(new LDAPAttribute("ou", dns2[0]));
                LDAPEntry entry = new LDAPEntry(baseDN, attrs);

                try {
                    conn.add(entry);
                    foundBaseDN = true;
                    CMS.debug("DatabasePanel added " + baseDN);
                } catch (LDAPException e) {
                    throw new IOException("Failed to create " + baseDN);
                }
            }
        }
        if (!foundBaseDN) {
            throw new IOException("Failed to find base DN");
        }

        // add dbuser aci to cn=config
        String dbuserACI = "(targetattr=\"*\")(version 3.0; acl \"Cert Manager access\"; allow (read) userdn=\"ldap:///"
                + dbuser + "\";)";
        CMS.debug("ACI string is [" + dbuserACI + "]");
        String configDN = "cn=ldbm database,cn=plugins,cn=config";
        try {

            LDAPAttribute attr = new LDAPAttribute("aci", dbuserACI);
            LDAPModification mod = new LDAPModification(LDAPModification.ADD, attr);
            conn.modify(configDN, mod);
        } catch (LDAPException e) {
            if (e.getLDAPResultCode() != LDAPException.ATTRIBUTE_OR_VALUE_EXISTS) {
                e.printStackTrace();
                throw new IOException("Failed to add aci to " + configDN);
            }
        }

        String select = "";
        try {
            select = cs.getString("preop.subsystem.select", "");
        } catch (Exception e) {
        }

        if (select.equals("clone")) {
            // if this is clone, add index before replication
            // don't put in the schema or bad things will happen

            importLDIFS("preop.internaldb.ldif", conn);
            importLDIFS("preop.internaldb.index_ldif", conn);
        } else {
            // data will be replicated from the master to the clone
            // so clone does not need the data
            //

            importLDIFS("preop.internaldb.schema.ldif", conn);
            importLDIFS("preop.internaldb.ldif", conn);
            importLDIFS("preop.internaldb.data_ldif", conn);
            importLDIFS("preop.internaldb.index_ldif", conn);
        }

        try {
            conn.disconnect();
        } catch (LDAPException e) {
        }
    }

    private void importLDIFS(String param, LDAPConnection conn) throws IOException {
        IConfigStore cs = CMS.getConfigStore();
        String v = null;

        CMS.debug("DatabasePanel populateDB param=" + param);
        try {
            v = cs.getString(param);
        } catch (EBaseException e) {
            CMS.debug("DatabasePanel populateDB: " + e.toString());
            throw new IOException("Cant find ldif files.");
        }

        StringTokenizer tokenizer = new StringTokenizer(v, ",");
        String baseDN = null;
        String database = null;

        try {
            baseDN = cs.getString("internaldb.basedn");
        } catch (EBaseException e) {
            throw new IOException("internaldb.basedn is missing.");
        }

        try {
            database = cs.getString("internaldb.database");
            CMS.debug("DatabasePanel update: database=" + database);
        } catch (EBaseException e) {
            CMS.debug(
                    "DatabasePanel update: Failed to get database name. Exception: "
                            + e.toString());
            database = "userRoot";
        }

        String instancePath = null;

        try {
            instancePath = cs.getString("instanceRoot");
        } catch (EBaseException e) {
            throw new IOException("instanceRoot is missing");
        }

        String instanceId = null;

        try {
            instanceId = cs.getString("instanceId");
        } catch (EBaseException e) {
            throw new IOException("instanceId is missing");
        }

        String configDir = instancePath + File.separator + "conf";

        while (tokenizer.hasMoreTokens()) {
            String token = tokenizer.nextToken().trim();
            int index = token.lastIndexOf("/");
            String name = token;

            if (index != -1) {
                name = token.substring(index + 1);
            }

            CMS.debug("DatabasePanel importLDIFS: ldif file = " + token);
            String filename = configDir + File.separator + name;

            CMS.debug("DatabasePanel importLDIFS: ldif file copy to " + filename);
            PrintStream ps = null;
            BufferedReader in = null;

            try {
                in = new BufferedReader(new FileReader(token));
                ps = new PrintStream(new FileOutputStream(filename, false));
                while (in.ready()) {
                    String s = in.readLine();
                    int n = s.indexOf("{");

                    if (n == -1) {
                        ps.println(s);
                    } else {
                        boolean endOfline = false;

                        while (n != -1) {
                            ps.print(s.substring(0, n));
                            int n1 = s.indexOf("}");
                            String tok = s.substring(n + 1, n1);

                            if (tok.equals("instanceId")) {
                                ps.print(instanceId);
                            } else if (tok.equals("rootSuffix")) {
                                ps.print(baseDN);
                            } else if (tok.equals("database")) {
                                ps.print(database);
                            }
                            if ((s.length() + 1) == n1) {
                                endOfline = true;
                                break;
                            }
                            s = s.substring(n1 + 1);
                            n = s.indexOf("{");
                        }

                        if (!endOfline) {
                            ps.println(s);
                        }
                    }
                }
                in.close();
                ps.close();
            } catch (Exception e) {
                CMS.debug("DBSubsystem popuateDB: " + e.toString());
                throw new IOException(
                        "Problem of copying ldif file: " + filename);
            }

            LDAPUtil.importLDIF(conn, filename);
        }
    }

    /**
     * Commit parameter changes
     */
    public void update(HttpServletRequest request,
            HttpServletResponse response,
            Context context) throws IOException {
        IConfigStore cs = CMS.getConfigStore();
        boolean hasErr = false;

        context.put("firsttime", "false");
        try {
            String s = cs.getString("preop.database.removeData"); // check whether it's first time
        } catch (Exception e) {
            context.put("firsttime", "true");
        }

        String hostname1 = "";
        String portStr1 = "";
        String database1 = "";

        try {
            hostname1 = cs.getString("internaldb.ldapconn.host", "");
            portStr1 = cs.getString("internaldb.ldapconn.port", "");
            database1 = cs.getString("internaldb.database", "");
        } catch (Exception e) {
        }

        String hostname2 = HttpInput.getHostname(request, "host");
        String portStr2 = HttpInput.getPortNumber(request, "port");
        String database2 = HttpInput.getLdapDatabase(request, "database");
        String basedn2 = HttpInput.getDN(request, "basedn");

        cs.putString("internaldb.ldapconn.host", hostname2);
        cs.putString("internaldb.ldapconn.port", portStr2);
        cs.putString("internaldb.basedn", basedn2);
        String binddn = HttpInput.getDN(request, "binddn");
        cs.putString("internaldb.ldapauth.bindDN", binddn);
        cs.putString("internaldb.database", database2);
        String secure = HttpInput.getCheckbox(request, "secureConn");
        cs.putString("internaldb.ldapconn.secureConn", (secure.equals("on") ? "true" : "false"));
        String cloneStartTLS = HttpInput.getCheckbox(request, "cloneStartTLS");
        cs.putString("internaldb.ldapconn.cloneStartTLS", (cloneStartTLS.equals("on") ? "true" : "false"));

        String remove = HttpInput.getID(request, "removeData");
        if (isPanelDone() && (remove == null || remove.equals(""))) {
            /* if user submits the same data, they just want to skip 
               to the next panel, no database population is required. */
            if (hostname1.equals(hostname2) &&
                    portStr1.equals(portStr2) &&
                    database1.equals(database2)) {
                context.put("updateStatus", "success");
                return;
            }
        }

        mServlet.cleanUpFromPanel(mServlet.getPanelNo(request));

        try {
            populateDB(request, context, (secure.equals("on") ? "true" : "false"));
        } catch (IOException e) {
            CMS.debug("DatabasePanel update: populateDB Exception: " + e.toString());
            context.put("updateStatus", "failure");
            throw e;
        } catch (Exception e) {
            CMS.debug("DatabasePanel update: populateDB Exception: " + e.toString());
            context.put("errorString", e.toString());
            cs.putString("preop.database.errorString", e.toString());
            context.put("updateStatus", "failure");
            throw new IOException(e.toString());
        }

        String bindpwd = HttpInput.getPassword(request, "__bindpwd");

        /* BZ 430745 create password for replication manager */
        String replicationpwd = Integer.toString(new Random().nextInt());

        IConfigStore psStore = null;
        String passwordFile = null;

        try {
            passwordFile = cs.getString("passwordFile");
            psStore = CMS.createFileConfigStore(passwordFile);
        } catch (Exception e) {
            CMS.debug("ConfigDatabaseServlet update: " + e.toString());
            context.put("updateStatus", "failure");
            throw new IOException(e.toString());
        }
        psStore.putString("internaldb", bindpwd);
        psStore.putString("replicationdb", replicationpwd);
        cs.putString("preop.internaldb.replicationpwd", replicationpwd);
        cs.putString("preop.database.removeData", "false");

        try {
            cs.commit(false);
            psStore.commit(false);
            CMS.reinit(IDBSubsystem.SUB_ID);
            String type = cs.getString("cs.type", "");
            if (type.equals("CA"))
                CMS.reinit(ICertificateAuthority.ID);
            CMS.reinit(IAuthSubsystem.ID);
            CMS.reinit(IAuthzSubsystem.ID);
            CMS.reinit(IUGSubsystem.ID);
        } catch (Exception e) {
            CMS.debug("DatabasePanel update: " + e.toString());
            context.put("errorString", e.toString());
            cs.putString("preop.database.errorString", e.toString());
            context.put("updateStatus", "failure");
            throw new IOException(e.toString());
        }

        String select = "";
        try {
            select = cs.getString("preop.subsystem.select", "");
        } catch (Exception e) {
        }

        // always populate the index the last
        try {
            CMS.debug("Populating local indexes");
            LDAPConnection conn = getLocalLDAPConn(context,
                            (secure.equals("on") ? "true" : "false"));
            importLDIFS("preop.internaldb.post_ldif", conn);

            /* For vlvtask, we need to check if the task has 
               been completed or not.  Presence of nsTaskExitCode means task is complete
             */
            String wait_dn = cs.getString("preop.internaldb.wait_dn", "");
            if (!wait_dn.equals("")) {
                int i = 0;
                LDAPEntry task = null;
                boolean taskComplete = false;
                CMS.debug("Checking wait_dn " + wait_dn);
                do {
                    Thread.sleep(1000);
                    try {
                        task = conn.read(wait_dn, (String[]) null);
                        if (task != null) {
                            LDAPAttribute attr = task.getAttribute("nsTaskExitCode");
                            if (attr != null) {
                                taskComplete = true;
                                String val = (String) attr.getStringValues().nextElement();
                                if (val.compareTo("0") != 0) {
                                    CMS.debug("Error in populating local indexes: nsTaskExitCode=" + val);
                                }
                            }
                        }
                    } catch (LDAPException le) {
                        CMS.debug("Still checking wait_dn '" + wait_dn + "' (" + le.toString() + ")");
                    } catch (Exception e) {
                        CMS.debug("Still checking wait_dn '" + wait_dn + "' (" + e.toString() + ").");
                    }
                } while ((!taskComplete) && (i < 20));
                if (i < 20) {
                    CMS.debug("Done checking wait_dn " + wait_dn);
                } else {
                    CMS.debug("Done checking wait_dn " + wait_dn + " due to timeout.");
                }
            }

            conn.disconnect();
            CMS.debug("Done populating local indexes");
        } catch (Exception e) {
            CMS.debug("Populating index failure - " + e);
        }

        // setup replication after indexes have been created
        if (select.equals("clone")) {
            CMS.debug("Start setting up replication.");
            setupReplication(request, context, (secure.equals("on") ? "true" : "false"), (cloneStartTLS.equals("on")
                    ? "true" : "false"));
            CMS.debug("Finish setting up replication.");

            try {
                CMS.reinit(IDBSubsystem.SUB_ID);
                String type = cs.getString("cs.type", "");
                if (type.equals("CA"))
                    CMS.reinit(ICertificateAuthority.ID);
                CMS.reinit(IAuthSubsystem.ID);
                CMS.reinit(IAuthzSubsystem.ID);
                CMS.reinit(IUGSubsystem.ID);
            } catch (Exception e) {
            }
        }

        if (hasErr == false) {
            cs.putBoolean("preop.Database.done", true);
            try {
                cs.commit(false);
            } catch (EBaseException e) {
                CMS.debug(
                        "DatabasePanel: update() Exception caught at config commit: "
                                + e.toString());
            }
        }
        context.put("updateStatus", "success");
    }

    private void setupReplication(HttpServletRequest request,
                  Context context, String secure, String cloneStartTLS) throws IOException {
        String bindpwd = HttpInput.getPassword(request, "__bindpwd");
        IConfigStore cs = CMS.getConfigStore();

        String cstype = "";
        String machinename = "";
        String instanceId = "";
        try {
            cstype = cs.getString("cs.type");
            cstype = toLowerCaseSubsystemType(cstype);
            machinename = cs.getString("machineName", "");
            instanceId = cs.getString("instanceId", "");
        } catch (Exception e) {
        }

        //setup replication agreement
        String masterAgreementName = "masterAgreement1-" + machinename + "-" + instanceId;
        cs.putString("internaldb.replication.master", masterAgreementName);
        String cloneAgreementName = "cloneAgreement1-" + machinename + "-" + instanceId;
        cs.putString("internaldb.replication.consumer", cloneAgreementName);

        try {
            cs.commit(false);
        } catch (Exception e) {
        }

        String master1_hostname = "";
        int master1_port = -1;
        String master1_binddn = "";
        String master1_bindpwd = "";
        String master1_replicationpwd = "";

        try {
            master1_hostname = cs.getString("preop.internaldb.master.hostname", "");
            master1_port = cs.getInteger("preop.internaldb.master.port", -1);
            master1_binddn = cs.getString("preop.internaldb.master.binddn", "");
            master1_bindpwd = cs.getString("preop.internaldb.master.bindpwd", "");
            master1_replicationpwd = cs.getString("preop.internaldb.master.replicationpwd", "");
        } catch (Exception e) {
        }

        String master2_hostname = "";
        int master2_port = -1;
        String master2_binddn = "";
        String master2_bindpwd = "";
        String master2_replicationpwd = "";

        try {
            master2_hostname = cs.getString("internaldb.ldapconn.host", "");
            master2_port = cs.getInteger("internaldb.ldapconn.port", -1);
            master2_binddn = cs.getString("internaldb.ldapauth.bindDN", "");
            master2_bindpwd = bindpwd;
            master2_replicationpwd = cs.getString("preop.internaldb.replicationpwd", "");
        } catch (Exception e) {
        }

        LDAPConnection conn1 = null;
        LDAPConnection conn2 = null;
        if (secure.equals("true")) {
            CMS.debug("DatabasePanel setupReplication: creating secure (SSL) connections for internal ldap");
            conn1 = new LDAPConnection(CMS.getLdapJssSSLSocketFactory());
            conn2 = new LDAPConnection(CMS.getLdapJssSSLSocketFactory());
        } else {
            CMS.debug("DatabasePanel setupreplication: creating non-secure (non-SSL) connections for internal ldap");
            conn1 = new LDAPConnection();
            conn2 = new LDAPConnection();
        }

        String basedn = "";
        try {
            basedn = cs.getString("internaldb.basedn");
        } catch (Exception e) {
        }

        try {
            conn1.connect(master1_hostname, master1_port, master1_binddn,
                    master1_bindpwd);
            conn2.connect(master2_hostname, master2_port, master2_binddn,
                    master2_bindpwd);
            String suffix = cs.getString("internaldb.basedn", "");

            String replicadn = "cn=replica,cn=\"" + suffix + "\",cn=mapping tree,cn=config";
            CMS.debug("DatabasePanel setupReplication: replicadn=" + replicadn);

            String masterBindUser = "Replication Manager " + masterAgreementName;
            String cloneBindUser = "Replication Manager " + cloneAgreementName;

            createReplicationManager(conn1, masterBindUser, master1_replicationpwd);
            createReplicationManager(conn2, cloneBindUser, master2_replicationpwd);

            String dir1 = getInstanceDir(conn1);
            createChangeLog(conn1, dir1 + "/changelogs");

            String dir2 = getInstanceDir(conn2);
            createChangeLog(conn2, dir2 + "/changelogs");

            int replicaId = cs.getInteger("dbs.beginReplicaNumber", 1);

            replicaId = enableReplication(replicadn, conn1, masterBindUser, basedn, replicaId);
            replicaId = enableReplication(replicadn, conn2, cloneBindUser, basedn, replicaId);
            cs.putString("dbs.beginReplicaNumber", Integer.toString(replicaId));

            CMS.debug("DatabasePanel setupReplication: Finished enabling replication");

            createReplicationAgreement(replicadn, conn1, masterAgreementName,
                    master2_hostname, master2_port, master2_replicationpwd, basedn, cloneBindUser, secure,
                    cloneStartTLS);

            createReplicationAgreement(replicadn, conn2, cloneAgreementName,
                    master1_hostname, master1_port, master1_replicationpwd, basedn, masterBindUser, secure,
                    cloneStartTLS);

            // initialize consumer
            initializeConsumer(replicadn, conn1, masterAgreementName);

            while (!replicationDone(replicadn, conn1, masterAgreementName)) {
                CMS.debug("DatabasePanel setupReplication: Waiting for replication to complete");
                Thread.sleep(1000);
            }

            String status = replicationStatus(replicadn, conn1, masterAgreementName);
            if (!status.startsWith("0 ")) {
                CMS.debug("DatabasePanel setupReplication: consumer initialization failed. " +
                        status);
                throw new IOException("consumer initialization failed. " + status);
            }

        } catch (Exception e) {
            CMS.debug("DatabasePanel setupReplication: " + e.toString());
            throw new IOException("Failed to setup the replication for cloning.");
        }
    }

    /**
     * If validiate() returns false, this method will be called.
     */
    public void displayError(HttpServletRequest request,
            HttpServletResponse response,
            Context context) {

        try {
            initParams(request, context);
        } catch (IOException e) {
        }
        context.put("title", "Database");
        context.put("panel", "admin/console/config/databasepanel.vm");
    }

    private void createReplicationManager(LDAPConnection conn, String bindUser, String pwd)
            throws LDAPException {
        LDAPAttributeSet attrs = null;
        LDAPEntry entry = null;
        String dn = "cn=" + bindUser + ",cn=config";
        try {
            attrs = new LDAPAttributeSet();
            attrs.add(new LDAPAttribute("objectclass", "top"));
            attrs.add(new LDAPAttribute("objectclass", "person"));
            attrs.add(new LDAPAttribute("userpassword", pwd));
            attrs.add(new LDAPAttribute("cn", bindUser));
            attrs.add(new LDAPAttribute("sn", "manager"));
            entry = new LDAPEntry(dn, attrs);
            conn.add(entry);
        } catch (LDAPException e) {
            if (e.getLDAPResultCode() == LDAPException.ENTRY_ALREADY_EXISTS) {
                CMS.debug("DatabasePanel createReplicationManager: Replication Manager has already used");
                try {
                    conn.delete(dn);
                    conn.add(entry);
                } catch (LDAPException ee) {
                    CMS.debug("DatabasePanel createReplicationManager: " + ee.toString());
                }
                return;
            } else {
                CMS.debug("DatabasePanel createReplicationManager: Failed to create replication manager. Exception: "
                        + e.toString());
                throw e;
            }
        }

        CMS.debug("DatabasePanel createReplicationManager: Successfully created Replication Manager");
    }

    private void createChangeLog(LDAPConnection conn, String dir)
            throws LDAPException {
        LDAPAttributeSet attrs = null;
        LDAPEntry entry = null;
        String dn = "cn=changelog5,cn=config";
        try {
            attrs = new LDAPAttributeSet();
            attrs.add(new LDAPAttribute("objectclass", "top"));
            attrs.add(new LDAPAttribute("objectclass", "extensibleObject"));
            attrs.add(new LDAPAttribute("cn", "changelog5"));
            attrs.add(new LDAPAttribute("nsslapd-changelogdir", dir));
            entry = new LDAPEntry(dn, attrs);
            conn.add(entry);
        } catch (LDAPException e) {
            if (e.getLDAPResultCode() == LDAPException.ENTRY_ALREADY_EXISTS) {
                CMS.debug("DatabasePanel createChangeLog: Changelog entry has already used");
                /* leave it, dont delete it because it will have operation error
                                try {
                                    conn.delete(dn);
                                    conn.add(entry);
                                } catch (LDAPException ee) {
                                    CMS.debug("DatabasePanel createChangeLog: "+ee.toString());
                                }
                */
                return;
            } else {
                CMS.debug("DatabasePanel createChangeLog: Failed to create changelog entry. Exception: " + e.toString());
                throw e;
            }
        }

        CMS.debug("DatabasePanel createChangeLog: Successfully create change log entry");
    }

    private int enableReplication(String replicadn, LDAPConnection conn, String bindUser, String basedn, int id)
            throws LDAPException {
        CMS.debug("DatabasePanel enableReplication: replicadn: " + replicadn);
        LDAPAttributeSet attrs = null;
        LDAPEntry entry = null;
        try {
            attrs = new LDAPAttributeSet();
            attrs.add(new LDAPAttribute("objectclass", "top"));
            attrs.add(new LDAPAttribute("objectclass", "nsDS5Replica"));
            attrs.add(new LDAPAttribute("objectclass", "extensibleobject"));
            attrs.add(new LDAPAttribute("nsDS5ReplicaRoot", basedn));
            attrs.add(new LDAPAttribute("nsDS5ReplicaType", "3"));
            attrs.add(new LDAPAttribute("nsDS5ReplicaBindDN",
                    "cn=" + bindUser + ",cn=config"));
            attrs.add(new LDAPAttribute("cn", "replica"));
            attrs.add(new LDAPAttribute("nsDS5ReplicaId", Integer.toString(id)));
            attrs.add(new LDAPAttribute("nsds5flags", "1"));
            entry = new LDAPEntry(replicadn, attrs);
            conn.add(entry);
        } catch (LDAPException e) {
            if (e.getLDAPResultCode() == LDAPException.ENTRY_ALREADY_EXISTS) {
                /* BZ 470918 -we cant just add the new dn.  We need to do a replace instead 
                 * until the DS code is fixed */
                CMS.debug("DatabasePanel enableReplication: " + replicadn + " has already been used");

                try {
                    entry = conn.read(replicadn);
                    LDAPAttribute attr = entry.getAttribute("nsDS5ReplicaBindDN");
                    attr.addValue("cn=" + bindUser + ",cn=config");
                    LDAPModification mod = new LDAPModification(LDAPModification.REPLACE, attr);
                    conn.modify(replicadn, mod);
                } catch (LDAPException ee) {
                    CMS.debug("DatabasePanel enableReplication: Failed to modify "
                            + replicadn + " entry. Exception: " + e.toString());
                }
                return id;
            } else {
                CMS.debug("DatabasePanel enableReplication: Failed to create "
                        + replicadn + " entry. Exception: " + e.toString());
                return id;
            }
        }

        CMS.debug("DatabasePanel enableReplication: Successfully create " + replicadn + " entry.");
        return id + 1;
    }

    private void createReplicationAgreement(String replicadn,
            LDAPConnection conn, String name, String replicahost, int replicaport,
            String replicapwd, String basedn, String bindUser, String secure, String cloneStartTLS)
            throws LDAPException {
        String dn = "cn=" + name + "," + replicadn;
        CMS.debug("DatabasePanel createReplicationAgreement: dn: " + dn);
        LDAPEntry entry = null;
        LDAPAttributeSet attrs = null;
        try {
            attrs = new LDAPAttributeSet();
            attrs.add(new LDAPAttribute("objectclass", "top"));
            attrs.add(new LDAPAttribute("objectclass",
                    "nsds5replicationagreement"));
            attrs.add(new LDAPAttribute("cn", name));
            attrs.add(new LDAPAttribute("nsDS5ReplicaRoot", basedn));
            attrs.add(new LDAPAttribute("nsDS5ReplicaHost", replicahost));
            attrs.add(new LDAPAttribute("nsDS5ReplicaPort", "" + replicaport));
            attrs.add(new LDAPAttribute("nsDS5ReplicaBindDN",
                    "cn=" + bindUser + ",cn=config"));
            attrs.add(new LDAPAttribute("nsDS5ReplicaBindMethod", "Simple"));
            attrs.add(new LDAPAttribute("nsds5replicacredentials", replicapwd));

            if (secure.equals("true")) {
                attrs.add(new LDAPAttribute("nsDS5ReplicaTransportInfo", "SSL"));
            } else if (cloneStartTLS.equals("true")) {
                attrs.add(new LDAPAttribute("nsDS5ReplicaTransportInfo", "TLS"));
            }

            CMS.debug("About to set description attr to " + name);
            attrs.add(new LDAPAttribute("description", name));

            entry = new LDAPEntry(dn, attrs);
            conn.add(entry);
        } catch (LDAPException e) {
            if (e.getLDAPResultCode() == LDAPException.ENTRY_ALREADY_EXISTS) {
                CMS.debug("DatabasePanel createReplicationAgreement: " + dn + " has already used");
                try {
                    conn.delete(dn);
                } catch (LDAPException ee) {
                    CMS.debug("DatabasePanel createReplicationAgreement: " + ee.toString());
                    throw ee;
                }

                try {
                    conn.add(entry);
                } catch (LDAPException ee) {
                    CMS.debug("DatabasePanel createReplicationAgreement: " + ee.toString());
                    throw ee;
                }
            } else {
                CMS.debug("DatabasePanel createReplicationAgreement: Failed to create "
                        + dn + " entry. Exception: " + e.toString());
                throw e;
            }
        }

        CMS.debug("DatabasePanel createReplicationAgreement: Successfully create replication agreement " + name);
    }

    private void initializeConsumer(String replicadn, LDAPConnection conn,
            String name) {
        String dn = "cn=" + name + "," + replicadn;
        CMS.debug("DatabasePanel initializeConsumer: initializeConsumer dn: " + dn);
        CMS.debug("DatabasePanel initializeConsumer: initializeConsumer host: "
                + conn.getHost() + " port: " + conn.getPort());
        try {
            LDAPAttribute attr = new LDAPAttribute("nsds5beginreplicarefresh",
                    "start");
            LDAPModification mod = new LDAPModification(
                    LDAPModification.REPLACE, attr);
            CMS.debug("DatabasePanel initializeConsumer: start modifying");
            conn.modify(dn, mod);
            CMS.debug("DatabasePanel initializeConsumer: Finish modification.");
        } catch (LDAPException e) {
            CMS.debug("DatabasePanel initializeConsumer: Failed to modify " + dn + " entry. Exception: " + e.toString());
            return;
        } catch (Exception e) {
            CMS.debug("DatabasePanel initializeConsumer: exception " + e);
        }

        try {
            CMS.debug("DatabasePanel initializeConsumer: thread sleeping for 5 seconds.");
            Thread.sleep(5000);
            CMS.debug("DatabasePanel initializeConsumer: finish sleeping.");
        } catch (InterruptedException ee) {
            CMS.debug("DatabasePanel initializeConsumer: exception: " + ee.toString());
        }

        CMS.debug("DatabasePanel initializeConsumer: Successfully initialize consumer");
    }

    private boolean replicationDone(String replicadn, LDAPConnection conn, String name)
            throws IOException {
        String dn = "cn=" + name + "," + replicadn;
        String filter = "(objectclass=*)";
        String[] attrs = { "nsds5beginreplicarefresh" };

        CMS.debug("DatabasePanel replicationDone: dn: " + dn);
        try {
            LDAPSearchResults results = conn.search(dn, LDAPConnection.SCOPE_BASE, filter,
                    attrs, true);

            int count = results.getCount();
            if (count < 1) {
                throw new IOException("Replication entry not found");
            }

            LDAPEntry entry = results.next();
            LDAPAttribute refresh = entry.getAttribute("nsds5beginreplicarefresh");
            if (refresh == null) {
                return true;
            }
            return false;
        } catch (Exception e) {
            CMS.debug("DatabasePanel replicationDone: exception " + e);
            throw new IOException("Exception in replicationDone: " + e);
        }
    }

    private String replicationStatus(String replicadn, LDAPConnection conn, String name)
            throws IOException {
        String dn = "cn=" + name + "," + replicadn;
        String filter = "(objectclass=*)";
        String[] attrs = { "nsds5replicalastinitstatus" };

        CMS.debug("DatabasePanel replicationStatus: dn: " + dn);
        try {
            LDAPSearchResults results = conn.search(dn, LDAPConnection.SCOPE_BASE, filter,
                    attrs, false);

            int count = results.getCount();
            if (count < 1) {
                throw new IOException("Replication entry not found");
            }

            LDAPEntry entry = results.next();
            LDAPAttribute attr = entry.getAttribute("nsds5replicalastinitstatus");
            if (attr != null) {
                @SuppressWarnings("unchecked")
                Enumeration<String> valsInAttr = attr.getStringValues();
                if (valsInAttr.hasMoreElements()) {
                    return valsInAttr.nextElement();
                } else {
                    throw new IOException("No value returned for nsds5replicalastinitstatus");
                }
            } else {
                throw new IOException("nsDS5ReplicaLastInitStatus is null.");
            }
        } catch (Exception e) {
            CMS.debug("DatabasePanel replicationStatus: exception " + e);
            throw new IOException("Exception in replicationStatus: " + e);
        }
    }

    private String getInstanceDir(LDAPConnection conn) {
        String instancedir = "";
        try {
            String filter = "(objectclass=*)";
            String[] attrs = { "nsslapd-directory" };
            LDAPSearchResults results =
                    conn.search("cn=config,cn=ldbm database,cn=plugins,cn=config", LDAPv3.SCOPE_SUB,
                            filter, attrs, false);

            while (results.hasMoreElements()) {
                LDAPEntry entry = results.next();
                String dn = entry.getDN();
                CMS.debug("DatabasePanel getInstanceDir: DN for storing nsslapd-directory: " + dn);
                LDAPAttributeSet entryAttrs = entry.getAttributeSet();
                @SuppressWarnings("unchecked")
                Enumeration<LDAPAttribute> attrsInSet = entryAttrs.getAttributes();
                while (attrsInSet.hasMoreElements()) {
                    LDAPAttribute nextAttr = attrsInSet.nextElement();
                    String attrName = nextAttr.getName();
                    CMS.debug("DatabasePanel getInstanceDir: attribute name: " + attrName);
                    @SuppressWarnings("unchecked")
                    Enumeration<String> valsInAttr = nextAttr.getStringValues();
                    while (valsInAttr.hasMoreElements()) {
                        String nextValue = valsInAttr.nextElement();
                        if (attrName.equalsIgnoreCase("nsslapd-directory")) {
                            CMS.debug("DatabasePanel getInstanceDir: instanceDir=" + nextValue);
                            return nextValue.substring(0, nextValue.lastIndexOf("/db"));
                        }
                    }
                }
            }
        } catch (LDAPException e) {
            CMS.debug("DatabasePanel getInstanceDir: Error in retrieving the instance directory. Exception: "
                    + e.toString());
        }

        return instancedir;
    }
}