Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.

Check shard size before write to storage #713

Merged
merged 1 commit into from
Aug 23, 2017
Merged

Check shard size before write to storage #713

merged 1 commit into from
Aug 23, 2017

Conversation

vasilenkoalexey
Copy link
Contributor

Perhaps check if(received > shardsize) shuld be before writng to storage.

@braydonf
Copy link
Contributor

LGTM (untested)

@161chihuahuas
Copy link
Contributor

This is fine, but doesn't buy much, since if that condition gets triggered, all written data gets flushed anyway: https://github.com/Storj/core/pull/713/files#diff-093f1eb273750a2430b4eee87da30087R193

No reason not to merge it, but I think you'll only save 64k worth of writes by moving it below that check.

@littleskunk
Copy link
Collaborator

littleskunk commented Aug 10, 2017

req.on('data', function(chunk) will be called more than once. It will write the first chunk to disk and wait for the next. If the renter uploads more data than he is paying for (shard size is to big) the complete shard will be destroyed and deleted from disk.

This pull request will only change the behavior of the last chunk. I don't see any advantage. This line of code should never be called. It is only needed to stop cheater renter and once they get the error message they will not try it again.

Edit: Now I was to slow with my answer :)

@vasilenkoalexey
Copy link
Contributor Author

Indeed this check is only for the last chunk and implemented for a rare case when the client sends more data than promised earlier. But, if this case never happens, then it should be removed. Or, if this case is possible, then checking the size before writing to the storage looks slightly more correct.

@littleskunk
Copy link
Collaborator

looks slightly more correct

I have to agree. Lets merge it.

@braydonf braydonf merged commit 95f0586 into storj-archived:master Aug 23, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants