summaryrefslogtreecommitdiffstats
path: root/pki/base/silent/src/com/netscape/pkisilent/ConfigureRA.java
blob: a9345cc5f01c51ba81abb10c6dba84a5b32bf739 (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
package com.netscape.pkisilent;

// --- 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 ---

import java.io.ByteArrayInputStream;
import java.net.URLEncoder;
import java.util.ArrayList;

import com.netscape.osutil.OSUtil;
import com.netscape.pkisilent.argparser.ArgParser;
import com.netscape.pkisilent.argparser.StringHolder;
import com.netscape.pkisilent.common.ComCrypto;
import com.netscape.pkisilent.common.ParseXML;
import com.netscape.pkisilent.http.HTTPClient;
import com.netscape.pkisilent.http.HTTPResponse;

public class ConfigureRA {

    // define global variables

    public static HTTPClient hc = null;

    public static String login_uri = "/ra/admin/console/config/login";
    public static String wizard_uri = "/ra/admin/console/config/wizard";
    public static String admin_uri = "/ca/admin/ca/getBySerial";

    public static String sd_login_uri = "/ca/admin/ca/securityDomainLogin";
    public static String sd_get_cookie_uri = "/ca/admin/ca/getCookie";
    public static String sd_update_domain_uri = "/ca/agent/ca/updateDomainXML";
    public static String pkcs12_uri = "/ra/admin/console/config/savepkcs12";

    public static String cs_hostname = null;
    public static String cs_port = null;
    public static String cs_clientauth_port = null;

    public static String sd_hostname = null;
    public static String sd_ssl_port = null;
    public static String sd_agent_port = null;
    public static String sd_admin_port = null;
    public static String sd_admin_name = null;
    public static String sd_admin_password = null;

    public static String ca_hostname = null;
    public static String ca_port = null;
    public static String ca_ssl_port = null;
    public static String ca_admin_port = null;

    public static String client_certdb_dir = null;
    public static String client_certdb_pwd = null;

    // Login Panel 
    public static String pin = null;

    public static String domain_name = null;

    public static String admin_user = null;
    public static String admin_email = null;
    public static String admin_password = null;
    public static String admin_serial_number = null;
    public static String agent_name = null;

    public static String key_size = null;
    public static String key_type = null;
    public static String token_name = null;
    public static String token_pwd = null;

    public static String agent_key_size = null;
    public static String agent_key_type = null;
    public static String agent_cert_subject = null;

    public static String server_cert_name = null;
    public static String server_cert_req = null;
    public static String server_cert_pp = null;
    public static String server_cert_cert = null;

    public static String ra_subsystem_cert_name = null;
    public static String ra_subsystem_cert_req = null;
    public static String ra_subsystem_cert_pp = null;
    public static String ra_subsystem_cert_cert = null;

    // names 
    public static String ra_server_cert_subject_name = null;
    public static String ra_server_cert_nickname = null;
    public static String ra_subsystem_cert_subject_name = null;
    public static String ra_subsystem_cert_nickname = null;
    public static String subsystem_name = null;

    // Security Domain Login Panel
    public static String ra_session_id = null;

    // Admin Certificate Request Panel
    public static String requestor_name = null;

    public ConfigureRA() {
        // do nothing :)
    }

    public void sleep_time() {
        try {
            System.out.println("Sleeping for 5 secs..");
            Thread.sleep(5000);
        } catch (Exception e) {
            System.out.println("ERROR: sleep problem");
        }

    }

    public boolean LoginPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        String query_string = "pin=" + pin + "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, login_uri, query_string);
        System.out.println("xml returned: " + hr.getHTML());

        // parse xml here - nothing to parse

        // no cookie for ra
        // get cookie
        String temp = hr.getCookieValue("pin");

        if (temp != null) {
            int index = temp.indexOf(";");
            HTTPClient.j_session_id = temp.substring(0, index);
            st = true;
        }

        hr = null;
        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri,
                        "p=0&op=next&xml=true");

        // parse xml here

        bais = new ByteArrayInputStream(
                            hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        st = true;
        return st;
    }

    public boolean DomainPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        String domain_url = "https://" + sd_hostname + ":" + sd_admin_port;

        String query_string = "p=1" +
                            "&choice=existingdomain" +
                            "&sdomainURL=" +
                            URLEncoder.encode(domain_url) +
                            "&op=next" +
                            "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;

    }

    public boolean DisplayChainPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();
        String query_string = null;

        query_string = "p=2" + "&op=next" + "&xml=true";
        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        return true;

    }

    public boolean SecurityDomainLoginPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        String ra_url = "https://" + cs_hostname + ":" + cs_port +
                            "/ra/admin/console/config/wizard" +
                            "?p=3&subsystem=RA";

        String query_string = "url=" + URLEncoder.encode(ra_url) + "";

        hr = hc.sslConnect(sd_hostname, sd_admin_port, sd_login_uri, query_string);

        String query_string_1 = "uid=" + sd_admin_name +
                                "&pwd=" + URLEncoder.encode(sd_admin_password) +
                                "&url=" + URLEncoder.encode(ra_url) +
                                "";

        hr = hc.sslConnect(sd_hostname, sd_admin_port, sd_get_cookie_uri,
                        query_string_1);

        // get session id from security domain
        sleep_time();

        ra_session_id = hr.getContentValue("header.session_id");
        String ra_url_1 = hr.getContentValue("header.url");

        System.out.println("RA_SESSION_ID=" + ra_session_id);
        System.out.println("RA_URL=" + ra_url_1);

        // use session id to connect back to RA

        String query_string_2 = "p=3" +
                                "&subsystem=RA" +
                                "&session_id=" + ra_session_id +
                                "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri,
                        query_string_2);

        // parse xml - no parsing

        return true;

    }

    public boolean SubsystemPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        sleep_time();
        String query_string = "p=3" +
                        "&choice=newsubsystem" +
                        "&subsystemName=" +
                        URLEncoder.encode(subsystem_name) +
                        "&op=next" +
                        "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);
        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        sleep_time();
        String ca_url = "https://" + ca_hostname + ":" + ca_ssl_port;

        // CA choice panel
        query_string = "p=4" +
                    "&urls=0" +
                    "&op=next" +
                    "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);
        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;
    }

    public boolean DBPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        // SQL LITE PANEL

        String query_string = "p=5" + "&op=next" + "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;
    }

    public boolean TokenChoicePanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        ////////////////////////////////////////////////////////
        String query_string = null;

        // Software Token
        if (token_name.equalsIgnoreCase("internal")) {
            query_string = "p=6" +
                            "&choice=" +
                            URLEncoder.encode("NSS Certificate DB") +
                            "&op=next" +
                            "&xml=true";

            hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);
            // parse xml
            bais = new ByteArrayInputStream(hr.getHTML().getBytes());
            px.parse(bais);
            px.prettyprintxml();
        }
        // HSM
        else {
            // login to hsm first
            query_string = "p=7" +
                            "&uTokName=" +
                            URLEncoder.encode(token_name) +
                            "&__uPasswd=" +
                            URLEncoder.encode(token_pwd) +
                            "&op=next" +
                            "&xml=true";

            hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);
            // parse xml
            bais = new ByteArrayInputStream(hr.getHTML().getBytes());
            px.parse(bais);
            px.prettyprintxml();

            // choice with token name now
            query_string = "p=6" +
                            "&choice=" +
                            URLEncoder.encode(token_name) +
                            "&op=next" +
                            "&xml=true";

            hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);
            // parse xml
            bais = new ByteArrayInputStream(hr.getHTML().getBytes());
            px.parse(bais);
            px.prettyprintxml();

        }

        return true;
    }

    public boolean KeyPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        String query_string = "p=8" +
                            "&keytype=" + key_type +
                            "&choice=default" +
                            "&custom_size=" + key_size +
                            "&sslserver_keytype=" + key_type +
                            "&sslserver_choice=custom" +
                            "&sslserver_custom_size=" + key_size +
                            "&subsystem_keytype=" + key_type +
                            "&subsystem_choice=custom" +
                            "&subsystem_custom_size=" + key_size +
                            "&op=next" +
                            "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;
    }

    public boolean CertSubjectPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();
        ArrayList<String> req_list = null;
        ArrayList<String> cert_list = null;
        ArrayList<String> dn_list = null;

        String ca_url = "https://" + ca_hostname + ":" + ca_ssl_port;

        String query_string = "p=9" +
                    "&sslserver=" +
                    URLEncoder.encode(ra_server_cert_subject_name) +
                    "&sslserver_nick=" +
                    URLEncoder.encode(ra_server_cert_nickname) +
                    "&subsystem=" +
                    URLEncoder.encode(ra_subsystem_cert_subject_name) +
                    "&subsystem_nick=" +
                    URLEncoder.encode(ra_subsystem_cert_nickname) +
                    "&urls=0" +
                    "&op=next" +
                    "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;
    }

    public boolean CertificatePanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();

        String query_string = "p=10" +
                            "&sslserver=" +
                            "&sslserver_cc=" +
                            "&subsystem=" +
                            "&subsystem_cc=" +
                            "&op=next" +
                            "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;
    }

    public boolean AdminCertReqPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();
        String admin_cert_request = null;

        requestor_name = "RA-" + cs_hostname + "-" + cs_clientauth_port;

        ComCrypto cCrypt = new ComCrypto(client_certdb_dir,
                                        client_certdb_pwd,
                                        agent_cert_subject,
                                        agent_key_size,
                                        agent_key_type);
        cCrypt.setDebug(true);
        cCrypt.setGenerateRequest(true);
        cCrypt.setTransportCert(null);
        cCrypt.setDualKey(false);
        cCrypt.loginDB();

        String crmf_request = cCrypt.generateCRMFrequest();

        if (crmf_request == null) {
            System.out.println("ERROR: AdminCertReqPanel() cert req gen failed");
            return false;
        }

        admin_cert_request = crmf_request;

        String query_string = "p=11" +
                            "&uid=" + admin_user +
                            "&name=" +
                            URLEncoder.encode("RA Administrator") +
                            "&email=" +
                            URLEncoder.encode(admin_email) +
                            "&__pwd=" + URLEncoder.encode(admin_password) +
                            "&__admin_password_again=" + URLEncoder.encode(admin_password) +
                            "&cert_request=" +
                            URLEncoder.encode(admin_cert_request) +
                            "&display=0" +
                            "&profileId=" + "caAdminCert" +
                            "&cert_request_type=" + "crmf" +
                            "&import=true" +
                            "&uid=" + admin_user +
                            "&clone=0" +
                            "&securitydomain=" +
                            URLEncoder.encode(domain_name) +
                            "&subject=" +
                            URLEncoder.encode(agent_cert_subject) +
                            "&requestor_name=" +
                            URLEncoder.encode(requestor_name) +
                            "&sessionID=" + ra_session_id +
                            "&auth_hostname=" + ca_hostname +
                            "&auth_port=" + ca_ssl_port +
                            "&op=next" +
                            "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        admin_serial_number = px.getvalue("serialNumber");

        return true;
    }

    public boolean AdminCertImportPanel() {
        boolean st = false;
        HTTPResponse hr = null;
        ByteArrayInputStream bais = null;
        ParseXML px = new ParseXML();
        String cert_to_import = null;

        String query_string = "serialNumber=" + admin_serial_number +
                            "&importCert=" + "true" +
                            "";

        // NOTE:  CA, DRM, OCSP, and TKS use the Security Domain Admin Port;
        //        whereas RA and TPS use the CA Admin Port associated with
        //        the 'CA choice panel' as invoked from the SubsystemPanel()
        //        which MAY or MAY NOT be the same CA as the CA specified
        //        by the Security Domain.
        hr = hc.sslConnect(ca_hostname, ca_admin_port, admin_uri, query_string);

        try {
            // cert_to_import = 
            //     new sun.misc.BASE64Encoder().encode(hr.getResponseData());
            cert_to_import =
                    OSUtil.BtoA(hr.getResponseData());

        } catch (Exception e) {
            System.out.println("ERROR: failed to retrieve cert");
        }

        System.out.println("Imported Cert=" + cert_to_import);

        ComCrypto cCrypt = new ComCrypto(client_certdb_dir,
                                        client_certdb_pwd,
                                        null,
                                        null,
                                        null);
        cCrypt.setDebug(true);
        cCrypt.setGenerateRequest(true);
        cCrypt.loginDB();

        String start = "-----BEGIN CERTIFICATE-----\r\n";
        String end = "\r\n-----END CERTIFICATE-----";

        st = cCrypt.importCert(start + cert_to_import + end, agent_name);
        if (!st) {
            System.out.println("ERROR: AdminCertImportPanel() during cert import");
            return false;
        }

        System.out.println("SUCCESS: imported admin user cert");

        String query_string_1 = "p=12" +
                                "&serialNumber=" + admin_serial_number +
                                "&caHost=" +
                                URLEncoder.encode(ca_hostname) +
                                "&caPort=" + ca_admin_port +
                                "&op=next" +
                                "&xml=true";

        hr = hc.sslConnect(cs_hostname, cs_port, wizard_uri, query_string_1);

        // parse xml
        bais = new ByteArrayInputStream(hr.getHTML().getBytes());
        px.parse(bais);
        px.prettyprintxml();

        return true;
    }

    public boolean ConfigureRAInstance() {
        // 0. login to cert db
        ComCrypto cCrypt = new ComCrypto(client_certdb_dir,
                                        client_certdb_pwd,
                                        null,
                                        null,
                                        null);
        cCrypt.setDebug(true);
        cCrypt.setGenerateRequest(true);
        cCrypt.loginDB();

        // instantiate http client
        hc = new HTTPClient();

        sleep_time();
        // 1. Login panel
        boolean log_st = LoginPanel();
        if (!log_st) {
            System.out.println("ERROR: JSESSIONID not found.");
            System.out.println("ERROR: ConfigureRA: LoginPanel() failure");
            return false;
        }

        sleep_time();
        // 2. domain panel
        boolean dom_st = DomainPanel();
        if (!dom_st) {
            System.out.println("ERROR: ConfigureRA: DomainPanel() failure");
            return false;
        }

        sleep_time();
        // 3. display cert chain panel
        boolean disp_st = DisplayChainPanel();
        if (!disp_st) {
            System.out.println("ERROR: ConfigureRA: DisplayChainPanel() failure");
            return false;
        }

        sleep_time();
        // security domain login panel
        boolean disp_sd = SecurityDomainLoginPanel();
        if (!disp_sd) {
            System.out.println("ERROR: ConfigureRA: SecurityDomainLoginPanel() failure");
            return false;
        }

        sleep_time();
        // 4. subsystem panel
        boolean disp_ss = SubsystemPanel();
        if (!disp_ss) {
            System.out.println("ERROR: ConfigureRA: SubsystemPanel() failure");
            return false;
        }

        sleep_time();
        // 5. ldap connection panel
        boolean disp_ldap = DBPanel();
        if (!disp_ldap) {
            System.out.println("ERROR: ConfigureRA: DBPanel() failure");
            return false;
        }

        sleep_time();
        // 6. Token Choice Panel
        boolean disp_token = TokenChoicePanel();
        if (!disp_token) {
            System.out.println("ERROR: ConfigureRA: TokenChoicePanel() failure");
            return false;
        }

        sleep_time();
        // 8. Key Panel
        boolean disp_key = KeyPanel();
        if (!disp_key) {
            System.out.println("ERROR: ConfigureRA: KeyPanel() failure");
            return false;
        }

        sleep_time();
        // 9. Cert Subject Panel
        boolean disp_csubj = CertSubjectPanel();
        if (!disp_csubj) {
            System.out.println("ERROR: ConfigureRA: CertSubjectPanel() failure");
            return false;
        }

        sleep_time();
        // 10. Certificate Panel
        boolean disp_cp = CertificatePanel();
        if (!disp_cp) {
            System.out.println("ERROR: ConfigureRA: CertificatePanel() failure");
            return false;
        }

        sleep_time();
        // 11. Admin Cert Req Panel
        boolean disp_adm = AdminCertReqPanel();
        if (!disp_adm) {
            System.out.println("ERROR: ConfigureRA: AdminCertReqPanel() failure");
            return false;
        }

        sleep_time();
        // 12. Admin Cert import Panel
        boolean disp_im = AdminCertImportPanel();
        if (!disp_im) {
            System.out.println("ERROR: ConfigureRA: AdminCertImportPanel() failure");
            return false;
        }

        return true;
    }

    public static void main(String args[]) {
        ConfigureRA ca = new ConfigureRA();

        // set variables
        StringHolder x_cs_hostname = new StringHolder();
        StringHolder x_cs_port = new StringHolder();
        StringHolder x_cs_clientauth_port = new StringHolder();

        StringHolder x_sd_hostname = new StringHolder();
        StringHolder x_sd_ssl_port = new StringHolder();
        StringHolder x_sd_agent_port = new StringHolder();
        StringHolder x_sd_admin_port = new StringHolder();
        StringHolder x_sd_admin_name = new StringHolder();
        StringHolder x_sd_admin_password = new StringHolder();

        StringHolder x_ca_hostname = new StringHolder();
        StringHolder x_ca_port = new StringHolder();
        StringHolder x_ca_ssl_port = new StringHolder();
        StringHolder x_ca_admin_port = new StringHolder();

        StringHolder x_client_certdb_dir = new StringHolder();
        StringHolder x_client_certdb_pwd = new StringHolder();
        StringHolder x_preop_pin = new StringHolder();

        StringHolder x_domain_name = new StringHolder();

        StringHolder x_admin_user = new StringHolder();
        StringHolder x_admin_email = new StringHolder();
        StringHolder x_admin_password = new StringHolder();

        // key size
        StringHolder x_token_name = new StringHolder();
        StringHolder x_token_pwd = new StringHolder();
        StringHolder x_key_size = new StringHolder();
        StringHolder x_key_type = new StringHolder();

        StringHolder x_agent_key_size = new StringHolder();
        StringHolder x_agent_key_type = new StringHolder();
        StringHolder x_agent_cert_subject = new StringHolder();

        StringHolder x_agent_name = new StringHolder();

        // ra cert subject name params
        StringHolder x_ra_server_cert_subject_name = new StringHolder();
        StringHolder x_ra_server_cert_nickname = new StringHolder();
        StringHolder x_ra_subsystem_cert_subject_name = new StringHolder();
        StringHolder x_ra_subsystem_cert_nickname = new StringHolder();

        // subsystemName
        StringHolder x_subsystem_name = new StringHolder();

        // parse the args
        ArgParser parser = new ArgParser("ConfigureRA");

        parser.addOption("-cs_hostname %s #CS Hostname",
                            x_cs_hostname);
        parser.addOption("-cs_port %s #CS SSL port",
                            x_cs_port);
        parser.addOption("-cs_clientauth_port %s #CS SSL port",
                            x_cs_clientauth_port);

        parser.addOption("-sd_hostname %s #Security Domain Hostname",
                            x_sd_hostname);
        parser.addOption("-sd_ssl_port %s #Security Domain SSL EE port",
                            x_sd_ssl_port);
        parser.addOption("-sd_agent_port %s #Security Domain SSL Agent port",
                            x_sd_agent_port);
        parser.addOption("-sd_admin_port %s #Security Domain SSL Admin port",
                            x_sd_admin_port);
        parser.addOption("-sd_admin_name %s #Security Domain username",
                            x_sd_admin_name);
        parser.addOption("-sd_admin_password %s #Security Domain password",
                            x_sd_admin_password);

        parser.addOption("-ca_hostname %s #CA Hostname",
                            x_ca_hostname);
        parser.addOption("-ca_port %s #CA non-SSL port",
                            x_ca_port);
        parser.addOption("-ca_ssl_port %s #CA SSL port",
                            x_ca_ssl_port);
        parser.addOption("-ca_admin_port %s #CA SSL Admin port",
                            x_ca_admin_port);

        parser.addOption("-client_certdb_dir %s #Client CertDB dir",
                            x_client_certdb_dir);
        parser.addOption("-client_certdb_pwd %s #client certdb password",
                            x_client_certdb_pwd);
        parser.addOption("-preop_pin %s #pre op pin",
                            x_preop_pin);
        parser.addOption("-domain_name %s #domain name",
                            x_domain_name);
        parser.addOption("-admin_user %s #Admin User Name",
                            x_admin_user);
        parser.addOption("-admin_email %s #Admin email",
                            x_admin_email);
        parser.addOption("-admin_password %s #Admin password",
                            x_admin_password);
        parser.addOption("-agent_name %s #Agent Cert Nickname",
                            x_agent_name);

        parser.addOption("-token_name %s #HSM/Software Token name",
                            x_token_name);
        parser.addOption("-token_pwd %s #HSM/Software Token password",
                            x_token_pwd);
        parser.addOption("-key_size %s #Key Size",
                            x_key_size);
        parser.addOption("-key_type %s #Key type [rsa,ecc]",
                            x_key_type);

        parser.addOption("-agent_key_size %s #Agent Cert Key Size",
                            x_agent_key_size);
        parser.addOption("-agent_key_type %s #Agent cert Key type [rsa]",
                            x_agent_key_type);
        parser.addOption("-agent_cert_subject %s #Agent cert Subject",
                            x_agent_cert_subject);

        parser.addOption(
                "-ra_server_cert_subject_name %s #RA server cert subject name",
                            x_ra_server_cert_subject_name);
        parser.addOption(
                "-ra_server_cert_nickname %s #RA server cert nickname",
                            x_ra_server_cert_nickname);
        parser.addOption(
                "-ra_subsystem_cert_subject_name %s #RA subsystem cert subject name",
                            x_ra_subsystem_cert_subject_name);
        parser.addOption(
                "-ra_subsystem_cert_nickname %s #RA subsystem cert nickname",
                            x_ra_subsystem_cert_nickname);

        parser.addOption(
                "-subsystem_name %s #RA subsystem name",
                            x_subsystem_name);

        // and then match the arguments
        String[] unmatched = null;
        unmatched = parser.matchAllArgs(args, 0, ArgParser.EXIT_ON_UNMATCHED);

        if (unmatched != null) {
            System.out.println("ERROR: Argument Mismatch");
            System.exit(-1);
        }

        // set variables
        cs_hostname = x_cs_hostname.value;
        cs_port = x_cs_port.value;
        cs_clientauth_port = x_cs_clientauth_port.value;

        sd_hostname = x_sd_hostname.value;
        sd_ssl_port = x_sd_ssl_port.value;
        sd_agent_port = x_sd_agent_port.value;
        sd_admin_port = x_sd_admin_port.value;
        sd_admin_name = x_sd_admin_name.value;
        sd_admin_password = x_sd_admin_password.value;

        ca_hostname = x_ca_hostname.value;
        ca_port = x_ca_port.value;
        ca_ssl_port = x_ca_ssl_port.value;
        ca_admin_port = x_ca_admin_port.value;

        client_certdb_dir = x_client_certdb_dir.value;
        client_certdb_pwd = x_client_certdb_pwd.value;
        pin = x_preop_pin.value;
        domain_name = x_domain_name.value;

        admin_user = x_admin_user.value;
        admin_email = x_admin_email.value;
        admin_password = x_admin_password.value;
        agent_name = x_agent_name.value;

        key_size = x_key_size.value;
        key_type = x_key_type.value;
        token_name = x_token_name.value;
        token_pwd = x_token_pwd.value;

        agent_key_size = x_agent_key_size.value;
        agent_key_type = x_agent_key_type.value;
        agent_cert_subject = x_agent_cert_subject.value;

        ra_server_cert_subject_name =
                x_ra_server_cert_subject_name.value;
        ra_server_cert_nickname =
                x_ra_server_cert_nickname.value;
        ra_subsystem_cert_subject_name =
                x_ra_subsystem_cert_subject_name.value;
        ra_subsystem_cert_nickname =
                x_ra_subsystem_cert_nickname.value;

        subsystem_name = x_subsystem_name.value;

        boolean st = ca.ConfigureRAInstance();

        if (!st) {
            System.out.println("ERROR: unable to create RA");
            System.exit(-1);
        }

        System.out.println("Certificate System - RA Instance Configured");
        System.exit(0);

    }

};