svn commit: r327407 - stable/11/usr.bin/xinstall
Mateusz Guzik
mjg at FreeBSD.org
Sun Dec 31 03:17:30 UTC 2017
Author: mjg
Date: Sun Dec 31 03:17:28 2017
New Revision: 327407
URL: https://svnweb.freebsd.org/changeset/base/327407
Log:
MFC r324547:
xinstall: plug an infinite loop in directory creation
If stat continues to fail with ENOENT and mkdir with EEXIST the code wont
finish. In particular this can show up when the target path follows through
a symlink to a non-existent directory.
Modified:
stable/11/usr.bin/xinstall/xinstall.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/usr.bin/xinstall/xinstall.c
==============================================================================
--- stable/11/usr.bin/xinstall/xinstall.c Sun Dec 31 03:15:45 2017 (r327406)
+++ stable/11/usr.bin/xinstall/xinstall.c Sun Dec 31 03:17:28 2017 (r327407)
@@ -1292,17 +1292,19 @@ install_dir(char *path)
{
char *p;
struct stat sb;
- int ch;
+ int ch, tried_mkdir;
for (p = path;; ++p)
if (!*p || (p != path && *p == '/')) {
+ tried_mkdir = 0;
ch = *p;
*p = '\0';
again:
if (stat(path, &sb) < 0) {
- if (errno != ENOENT)
+ if (errno != ENOENT || tried_mkdir)
err(EX_OSERR, "stat %s", path);
if (mkdir(path, 0755) < 0) {
+ tried_mkdir = 1;
if (errno == EEXIST)
goto again;
err(EX_OSERR, "mkdir %s", path);
More information about the svn-src-stable-11
mailing list