Bug fix for SFTP::get()

This commit is contained in:
Ivailo Hristov 2016-02-17 14:57:32 +02:00
parent 11a539bcbd
commit 83b8d0ec0a

View File

@ -2063,21 +2063,18 @@ class SFTP extends SSH2
$fclose_check = $local_file !== false && !is_resource($local_file);
$start = $offset;
$size = $this->max_sftp_packet < $length || $length < 0 ? $this->max_sftp_packet : $length;
$read = 0;
$error = false;
while (!$error) {
$break_loop = false;
while (!$break_loop) {
$request_id_offset = 5;// just like that, a random number
$i = $request_id_offset;
// this puts a constraint on 32 bit systems where files larger than 4GB will not be completely downloaded if length is not specified.
$limit = $length > 0 ? max($this->max_sftp_packet, $length) : PHP_INT_MAX;
while ($i < NET_SFTP_QUEUE_SIZE+$request_id_offset && $read < $limit) {
while ($i < NET_SFTP_QUEUE_SIZE+$request_id_offset && ($length < 0 || $read < $length)) {
$subtemp = $start + $read;
$possible_packet_sizes = array($this->max_sftp_packet, $size);
if ($limit - $read > 0) {
$possible_packet_sizes[] = $limit - $read;
$possible_packet_sizes = array($this->max_sftp_packet);
if ($length > 0 && $length - $read > 0) {
$possible_packet_sizes[] = $length - $read;
}
$packet_size = min($possible_packet_sizes);
@ -2096,38 +2093,37 @@ class SFTP extends SSH2
$i++;
}
while ($i > $request_id_offset) {
$this->request_id = $i;
$response = $this->_get_sftp_packet();
$this->request_id=1;
switch ($this->packet_type) {
case NET_SFTP_DATA:
$temp = substr($response, 4);
$offset+= strlen($temp);
if ($local_file === false) {
$content.= $temp;
} else {
fputs($fp, $temp);
}
break;
case NET_SFTP_STATUS:
// could, in theory, return false if !strlen($content) but we'll hold off for the time being
$this->_logError($response);
// don't break out of the loop so we can read the remaining responses
$error = true;
break;
default:
if ($fclose_check) {
fclose($fp);
}
throw new \UnexpectedValueException('Expected SSH_FXP_DATA or SSH_FXP_STATUS');
if ($i > $request_id_offset) {
while ($i > $request_id_offset) {
$this->request_id = $i;
$response = $this->_get_sftp_packet();
$i--;
$this->request_id=1;
switch ($this->packet_type) {
case NET_SFTP_DATA:
$temp = substr($response, 4);
$offset+= strlen($temp);
if ($local_file === false) {
$content.= $temp;
} else {
fputs($fp, $temp);
}
break;
case NET_SFTP_STATUS:
// could, in theory, return false if !strlen($content) but we'll hold off for the time being
$this->_logError($response);
// don't break out of the loop so we can read the remaining responses
$break_loop = true;
break;
default:
if ($fclose_check) {
fclose($fp);
}
throw new \UnexpectedValueException('Expected SSH_FXP_DATA or SSH_FXP_STATUS');
}
}
if ($length > 0 && $length <= $offset - $start) {
// don't break out of the loop so we can read the remaining responses
$error = true;
}
$i--;
} else {
$break_loop = true;
}
}