UserAuthNone.java
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 package com.jcraft.jsch;
00031
00032 class UserAuthNone extends UserAuth{
00033 private static final int SSH_MSG_SERVICE_ACCEPT= 6;
00034 private String methods=null;
00035
00036 public boolean start(Session session) throws Exception{
00037 super.start(session);
00038
00039
00040
00041
00042
00043 packet.reset();
00044 buf.putByte((byte)Session.SSH_MSG_SERVICE_REQUEST);
00045 buf.putString(Util.str2byte("ssh-userauth"));
00046 session.write(packet);
00047
00048 if(JSch.getLogger().isEnabled(Logger.INFO)){
00049 JSch.getLogger().log(Logger.INFO,
00050 "SSH_MSG_SERVICE_REQUEST sent");
00051 }
00052
00053
00054
00055
00056 buf=session.read(buf);
00057 int command=buf.getCommand();
00058
00059 boolean result=(command==SSH_MSG_SERVICE_ACCEPT);
00060
00061 if(JSch.getLogger().isEnabled(Logger.INFO)){
00062 JSch.getLogger().log(Logger.INFO,
00063 "SSH_MSG_SERVICE_ACCEPT received");
00064 }
00065 if(!result)
00066 return false;
00067
00068 byte[] _username=null;
00069 _username=Util.str2byte(username);
00070
00071
00072
00073
00074
00075
00076 packet.reset();
00077 buf.putByte((byte)SSH_MSG_USERAUTH_REQUEST);
00078 buf.putString(_username);
00079 buf.putString(Util.str2byte("ssh-connection"));
00080 buf.putString(Util.str2byte("none"));
00081 session.write(packet);
00082
00083 loop:
00084 while(true){
00085 buf=session.read(buf);
00086 command=buf.getCommand()&0xff;
00087
00088 if(command==SSH_MSG_USERAUTH_SUCCESS){
00089 return true;
00090 }
00091 if(command==SSH_MSG_USERAUTH_BANNER){
00092 buf.getInt(); buf.getByte(); buf.getByte();
00093 byte[] _message=buf.getString();
00094 byte[] lang=buf.getString();
00095 String message=Util.byte2str(_message);
00096 if(userinfo!=null){
00097 try{
00098 userinfo.showMessage(message);
00099 }
00100 catch(RuntimeException ee){
00101 }
00102 }
00103 continue loop;
00104 }
00105 if(command==SSH_MSG_USERAUTH_FAILURE){
00106 buf.getInt(); buf.getByte(); buf.getByte();
00107 byte[] foo=buf.getString();
00108 int partial_success=buf.getByte();
00109 methods=Util.byte2str(foo);
00110
00111
00112
00113
00114
00115
00116 break;
00117 }
00118 else{
00119
00120 throw new JSchException("USERAUTH fail ("+command+")");
00121 }
00122 }
00123
00124 return false;
00125 }
00126 String getMethods(){
00127 return methods;
00128 }
00129 }