Date: Sun, 21 Aug 2011 20:59:51 +0000 (UTC) From: Jilles Tjoelker <jilles@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r225067 - stable/8/usr.bin/tail Message-ID: <201108212059.p7LKxpmt019489@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jilles Date: Sun Aug 21 20:59:51 2011 New Revision: 225067 URL: http://svn.freebsd.org/changeset/base/225067 Log: MFC r224865: tail: Fix crash if -F'ed file's filesystem disappears. If tail notices that a file it is following no longer exists (because stat() fails), it will output any final lines and then close the file. If the read operation also causes an error, such as when the filesystem is forcefully unmounted, it closes the file as well, leading to fclose(NULL) and a segmentation fault. PR: bin/159750 Modified: stable/8/usr.bin/tail/forward.c Directory Properties: stable/8/usr.bin/tail/ (props changed) Modified: stable/8/usr.bin/tail/forward.c ============================================================================== --- stable/8/usr.bin/tail/forward.c Sun Aug 21 18:50:30 2011 (r225066) +++ stable/8/usr.bin/tail/forward.c Sun Aug 21 20:59:51 2011 (r225067) @@ -365,8 +365,10 @@ follow(file_info_t *files, enum STYLE st if (errno != ENOENT) ierr(file->file_name); show(file); - fclose(file->fp); - file->fp = NULL; + if (file->fp != NULL) { + fclose(file->fp); + file->fp = NULL; + } ev_change++; continue; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201108212059.p7LKxpmt019489>