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
|
/******************************************************************************
*
* Copyright (C) 2002 Hugo PEREIRA <mailto: hugo.pereira@free.fr>
*
* This 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; either version 2 of the License, or (at your option) any later
* version.
*
* This software 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, see <http://www.gnu.org/licenses/>.
*
*******************************************************************************/
#include "SshBaseSocket.h"
#include "Debug.h"
#include <QElapsedTimer>
#if HAVE_SSH
#include <libssh2.h>
#endif
namespace Ssh
{
//_______________________________________________________________________
BaseSocket::BaseSocket( QObject* parent ):
QIODevice( parent ),
Counter( "Ssh::BaseSocket" )
{ buffer_.resize( maxSize_ ); }
//_______________________________________________________________________
BaseSocket::~BaseSocket()
{ close(); }
//_______________________________________________________________________
bool BaseSocket::atEnd() const
{
// check channel
if( !isConnected() ) return true;
#if HAVE_SSH
return libssh2_channel_eof( reinterpret_cast<LIBSSH2_CHANNEL*>(channel_) );
#else
return true;
#endif
}
//_______________________________________________________________________
void BaseSocket::close()
{
Debug::Throw( "Ssh::BaseSocket:close.\n" );
// stop timer
if( timer_.isActive() ) timer_.stop();
#if HAVE_SSH
// close channel
if( isConnected() )
{
auto channel = reinterpret_cast<LIBSSH2_CHANNEL*>(channel_);
libssh2_channel_close( channel );
libssh2_channel_free( channel );
channel_ = nullptr;
}
#endif
}
//_______________________________________________________________________
qint64 BaseSocket::readData( char* data, qint64 maxSize )
{
if( !( openMode() & QIODevice::ReadOnly ) )
{
setErrorString( tr( "Socket is writeOnly" ) );
return -1;
}
if( bytesAvailable_ <= 0 ) return bytesAvailable_;
const qint64 bytesRead = qMin( maxSize, bytesAvailable_ );
memcpy( data, buffer_.data(), bytesRead );
buffer_ = buffer_.mid( bytesRead );
buffer_.resize( maxSize_ );
bytesAvailable_ -= bytesRead;
return bytesRead;
}
//_______________________________________________________________________
qint64 BaseSocket::writeData( const char* data, qint64 maxSize )
{
if( !(openMode() & QIODevice::WriteOnly) )
{
setErrorString( tr( "Socket is readOnly" ) );
return -1;
}
if( !isConnected() ) return -1;
#if HAVE_SSH
qint64 bytesWritten = 0;
LIBSSH2_CHANNEL* channel = reinterpret_cast<LIBSSH2_CHANNEL*>(channel_);
while( bytesWritten < maxSize )
{
const qint64 i = libssh2_channel_write( channel, data + bytesWritten, maxSize - bytesWritten );
if( i >= 0 ) bytesWritten += i;
else if( i != LIBSSH2_ERROR_EAGAIN )
{
setErrorString( tr( "invalid write: %1" ).arg( i ) );
return -1;
}
}
return bytesWritten;
#else
setErrorString( "invalid channel" );
return -1;
#endif
}
//_______________________________________________________________________
void BaseSocket::timerEvent( QTimerEvent* event )
{
// check timer id
if( event->timerId() != timer_.timerId() ) return QIODevice::timerEvent( event );
#if HAVE_SSH
if( isConnected() ) _tryRead();
return;
#else
timer_.stop();
bytesAvailable_ = -1;
setErrorString( "no ssh" );
return;
#endif
}
//_______________________________________________________________________
void BaseSocket::_setChannel( void* channel, QIODevice::OpenMode openMode )
{
// close existing channel if any
if( isConnected() ) close();
// stop timer
if( timer_.isActive() ) timer_.stop();
// assign open mode
setOpenMode( openMode );
// assign new channel
channel_ = channel;
if( isConnected() )
{
// start timer
if( openMode&QIODevice::ReadOnly ) timer_.start( latency_, this );
// emit signal
emit connected();
}
}
//_______________________________________________________________________
bool BaseSocket::_tryRead()
{
if( !isConnected() ) return false;
#if HAVE_SSH
// read from channel
LIBSSH2_CHANNEL* channel = reinterpret_cast<LIBSSH2_CHANNEL*>(channel_);
qint64 length = libssh2_channel_read( channel, buffer_.data()+bytesAvailable_, maxSize_-bytesAvailable_ );
if( length == LIBSSH2_ERROR_EAGAIN ) return false ;
else if( length < 0 )
{
setErrorString( tr( "invalid read: %1" ).arg( length ) );
timer_.stop();
bytesAvailable_ = -1;
return false;
} else {
bytesAvailable_ += length;
emit readyRead();
}
// check at end
if( atEnd() )
{
timer_.stop();
setErrorString( "channel closed" );
emit readChannelFinished();
}
return true;
#else
return false;
#endif
}
}
|