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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786
|
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JPasswordField;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import com.trilead.ssh2.Connection;
import com.trilead.ssh2.InteractiveCallback;
import com.trilead.ssh2.KnownHosts;
import com.trilead.ssh2.ServerHostKeyVerifier;
import com.trilead.ssh2.Session;
/**
* This is a very primitive SSH-2 dumb terminal (Swing based).
* <p>
* The purpose of this class is to demonstrate:
* <ul>
* <li>Verifying server hostkeys with an existing known_hosts file</li>
* <li>Displaying fingerprints of server hostkeys</li>
* <li>Adding a server hostkey to a known_hosts file (+hashing the hostname for security)</li>
* <li>Authentication with DSA, RSA, password and keyboard-interactive methods</li>
* </ul>
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: SwingShell.java,v 1.10 2007/10/15 12:49:57 cplattne Exp $
*
*/
public class SwingShell
{
/*
* NOTE: to get this feature to work, replace the "tilde" with your home directory,
* at least my JVM does not understand it. Need to check the specs.
*/
static final String knownHostPath = "~/.ssh/known_hosts";
static final String idDSAPath = "~/.ssh/id_dsa";
static final String idRSAPath = "~/.ssh/id_rsa";
JFrame loginFrame = null;
JLabel hostLabel;
JLabel userLabel;
JTextField hostField;
JTextField userField;
JButton loginButton;
KnownHosts database = new KnownHosts();
public SwingShell()
{
File knownHostFile = new File(knownHostPath);
if (knownHostFile.exists())
{
try
{
database.addHostkeys(knownHostFile);
}
catch (IOException e)
{
}
}
}
/**
* This dialog displays a number of text lines and a text field.
* The text field can either be plain text or a password field.
*/
class EnterSomethingDialog extends JDialog
{
private static final long serialVersionUID = 1L;
JTextField answerField;
JPasswordField passwordField;
final boolean isPassword;
String answer;
public EnterSomethingDialog(JFrame parent, String title, String content, boolean isPassword)
{
this(parent, title, new String[] { content }, isPassword);
}
public EnterSomethingDialog(JFrame parent, String title, String[] content, boolean isPassword)
{
super(parent, title, true);
this.isPassword = isPassword;
JPanel pan = new JPanel();
pan.setLayout(new BoxLayout(pan, BoxLayout.Y_AXIS));
for (int i = 0; i < content.length; i++)
{
if ((content[i] == null) || (content[i] == ""))
continue;
JLabel contentLabel = new JLabel(content[i]);
pan.add(contentLabel);
}
answerField = new JTextField(20);
passwordField = new JPasswordField(20);
if (isPassword)
pan.add(passwordField);
else
pan.add(answerField);
KeyAdapter kl = new KeyAdapter()
{
public void keyTyped(KeyEvent e)
{
if (e.getKeyChar() == '\n')
finish();
}
};
answerField.addKeyListener(kl);
passwordField.addKeyListener(kl);
getContentPane().add(BorderLayout.CENTER, pan);
setResizable(false);
pack();
setLocationRelativeTo(null);
}
private void finish()
{
if (isPassword)
answer = new String(passwordField.getPassword());
else
answer = answerField.getText();
dispose();
}
}
/**
* TerminalDialog is probably the worst terminal emulator ever written - implementing
* a real vt100 is left as an exercise to the reader, i.e., to you =)
*
*/
class TerminalDialog extends JDialog
{
private static final long serialVersionUID = 1L;
JPanel botPanel;
JButton logoffButton;
JTextArea terminalArea;
Session sess;
InputStream in;
OutputStream out;
int x, y;
/**
* This thread consumes output from the remote server and displays it in
* the terminal window.
*
*/
class RemoteConsumer extends Thread
{
char[][] lines = new char[y][];
int posy = 0;
int posx = 0;
private void addText(byte[] data, int len)
{
for (int i = 0; i < len; i++)
{
char c = (char) (data[i] & 0xff);
if (c == 8) // Backspace, VERASE
{
if (posx < 0)
continue;
posx--;
continue;
}
if (c == '\r')
{
posx = 0;
continue;
}
if (c == '\n')
{
posy++;
if (posy >= y)
{
for (int k = 1; k < y; k++)
lines[k - 1] = lines[k];
posy--;
lines[y - 1] = new char[x];
for (int k = 0; k < x; k++)
lines[y - 1][k] = ' ';
}
continue;
}
if (c < 32)
{
continue;
}
if (posx >= x)
{
posx = 0;
posy++;
if (posy >= y)
{
posy--;
for (int k = 1; k < y; k++)
lines[k - 1] = lines[k];
lines[y - 1] = new char[x];
for (int k = 0; k < x; k++)
lines[y - 1][k] = ' ';
}
}
if (lines[posy] == null)
{
lines[posy] = new char[x];
for (int k = 0; k < x; k++)
lines[posy][k] = ' ';
}
lines[posy][posx] = c;
posx++;
}
StringBuffer sb = new StringBuffer(x * y);
for (int i = 0; i < lines.length; i++)
{
if (i != 0)
sb.append('\n');
if (lines[i] != null)
{
sb.append(lines[i]);
}
}
setContent(sb.toString());
}
public void run()
{
byte[] buff = new byte[8192];
try
{
while (true)
{
int len = in.read(buff);
if (len == -1)
return;
addText(buff, len);
}
}
catch (Exception e)
{
}
}
}
public TerminalDialog(JFrame parent, String title, Session sess, int x, int y) throws IOException
{
super(parent, title, true);
this.sess = sess;
in = sess.getStdout();
out = sess.getStdin();
this.x = x;
this.y = y;
botPanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
logoffButton = new JButton("Logout");
botPanel.add(logoffButton);
logoffButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
/* Dispose the dialog, "setVisible(true)" method will return */
dispose();
}
});
Font f = new Font("Monospaced", Font.PLAIN, 16);
terminalArea = new JTextArea(y, x);
terminalArea.setFont(f);
terminalArea.setBackground(Color.BLACK);
terminalArea.setForeground(Color.ORANGE);
/* This is a hack. We cannot disable the caret,
* since setting editable to false also changes
* the meaning of the TAB key - and I want to use it in bash.
* Again - this is a simple DEMO terminal =)
*/
terminalArea.setCaretColor(Color.BLACK);
KeyAdapter kl = new KeyAdapter()
{
public void keyTyped(KeyEvent e)
{
int c = e.getKeyChar();
try
{
out.write(c);
}
catch (IOException e1)
{
}
e.consume();
}
};
terminalArea.addKeyListener(kl);
getContentPane().add(terminalArea, BorderLayout.CENTER);
getContentPane().add(botPanel, BorderLayout.PAGE_END);
setResizable(false);
pack();
setLocationRelativeTo(parent);
new RemoteConsumer().start();
}
public void setContent(String lines)
{
// setText is thread safe, it does not have to be called from
// the Swing GUI thread.
terminalArea.setText(lines);
}
}
/**
* This ServerHostKeyVerifier asks the user on how to proceed if a key cannot be found
* in the in-memory database.
*
*/
class AdvancedVerifier implements ServerHostKeyVerifier
{
public boolean verifyServerHostKey(String hostname, int port, String serverHostKeyAlgorithm,
byte[] serverHostKey) throws Exception
{
final String host = hostname;
final String algo = serverHostKeyAlgorithm;
String message;
/* Check database */
int result = database.verifyHostkey(hostname, serverHostKeyAlgorithm, serverHostKey);
switch (result)
{
case KnownHosts.HOSTKEY_IS_OK:
return true;
case KnownHosts.HOSTKEY_IS_NEW:
message = "Do you want to accept the hostkey (type " + algo + ") from " + host + " ?\n";
break;
case KnownHosts.HOSTKEY_HAS_CHANGED:
message = "WARNING! Hostkey for " + host + " has changed!\nAccept anyway?\n";
break;
default:
throw new IllegalStateException();
}
/* Include the fingerprints in the message */
String hexFingerprint = KnownHosts.createHexFingerprint(serverHostKeyAlgorithm, serverHostKey);
String bubblebabbleFingerprint = KnownHosts.createBubblebabbleFingerprint(serverHostKeyAlgorithm,
serverHostKey);
message += "Hex Fingerprint: " + hexFingerprint + "\nBubblebabble Fingerprint: " + bubblebabbleFingerprint;
/* Now ask the user */
int choice = JOptionPane.showConfirmDialog(loginFrame, message);
if (choice == JOptionPane.YES_OPTION)
{
/* Be really paranoid. We use a hashed hostname entry */
String hashedHostname = KnownHosts.createHashedHostname(hostname);
/* Add the hostkey to the in-memory database */
database.addHostkey(new String[] { hashedHostname }, serverHostKeyAlgorithm, serverHostKey);
/* Also try to add the key to a known_host file */
try
{
KnownHosts.addHostkeyToFile(new File(knownHostPath), new String[] { hashedHostname },
serverHostKeyAlgorithm, serverHostKey);
}
catch (IOException ignore)
{
}
return true;
}
if (choice == JOptionPane.CANCEL_OPTION)
{
throw new Exception("The user aborted the server hostkey verification.");
}
return false;
}
}
/**
* The logic that one has to implement if "keyboard-interactive" autentication shall be
* supported.
*
*/
class InteractiveLogic implements InteractiveCallback
{
int promptCount = 0;
String lastError;
public InteractiveLogic(String lastError)
{
this.lastError = lastError;
}
/* the callback may be invoked several times, depending on how many questions-sets the server sends */
public String[] replyToChallenge(String name, String instruction, int numPrompts, String[] prompt,
boolean[] echo) throws IOException
{
String[] result = new String[numPrompts];
for (int i = 0; i < numPrompts; i++)
{
/* Often, servers just send empty strings for "name" and "instruction" */
String[] content = new String[] { lastError, name, instruction, prompt[i] };
if (lastError != null)
{
/* show lastError only once */
lastError = null;
}
EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame, "Keyboard Interactive Authentication",
content, !echo[i]);
esd.setVisible(true);
if (esd.answer == null)
throw new IOException("Login aborted by user");
result[i] = esd.answer;
promptCount++;
}
return result;
}
/* We maintain a prompt counter - this enables the detection of situations where the ssh
* server is signaling "authentication failed" even though it did not send a single prompt.
*/
public int getPromptCount()
{
return promptCount;
}
}
/**
* The SSH-2 connection is established in this thread.
* If we would not use a separate thread (e.g., put this code in
* the event handler of the "Login" button) then the GUI would not
* be responsive (missing window repaints if you move the window etc.)
*/
class ConnectionThread extends Thread
{
String hostname;
String username;
public ConnectionThread(String hostname, String username)
{
this.hostname = hostname;
this.username = username;
}
public void run()
{
Connection conn = new Connection(hostname);
try
{
/*
*
* CONNECT AND VERIFY SERVER HOST KEY (with callback)
*
*/
String[] hostkeyAlgos = database.getPreferredServerHostkeyAlgorithmOrder(hostname);
if (hostkeyAlgos != null)
conn.setServerHostKeyAlgorithms(hostkeyAlgos);
conn.connect(new AdvancedVerifier());
/*
*
* AUTHENTICATION PHASE
*
*/
boolean enableKeyboardInteractive = true;
boolean enableDSA = true;
boolean enableRSA = true;
String lastError = null;
while (true)
{
if ((enableDSA || enableRSA) && conn.isAuthMethodAvailable(username, "publickey"))
{
if (enableDSA)
{
File key = new File(idDSAPath);
if (key.exists())
{
EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame, "DSA Authentication",
new String[] { lastError, "Enter DSA private key password:" }, true);
esd.setVisible(true);
boolean res = conn.authenticateWithPublicKey(username, key, esd.answer);
if (res == true)
break;
lastError = "DSA authentication failed.";
}
enableDSA = false; // do not try again
}
if (enableRSA)
{
File key = new File(idRSAPath);
if (key.exists())
{
EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame, "RSA Authentication",
new String[] { lastError, "Enter RSA private key password:" }, true);
esd.setVisible(true);
boolean res = conn.authenticateWithPublicKey(username, key, esd.answer);
if (res == true)
break;
lastError = "RSA authentication failed.";
}
enableRSA = false; // do not try again
}
continue;
}
if (enableKeyboardInteractive && conn.isAuthMethodAvailable(username, "keyboard-interactive"))
{
InteractiveLogic il = new InteractiveLogic(lastError);
boolean res = conn.authenticateWithKeyboardInteractive(username, il);
if (res == true)
break;
if (il.getPromptCount() == 0)
{
// aha. the server announced that it supports "keyboard-interactive", but when
// we asked for it, it just denied the request without sending us any prompt.
// That happens with some server versions/configurations.
// We just disable the "keyboard-interactive" method and notify the user.
lastError = "Keyboard-interactive does not work.";
enableKeyboardInteractive = false; // do not try this again
}
else
{
lastError = "Keyboard-interactive auth failed."; // try again, if possible
}
continue;
}
if (conn.isAuthMethodAvailable(username, "password"))
{
final EnterSomethingDialog esd = new EnterSomethingDialog(loginFrame,
"Password Authentication",
new String[] { lastError, "Enter password for " + username }, true);
esd.setVisible(true);
if (esd.answer == null)
throw new IOException("Login aborted by user");
boolean res = conn.authenticateWithPassword(username, esd.answer);
if (res == true)
break;
lastError = "Password authentication failed."; // try again, if possible
continue;
}
throw new IOException("No supported authentication methods available.");
}
/*
*
* AUTHENTICATION OK. DO SOMETHING.
*
*/
Session sess = conn.openSession();
int x_width = 90;
int y_width = 30;
sess.requestPTY("dumb", x_width, y_width, 0, 0, null);
sess.startShell();
TerminalDialog td = new TerminalDialog(loginFrame, username + "@" + hostname, sess, x_width, y_width);
/* The following call blocks until the dialog has been closed */
td.setVisible(true);
}
catch (IOException e)
{
//e.printStackTrace();
JOptionPane.showMessageDialog(loginFrame, "Exception: " + e.getMessage());
}
/*
*
* CLOSE THE CONNECTION.
*
*/
conn.close();
/*
*
* CLOSE THE LOGIN FRAME - APPLICATION WILL BE EXITED (no more frames)
*
*/
Runnable r = new Runnable()
{
public void run()
{
loginFrame.dispose();
}
};
SwingUtilities.invokeLater(r);
}
}
void loginPressed()
{
String hostname = hostField.getText().trim();
String username = userField.getText().trim();
if ((hostname.length() == 0) || (username.length() == 0))
{
JOptionPane.showMessageDialog(loginFrame, "Please fill out both fields!");
return;
}
loginButton.setEnabled(false);
hostField.setEnabled(false);
userField.setEnabled(false);
ConnectionThread ct = new ConnectionThread(hostname, username);
ct.start();
}
void showGUI()
{
loginFrame = new JFrame("Trilead SSH-2 for Java SwingShell");
hostLabel = new JLabel("Hostname:");
userLabel = new JLabel("Username:");
hostField = new JTextField("", 20);
userField = new JTextField("", 10);
loginButton = new JButton("Login");
loginButton.addActionListener(new ActionListener()
{
public void actionPerformed(java.awt.event.ActionEvent e)
{
loginPressed();
}
});
JPanel loginPanel = new JPanel();
loginPanel.add(hostLabel);
loginPanel.add(hostField);
loginPanel.add(userLabel);
loginPanel.add(userField);
loginPanel.add(loginButton);
loginFrame.getRootPane().setDefaultButton(loginButton);
loginFrame.getContentPane().add(loginPanel, BorderLayout.PAGE_START);
//loginFrame.getContentPane().add(textArea, BorderLayout.CENTER);
loginFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
loginFrame.pack();
loginFrame.setResizable(false);
loginFrame.setLocationRelativeTo(null);
loginFrame.setVisible(true);
}
void startGUI()
{
Runnable r = new Runnable()
{
public void run()
{
showGUI();
}
};
SwingUtilities.invokeLater(r);
}
public static void main(String[] args)
{
SwingShell client = new SwingShell();
client.startGUI();
}
}
|