X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fopen.c;h=326e6d15c0f83234b5a7268f60d13815fb68113b;hb=16908fc83e83a08e4f0e8c004141ff01ae12ca86;hp=317fb8afac217dd229d62bb67a7973bcdb6f13f8;hpb=955345ebebdae2b894b5a3d8e21036335cb13e5d;p=gnulib.git diff --git a/lib/open.c b/lib/open.c index 317fb8afa..326e6d15c 100644 --- a/lib/open.c +++ b/lib/open.c @@ -1,5 +1,5 @@ /* Open a descriptor to a file. - Copyright (C) 2007-2008 Free Software Foundation, Inc. + Copyright (C) 2007-2009 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -18,21 +18,29 @@ #include -/* Specification. */ +/* Get the original definition of open. It might be defined as a macro. */ +#define __need_system_fcntl_h #include +#undef __need_system_fcntl_h +#include -/* If the fchdir replacement is used, open() is defined in fchdir.c. */ -#ifndef FCHDIR_REPLACEMENT +static inline int +orig_open (const char *filename, int flags, mode_t mode) +{ + return open (filename, flags, mode); +} -# include -# include -# include -# include -# include +/* Specification. */ +#include + +#include +#include +#include +#include +#include int open (const char *filename, int flags, ...) -# undef open { mode_t mode; int fd; @@ -43,22 +51,19 @@ open (const char *filename, int flags, ...) va_list arg; va_start (arg, flags); - /* If mode_t is narrower than int, use the promoted type (int), - not mode_t. Use sizeof to guess whether mode_t is narrower; - we don't know of any practical counterexamples. */ - mode = (sizeof (mode_t) < sizeof (int) - ? va_arg (arg, int) - : va_arg (arg, mode_t)); + /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4 + creates crashing code when 'mode_t' is smaller than 'int'. */ + mode = va_arg (arg, PROMOTED_MODE_T); va_end (arg); } -# if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ +#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ if (strcmp (filename, "/dev/null") == 0) filename = "NUL"; -# endif +#endif -# if OPEN_TRAILING_SLASH_BUG +#if OPEN_TRAILING_SLASH_BUG /* If the filename ends in a slash and one of O_CREAT, O_WRONLY, O_RDWR is specified, then fail. Rationale: POSIX @@ -89,11 +94,11 @@ open (const char *filename, int flags, ...) return -1; } } -# endif +#endif - fd = open (filename, flags, mode); + fd = orig_open (filename, flags, mode); -# if OPEN_TRAILING_SLASH_BUG +#if OPEN_TRAILING_SLASH_BUG /* If the filename ends in a slash and fd does not refer to a directory, then fail. Rationale: POSIX @@ -115,13 +120,18 @@ open (const char *filename, int flags, ...) if (fstat (fd, &statbuf) >= 0 && !S_ISDIR (statbuf.st_mode)) { + close (fd); errno = ENOTDIR; return -1; } } } -# endif +#endif + +#ifdef FCHDIR_REPLACEMENT + if (fd >= 0) + _gl_register_fd (fd, filename); +#endif return fd; } -#endif