mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-07 10:40:28 +09:00
sftp_aio.c, sftp.h: Add capping to the sftp aio read API
Signed-off-by: Eshan Kelkar <eshankelkar@galorithm.com> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
committed by
Jakub Jelen
parent
d2d5e717f3
commit
91990f9dfa
@@ -50,7 +50,7 @@ void sftp_aio_free(sftp_aio aio)
|
||||
SAFE_FREE(aio);
|
||||
}
|
||||
|
||||
int sftp_aio_begin_read(sftp_file file, size_t len, sftp_aio *aio)
|
||||
ssize_t sftp_aio_begin_read(sftp_file file, size_t len, sftp_aio *aio)
|
||||
{
|
||||
sftp_session sftp = NULL;
|
||||
ssh_buffer buffer = NULL;
|
||||
@@ -73,6 +73,11 @@ int sftp_aio_begin_read(sftp_file file, size_t len, sftp_aio *aio)
|
||||
return SSH_ERROR;
|
||||
}
|
||||
|
||||
/* Apply a cap on the length a user is allowed to read */
|
||||
if (len > sftp->limits->max_read_length) {
|
||||
len = sftp->limits->max_read_length;
|
||||
}
|
||||
|
||||
if (aio == NULL) {
|
||||
ssh_set_error(sftp->session, SSH_FATAL,
|
||||
"Invalid argument, NULL passed instead of a pointer to "
|
||||
@@ -126,7 +131,7 @@ int sftp_aio_begin_read(sftp_file file, size_t len, sftp_aio *aio)
|
||||
/* Assume we read len bytes from the file */
|
||||
file->offset += len;
|
||||
*aio = aio_handle;
|
||||
return SSH_OK;
|
||||
return len;
|
||||
}
|
||||
|
||||
ssize_t sftp_aio_wait_read(sftp_aio *aio,
|
||||
|
||||
Reference in New Issue
Block a user