- 论坛徽章:
- 0
|
本帖最后由 p0w3r 于 2015-12-05 16:32 编辑
代码如下 ,
导致出错的条件:
1、 “fail_count” 不存在 ---> 创建文件 ----> 出错 .
2、 “fail_count” 存在 ---> 文件内值为0 ----> 出错 .
3、 "fail_count" 存在 ---> 文件内值不为0 ----> 正常运行 ---> 文件内值重置为 0 ----> 退出 .
4、 在第三的基础下再次执行程序 , 文件内值为0 ----> 出错- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- #define RESET_MODULE 2
- #define RESET_SYSTEM 4
- #define FAIL_PATH "/tmp/fail_count"
- static int existFile(const char * PATH);
- void reset_init(void);
- void unsuccess_add(void);
- int main(void) {
- reset_init();
- // for (int i = 0; i < RESET_SYSTEM; ++i)
- // {
- // unsuccess_add();
- // }
- }
- void unsuccess_add() {
- FILE *file;
- int i;
- file = fopen(FAIL_PATH, "r");
- fscanf(file, "%d", &i);
- fclose(file);
- file = fopen(FAIL_PATH, "w");
- i++;
- fprintf(file, "%d\n", i);
- fclose(file);
- }
- void reset_init(void) {
- FILE *file;
- int val = 0;
- if (existFile(FAIL_PATH)) {
- file = fopen(FAIL_PATH, "r");
- } else {
- file = fopen(FAIL_PATH, "w+");
- }
- fscanf(file, "%d", &val);
- fclose(file);
- printf("%d\n", val);
- /*************** 出错开始 *************/
- if ( val != 0 ) {
- file = fopen(FAIL_PATH, "w");
- fprintf(file, "%d", 0);
- }
- /************ 出错结束 ***************/
- fclose(file);
- }
- static int existFile(const char * PATH) {
- // include <unistd.h>
- // F_OK:test for existence of file
- int access_result = access(PATH, F_OK);
- if (access_result == -1) {
- return 0;
- } else {
- return 1;
- }
- }
复制代码 在 if ( val != 0 ) 的地方出现错误如下- root@debian7:/tmp# ./a.out
- 0
- *** glibc detected *** ./a.out: double free or corruption (top): 0x0000000001640010 ***
- ======= Backtrace: =========
- /lib/x86_64-linux-gnu/libc.so.6(+0x75be6)[0x7fcaff61cbe6]
- /lib/x86_64-linux-gnu/libc.so.6(cfree+0x6c)[0x7fcaff62198c]
- /lib/x86_64-linux-gnu/libc.so.6(fclose+0x14d)[0x7fcaff60db3d]
- ./a.out[0x4007f0]
- ./a.out[0x4006a5]
- /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xfd)[0x7fcaff5c5ead]
- ./a.out[0x4005b9]
- ======= Memory map: ========
- 00400000-00401000 r-xp 00000000 08:01 1478893 /tmp/a.out
- 00600000-00601000 rw-p 00000000 08:01 1478893 /tmp/a.out
- 01640000-01661000 rw-p 00000000 00:00 0 [heap]
- 7fcaf8000000-7fcaf8021000 rw-p 00000000 00:00 0
- 7fcaf8021000-7fcafc000000 ---p 00000000 00:00 0
- 7fcaff391000-7fcaff3a6000 r-xp 00000000 08:01 786436 /lib/x86_64-linux-gnu/libgcc_s.so.1
- 7fcaff3a6000-7fcaff5a6000 ---p 00015000 08:01 786436 /lib/x86_64-linux-gnu/libgcc_s.so.1
- 7fcaff5a6000-7fcaff5a7000 rw-p 00015000 08:01 786436 /lib/x86_64-linux-gnu/libgcc_s.so.1
- 7fcaff5a7000-7fcaff728000 r-xp 00000000 08:01 786443 /lib/x86_64-linux-gnu/libc-2.13.so
- 7fcaff728000-7fcaff928000 ---p 00181000 08:01 786443 /lib/x86_64-linux-gnu/libc-2.13.so
- 7fcaff928000-7fcaff92c000 r--p 00181000 08:01 786443 /lib/x86_64-linux-gnu/libc-2.13.so
- 7fcaff92c000-7fcaff92d000 rw-p 00185000 08:01 786443 /lib/x86_64-linux-gnu/libc-2.13.so
- 7fcaff92d000-7fcaff932000 rw-p 00000000 00:00 0
- 7fcaff932000-7fcaff952000 r-xp 00000000 08:01 786455 /lib/x86_64-linux-gnu/ld-2.13.so
- 7fcaffb40000-7fcaffb43000 rw-p 00000000 00:00 0
- 7fcaffb4e000-7fcaffb51000 rw-p 00000000 00:00 0
- 7fcaffb51000-7fcaffb52000 r--p 0001f000 08:01 786455 /lib/x86_64-linux-gnu/ld-2.13.so
- 7fcaffb52000-7fcaffb53000 rw-p 00020000 08:01 786455 /lib/x86_64-linux-gnu/ld-2.13.so
- 7fcaffb53000-7fcaffb54000 rw-p 00000000 00:00 0
- 7ffc99636000-7ffc99657000 rw-p 00000000 00:00 0 [stack]
- 7ffc997ae000-7ffc997af000 r-xp 00000000 00:00 0 [vdso]
- ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
- Aborted
- root@debian7:/tmp#
复制代码 |
|