summaryrefslogtreecommitdiffstats
path: root/base/ca/shared/webapps/ca/agent/ca/UpdateDir.html
blob: 1fb9541cdf058986e59411326cee6ca0cb5c8da7 (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
<!-- --- 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.

     Copyright (C) 2007 Red Hat, Inc.
     All rights reserved.
     --- END COPYRIGHT BLOCK --- -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<HEAD>
   <TITLE>Update Directory Server</TITLE>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<SCRIPT type="text/javascript" SRC="/ca/agent/funcs.js"></SCRIPT>
<SCRIPT type="text/javascript" SRC="/ca/agent/helpfun.js"></SCRIPT>

<script type="text/javascript">
<!--
function doSubmit(form)
{
    if ((!form.updateAll.checked) && (!form.updateCRL.checked) &&
        (!form.updateCA.checked) && (!form.updateValid.checked) &&
        (!form.updateExpired.checked) && (!form.updateRevoked.checked)) {
        alert("You must choose at least one updating selection on this form.");
        return;
    }

    if (form.updateAll.checked || form.updateValid.checked) {
    	var canonicalFrom = "", canonicalTo = "";
    
    	if ( form.validFrom.value!= "") {
    	    canonicalFrom = 
    		trim(form.validFrom.value);
    	}
    
    	if (canonicalFrom != "") {
	    if (!isDecimalNumber(canonicalFrom)) {
		if (isNumber(canonicalFrom, 16)) {
		    canonicalFrom = "0x" +
			removeColons(stripPrefix(canonicalFrom));
		} else {
		    alert("You must specify a decimal or hexadecimal value" + 
			"for the low end of the serial number range of valid certificates.");
		    return;
		}
	    }
	    if (isNegative(canonicalFrom)) {
		alert("You must specify a positive value for the low " +
		       "end of the serial number range of valid certificates.");
		return;
	    }
	    form.validFrom.value = canonicalFrom;
    	}
    	
    	if ( form.validTo.value!= "") {
	    canonicalTo = 
		trim(form.validTo.value);
    	}
    	
    	if (canonicalTo != "") {
	    if (!isDecimalNumber(canonicalTo)) {
		if (isNumber(canonicalTo, 16)) {
		    canonicalTo = "0x" +
			removeColons(stripPrefix(canonicalTo));
		} else {
		    alert("You must specify a decimal or hexadecimal value" + 
			"for the high end of the serial number range of valid certificates.");
		    return;
		}
	    }
	    if (isNegative(canonicalTo)) {
		alert("You must specify a positive value for the high " +
		       "end of the serial number range of valid certificates.");
		return;
	    }
	    form.validTo.value = canonicalTo;
    	}
    	
    	/* Can't do this using parseInt*/
    	/*
    	if (form.validFrom.value != "" && form.validTo.value != "" ) {
	    if (parseInt(form.validFrom.value) > parseInt(form.validTo.value)) {
		alert("The low end of the range is larger than the high end.");
		return;
	    }
        }
        */
    }

    if (form.updateAll.checked || form.updateExpired.checked) {
    	var canonicalFrom = "", canonicalTo = "";
    
    	if ( form.expiredFrom.value!= "") {
    	    canonicalFrom = 
    		trim(form.expiredFrom.value);
    	}
    
    	if (canonicalFrom != "") {
	    if (!isDecimalNumber(canonicalFrom)) {
		if (isNumber(canonicalFrom, 16)) {
		    canonicalFrom = "0x" +
			removeColons(stripPrefix(canonicalFrom));
		} else {
		    alert("You must specify a decimal or hexadecimal value" + 
			"for the low end of the serial number range of expired certificates.");
		    return;
		}
	    }
	    if (isNegative(canonicalFrom)) {
		alert("You must specify a positive value for the low " +
		       "end of the serial number range of expired certificates.");
		return;
	    }
	    form.expiredFrom.value = canonicalFrom;
    	}
    	
    	if ( form.expiredTo.value!= "") {
	    canonicalTo = 
		trim(form.expiredTo.value);
    	}
    	
    	if (canonicalTo != "") {
	    if (!isDecimalNumber(canonicalTo)) {
		if (isNumber(canonicalTo, 16)) {
		    canonicalTo = "0x" +
			removeColons(stripPrefix(canonicalTo));
		} else {
		    alert("You must specify a decimal or hexadecimal value" + 
			"for the high end of the serial number range of expired certificates.");
		    return;
		}
	    }
	    if (isNegative(canonicalTo)) {
		alert("You must specify a positive value for the high " +
		       "end of the serial number range of expired certificates.");
		return;
	    }
	    form.expiredTo.value = canonicalTo;
    	}
    	
    	/* Can't do this using parseInt*/
    	/*
        if (form.expiredFrom.value != "" && form.expiredTo.value != "") {
            if (parseInt(form.expiredFrom.value) > parseInt(form.expiredTo.value)) {
                alert("The low end of the range for expired certificates " +
                      "is larger than the high end.");
                return;
            }
        }
        */
    }

    if (form.updateAll.checked || form.updateRevoked.checked) {
    	var canonicalFrom = "", canonicalTo = "";
    
    	if ( form.revokedFrom.value!= "") {
    	    canonicalFrom = 
    		trim(form.revokedFrom.value);
    	}
    
    	if (canonicalFrom != "") {
	    if (!isDecimalNumber(canonicalFrom)) {
		if (isNumber(canonicalFrom, 16)) {
		    canonicalFrom = "0x" +
			removeColons(stripPrefix(canonicalFrom));
		} else {
		    alert("You must specify a decimal or hexadecimal value" + 
			"for the low end of the serial number range of revoked certificates.");
		    return;
		}
	    }
	    if (isNegative(canonicalFrom)) {
		alert("You must specify a positive value for the low " +
		       "end of the serial number range of revoked certificates.");
		return;
	    }
	    form.revokedFrom.value = canonicalFrom;
    	}
    	
    	if ( form.revokedTo.value!= "") {
	    canonicalTo = 
		trim(form.revokedTo.value);
    	}
    	
    	if (canonicalTo != "") {
	    if (!isDecimalNumber(canonicalTo)) {
		if (isNumber(canonicalTo, 16)) {
		    canonicalTo = "0x" +
			removeColons(stripPrefix(canonicalTo));
		} else {
		    alert("You must specify a decimal or hexadecimal value" + 
			"for the high end of the serial number range of revoked certificates.");
		    return;
		}
	    }
	    if (isNegative(canonicalTo)) {
		alert("You must specify a positive value for the high " +
		       "end of the serial number range of revoked certificates.");
		return;
	    }
	    form.revokedTo.value = canonicalTo;
    	}
    	
    	/* Can't do this using parseInt*/
    	/*
        if (form.revokedFrom.value != "" && form.revokedTo.value != "") {
            if (parseInt(form.revokedFrom.value) > parseInt(form.revokedTo.value)) {
                alert("The low end of the range for revoked certificates " +
                      "is larger than the high end.");
                return;
            }
        }
        */
    }

    form.submit();
}
//-->
</script>
</HEAD>

<body bgcolor="#FFFFFF" link="#666699" vlink="#666699" alink="#333366">
<font size=+1 face="PrimaSans BT, Verdana, sans-serif">
Update Directory Server</font><br>

<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
In most cases, the directory is updated automatically with
the latest changes to certificates and certificate revocation lists.
In a few situations, however, you may need to update the directory manually.
Use this form to make updates manually.
<p>
<b>Note:</b>&nbsp; Any certificates issued or revoked during
the update may not be reflected in the directory.
You can use this form again to update those certificates.
</font>

<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BACKGROUND="/pki/images/hr.gif" >
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>

<FORM ACTION="updateDir" METHOD=POST>
<table>
<tr>
<td valign = topline><INPUT TYPE="CHECKBOX" NAME="checkFlag" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Skip certificates already marked as updated.</font></td>
</tr>
</table>

<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Check one or more of these boxes.</font>

<table>
<tr>
<td VALIGN=topline><INPUT TYPE="CHECKBOX" NAME="updateAll" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Update everything in the database to the directory.
<br>(This will include all selections below.)</font></td>
</tr>

<tr>
<td valign = topline><INPUT TYPE="CHECKBOX" NAME="updateCRL" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Update the certificate revocation list to the directory.</font></td>
</tr>

<tr>
<td valign = topline><INPUT TYPE="CHECKBOX" NAME="updateCA" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Update Certificate Manager certificate to the directory.</font></td>
</tr>

<tr>
<td valign = topline><INPUT TYPE="CHECKBOX" NAME="updateValid" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Update valid certificates to the directory.</font></td>
</tr>

<tr> <td></td>
<td align="right"><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
From serial number:</font></td>
<td><input type=text size=10 name=validFrom>&nbsp;
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no lower limit)</font></td>
</tr> 

