-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ftplib retrbinary(rest=...)
seems to send incorrect data
#127561
Comments
Do you mean that you have a file too large? maybe the FTP server is sending incorrect data? |
@picnixz is there a way to check if it's the error with ftp server rather than the client. I could find out more. The file I try to download with the command above is about 25MB each, which I think is not quite large. and it's strange that the error looks same if the download is incorrect. and I found if I offset the download data 32768 bytes forward at a specific position, the data is matched. There are 32768 bytes of data inserted in the middle of the file. The ftp connection is not broken during the whole process, but the final file is not correct. I don't know how to figure it out. any idea for me? great thanks. |
32768 is exactly 2^15, so there's probably something happening out there. Can you perhaps always try to download the file but without using the previous attempt?
What is actually the error? the code you've shown does not seem to raise an error? |
what's the meaning of
I am sorry for using the word |
It's either us or the FTP server that is unable to correctly handle the REST command. We have tests on our side and the rest parameter seems to be correctly handled.
|
@picnixz sorry for not finishing test yet. I will feedback soon.
One more question about the I wonder if the |
In this case, the issue might be on the server side.
What I meant was:
What do you mean by "handle the offset". The offset you specify is the position from where the server starts sending the rest. Since you've done a |
(I'm assigning myself the issue since I decided to investigate / help you since I don't if it's an issue or not) |
retrbinary(rest=...)
seems to send incorrect data
I have tested for a few times, and I make sure with the data vendor about the ftp server, it's the latest version of Filezilla Server. It's may be the case that the server cannot response I don't how to dig it more. Would you give me some more advices. great thanks! |
@picnixz I noticed a case that is quite expressive. There is an upstream ftp file with size of 25165824, and I am uisng I have compared the bit for these two files, the wrong one downloaded and the right one of the size it should be. I found the wrong bit is at and the wrong file just insert a size of |
I think it might be because the transfer gets interrupted. Or something like this. Or the entire buffer is not fully written. Have you actually tried with another server? on another location (if possible). Maybe it's a server side issue.
Corruption could happen because of that but that's something Python won't be able to help :c AFAIK, I can't find anything else to help you. Maybe you could try https://discuss.python.org/c/help/7 (they might have more ideas than me). To investigate even more, I would try to see what happens after you interrupt the first time. Namely, what's the content of the first download. Namely:
What do those bytes contain? could they contain some special bytes that we incorrectly interpret on our side? |
Bug report
Bug description:
when I used the code above to download some ftp files from the server, there would be a condition that my file finish downloaded has a byte of 32768 larger than it should be.
I don't know what's wrong with it, it's conditional, about 1~2 time in 10 downloads. great thanks!
CPython versions tested on:
3.10
Operating systems tested on:
Linux
The text was updated successfully, but these errors were encountered: