| C H A P T E R 8 |
|
Packaging and Deploying Your Application |
This chapter describes how to prepare your applet application to be put into module JAR files, and then to a smart card. The off-card installer, the scriptgen tool, resides on your desktop and operates as a packager.
If you have developed your classic application using the Connected Edition of the development kit and are bringing your finished CAP file back into this classic development kit for packaging and deployment, the scriptgen tool described in this chapter is where you need to start.
The output from scriptgen goes to apdutool, which resides on your desktop and acts as a deployment tool. The on-card installer resides in the RE on the card and receives Application Protocol Data Unit commands (APDUs) from apdutool.
The APDU I/O packages provide a convenient API for writing client-side applications that communicate with Java Card technology-enabled smart cards (See Chapter 16). They are also used by all RMI samples included with this development kit (See Chapter 4).
The development kit installer can be used to:
The on-card installer is not a multiselectable application. On startup, the on-card installer is the default applet on logical channel 0. The default applet on the other logical channels is set to No applet selected.
FIGURE 8-1 illustrates the components of the installer and how they interact with other parts of Java Card technology. The dotted line encloses the installer components.
The off-card installer is scriptgen. The on-card installer resides on the smart card. apdutool is not considered an installer, but processes the output from scriptgen and sends it to the on-card installer.
For more information about the installer, see the Runtime Environment Specification, Java Card Platform, Version 3.0.1, Classic Edition.
FIGURE 8-1 Installer Components
The data flow of the installation process is as follows:
1. The scriptgen off-card installer takes as input a version 2.1, 2.2, 2.2.1, 2.2.2, 3.0, 3.0.1, 3.0.2 or 3.0.3 CAP file produced by the Converter, and produces a text file that contains a sequence of APDU commands.
2. This set of APDUs is then read by apdutool and sent to the on-card installer.
3. The on-card installer processes the CAP file contents contained in the APDU commands as it receives them.
4. The response APDU from the on-card installer contains a status and optional response data.
The scriptgen tool converts a package contained in a CAP file into a script file. The script file contains a sequence of APDUs in ASCII format suitable for another tool, such as apdutool, to send to the CAD. The CAP file component order in the APDU script is identical to the order recommended by the Virtual Machine Specification, Java Card Platform, Version 3.0.1, Classic Edition.
If you have a source release, you can localize locale-specific data associated with the scriptgen tool. For more information, see Chapter 14.
Enter the scriptgen command on the command line in this format (see TABLE 8-1 for a description of the options):
scriptgen.bat [options] cap-file
| Note - The file to invoke scriptgen is a batch file (scriptgen.bat) that must be run from a working directory of JC_CLASSIC_HOME\bin in order for the code to execute properly. |
|
Suppresses the output of the CAP Begin” and CAP End” APDU commands. |
|
|
Specifies the name of the package contained in the CAP file. According to the Virtual Machine Specification, Java Card Platform, Version 3.0.1, Classic Edition, the CAP file can contain components besides the ones required by the package. This option helps to avoid any possible ambiguity in determining which components should be included. |
|
| Note - If the CAP file contains components of multiple packages, you must use the -package <package_name> option to specify which package to process. |
| Note - The apdutool commands: powerup; and powerdown; are not included in the output from scriptgen. |
The apdutool reads a script file containing APDUs and sends them to the RI, or to another Java Card RE. Each APDU is processed and returned to apdutool, which displays both the command and response APDUs on the console. Optionally, apdutool can write this information to a log file.
If you have a source release, you can localize messages from apdutool. For more information, see Chapter 14.
You run apdutool with the following command syntax (see TABLE 8-2 for a description of the options):
apdutool.bat [-t0] [-verbose] [-nobanner] [-noatr] [-d | --descriptiveoutput] [-k] [-o output-file] [-h host-name] [-p port-number] [-s serial-port ] [-version] [-mi] [input-file-name]
| Note - The file to invoke apdutool is a batch file (apdutool.bat) that must be run from a working directory of JC_CLASSIC_HOME\bin in order for the code to execute properly. |
apdutool starts listening to APDUs in T=1 as the default format, unless otherwise specified, on the TCP/IP port specified by the -p portNumber parameter for contacted and portNumber+1 for contactless. The default port is 9025.
-help |
|
-h host-name |
Specifies the host name on which the TCP/IP socket port is found. (See the flag -p.) |
-d or-descriptiveoutput |
|
-k |
When using preprocessor directives in an APDU script, this option generates a related preprocessed APDU script file in the same directory as the APDU script. |
-noatr |
|
-nobanner |
|
-o output-file |
Specifies an output file. If an output file is not specified with the -o flag, output defaults to standard output. |
-p port-number |
Specifies a TCP/IP socket port other than the default port (which is 9025). |
-s serial-port |
Specifies the serial port to use for communication, rather than a TCP/IP socket port. For example, serialPort can be COM1. To use this option, the javax.comm package must be installed on your system. For more information on installing this package, see Prerequisites to Installing the Development Kit. If you enter the name of a serial port that does not exist on your system, apdutool will respond by printing the names of available ports. |
-t0 |
|
-verbose |
|
-version |
|
-mi |
Required if the APDU script is using contacted and contactless commands multiple times in the same script file and the script switches between contacted and contactless interfaces many times. |
input-file-name |
The following examples show how to use apdutool.
This command runs apdutool with the file example.scr as input. Output is sent to the console. The default TCP port (9025) is used.
apdutool example.scr
This command runs apdutool with the file example.scr as input. Output is written to the file example.scr.out.
apdutool -o example.scr.out example.scr
An APDU script file is a protocol-independent APDU format containing comments, script file commands, and C-APDUs. Script file commands and C-APDUs are terminated with a semicolon (;). Comments can be of any of the three Java programming language style comment formats (//, /*, or /**).
APDUs are represented by decimal, hex or octal digits, UTF-8 quoted literals or UTF-8 quoted strings. C-APDUs may extend across multiple lines.
C-APDU syntax for apdutool is as follows:
<CLA> <INS> <P1> <P2> <LC> [<byte 0> <byte 1> ... <byte LC-1>] <LE> ;
<CLA> :: ISO 7816-4 class byte.
<INS> :: ISO 7816-4 instruction byte.
<P1> :: ISO 7816-4 P1 parameter byte.
<P2> :: ISO 7816-4 P2 parameter byte.
<LC> :: ISO 7816-4 input byte count. 1 byte in non-extended mode,
2 bytes in extended mode.
<byte 0> ... <byte LC-1> :: input data bytes.
<LE> :: ISO 7816- 4 expected output length. 1 byte in non-extended mode,
2 bytes in extended mode.
TABLE 8-3 describes each supported script file command in detail noting that they are not case sensitive.
APDUScript supports preprocessor directives as depicted in the following script file example, test.scr.
To check what the preprocessor has done, run the APDUTool with the -k flag to create a file named test.scr.preprocessed in the same directory as test.scr. The test.scr.preprocessed content then looks like this:
powerup; SELECT //aid/A000000062/03010C0102; Send 0x80 0xCA 0x00 0x00 0x02 0xAB 0x08 0x7F to //aid/A000000062/03010C0101 on 19; powerdown; |
The RI supports setting distinct default applets on distinct logical channels and distinct interfaces. This request can be used to set the default applet for a particular logical channel in the specified interface. The applet being set as default must be properly registered with the RI prior to issuing this command.
The on-card installer applet AID is: 0xa0,0x00,0x00,0x00,0x62,0x03,0x01,0x08,0x01.
The procedures for CAP file download and applet instance creation are described in the following sections, as are the on-card installer APDU protocol events and APDU types.
In this procedure, the CAP file is downloaded but applet creation (instantiation) is postponed until a later time. Follow these steps to perform this installation:
1. Use scriptgen to convert a CAP file to an APDU script file.
2. Prepend these commands to the APDU script file:
powerup; // Select the installer applet 0x00 0xA4 0x04 0x00 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x08 0x01 0x7F;
3. Append this command to the APDU script file:
powerdown;
4. Invoke apdutool with this APDU script file path as the argument.
In this procedure, the applet from a previously downloaded CAP file or an applet compiled in the mask is created. For example, follow these steps to create the JavaPurse applet:
2. Create an APDU script similar to this:
powerup; // Select the installer applet 0x00 0xA4 0x04 0x00 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x08 0x01 0x7F; // create JavaPurse 0x80 0xB8 0x00 0x00 0x0b 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x04 0x01 0x00 0x7F; powerdown;
3. Invoke apdutool with this APDU script file path as the argument.
The on-card installer APDU protocol follows a specific time sequence of events in the transmission of Applet Protocol Data Units as shown in FIGURE 8-2.
FIGURE 8-2 On-card Installer APDU Transmission Sequence
There are many different APDU types, which are distinguished by their fields and field values. The following sections describe these APDU types in more detail, including their bit frame formats, field names and field values.
| Note - In the following APDU commands, the x in the second nibble of the class byte indicates that the installer can be invoked on channels 0, 1, or 2. For example, 0x8x. |
TABLE 8-5 specifies the field sequence in the Select APDU, which is used to invoke the on-card installer.
TABLE 8-6 specifies the field sequence in the Response APDU. A Response APDU is sent as a response by the on-card installer after each APDU that it receives. The Response APDU can be either an Acknowledgment (called an ACK), which indicates that the most recent APDU was received successfully, or it can be a Negative Acknowledgement (called a NAK), which indicates that the most recent APDU was not received successfully and must be either resent or the entire installer transmission must be restarted. The first ACK indicates that the on-card installer is ready to receive. The value for an ACK frame SW1SW2 is 9000, and the value for a NAK frame SW1SW2 is 6XXX.
TABLE 8-7 specifies the field sequence in the CAP Begin APDU. The CAP Begin APDU is sent to the on-card installer, and indicates that the CAP file components are going to be sent next, in sequentially numbered APDUs.
TABLE 8-8 specifies the field sequence in the CAP End APDU. The CAP End APDU is sent to the on-card installer, and indicates that all of the CAP file components have been sent.
TABLE 8-9 specifies the field sequence in the Component ## Begin APDU. The double pound sign indicates the component token of the component being sent. The CAP file is divided into many components, based on class, method, etc. The Component ## Begin APDU is sent to the on-card installer, and indicates that component ## of the CAP file is going to be sent next.
TABLE 8-10 specifies the field sequence in the Component ## End APDU. The Component ## End APDU is sent to the on-card installer, and indicates that component ## of the CAP file has been sent.
TABLE 8-11 specifies the field sequence in the Component ## Data APDU. The Component ## Data APDU is sent to the on-card installer, and contains the data for component ## of the CAP file.
TABLE 8-12 specifies the field sequence in the Create Applet APDU. The Create Applet APDU is sent to the on-card installer, and tells the on-card installer to create an applet instance from each of the already sequentially transmitted components of the CAP file.
TABLE 8-13 specifies the data sequence in the Abort APDU. The Abort APDU indicates that the transmission of the CAP file is terminated, and that the transmission is not complete and must be redone from the beginning in order to be successful.
The installer sends a response code of 0x9000 to indicate that a command completed successfully. Version 3.0.3 of the RI provides a number of codes that can be sent in response to unsuccessful installation requests. TABLE 8-14 describes these codes.
|
Install APDU command out of order.
|
|
|
|
The following is a sample APDU script to download, create, and select the HelloWorld applet.
powerup; // Select the on-card installer applet 0x00 0xA4 0x04 0x00 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x08 0x01 0x7F; // CAP Begin 0x80 0xB0 0x00 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/Header.cap // component begin 0x80 0xB2 0x01 0x00 0x00 0x7F; // component data 0x80 0xB4 0x01 0x00 0x16 0x01 0x00 0x13 0xDE 0xCA 0xFF 0xED 0x01 0x02 0x04 0x00 0x01 0x09 0xA0 0x00 0x00 0x00 0x62 0x03 0x01 0x0C 0x01 0x7F; // component end 0x80 0xBC 0x01 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/Directory.cap 0x80 0xB2 0x02 0x00 0x00 0x7F; 0x80 0xB4 0x02 0x00 0x20 0x02 0x00 0x1F 0x00 0x13 0x00 0x1F 0x00 0x0E 0x00 0x0B 0x00 0x36 0x00 0x0C 0x00 0x65 0x00 0x0A 0x00 0x13 0x00 0x00 0x00 0x6C 0x00 0x00 0x00 0x00 0x00 0x00 0x01 0x7F; 0x80 0xB4 0x02 0x00 0x02 0x01 0x00 0x7F; 0x80 0xBC 0x02 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/Import.cap 0x80 0xB2 0x04 0x00 0x00 0x7F; 0x80 0xB4 0x04 0x00 0x0E 0x04 0x00 0x0B 0x01 0x00 0x01 0x07 0xA0 0x00 0x00 0x00 0x62 0x01 0x01 0x7F; 0x80 0xBC 0x04 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/Applet.cap 0x80 0xB2 0x03 0x00 0x00 0x7F; 0x80 0xB4 0x03 0x00 0x11 0x03 0x00 0x0E 0x01 0x0A 0xA0 0x00 0x00 0x00 0x62 0x03 0x01 0x0C 0x01 0x01 0x00 0x14 0x7F; 0x80 0xBC 0x03 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/Class.cap 0x80 0xB2 0x06 0x00 0x00 0x7F; 0x80 0xB4 0x06 0x00 0x0F 0x06 0x00 0x0C 0x00 0x80 0x03 0x01 0x00 0x01 0x07 0x01 0x00 0x00 0x00 0x1D 0x7F; 0x80 0xBC 0x06 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/Method.cap 0x80 0xB2 0x07 0x00 0x00 0x7F; 0x80 0xB4 0x07 0x00 0x20 0x07 0x00 0x65 0x00 0x02 0x10 0x18 0x8C 0x00 0x01 0x18 0x11 0x01 0x00 0x90 0x0B 0x87 0x00 0x18 0x8B 0x00 0x02 0x7A 0x01 0x30 0x8F 0x00 0x03 0x8C 0x00 0x04 0x7A 0x7F; 0x80 0xB4 0x07 0x00 0x20 0x05 0x23 0x19 0x8B 0x00 0x05 0x2D 0x19 0x8B 0x00 0x06 0x32 0x03 0x29 0x04 0x70 0x19 0x1A 0x08 0xAD 0x00 0x16 0x04 0x1F 0x8D 0x00 0x0B 0x3B 0x16 0x04 0x1F 0x41 0x7F; 0x80 0xB4 0x07 0x00 0x20 0x29 0x04 0x19 0x08 0x8B 0x00 0x0C 0x32 0x1F 0x64 0xE8 0x19 0x8B 0x00 0x07 0x3B 0x19 0x16 0x04 0x08 0x41 0x8B 0x00 0x08 0x19 0x03 0x08 0x8B 0x00 0x09 0x19 0xAD 0x7F; 0x80 0xB4 0x07 0x00 0x08 0x00 0x03 0x16 0x04 0x8B 0x00 0x0A 0x7A 0x7F; 0x80 0xBC 0x07 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/StaticField.cap 0x80 0xB2 0x08 0x00 0x00 0x7F; 0x80 0xB4 0x08 0x00 0x0D 0x08 0x00 0x0A 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x7F; 0x80 0xBC 0x08 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/ConstantPool.cap 0x80 0xB2 0x05 0x00 0x00 0x7F; 0x80 0xB4 0x05 0x00 0x20 0x05 0x00 0x36 0x00 0x0D 0x02 0x00 0x00 0x00 0x06 0x80 0x03 0x00 0x03 0x80 0x03 0x01 0x01 0x00 0x00 0x00 0x06 0x00 0x00 0x01 0x03 0x80 0x0A 0x01 0x03 0x80 0x0A 0x7F; 0x80 0xB4 0x05 0x00 0x19 0x06 0x03 0x80 0x0A 0x07 0x03 0x80 0x0A 0x09 0x03 0x80 0x0A 0x04 0x03 0x80 0x0A 0x05 0x06 0x80 0x10 0x02 0x03 0x80 0x0A 0x03 0x7F; 0x80 0xBC 0x05 0x00 0x00 0x7F; // com/sun/javacard/samples/HelloWorld/javacard/RefLocation.cap 0x80 0xB2 0x09 0x00 0x00 0x7F; 0x80 0xB4 0x09 0x00 0x16 0x09 0x00 0x13 0x00 0x03 0x0E 0x23 0x2C 0x00 0x0C 0x05 0x0C 0x06 0x03 0x07 0x05 0x10 0x0C 0x08 0x09 0x06 0x09 0x7F; 0x80 0xBC 0x09 0x00 0x00 0x7F; // CAP End 0x80 0xBA 0x00 0x00 0x00 0x7F; // create HelloWorld 0x80 0xB8 0x00 0x00 0x0b 0x09 0xa0 0x00 0x00 0x00 0x62 0x03 0x01 0x03; 0x01 0x00 0x7F; // Select HelloWorld 0x00 0xA4 0x04 0x00 9 0xA0 0x00 0x00 0x00 0x62 0x03 0x01 0x03 0x01 0x7F; powerdown;
The on-card installer in version 3.0.3 of the Java Card 3 Platform, Classic Edition reference implementation provides the ability to delete package and applet instances from the card’s memory. Once the on-card installer is selected, it can receive deletion requests from the terminal in the form of ADPU commands. Requests to delete an applet or package cannot be sent from an applet on the card. For more information on package and applet deletion, see the Runtime Environment Specification, Java Card Platform, Version 3.0.1, Classic Edition.
1. Select the on-card installer applet on the card.
2. Send the ADPU for the appropriate deletion request to the installer. The requests that you can send are described in the following sections:
For information on the responses that the ADPU requests can return, see APDU Responses to Deletion Requests.
You can send requests to delete a package, a package and its applets, and individual applets.
| Note - In the following APDU commands, the x in the second nibble of the class byte indicates that the installer can be invoked on channels 0, 1, or 2. For example, 0x8x. |
In this request, the Data field contains the size of the package AID and the AID of the package to be deleted. TABLE 8-15 shows the format of the Delete Package request and the expected response.
The value of 0xXX can be any value for the P1 and P2 parameters. The installer will ignore the 0xXX values. An example of a delete package request on channel 1 would be:
//Delete Package Request: 0x81 0xC0 0x00 0x00 0x08 0x07 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 0x7F;
In this example, 0x07 is the AID length and 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 is the package AID.
This request is similar to the Delete Package command. In this case the package and applets are removed simultaneously. The data field will contain the size of the package AID and the AID of the package to be deleted. TABLE 8-16 shows the format of the Delete Packages and Applets request and the expected response.
The value of 0xXX can be any value for the P1 and P2 parameters. The installer will ignore the 0xXX values. An example of a package and applets deletion request on channel 1 would be:
//Delete Package And Applets request 0x81 0xC2 0x00 0x00 0x08 0x07 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 0x7F;
In this example, 0x07 is the AID length and 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 is the package AID.
In this request, the “#” symbol in the P1 byte indicates the number of applets to be deleted, which can have a maximum value of eight. The Lc field contains the size of the data field. Data field contains a list of AID size and AID pairs. TABLE 8-17 shows the format of the Delete Applet request and the expected response.
The value of 0xXX can be any value for the P2 parameter. The installer will ignore the 0xXX values. An example of a applet deletion request on channel 1 would be:
//Delete the applet’s request for two applets 0x81 0xC4 0x02 0x00 0x12 0x08 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 0x12 0x08 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 0x13 0x7F;
In this example, the “#” symbol is replaced with “2” (0x02) indicating that there are two applets to be deleted. The first applet is 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 0x12 and the second applet is 0xa0 0x00 0x00 0x00 0x62 0x12 0x34 0x13.
When the on-card installer receives the request from the terminal, it can return any of the responses shown in TABLE 8-18.
The response has the format shown in TABLE 8-19.
The limits for the on-card installer are as follows.
Copyright © 2010, Oracle and/or its affiliates. All rights reserved.