<tr> <td></td>
<td align="right"><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
To serial number:</font></td>
<td><input type=text size=10 name=validTo>&nbsp;
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no upper limit)</font></td>
</tr>

<tr>
<td valign = topline><INPUT TYPE="CHECKBOX" NAME="updateExpired" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Remove expired certificates from the directory.</font></td>
</tr>

<tr><td></td>
<td align="right"><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
From serial number:</font></td>
<td><input type=text size=10 name=expiredFrom>&nbsp;
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no lower limit)</font></td>
</tr>

<tr><td></td>
<td align="right"><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
To serial number:</font></td>
<td><input type=text size=10 name=expiredTo>&nbsp;
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no upper limit)</font></td>
</tr>

<tr>
<td valign = topline><INPUT TYPE="CHECKBOX" NAME="updateRevoked" VALUE="yes"></td>
<td colspan=2><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
Remove revoked certificates from the directory.</font></td>
</tr>

<tr><td></td>
<td align="right"><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
From serial number:</font></td>
<td><input type=text size=10 name=revokedFrom>&nbsp;
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no lower limit)</font></td>
</tr>

<tr><td></td>
<td align="right"><font size=-1 face="PrimaSans BT, Verdana, sans-serif">
To serial number:</font></td>
<td><input type=text size=10 name=revokedTo>&nbsp;
<font size=-1 face="PrimaSans BT, Verdana, sans-serif">
(leave blank for no upper limit)</font></td>
</tr>
</table>

<br>&nbsp;

<table BORDER=0 CELLSPACING=0 CELLPADDING=6 WIDTH="100%" BACKGROUND="/pki/images/gray90.gif">
  <tr>
    <td ALIGN=RIGHT BGCOLOR="#E5E5E5">
      <INPUT TYPE="button" VALUE="Update Directory" width="72" onClick="doSubmit(this.form);">&nbsp;
      <!-- <INPUT TYPE="button" VALUE=Help width="72"
        onClick="help('http://www.redhat.com/docs/manuals/cert-system#Manual Directory Updates')"> -->
	</td>
  </tr>
</table>

</form>

</BODY>
</HTML>