From: Eric Blake Date: Tue, 22 Sep 2009 12:24:25 +0000 (-0600) Subject: link-follow: ensure correct result X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2611a31b30515961a0cff770dda86e208d9d781d;p=pspp link-follow: ensure correct result * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file. * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and distinguish between possible failures. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 7c6f35826a..33dc8aef1e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-09-22 Eric Blake + + link-follow: ensure correct result + * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file. + * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and + distinguish between possible failures. + 2009-09-21 Eric Blake fts: avoid compiler warning diff --git a/m4/fcntl_h.m4 b/m4/fcntl_h.m4 index 5eed0888b1..118a4fa62e 100644 --- a/m4/fcntl_h.m4 +++ b/m4/fcntl_h.m4 @@ -1,4 +1,4 @@ -# serial 4 +# serial 5 # Configure fcntl.h. dnl Copyright (C) 2006, 2007, 2009 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation @@ -38,6 +38,7 @@ AC_DEFUN([gl_FCNTL_H], if (symlink (".", sym) != 0 || close (open (sym, O_RDONLY | O_NOFOLLOW)) == 0) status |= 32; + unlink (sym); } { static char const file[] = "confdefs.h"; diff --git a/m4/link-follow.m4 b/m4/link-follow.m4 index 48885eae48..d2c5dd998e 100644 --- a/m4/link-follow.m4 +++ b/m4/link-follow.m4 @@ -1,4 +1,4 @@ -# serial 14 +# serial 15 dnl Run a program to determine whether link(2) follows symlinks. dnl Set LINK_FOLLOWS_SYMLINKS accordingly. @@ -47,16 +47,16 @@ AC_DEFUN([gl_FUNC_LINK_FOLLOWS_SYMLINK], /* Create a symlink to the regular file. */ if (symlink (file, sym)) - abort (); + return 2; /* Create a hard link to that symlink. */ if (link (sym, hard)) - abort (); + return 3; if (lstat (hard, &sb_hard)) - abort (); + return 4; if (lstat (file, &sb_file)) - abort (); + return 5; /* If the dev/inode of hard and file are the same, then the link call followed the symlink. */ @@ -67,6 +67,7 @@ AC_DEFUN([gl_FUNC_LINK_FOLLOWS_SYMLINK], [gl_cv_func_link_follows_symlink=yes], dnl Followed link/compile failed [gl_cv_func_link_follows_symlink=unknown] dnl We're cross compiling. ) + rm -f conftest.file conftest.sym conftest.hard ]) case $gl_cv_func_link_follows_symlink in yes) gl_link_follows_symlinks=1 ;;