1 |
779 |
jeremybenn |
/* PrintCertCmd.java -- The printcert command handler of the keytool
|
2 |
|
|
Copyright (C) 2006 Free Software Foundation, Inc.
|
3 |
|
|
|
4 |
|
|
This file is part of GNU Classpath.
|
5 |
|
|
|
6 |
|
|
GNU Classpath is free software; you can redistribute it and/or modify
|
7 |
|
|
it under the terms of the GNU General Public License as published by
|
8 |
|
|
the Free Software Foundation; either version 2, or (at your option)
|
9 |
|
|
any later version.
|
10 |
|
|
|
11 |
|
|
GNU Classpath is distributed in the hope that it will be useful, but
|
12 |
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14 |
|
|
General Public License for more details.
|
15 |
|
|
|
16 |
|
|
You should have received a copy of the GNU General Public License
|
17 |
|
|
along with GNU Classpath; see the file COPYING. If not, write to the
|
18 |
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
19 |
|
|
02110-1301 USA.
|
20 |
|
|
|
21 |
|
|
Linking this library statically or dynamically with other modules is
|
22 |
|
|
making a combined work based on this library. Thus, the terms and
|
23 |
|
|
conditions of the GNU General Public License cover the whole
|
24 |
|
|
combination.
|
25 |
|
|
|
26 |
|
|
As a special exception, the copyright holders of this library give you
|
27 |
|
|
permission to link this library with independent modules to produce an
|
28 |
|
|
executable, regardless of the license terms of these independent
|
29 |
|
|
modules, and to copy and distribute the resulting executable under
|
30 |
|
|
terms of your choice, provided that you also meet, for each linked
|
31 |
|
|
independent module, the terms and conditions of the license of that
|
32 |
|
|
module. An independent module is a module which is not derived from
|
33 |
|
|
or based on this library. If you modify this library, you may extend
|
34 |
|
|
this exception to your version of the library, but you are not
|
35 |
|
|
obligated to do so. If you do not wish to do so, delete this
|
36 |
|
|
exception statement from your version. */
|
37 |
|
|
|
38 |
|
|
|
39 |
|
|
package gnu.classpath.tools.keytool;
|
40 |
|
|
|
41 |
|
|
import gnu.classpath.Configuration;
|
42 |
|
|
import gnu.classpath.tools.common.ClasspathToolParser;
|
43 |
|
|
import gnu.classpath.tools.getopt.Option;
|
44 |
|
|
import gnu.classpath.tools.getopt.OptionException;
|
45 |
|
|
import gnu.classpath.tools.getopt.OptionGroup;
|
46 |
|
|
import gnu.classpath.tools.getopt.Parser;
|
47 |
|
|
|
48 |
|
|
import java.io.PrintWriter;
|
49 |
|
|
import java.security.cert.Certificate;
|
50 |
|
|
import java.security.cert.CertificateException;
|
51 |
|
|
import java.security.cert.CertificateFactory;
|
52 |
|
|
import java.util.logging.Logger;
|
53 |
|
|
|
54 |
|
|
/**
|
55 |
|
|
* The <b>-printcert</b> keytool command handler is used to read a certificate
|
56 |
|
|
* from a designated file, and print its contents in a human-readable format.
|
57 |
|
|
* <p>
|
58 |
|
|
* Possible options for this command are:
|
59 |
|
|
* <p>
|
60 |
|
|
* <dl>
|
61 |
|
|
* <dt>-file FILE_NAME</dt>
|
62 |
|
|
* <dd>The fully qualified path of the file to read the certificate from.
|
63 |
|
|
* If this option is omitted, the tool will process STDIN.
|
64 |
|
|
* <p></dd>
|
65 |
|
|
*
|
66 |
|
|
* <dt>-v</dt>
|
67 |
|
|
* <dd>Use this option to enable more verbose output.</dd>
|
68 |
|
|
* </dl>
|
69 |
|
|
*/
|
70 |
|
|
class PrintCertCmd extends Command
|
71 |
|
|
{
|
72 |
|
|
private static final Logger log = Logger.getLogger(PrintCertCmd.class.getName());
|
73 |
|
|
protected String _certFileName;
|
74 |
|
|
|
75 |
|
|
// default 0-arguments constructor
|
76 |
|
|
|
77 |
|
|
// public setters -----------------------------------------------------------
|
78 |
|
|
|
79 |
|
|
/** @param pathName the fully qualified path name of the file to process. */
|
80 |
|
|
public void setFile(String pathName)
|
81 |
|
|
{
|
82 |
|
|
this._certFileName = pathName;
|
83 |
|
|
}
|
84 |
|
|
|
85 |
|
|
// life-cycle methods -------------------------------------------------------
|
86 |
|
|
|
87 |
|
|
void setup() throws Exception
|
88 |
|
|
{
|
89 |
|
|
setInputStreamParam(_certFileName);
|
90 |
|
|
if (Configuration.DEBUG)
|
91 |
|
|
{
|
92 |
|
|
log.fine("-printcert handler will use the following options:"); //$NON-NLS-1$
|
93 |
|
|
log.fine(" -file=" + _certFileName); //$NON-NLS-1$
|
94 |
|
|
log.fine(" -v=" + verbose); //$NON-NLS-1$
|
95 |
|
|
}
|
96 |
|
|
}
|
97 |
|
|
|
98 |
|
|
void start() throws CertificateException
|
99 |
|
|
{
|
100 |
|
|
if (Configuration.DEBUG)
|
101 |
|
|
log.entering(getClass().getName(), "start"); //$NON-NLS-1$
|
102 |
|
|
CertificateFactory x509Factory = CertificateFactory.getInstance(Main.X_509);
|
103 |
|
|
Certificate certificate = x509Factory.generateCertificate(inStream);
|
104 |
|
|
PrintWriter writer = new PrintWriter(System.out, true);
|
105 |
|
|
writer.println();
|
106 |
|
|
printVerbose(certificate, writer);
|
107 |
|
|
if (Configuration.DEBUG)
|
108 |
|
|
log.exiting(getClass().getName(), "start"); //$NON-NLS-1$
|
109 |
|
|
}
|
110 |
|
|
|
111 |
|
|
// own methods --------------------------------------------------------------
|
112 |
|
|
|
113 |
|
|
Parser getParser()
|
114 |
|
|
{
|
115 |
|
|
if (Configuration.DEBUG)
|
116 |
|
|
log.entering(this.getClass().getName(), "getParser"); //$NON-NLS-1$
|
117 |
|
|
Parser result = new ClasspathToolParser(Main.PRINTCERT_CMD, true);
|
118 |
|
|
result.setHeader(Messages.getString("PrintCertCmd.5")); //$NON-NLS-1$
|
119 |
|
|
result.setFooter(Messages.getString("PrintCertCmd.6")); //$NON-NLS-1$
|
120 |
|
|
OptionGroup options = new OptionGroup(Messages.getString("PrintCertCmd.7")); //$NON-NLS-1$
|
121 |
|
|
options.add(new Option(Main.FILE_OPT,
|
122 |
|
|
Messages.getString("PrintCertCmd.8"), //$NON-NLS-1$
|
123 |
|
|
Messages.getString("PrintCertCmd.9")) //$NON-NLS-1$
|
124 |
|
|
{
|
125 |
|
|
public void parsed(String argument) throws OptionException
|
126 |
|
|
{
|
127 |
|
|
_certFileName = argument;
|
128 |
|
|
}
|
129 |
|
|
});
|
130 |
|
|
options.add(new Option(Main.VERBOSE_OPT,
|
131 |
|
|
Messages.getString("PrintCertCmd.10")) //$NON-NLS-1$
|
132 |
|
|
{
|
133 |
|
|
public void parsed(String argument) throws OptionException
|
134 |
|
|
{
|
135 |
|
|
verbose = true;
|
136 |
|
|
}
|
137 |
|
|
});
|
138 |
|
|
result.add(options);
|
139 |
|
|
if (Configuration.DEBUG)
|
140 |
|
|
log.exiting(this.getClass().getName(), "getParser", result); //$NON-NLS-1$
|
141 |
|
|
return result;
|
142 |
|
|
}
|
143 |
|
|
}
|