/* -*-mode:java; c-basic-offset:2; indent-tabs-mode:nil -*- */ /* Copyright (c) 2002-2015 ymnk, JCraft,Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT, INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package com.jcraft.jsch; import java.io.*; public class KnownHosts implements HostKeyRepository{ private static final String _known_hosts="known_hosts"; private JSch jsch=null; private String known_hosts=null; private java.util.Vector pool=null; private MAC hmacsha1=null; KnownHosts(JSch jsch){ super(); this.jsch=jsch; pool=new java.util.Vector(); } void setKnownHosts(String filename) throws JSchException{ try{ known_hosts = filename; FileInputStream fis=new FileInputStream(Util.checkTilde(filename)); setKnownHosts(fis); } catch(FileNotFoundException e){ throw new JSchException(e.toString(), (Throwable)e); } } void setKnownHosts(InputStream input) throws JSchException{ pool.removeAllElements(); StringBuffer sb=new StringBuffer(); byte i; int j; boolean error=false; try{ InputStream fis=input; String host; String key=null; int type; byte[] buf=new byte[1024]; int bufl=0; loop: while(true){ bufl=0; while(true){ j=fis.read(); if(j==-1){ if(bufl==0){ break loop; } else{ break; } } if(j==0x0d){ continue; } if(j==0x0a){ break; } if(buf.length<=bufl){ if(bufl>1024*10) break; // too long... byte[] newbuf=new byte[buf.length*2]; System.arraycopy(buf, 0, newbuf, 0, buf.length); buf=newbuf; } buf[bufl++]=(byte)j; } j=0; while(j=bufl){ addInvalidLine(Util.byte2str(buf, 0, bufl)); continue loop; } sb.setLength(0); while(j=bufl || host.length()==0){ addInvalidLine(Util.byte2str(buf, 0, bufl)); continue loop; } while(j=bufl || host.length()==0){ addInvalidLine(Util.byte2str(buf, 0, bufl)); continue loop; } while(j=bufl){ addInvalidLine(Util.byte2str(buf, 0, bufl)); continue loop; } while(j1 ){ return check(host.substring(1, host.indexOf("]:")), key); } return result; } public void add(HostKey hostkey, UserInfo userinfo){ int type=hostkey.type; String host=hostkey.getHost(); byte[] key=hostkey.key; HostKey hk=null; synchronized(pool){ for(int i=0; i1){ HostKey[] tmp = getHostKey(host.substring(1, host.indexOf("]:")), type); if(tmp.length > 0){ HostKey[] bar = new HostKey[foo.length + tmp.length]; System.arraycopy(foo, 0, bar, 0, foo.length); System.arraycopy(tmp, 0, bar, foo.length, tmp.length); foo = bar; } } return foo; } } public void remove(String host, String type){ remove(host, type, null); } public void remove(String host, String type, byte[] key){ boolean sync=false; synchronized(pool){ for(int i=0; i0){ String data=this.host.substring(HASH_MAGIC.length()); String _salt=data.substring(0, data.indexOf(HASH_DELIM)); String _hash=data.substring(data.indexOf(HASH_DELIM)+1); salt=Util.fromBase64(Util.str2byte(_salt), 0, _salt.length()); hash=Util.fromBase64(Util.str2byte(_hash), 0, _hash.length()); if(salt.length!=20 || // block size of hmac-sha1 hash.length!=20){ salt=null; hash=null; return; } hashed=true; } } boolean isMatched(String _host){ if(!hashed){ return super.isMatched(_host); } MAC macsha1=getHMACSHA1(); try{ synchronized(macsha1){ macsha1.init(salt); byte[] foo=Util.str2byte(_host); macsha1.update(foo, 0, foo.length); byte[] bar=new byte[macsha1.getBlockSize()]; macsha1.doFinal(bar, 0); return Util.array_equals(hash, bar); } } catch(Exception e){ System.out.println(e); } return false; } boolean isHashed(){ return hashed; } void hash(){ if(hashed) return; MAC macsha1=getHMACSHA1(); if(salt==null){ Random random=Session.random; synchronized(random){ salt=new byte[macsha1.getBlockSize()]; random.fill(salt, 0, salt.length); } } try{ synchronized(macsha1){ macsha1.init(salt); byte[] foo=Util.str2byte(host); macsha1.update(foo, 0, foo.length); hash=new byte[macsha1.getBlockSize()]; macsha1.doFinal(hash, 0); } } catch(Exception e){ } host=HASH_MAGIC+Util.byte2str(Util.toBase64(salt, 0, salt.length))+ HASH_DELIM+Util.byte2str(Util.toBase64(hash, 0, hash.length)); hashed=true; } } }