TStream is an abstract class.

However about its implementations, are they buffer overflow proof?

If I'm fetching a stream from the internet, from a source that is not me, how do I verify that it is not corrupted and cause buffer overflow?

Lets say that the stream is an xml file.

edit: all the answers indicate you need to check for buffer overflow. could you demonstrate how to check a buffer overflow on an input file, where we know that a stream could be infinite by its definition?

link|improve this question

"we know that a stream could be infinite by its definition" - that's irrelevant. With a Delphi stream, you don't have to read into memory any more of it than you want, as the answers explained. – Mikey Sep 17 '11 at 4:26
feedback

4 Answers

up vote 5 down vote accepted

TStream and its various RTL descendents do not have any bugs that result in buffer overruns, to the best of my knowledge.

However, your code using Delphi streams could easily overrun a buffer.

link|improve this answer
so you say that a bug is not to your knowledge, however possible? (the second part was not clear for me). – none Sep 15 '11 at 21:29
Of course it is possible that there are bufs in the RTL. I'd look at your code first though. You are more likely to find errors there. I don't mean that in a personal way. I apply the same philosophy to code I write. – David Heffernan Sep 15 '11 at 21:43
er, bufs -> bugs – David Heffernan Sep 15 '11 at 21:49
could you provide a piece of code that is robast or a buffer overflowable code? any of the two would answer the question. – none Sep 16 '11 at 12:23
You want me to write code to do what exactly? – David Heffernan Sep 16 '11 at 12:33
show 2 more comments
feedback

TStream reads into whatever buffer the caller supplies. It is the caller's responsibility to make sure the supplied buffer and its size are valid.

link|improve this answer
+1 For stating my point much simpler. ;) – NGLN Sep 16 '11 at 4:27
feedback

Normally, you should depend on the Size property of the presented stream to set the size of your own buffer before filling it. The only reason for that Size property not delivering the real size would be a wrong implementation of either Seek methods. Unless that method determines the size of the stream on weird boundary assumptions, a single test should rule out any problems.

In any case, whether the stream contains corrupted data or not, it should néver run into a buffer overflow on your side if you just not download more than the size of your own buffer.

You could also request the type of the presented stream and verify if it is a standard Delphi stream. If so, then you need not be worried.

link|improve this answer
lets say it is a standard Delphi stream. – none Sep 15 '11 at 21:31
feedback

No, TStream descendants are not 'overflow proof'. But if you follow the advice of Remy and NGLN, you will write code that is as safe as possible with Delphi streams.

If you are afraid of something malicious, handle it within a try/except and/or try/finally block and clean up any potential damage.

Correct usage of 'try' is the key to SAFE Delphi programming - there are no silver bullets. That is the price you pay when you use a compiled language than allows you to get 'close to the metal'.

link|improve this answer
heres a silver bullet, the c library of safe, which protects the buffer and has manual to read about how to protect yourself. – none Sep 16 '11 at 12:31
So you could write your routine in C and if you need it in a Delphi app, it's not hard to create a Delphi wrapper for it. But AFIK there is 'no such animal' in the out-of-box Delphi, although there may be 3rd party stuff out there. – Mikey Sep 16 '11 at 14:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.