summaryrefslogtreecommitdiffstats
path: root/base/silent/src/com/netscape/pkisilent/common/Utilities.java
blob: 23fd2c54e365e797689bf11b90e10c8032dc8929 (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
package com.netscape.pkisilent.common;

// --- 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.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;

import netscape.security.x509.CertificateSerialNumber;
import netscape.security.x509.CertificateSubjectName;
import netscape.security.x509.RDN;
import netscape.security.x509.SerialNumber;
import netscape.security.x509.X500Name;
import netscape.security.x509.X509CertImpl;
import netscape.security.x509.X509CertInfo;

import com.netscape.cmsutil.util.Utils;

public class Utilities {

    public Utilities() {// Do nothing
    }

    public String cleanupQuotes(String token) {
        StringBuffer buf = new StringBuffer();
        int length = token.length();
        int curIndex = 0;

        if (token.startsWith("\"") && token.endsWith("\"")) {
            curIndex = 1;
            length--;
        }

        boolean oneQuoteFound = false;
        boolean twoQuotesFound = false;

        while (curIndex < length) {
            char curChar = token.charAt(curIndex);

            if (curChar == '"') {
                twoQuotesFound = (oneQuoteFound) ? true : false;
                oneQuoteFound = true;
            } else {
                oneQuoteFound = false;
                twoQuotesFound = false;
            }

            if (twoQuotesFound) {
                twoQuotesFound = false;
                oneQuoteFound = false;
                curIndex++;
                continue;
            }

            buf.append(curChar);
            curIndex++;
        }

        return buf.toString();
    }

    public String removechar(String token) {

        StringBuffer buf = new StringBuffer();
        int end = token.length();
        int begin = 0;

        if (token.endsWith(";")) {
            end--;
        }

        while (begin < end) {
            char curChar = token.charAt(begin);

            buf.append(curChar);
            begin++;
        }
        return buf.toString();

    }

    public String parse_httpresponse(String line) {
        // look for name=value pair
        // remove trailing white spaces
        // remove trailing ;
        // remove double quotes

        String temp = line.substring(line.indexOf("=") + 1);

        return cleanupQuotes(removechar(temp.trim()));

    }

    public String remove_newline(String s) {
        if (s == null) {
            return null;
        }

        StringBuffer val = new StringBuffer();

        for (int i = 0; i < s.length(); i++) {
            if ((s.charAt(i) == '\\') && (s.charAt(i + 1) == 'n')) {
                i++;
                continue;
            } else if ((s.charAt(i) == '\\') && (s.charAt(i + 1) == 'r')) {
                i++;
                continue;
            } else if (s.charAt(i) == '"') {
                continue;
            }
            val.append(s.charAt(i));
        }
        return val.toString();

    }

    public String normalize(String s) {

        if (s == null) {
            return null;
        }

        StringBuffer val = new StringBuffer();

        for (int i = 0; i < s.length(); i++) {
            if ((s.charAt(i) == '\\') && (s.charAt(i + 1) == 'n')) {
                val.append("\n");
                i++;
                continue;
            } else if ((s.charAt(i) == '\\') && (s.charAt(i + 1) == 'r')) {
                i++;
                continue;
            } else if (s.charAt(i) == '"') {
                continue;
            }
            val.append(s.charAt(i));
        }
        return val.toString();
    }

    /*
     * format of the file should be like this:
     * -----BEGIN CERTIFICATE-----
     * base64 encoded certificate
     * -----END CERTIFICATE-----
     */
    public String getcertfromfile(String filename) {
        StringBuffer tempBuffer = new StringBuffer();

        try {
            FileInputStream fis = new FileInputStream(filename);
            BufferedReader in = new BufferedReader(new InputStreamReader(fis));

            String temp;
            while ((temp = in.readLine()) != null) {

                if (temp.equalsIgnoreCase("-----BEGIN CERTIFICATE-----")
                        || temp.equalsIgnoreCase("-----END CERTIFICATE-----")) {
                    continue;
                }
                tempBuffer.append(temp);
            }

            return tempBuffer.toString();
        } catch (Exception e) {
            System.out.println("ERROR: getcertfromfile" + e.toString());
            return null;
        }

    }

    public String getcertfromfile_withheaders(String filename) {
        StringBuffer tempBuffer = new StringBuffer();

        try {
            FileInputStream fis = new FileInputStream(filename);
            BufferedReader in = new BufferedReader(new InputStreamReader(fis));

            String temp;
            while ((temp = in.readLine()) != null) {
                tempBuffer.append(temp);
            }
            return tempBuffer.toString();
        } catch (Exception e) {
            System.out.println(
                    "ERROR: getcertfromfile_withheaders" + e.toString());
            return null;
        }
    }

    /*
     * format of the file should be like this:
     * -----BEGIN CERTIFICATE REVOCATION LIST-----
     * base64 encoded CRL
     * -----END CERTIFICATE REVOCATION LIST-----
     */
    public String getcrlfromfile(String filename) {
        StringBuffer tempBuffer = new StringBuffer();

        try {
            FileInputStream fis = new FileInputStream(filename);
            BufferedReader in = new BufferedReader(new InputStreamReader(fis));

            String temp;
            while ((temp = in.readLine()) != null) {
                tempBuffer.append(temp);
            }

            return tempBuffer.toString();
        } catch (Exception e) {
            System.out.println("ERROR: getcrlfromfile" + e.toString());
            return null;
        }

    }

    /*
     * format of the file should be like this:
     * -----BEGIN CERTIFICATE-----
     * base64 encoded certificate
     * -----END CERTIFICATE-----
     */
    public String getcafromfile(String filename) {
        StringBuffer tempBuffer = new StringBuffer();

        try {
            FileInputStream fis = new FileInputStream(filename);
            BufferedReader in = new BufferedReader(new InputStreamReader(fis));

            String temp;
            while ((temp = in.readLine()) != null) {
                tempBuffer.append(temp);
            }

            return tempBuffer.toString();
        } catch (Exception e) {
            System.out.println("ERROR: getcafromfile" + e.toString());
            return null;
        }

    }

    /*
     * function for RFC 2254. converts a x509 certificate given as
     * a binary array[] to a Ldap filter string
     */
    public static String escapeBinaryData(byte data[]) {
        StringBuffer result = new StringBuffer();

        for (int i = 0; i < data.length; i++) {
            String s = Integer.toHexString(0xff & data[i]);

            if (s.length() == 1) {
                s = "0" + s;
            }
            result.append("\\" + s);
        }

        System.out.println("LDAP_FILTER=" + result.toString());
        return result.toString();
    }

    /*
     * function to decode base64 encoded certificate
     */
    public CertificateRecord decode_cert(String cert) {

        String head = "-----BEGIN CERTIFICATE-----";
        String tail = "-----END CERTIFICATE-----";

        CertificateRecord cr = new CertificateRecord();

        int head_pos = cert.indexOf(head);
        int tail_pos = cert.indexOf(tail);

        // String not found
        if (head_pos == -1 || tail_pos == -1) {
            return null;
        }

        String temp = cert.substring(head_pos + head.length(), tail_pos);

        temp = temp.replaceAll("\\r", "");
        temp = temp.replaceAll("\\n", "");

        try {
            // BASE64Decoder base64 = new BASE64Decoder();
            // byte decodedBASE64Cert[] = base64.decodeBuffer(temp);
            byte decodedBASE64Cert[] = Utils.base64decode(temp);
            X509CertImpl x509_cert = new X509CertImpl(decodedBASE64Cert);
            X509CertInfo certinfo = (X509CertInfo) x509_cert.get("x509.INFO");

            /* Get Serial Number */
            CertificateSerialNumber csn = (CertificateSerialNumber)
                    certinfo.get(X509CertInfo.SERIAL_NUMBER);
            SerialNumber sn = (SerialNumber) csn.get("NUMBER");

            // just adding serialnumber for add.
            // we can add mode here like subject name, extensions,issuer to this record.
            cr.serialNumber = sn.getNumber().toString().trim();

            /* Get Subject Name */

            CertificateSubjectName csn1 = (CertificateSubjectName)
                    certinfo.get(X509CertInfo.SUBJECT);

            X500Name dname = (X500Name) csn1.get(CertificateSubjectName.DN_NAME);

            StringBuffer pp = new StringBuffer();
            RDN[] rdns = dname.getNames();

            for (int i = rdns.length - 1; i >= 0; i--) {
                pp.append(rdns[i] + "\n");
            }

            cr.subject = pp.toString();

        } catch (Exception e) {
            System.out.println("ERROR: Exception when decoding certificate=" + e);
            e.printStackTrace();
            return null;
        }

        return cr;

    }

}; // end class