-1

我在 Linux2.4、C 和使用 gcc 中有一个特殊的问题。

有一个小程序可以使用 cat & grep cmd 从文件中检索信息。

#define tmpFile "/tmp/cli_tmp_file.txt"
#define MAX_CMD 50

void getRange()
{
        char cmd[MAX_CMD+1];

        // remove the temp file first
        snprintf(cmd, MAX_CMD, "rm -f %s", tmpFile);
        system(cmd);
        // create temp file
        snprintf(cmd, MAX_CMD, "touch %s",tmpFile);
        system(cmd);
        // execute the command
        snprintf(cmd, MAX_CMD, "echo \"Range:Max val 500\" > %s",tmpFile);
        system(cmd);
        // dump out the temp file so user could see
        snprintf(cmd, MAX_CMD, "cat %s|grep \"Range\"", tmpFile);
        system(cmd);
        // remove the temp file
        snprintf(cmd, MAX_CMD, "rm -f %s", tmpFile);
        system(cmd);
}

当我执行此代码时,我得到输出为 cat: /tmp/cli_tmp_file.txt: No such file or directory

但是,该文件是在包含内容的 tmp 文件夹中创建的

# pwd
/tmp
# ls -l
-rw-r--r--    1 root     root           68 Oct 10 12:54 cli_tmp_file.txt

#more /tmp/cli_tmp_file.txt
Range:Max val 500

在手动执行相同的 cmd 时,它会显示预期的输出

# cat /tmp/cli_tmp_file.txt|grep Range
Range:Max val 500

任何帮助,将不胜感激。提前致谢。

4

1 回答 1

1

这是一个(托管但被忽略的)缓冲区溢出,echo命令超过 50 个字符。该命令被截断,snprintf()但您仍然运行它。检查返回值!

于 2013-10-10T13:44:01.067 回答