問題是非常明顯的,所以我只會告訴你一些代碼:)有什麼辦法可以避免靜態內存區溢出?
#include <stdio.h>
#include <string.h>
char *test1()
{
static char c;
char *p;
p = &c;
printf("p[%08x] : %s\n", (unsigned int)p, p);
return p;
}
void *test2()
{
static char i;
char *buf;
int counter = 0;
for(buf = (char *)&i ; ;counter += 8)
{
memset(buf + counter, 0xff, 8);
printf("write %d bytes to static area!\n", counter);
}
}
int main()
{
char *p;
p = test1();
strcpy(p, "lol i asd");
p = test1();
strcpy(p, "sunus again!");
p = test1();
strcpy(p, "sunus again! i am hacking this!!asdfffffffffffffffffffffffffffffffffffffffffffffffffffffffffff");
p = test1();
test2();
return 0;
}
首先我寫了test1()
。 正如你所看到的,那些strcpy
s應該會導致段錯誤,因爲它顯然訪問非法的內存區域。我知道一些關於靜態變量的基本知識,但這對我來說很奇怪。
然後我寫了test2()
。 最後,它引起了段錯誤,之後它寫了將近4k字節。
所以,我不知道如何避免這種錯誤(靜態變量溢出)發生?
爲什麼我可以訪問這些靜態內存區域? 我知道他們不在堆棧中,也沒有堆積。
PS。也許我沒有清楚地描述我的問題。我有幾年的C編程經驗;我知道如果這不是靜態的,會發生什麼。 現在靜態變化幾乎所有,我想知道爲什麼。
如果您使用Shift鍵,您的問題會更容易閱讀。 – 2012-03-12 04:44:36
@Eric J .:或者至少學會正確使用它。 – BoltClock 2012-03-12 04:45:25