Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / i386 / scandir64.c
blob90abe32a2bc237652c6ae53836e3d90bcbe99ca3
1 /* Copyright (C) 2000-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <dirent.h>
20 #define SCANDIR __scandir64
21 #define SCANDIRAT scandirat64
22 #define READDIR __readdir64
23 #define DIRENT_TYPE struct dirent64
24 #define SKIP_SCANDIR_CANCEL 1
26 #include <dirent/scandir.c>
28 #undef SCANDIR
29 #undef READDIR
30 #undef DIRENT_TYPE
32 #include <shlib-compat.h>
34 versioned_symbol (libc, __scandir64, scandir64, GLIBC_2_2);
36 #if SHLIB_COMPAT(libc, GLIBC_2_1, GLIBC_2_2)
37 # include <string.h>
38 # include <errno.h>
39 # include "olddirent.h"
41 int
42 __old_scandir64 (dir, namelist, select, cmp)
43 const char *dir;
44 struct __old_dirent64 ***namelist;
45 int (*select) (const struct __old_dirent64 *);
46 int (*cmp) (const struct __old_dirent64 **,
47 const struct __old_dirent64 **);
49 DIR *dp = __opendir (dir);
50 struct __old_dirent64 **v = NULL;
51 size_t vsize = 0;
52 struct scandir_cancel_struct c;
53 struct __old_dirent64 *d;
54 int save;
56 if (dp == NULL)
57 return -1;
59 save = errno;
60 __set_errno (0);
62 c.dp = dp;
63 c.v = NULL;
64 c.cnt = 0;
65 __libc_cleanup_push (__scandir_cancel_handler, &c);
67 while ((d = __old_readdir64 (dp)) != NULL)
69 int use_it = select == NULL;
71 if (! use_it)
73 use_it = select (d);
74 /* The select function might have changed errno. It was
75 zero before and it need to be again to make the latter
76 tests work. */
77 __set_errno (0);
80 if (use_it)
82 struct __old_dirent64 *vnew;
83 size_t dsize;
85 /* Ignore errors from select or readdir */
86 __set_errno (0);
88 if (__builtin_expect (c.cnt == vsize, 0))
90 struct __old_dirent64 **new;
91 if (vsize == 0)
92 vsize = 10;
93 else
94 vsize *= 2;
95 new = (struct __old_dirent64 **) realloc (v,
96 vsize * sizeof (*v));
97 if (new == NULL)
98 break;
99 v = new;
100 c.v = (void *) v;
103 dsize = &d->d_name[_D_ALLOC_NAMLEN (d)] - (char *) d;
104 vnew = (struct __old_dirent64 *) malloc (dsize);
105 if (vnew == NULL)
106 break;
108 v[c.cnt++] = (struct __old_dirent64 *) memcpy (vnew, d, dsize);
112 if (__builtin_expect (errno, 0) != 0)
114 save = errno;
116 while (c.cnt > 0)
117 free (v[--c.cnt]);
118 free (v);
119 c.cnt = -1;
121 else
123 /* Sort the list if we have a comparison function to sort with. */
124 if (cmp != NULL)
125 qsort (v, c.cnt, sizeof (*v),
126 (int (*) (const void *, const void *)) cmp);
128 *namelist = v;
131 __libc_cleanup_pop (0);
133 (void) __closedir (dp);
134 __set_errno (save);
136 return c.cnt;
138 compat_symbol (libc, __old_scandir64, scandir64, GLIBC_2_1);
140 #endif