Cross Reference: /illumos-gate/usr/src/cmd/mdb/sparc/v9/zfs/
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
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at
* trunk/opends/resource/legal-notices/OpenDS.LICENSE
* or https://OpenDS.dev.java.net/OpenDS.LICENSE.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
* add the following below this CDDL HEADER, with the fields enclosed
* by brackets "[]" replaced with your own identifying information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2008-2009 Sun Microsystems, Inc.
* Portions Copyright 2011 ForgeRock AS
*/
package org.opends.guitools.controlpanel.ui;
import static org.opends.messages.AdminToolMessages.*;
import static org.opends.messages.QuickSetupMessages.*;
import java.awt.Component;
import java.awt.GridBagConstraints;
import java.net.URI;
import java.security.cert.X509Certificate;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.naming.NamingException;
import javax.naming.ldap.InitialLdapContext;
import javax.swing.JLabel;
import javax.swing.JPasswordField;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import org.opends.admin.ads.util.ApplicationTrustManager;
import org.opends.guitools.controlpanel.datamodel.ConfigReadException;
import org.opends.guitools.controlpanel.event.ConfigurationChangeEvent;
import org.opends.guitools.controlpanel.util.BackgroundTask;
import org.opends.guitools.controlpanel.util.Utilities;
import org.opends.messages.Message;
import org.opends.quicksetup.UserDataCertificateException;
import org.opends.quicksetup.ui.CertificateDialog;
import org.opends.quicksetup.util.UIKeyStore;
import org.opends.quicksetup.util.Utils;
import org.opends.server.types.DN;
/**
* The panel that appears when the user is asked to provide authentication.
*
*/
public class LoginPanel extends StatusGenericPanel
{
private static final long serialVersionUID = 5051556513294844797L;
private JPasswordField pwd;
private JTextField dn;
private JLabel pwdLabel;
private JLabel dnLabel;
private String usedUrl;
private static final Logger LOG =
Logger.getLogger(LoginPanel.class.getName());
/**
* Default constructor.
*
*/
public LoginPanel()
{
super();
createLayout();
}
/**
* {@inheritDoc}
*/
public Message getTitle()
{
return INFO_CTRL_PANEL_LOGIN_PANEL_TITLE.get();
}
/**
* Creates the layout of the panel (but the contents are not populated here).
*/
private void createLayout()
{
GridBagConstraints gbc = new GridBagConstraints();
gbc.anchor = GridBagConstraints.WEST;
gbc.gridx = 0;
gbc.gridy = 0;
gbc.weightx = 0.0;
gbc.gridwidth = 1;
gbc.fill = GridBagConstraints.NONE;
dnLabel = Utilities.createPrimaryLabel(INFO_CTRL_PANEL_BIND_DN_LABEL.get());
add(dnLabel, gbc);
gbc.insets.left = 10;
gbc.gridx = 1;
dn = Utilities.createTextField("cn=Directory Manager", 20);
gbc.weightx = 1.0;
gbc.fill = GridBagConstraints.HORIZONTAL;
add(dn, gbc);
gbc.insets.top = 10;
gbc.insets.left = 0;
gbc.gridx = 0;
gbc.gridy ++;
gbc.weightx = 0.0;
gbc.gridwidth = 1;
gbc.fill = GridBagConstraints.NONE;
pwdLabel = Utilities.createPrimaryLabel(
INFO_CTRL_PANEL_BIND_PASSWORD_LABEL.get());
add(pwdLabel, gbc);
gbc.insets.left = 10;
gbc.gridx = 1;
pwd = Utilities.createPasswordField();
gbc.weightx = 1.0;
gbc.fill = GridBagConstraints.HORIZONTAL;
add(pwd, gbc);
addBottomGlue(gbc);
}
/**
* {@inheritDoc}
*/
public Component getPreferredFocusComponent()
{
return pwd;
}
/**
* {@inheritDoc}
*/
public void configurationChanged(ConfigurationChangeEvent ev)
{
}
/**
* {@inheritDoc}
*/
@Override
public void toBeDisplayed(boolean visible)
{
super.toBeDisplayed(visible);
if (visible)
{
pwd.setText("");
}
}
/**
* {@inheritDoc}
*/
public void okClicked()
{
setPrimaryValid(dnLabel);
setPrimaryValid(pwdLabel);
final LinkedHashSet<Message> errors = new LinkedHashSet<Message>();
boolean dnInvalid = false;
boolean pwdInvalid = false;
if ("".equals(dn.getText().trim()))
{
dnInvalid = true;
errors.add(INFO_EMPTY_DIRECTORY_MANAGER_DN.get());
}
else if (!Utils.isDn(dn.getText()))
{
dnInvalid = true;
errors.add(INFO_NOT_A_DIRECTORY_MANAGER_DN.get());
}
if (pwd.getPassword().length == 0)
{
pwdInvalid = true;
errors.add(INFO_EMPTY_PWD.get());
}
if (dnInvalid)
{
setPrimaryInvalid(dnLabel);
}
if (pwdInvalid)
{
setPrimaryInvalid(pwdLabel);
}
if (errors.isEmpty())
{
setEnabledOK(false);
setEnabledCancel(false);
displayMessage(INFO_CTRL_PANEL_VERIFYING_AUTHENTICATION_SUMMARY.get());
BackgroundTask<InitialLdapContext> worker =
new BackgroundTask<InitialLdapContext>()
{
/**
* {@inheritDoc}
*/
public InitialLdapContext processBackgroundTask() throws Throwable
{
InitialLdapContext ctx = null;
try
{
usedUrl = getInfo().getAdminConnectorURL();
ctx = Utilities.getAdminDirContext(getInfo(), dn.getText(),
String.valueOf(pwd.getPassword()));
if (getInfo().getDirContext() != null)
{
try
{
getInfo().getDirContext().close();
}
catch (Throwable t)
{
}
}
if (getInfo().getUserDataDirContext() != null)
{
try
{
getInfo().getUserDataDirContext().close();
}
catch (Throwable t)
{
}
}
try
{
Thread.sleep(500);
}
catch (Throwable t)
{
}
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
displayMessage(
INFO_CTRL_PANEL_READING_CONFIGURATION_SUMMARY.get());
}
});
getInfo().setDirContext(ctx);
getInfo().setUserDataDirContext(null);
getInfo().regenerateDescriptor();
return ctx;
} catch (Throwable t)
{
if (ctx != null)
{
try
{
ctx.close();
}
catch (Throwable t1)
{
}
}
throw t;
}
}
/**
* {@inheritDoc}
*/
public void backgroundTaskCompleted(InitialLdapContext ctx,
Throwable throwable)
{
boolean handleCertificateException = false;
if (throwable != null)
{
LOG.log(Level.INFO, "Error connecting: " + throwable, throwable);
if (Utils.isCertificateException(throwable))
{
ApplicationTrustManager.Cause cause =
getInfo().getTrustManager().getLastRefusedCause();
LOG.log(Level.INFO, "Certificate exception cause: "+cause);
UserDataCertificateException.Type excType = null;
if (cause == ApplicationTrustManager.Cause.NOT_TRUSTED)
{
excType = UserDataCertificateException.Type.NOT_TRUSTED;
}
else if (cause ==
ApplicationTrustManager.Cause.HOST_NAME_MISMATCH)
{
excType = UserDataCertificateException.Type.HOST_NAME_MISMATCH;
}
else
{
Message msg = Utils.getThrowableMsg(
INFO_ERROR_CONNECTING_TO_LOCAL.get(), throwable);
errors.add(msg);
}
if (excType != null)
{
String h;
int p;
try
{
URI uri = new URI(usedUrl);
h = uri.getHost();
p = uri.getPort();
}
catch (Throwable t)
{
LOG.log(Level.WARNING,
"Error parsing ldap url of ldap url.", t);
h = INFO_NOT_AVAILABLE_LABEL.get().toString();
p = -1;
}
UserDataCertificateException udce =
new UserDataCertificateException(null,
INFO_CERTIFICATE_EXCEPTION.get(h, String.valueOf(p)),
throwable, h, p,
getInfo().getTrustManager().getLastRefusedChain(),
getInfo().getTrustManager().getLastRefusedAuthType(),
excType);
handleCertificateException(udce);
handleCertificateException = true;
}
}
else if (throwable instanceof NamingException)
{
boolean found = false;
String providedDn = dn.getText();
Iterator<DN> it = getInfo().getServerDescriptor().
getAdministrativeUsers().iterator();
while (it.hasNext() && !found)
{
found = Utils.areDnsEqual(providedDn, it.next().toString());
}
if (!found)
{
errors.add(INFO_NOT_A_DIRECTORY_MANAGER_IN_CONFIG.get());
}
else
{
errors.add(Utils.getMessageForException(
(NamingException)throwable));
}
setPrimaryInvalid(dnLabel);
setPrimaryInvalid(pwdLabel);
}
else if (throwable instanceof ConfigReadException)
{
errors.add(((ConfigReadException)throwable).getMessageObject());
}
else
{
// This is a bug
throwable.printStackTrace();
errors.add(Utils.getThrowableMsg(INFO_BUG_MSG.get(), throwable));
}
}
displayMainPanel();
setEnabledCancel(true);
setEnabledOK(true);
if (!errors.isEmpty())
{
displayErrorDialog(errors);
pwd.setSelectionStart(0);
pwd.setSelectionEnd(pwd.getPassword().length);
pwd.requestFocusInWindow();
}
else if (!handleCertificateException)
{
Utilities.getParentDialog(LoginPanel.this).setVisible(false);
}
}
};
worker.startBackgroundTask();
}
else
{
displayErrorDialog(errors);
if (dnInvalid)
{
dn.setSelectionStart(0);
dn.setSelectionEnd(dn.getText().length());
dn.requestFocusInWindow();
}
if (pwdInvalid)
{
pwd.setSelectionStart(0);
pwd.setSelectionEnd(pwd.getPassword().length);
pwd.requestFocusInWindow();
}
}
}
/**
* {@inheritDoc}
*/
@Override
public void cancelClicked()
{
setPrimaryValid(dnLabel);
setPrimaryValid(pwdLabel);
pwd.setText(null);
super.cancelClicked();
}
/**
* Displays a dialog asking the user to accept a certificate if the user
* accepts it, we update the trust manager and simulate a click on "OK" to
* re-check the authentication.
* This method assumes that we are being called from the event thread.
*/
private void handleCertificateException(UserDataCertificateException ce)
{
CertificateDialog dlg = new CertificateDialog(null, ce);
dlg.pack();
Utilities.centerGoldenMean(dlg, Utilities.getParentDialog(this));
dlg.setVisible(true);
if (dlg.getUserAnswer() !=
CertificateDialog.ReturnType.NOT_ACCEPTED)
{
X509Certificate[] chain = ce.getChain();
String authType = ce.getAuthType();
String host = ce.getHost();
if ((chain != null) && (authType != null) && (host != null))
{
LOG.log(Level.INFO, "Accepting certificate presented by host "+host);
getInfo().getTrustManager().acceptCertificate(chain, authType, host);
/* Simulate a click on the OK by calling in the okClicked method. */
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
okClicked();
}
});
}
else
{
if (chain == null)
{
LOG.log(Level.WARNING,
"The chain is null for the UserDataCertificateException");
}
if (authType == null)
{
LOG.log(Level.WARNING,
"The auth type is null for the UserDataCertificateException");
}
if (host == null)
{
LOG.log(Level.WARNING,
"The host is null for the UserDataCertificateException");
}
}
}
if (dlg.getUserAnswer() ==
CertificateDialog.ReturnType.ACCEPTED_PERMANENTLY)
{
X509Certificate[] chain = ce.getChain();
if (chain != null)
{
try
{
UIKeyStore.acceptCertificate(chain);
}
catch (Throwable t)
{
LOG.log(Level.WARNING, "Error accepting certificate: "+t, t);
}
}
}
}
}