lseek导致O_APPEND mod中的分段文件

时间:2013-03-12 15:12:55

标签: c file segmentation-fault append

int main(int argc,char* argv[]){
    int fd;
    off_t foffset;
    char* fpath;
    char* rbuf;
    if(argc!=2){
        printf("insert filename as argument!\n");
        exit(1);
    }
    strcpy(fpath,argv[1]);
    if( (fd = open(fpath,O_RDWR | O_APPEND)) <0 )
        perror("error on open()");
    //try to use lseek in file opened in O_APPEND mode
    char buf[] = "I'm appending some text!\n"; 
    if( write(fd, buf , sizeof(buf)) <0 )
        perror("error on write()");
    printf("the write() operation was succesful, let's try to seek and read the file..\n");
    foffset = lseek(fd,0L,SEEK_CUR);
    if(foffset<0)
        perror("error on lseek() :");
    close(fd);
    return 0;
}

为什么在执行此代码时会产生分段错误? 只有添加了lseek操作才会发生segFault,否则就可以了。

2 个答案:

答案 0 :(得分:2)

fpath是一个狂野指针,即在您致电strcpy之前,尚未为其分配任何存储空间。但是,由于您只需要const char *作为文件名,因此您可以进行以下更改。

变化:

strcpy(fpath,argv[1]);

为:

fpath = argv[1];

答案 1 :(得分:0)

如果您想单独使用fpath,请更改您的定义:

char fpath[30];

现在您的strcpy将按预期工作(尽管您应该检查字符串的长度是否在30以下)。但是,您可以直接将argv[1]传递给open,因为您没有对其进行任何其他操作。