buffer overflow

时间:2021-02-08 12:57:10

Computer Systems A Programmer's Perspective Second Edition

We have seen that C does not perform any bounds checking for array references,

and that local variables are stored on the stack along with state information such
as saved register values and return addresses. This combination can lead to serious
program errors, where the state stored on the stack gets corrupted by a write to an
out-of-bounds array element. When the program then tries to reload the register
or execute a ret instruction with this corrupted state, things can go seriously
wrong. A particularly common source of state corruption is known as
buffer overflow. Typically some character array is allocated on the stack to hold a string, but the
size of the string exceeds the space allocated for the array.
 
缓冲区溢出