mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-11-03 20:53:13 +03:00 
			
		
		
		
	The glob might pass a different stat struct for gl_stat and gl_lstat when GLOB_ALTDIRFUNC is used. This requires add a new 64-bit time version that also uses 64-bit time stat functions. Checked on i686-linux-gnu and x86_64-linux-gnu. Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
#include <shlib-compat.h>
 | 
						|
 | 
						|
#if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2) \
 | 
						|
    && !defined(GLOB_NO_OLD_VERSION)
 | 
						|
 | 
						|
#include <dirent.h>
 | 
						|
#include <glob.h>
 | 
						|
#include <sys/stat.h>
 | 
						|
 | 
						|
#include <olddirent.h>
 | 
						|
 | 
						|
int __old_glob64 (const char *__pattern, int __flags,
 | 
						|
		  int (*__errfunc) (const char *, int),
 | 
						|
		  glob64_t *__pglob);
 | 
						|
libc_hidden_proto (__old_glob64);
 | 
						|
 | 
						|
#define dirent __old_dirent64
 | 
						|
#define GL_READDIR(pglob, stream) \
 | 
						|
  ((struct __old_dirent64 *) (pglob)->gl_readdir (stream))
 | 
						|
#undef __readdir
 | 
						|
#define __readdir(dirp) __old_readdir64 (dirp)
 | 
						|
 | 
						|
#define glob_t glob64_t
 | 
						|
#define __glob(pattern, flags, errfunc, pglob) \
 | 
						|
  __old_glob64 (pattern, flags, errfunc, pglob)
 | 
						|
#define globfree(pglob) globfree64(pglob)
 | 
						|
 | 
						|
#define convert_dirent __old_convert_dirent
 | 
						|
#define glob_in_dir __old_glob_in_dir
 | 
						|
 | 
						|
/* Avoid calling gl_lstat with GLOB_ALTDIRFUNC.  */
 | 
						|
#define struct_stat    struct stat64
 | 
						|
#define struct_stat64  struct stat64
 | 
						|
#define GLOB_LSTAT     gl_stat
 | 
						|
#define GLOB_STAT64    __stat64
 | 
						|
#define GLOB_LSTAT64   __stat64
 | 
						|
 | 
						|
#define GLOB_ATTRIBUTE attribute_compat_text_section
 | 
						|
 | 
						|
#include <posix/glob.c>
 | 
						|
 | 
						|
libc_hidden_def (__old_glob64);
 | 
						|
 | 
						|
compat_symbol (libc, __old_glob64, glob64, GLIBC_2_1);
 | 
						|
#endif
 |