pthread_sigmask: Document the module.
[gnulib.git] / lib / file-has-acl.c
1 /* Test whether a file has a nontrivial access control list.
2
3    Copyright (C) 2002-2003, 2005-2011 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18    Written by Paul Eggert, Andreas Grünbacher, and Bruno Haible.  */
19
20 #include <config.h>
21
22 #include "acl.h"
23
24 #include "acl-internal.h"
25
26
27 #if USE_ACL && HAVE_ACL_GET_FILE
28
29 # if HAVE_ACL_TYPE_EXTENDED /* MacOS X */
30
31 /* ACL is an ACL, from a file, stored as type ACL_TYPE_EXTENDED.
32    Return 1 if the given ACL is non-trivial.
33    Return 0 if it is trivial.  */
34 int
35 acl_extended_nontrivial (acl_t acl)
36 {
37   /* acl is non-trivial if it is non-empty.  */
38   return (acl_entries (acl) > 0);
39 }
40
41 # else /* Linux, FreeBSD, IRIX, Tru64 */
42
43 /* ACL is an ACL, from a file, stored as type ACL_TYPE_ACCESS.
44    Return 1 if the given ACL is non-trivial.
45    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.
46    Return -1 and set errno upon failure to determine it.  */
47 int
48 acl_access_nontrivial (acl_t acl)
49 {
50   /* acl is non-trivial if it has some entries other than for "user::",
51      "group::", and "other::".  Normally these three should be present
52      at least, allowing us to write
53         return (3 < acl_entries (acl));
54      but the following code is more robust.  */
55 #  if HAVE_ACL_FIRST_ENTRY /* Linux, FreeBSD */
56
57   acl_entry_t ace;
58   int got_one;
59
60   for (got_one = acl_get_entry (acl, ACL_FIRST_ENTRY, &ace);
61        got_one > 0;
62        got_one = acl_get_entry (acl, ACL_NEXT_ENTRY, &ace))
63     {
64       acl_tag_t tag;
65       if (acl_get_tag_type (ace, &tag) < 0)
66         return -1;
67       if (!(tag == ACL_USER_OBJ || tag == ACL_GROUP_OBJ || tag == ACL_OTHER))
68         return 1;
69     }
70   return got_one;
71
72 #  else /* IRIX, Tru64 */
73 #   if HAVE_ACL_TO_SHORT_TEXT /* IRIX */
74   /* Don't use acl_get_entry: it is undocumented.  */
75
76   int count = acl->acl_cnt;
77   int i;
78
79   for (i = 0; i < count; i++)
80     {
81       acl_entry_t ace = &acl->acl_entry[i];
82       acl_tag_t tag = ace->ae_tag;
83
84       if (!(tag == ACL_USER_OBJ || tag == ACL_GROUP_OBJ
85             || tag == ACL_OTHER_OBJ))
86         return 1;
87     }
88   return 0;
89
90 #   endif
91 #   if HAVE_ACL_FREE_TEXT /* Tru64 */
92   /* Don't use acl_get_entry: it takes only one argument and does not work.  */
93
94   int count = acl->acl_num;
95   acl_entry_t ace;
96
97   for (ace = acl->acl_first; count > 0; ace = ace->next, count--)
98     {
99       acl_tag_t tag;
100       acl_perm_t perm;
101
102       tag = ace->entry->acl_type;
103       if (!(tag == ACL_USER_OBJ || tag == ACL_GROUP_OBJ || tag == ACL_OTHER))
104         return 1;
105
106       perm = ace->entry->acl_perm;
107       /* On Tru64, perm can also contain non-standard bits such as
108          PERM_INSERT, PERM_DELETE, PERM_MODIFY, PERM_LOOKUP, ... */
109       if ((perm & ~(ACL_READ | ACL_WRITE | ACL_EXECUTE)) != 0)
110         return 1;
111     }
112   return 0;
113
114 #   endif
115 #  endif
116 }
117
118 # endif
119
120
121 #elif USE_ACL && HAVE_FACL && defined GETACL /* Solaris, Cygwin, not HP-UX */
122
123 # if !defined ACL_NO_TRIVIAL /* Solaris <= 10, Cygwin */
124
125 /* Test an ACL retrieved with GETACL.
126    Return 1 if the given ACL, consisting of COUNT entries, is non-trivial.
127    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
128 int
129 acl_nontrivial (int count, aclent_t *entries)
130 {
131   int i;
132
133   for (i = 0; i < count; i++)
134     {
135       aclent_t *ace = &entries[i];
136
137       /* Note: If ace->a_type = USER_OBJ, ace->a_id is the st_uid from stat().
138          If ace->a_type = GROUP_OBJ, ace->a_id is the st_gid from stat().
139          We don't need to check ace->a_id in these cases.  */
140       if (!(ace->a_type == USER_OBJ
141             || ace->a_type == GROUP_OBJ
142             || ace->a_type == OTHER_OBJ
143             /* Note: Cygwin does not return a CLASS_OBJ ("mask:") entry
144                sometimes.  */
145             || ace->a_type == CLASS_OBJ))
146         return 1;
147     }
148   return 0;
149 }
150
151 #  ifdef ACE_GETACL
152
153 /* Test an ACL retrieved with ACE_GETACL.
154    Return 1 if the given ACL, consisting of COUNT entries, is non-trivial.
155    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
156 int
157 acl_ace_nontrivial (int count, ace_t *entries)
158 {
159   int i;
160
161   /* The flags in the ace_t structure changed in a binary incompatible way
162      when ACL_NO_TRIVIAL etc. were introduced in <sys/acl.h> version 1.15.
163      How to distinguish the two conventions at runtime?
164      In the old convention, usually three ACEs have a_flags = ACE_OWNER /
165      ACE_GROUP / ACE_OTHER, in the range 0x0100..0x0400.  In the new
166      convention, these values are not used.  */
167   int old_convention = 0;
168
169   for (i = 0; i < count; i++)
170     if (entries[i].a_flags & (ACE_OWNER | ACE_GROUP | ACE_OTHER))
171       {
172         old_convention = 1;
173         break;
174       }
175
176   if (old_convention)
177     /* Running on Solaris 10.  */
178     for (i = 0; i < count; i++)
179       {
180         ace_t *ace = &entries[i];
181
182         /* Note:
183            If ace->a_flags = ACE_OWNER, ace->a_who is the st_uid from stat().
184            If ace->a_flags = ACE_GROUP, ace->a_who is the st_gid from stat().
185            We don't need to check ace->a_who in these cases.  */
186         if (!(ace->a_type == ALLOW
187               && (ace->a_flags == ACE_OWNER
188                   || ace->a_flags == ACE_GROUP
189                   || ace->a_flags == ACE_OTHER)))
190           return 1;
191       }
192   else
193     /* Running on Solaris 10 (newer version) or Solaris 11.  */
194     for (i = 0; i < count; i++)
195       {
196         ace_t *ace = &entries[i];
197
198         if (!(ace->a_type == ACE_ACCESS_ALLOWED_ACE_TYPE
199               && (ace->a_flags == NEW_ACE_OWNER
200                   || ace->a_flags
201                      == (NEW_ACE_GROUP | NEW_ACE_IDENTIFIER_GROUP)
202                   || ace->a_flags == ACE_EVERYONE)
203               && (ace->a_access_mask
204                   & ~(NEW_ACE_READ_DATA | NEW_ACE_WRITE_DATA | NEW_ACE_EXECUTE))
205                  == 0))
206           return 1;
207       }
208
209   return 0;
210 }
211
212 #  endif
213
214 # endif
215
216 #elif USE_ACL && HAVE_GETACL /* HP-UX */
217
218 /* Return 1 if the given ACL is non-trivial.
219    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
220 int
221 acl_nontrivial (int count, struct acl_entry *entries, struct stat *sb)
222 {
223   int i;
224
225   for (i = 0; i < count; i++)
226     {
227       struct acl_entry *ace = &entries[i];
228
229       if (!((ace->uid == sb->st_uid && ace->gid == ACL_NSGROUP)
230             || (ace->uid == ACL_NSUSER && ace->gid == sb->st_gid)
231             || (ace->uid == ACL_NSUSER && ace->gid == ACL_NSGROUP)))
232         return 1;
233     }
234   return 0;
235 }
236
237 # if HAVE_ACLV_H /* HP-UX >= 11.11 */
238
239 /* Return 1 if the given ACL is non-trivial.
240    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
241 int
242 aclv_nontrivial (int count, struct acl *entries)
243 {
244   int i;
245
246   for (i = 0; i < count; i++)
247     {
248       struct acl *ace = &entries[i];
249
250       /* Note: If ace->a_type = USER_OBJ, ace->a_id is the st_uid from stat().
251          If ace->a_type = GROUP_OBJ, ace->a_id is the st_gid from stat().
252          We don't need to check ace->a_id in these cases.  */
253       if (!(ace->a_type == USER_OBJ /* no need to check ace->a_id here */
254             || ace->a_type == GROUP_OBJ /* no need to check ace->a_id here */
255             || ace->a_type == CLASS_OBJ
256             || ace->a_type == OTHER_OBJ))
257         return 1;
258     }
259   return 0;
260 }
261
262 # endif
263
264 #elif USE_ACL && (HAVE_ACLX_GET || HAVE_STATACL) /* AIX */
265
266 /* Return 1 if the given ACL is non-trivial.
267    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
268 int
269 acl_nontrivial (struct acl *a)
270 {
271   /* The normal way to iterate through an ACL is like this:
272        struct acl_entry *ace;
273        for (ace = a->acl_ext; ace != acl_last (a); ace = acl_nxt (ace))
274          {
275            struct ace_id *aei;
276            switch (ace->ace_type)
277              {
278              case ACC_PERMIT:
279              case ACC_DENY:
280              case ACC_SPECIFY:
281                ...;
282              }
283            for (aei = ace->ace_id; aei != id_last (ace); aei = id_nxt (aei))
284              ...
285          }
286    */
287   return (acl_last (a) != a->acl_ext ? 1 : 0);
288 }
289
290 # if HAVE_ACLX_GET && defined ACL_AIX_WIP /* newer AIX */
291
292 /* Return 1 if the given ACL is non-trivial.
293    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
294 int
295 acl_nfs4_nontrivial (nfs4_acl_int_t *a)
296 {
297 #  if 1 /* let's try this first */
298   return (a->aclEntryN > 0 ? 1 : 0);
299 #  else
300   int count = a->aclEntryN;
301   int i;
302
303   for (i = 0; i < count; i++)
304     {
305       nfs4_ace_int_t *ace = &a->aclEntry[i];
306
307       if (!((ace->flags & ACE4_ID_SPECIAL) != 0
308             && (ace->aceWho.special_whoid == ACE4_WHO_OWNER
309                 || ace->aceWho.special_whoid == ACE4_WHO_GROUP
310                 || ace->aceWho.special_whoid == ACE4_WHO_EVERYONE)
311             && ace->aceType == ACE4_ACCESS_ALLOWED_ACE_TYPE
312             && ace->aceFlags == 0
313             && (ace->aceMask & ~(ACE4_READ_DATA | ACE4_LIST_DIRECTORY
314                                  | ACE4_WRITE_DATA | ACE4_ADD_FILE
315                                  | ACE4_EXECUTE)) == 0))
316         return 1;
317     }
318   return 0;
319 #  endif
320 }
321
322 # endif
323
324 #elif USE_ACL && HAVE_ACLSORT /* NonStop Kernel */
325
326 /* Test an ACL retrieved with ACL_GET.
327    Return 1 if the given ACL, consisting of COUNT entries, is non-trivial.
328    Return 0 if it is trivial, i.e. equivalent to a simple stat() mode.  */
329 int
330 acl_nontrivial (int count, struct acl *entries)
331 {
332   int i;
333
334   for (i = 0; i < count; i++)
335     {
336       struct acl *ace = &entries[i];
337
338       /* Note: If ace->a_type = USER_OBJ, ace->a_id is the st_uid from stat().
339          If ace->a_type = GROUP_OBJ, ace->a_id is the st_gid from stat().
340          We don't need to check ace->a_id in these cases.  */
341       if (!(ace->a_type == USER_OBJ /* no need to check ace->a_id here */
342             || ace->a_type == GROUP_OBJ /* no need to check ace->a_id here */
343             || ace->a_type == CLASS_OBJ
344             || ace->a_type == OTHER_OBJ))
345         return 1;
346     }
347   return 0;
348 }
349
350 #endif
351
352
353 /* Return 1 if NAME has a nontrivial access control list, 0 if NAME
354    only has no or a base access control list, and -1 (setting errno)
355    on error.  SB must be set to the stat buffer of FILE.  */
356
357 int
358 file_has_acl (char const *name, struct stat const *sb)
359 {
360 #if USE_ACL
361   if (! S_ISLNK (sb->st_mode))
362     {
363 # if HAVE_ACL_GET_FILE
364
365       /* POSIX 1003.1e (draft 17 -- abandoned) specific version.  */
366       /* Linux, FreeBSD, MacOS X, IRIX, Tru64 */
367       int ret;
368
369       if (HAVE_ACL_EXTENDED_FILE) /* Linux */
370         {
371           /* On Linux, acl_extended_file is an optimized function: It only
372              makes two calls to getxattr(), one for ACL_TYPE_ACCESS, one for
373              ACL_TYPE_DEFAULT.  */
374           ret = acl_extended_file (name);
375         }
376       else /* FreeBSD, MacOS X, IRIX, Tru64 */
377         {
378 #  if HAVE_ACL_TYPE_EXTENDED /* MacOS X */
379           /* On MacOS X, acl_get_file (name, ACL_TYPE_ACCESS)
380              and acl_get_file (name, ACL_TYPE_DEFAULT)
381              always return NULL / EINVAL.  There is no point in making
382              these two useless calls.  The real ACL is retrieved through
383              acl_get_file (name, ACL_TYPE_EXTENDED).  */
384           acl_t acl = acl_get_file (name, ACL_TYPE_EXTENDED);
385           if (acl)
386             {
387               ret = acl_extended_nontrivial (acl);
388               acl_free (acl);
389             }
390           else
391             ret = -1;
392 #  else /* FreeBSD, IRIX, Tru64 */
393           acl_t acl = acl_get_file (name, ACL_TYPE_ACCESS);
394           if (acl)
395             {
396               int saved_errno;
397
398               ret = acl_access_nontrivial (acl);
399               saved_errno = errno;
400               acl_free (acl);
401               errno = saved_errno;
402 #   if HAVE_ACL_FREE_TEXT /* Tru64 */
403               /* On OSF/1, acl_get_file (name, ACL_TYPE_DEFAULT) always
404                  returns NULL with errno not set.  There is no point in
405                  making this call.  */
406 #   else /* FreeBSD, IRIX */
407               /* On Linux, FreeBSD, IRIX, acl_get_file (name, ACL_TYPE_ACCESS)
408                  and acl_get_file (name, ACL_TYPE_DEFAULT) on a directory
409                  either both succeed or both fail; it depends on the
410                  file system.  Therefore there is no point in making the second
411                  call if the first one already failed.  */
412               if (ret == 0 && S_ISDIR (sb->st_mode))
413                 {
414                   acl = acl_get_file (name, ACL_TYPE_DEFAULT);
415                   if (acl)
416                     {
417                       ret = (0 < acl_entries (acl));
418                       acl_free (acl);
419                     }
420                   else
421                     ret = -1;
422                 }
423 #   endif
424             }
425           else
426             ret = -1;
427 #  endif
428         }
429       if (ret < 0)
430         return ACL_NOT_WELL_SUPPORTED (errno) ? 0 : -1;
431       return ret;
432
433 # elif HAVE_FACL && defined GETACLCNT /* Solaris, Cygwin, not HP-UX */
434
435 #  if defined ACL_NO_TRIVIAL
436
437       /* Solaris 10 (newer version), which has additional API declared in
438          <sys/acl.h> (acl_t) and implemented in libsec (acl_set, acl_trivial,
439          acl_fromtext, ...).  */
440       return acl_trivial (name);
441
442 #  else /* Solaris, Cygwin, general case */
443
444       /* Solaris 2.5 through Solaris 10, Cygwin, and contemporaneous versions
445          of Unixware.  The acl() call returns the access and default ACL both
446          at once.  */
447       int count;
448       {
449         aclent_t *entries;
450
451         for (;;)
452           {
453             count = acl (name, GETACLCNT, 0, NULL);
454
455             if (count < 0)
456               {
457                 if (errno == ENOSYS || errno == ENOTSUP)
458                   break;
459                 else
460                   return -1;
461               }
462
463             if (count == 0)
464               break;
465
466             /* Don't use MIN_ACL_ENTRIES:  It's set to 4 on Cygwin, but Cygwin
467                returns only 3 entries for files with no ACL.  But this is safe:
468                If there are more than 4 entries, there cannot be only the
469                "user::", "group::", "other:", and "mask:" entries.  */
470             if (count > 4)
471               return 1;
472
473             entries = (aclent_t *) malloc (count * sizeof (aclent_t));
474             if (entries == NULL)
475               {
476                 errno = ENOMEM;
477                 return -1;
478               }
479             if (acl (name, GETACL, count, entries) == count)
480               {
481                 if (acl_nontrivial (count, entries))
482                   {
483                     free (entries);
484                     return 1;
485                   }
486                 free (entries);
487                 break;
488               }
489             /* Huh? The number of ACL entries changed since the last call.
490                Repeat.  */
491             free (entries);
492           }
493       }
494
495 #   ifdef ACE_GETACL
496       /* Solaris also has a different variant of ACLs, used in ZFS and NFSv4
497          file systems (whereas the other ones are used in UFS file systems).  */
498       {
499         ace_t *entries;
500
501         for (;;)
502           {
503             count = acl (name, ACE_GETACLCNT, 0, NULL);
504
505             if (count < 0)
506               {
507                 if (errno == ENOSYS || errno == EINVAL)
508                   break;
509                 else
510                   return -1;
511               }
512
513             if (count == 0)
514               break;
515
516             /* If there are more than 3 entries, there cannot be only the
517                ACE_OWNER, ACE_GROUP, ACE_OTHER entries.  */
518             if (count > 3)
519               return 1;
520
521             entries = (ace_t *) malloc (count * sizeof (ace_t));
522             if (entries == NULL)
523               {
524                 errno = ENOMEM;
525                 return -1;
526               }
527             if (acl (name, ACE_GETACL, count, entries) == count)
528               {
529                 if (acl_ace_nontrivial (count, entries))
530                   {
531                     free (entries);
532                     return 1;
533                   }
534                 free (entries);
535                 break;
536               }
537             /* Huh? The number of ACL entries changed since the last call.
538                Repeat.  */
539             free (entries);
540           }
541       }
542 #   endif
543
544       return 0;
545 #  endif
546
547 # elif HAVE_GETACL /* HP-UX */
548
549       for (;;)
550         {
551           int count;
552           struct acl_entry entries[NACLENTRIES];
553
554           count = getacl (name, 0, NULL);
555
556           if (count < 0)
557             {
558               /* ENOSYS is seen on newer HP-UX versions.
559                  EOPNOTSUPP is typically seen on NFS mounts.
560                  ENOTSUP was seen on Quantum StorNext file systems (cvfs).  */
561               if (errno == ENOSYS || errno == EOPNOTSUPP || errno == ENOTSUP)
562                 break;
563               else
564                 return -1;
565             }
566
567           if (count == 0)
568             return 0;
569
570           if (count > NACLENTRIES)
571             /* If NACLENTRIES cannot be trusted, use dynamic memory
572                allocation.  */
573             abort ();
574
575           /* If there are more than 3 entries, there cannot be only the
576              (uid,%), (%,gid), (%,%) entries.  */
577           if (count > 3)
578             return 1;
579
580           if (getacl (name, count, entries) == count)
581             {
582               struct stat statbuf;
583
584               if (stat (name, &statbuf) < 0)
585                 return -1;
586
587               return acl_nontrivial (count, entries, &statbuf);
588             }
589           /* Huh? The number of ACL entries changed since the last call.
590              Repeat.  */
591         }
592
593 #  if HAVE_ACLV_H /* HP-UX >= 11.11 */
594
595       for (;;)
596         {
597           int count;
598           struct acl entries[NACLVENTRIES];
599
600           count = acl ((char *) name, ACL_CNT, NACLVENTRIES, entries);
601
602           if (count < 0)
603             {
604               /* EOPNOTSUPP is seen on NFS in HP-UX 11.11, 11.23.
605                  EINVAL is seen on NFS in HP-UX 11.31.  */
606               if (errno == ENOSYS || errno == EOPNOTSUPP || errno == EINVAL)
607                 break;
608               else
609                 return -1;
610             }
611
612           if (count == 0)
613             return 0;
614
615           if (count > NACLVENTRIES)
616             /* If NACLVENTRIES cannot be trusted, use dynamic memory
617                allocation.  */
618             abort ();
619
620           /* If there are more than 4 entries, there cannot be only the
621              four base ACL entries.  */
622           if (count > 4)
623             return 1;
624
625           if (acl ((char *) name, ACL_GET, count, entries) == count)
626             return aclv_nontrivial (count, entries);
627           /* Huh? The number of ACL entries changed since the last call.
628              Repeat.  */
629         }
630
631 #  endif
632
633 # elif HAVE_ACLX_GET && defined ACL_AIX_WIP /* AIX */
634
635       acl_type_t type;
636       char aclbuf[1024];
637       void *acl = aclbuf;
638       size_t aclsize = sizeof (aclbuf);
639       mode_t mode;
640
641       for (;;)
642         {
643           /* The docs say that type being 0 is equivalent to ACL_ANY, but it
644              is not true, in AIX 5.3.  */
645           type.u64 = ACL_ANY;
646           if (aclx_get (name, 0, &type, aclbuf, &aclsize, &mode) >= 0)
647             break;
648           if (errno != ENOSPC)
649             {
650               if (acl != aclbuf)
651                 {
652                   int saved_errno = errno;
653                   free (acl);
654                   errno = saved_errno;
655                 }
656               return -1;
657             }
658           aclsize = 2 * aclsize;
659           if (acl != aclbuf)
660             free (acl);
661           acl = malloc (aclsize);
662           if (acl == NULL)
663             {
664               errno = ENOMEM;
665               return -1;
666             }
667         }
668
669       if (type.u64 == ACL_AIXC)
670         {
671           int result = acl_nontrivial ((struct acl *) acl);
672           if (acl != aclbuf)
673             free (acl);
674           return result;
675         }
676       else if (type.u64 == ACL_NFS4)
677         {
678           int result = acl_nfs4_nontrivial ((nfs4_acl_int_t *) acl);
679           if (acl != aclbuf)
680             free (acl);
681           return result;
682         }
683       else
684         {
685           /* A newer type of ACL has been introduced in the system.
686              We should better support it.  */
687           if (acl != aclbuf)
688             free (acl);
689           errno = EINVAL;
690           return -1;
691         }
692
693 # elif HAVE_STATACL /* older AIX */
694
695       union { struct acl a; char room[4096]; } u;
696
697       if (statacl (name, STX_NORMAL, &u.a, sizeof (u)) < 0)
698         return -1;
699
700       return acl_nontrivial (&u.a);
701
702 # elif HAVE_ACLSORT /* NonStop Kernel */
703
704       int count;
705       struct acl entries[NACLENTRIES];
706
707       for (;;)
708         {
709           count = acl ((char *) name, ACL_CNT, NACLENTRIES, NULL);
710
711           if (count < 0)
712             return -1;
713
714           if (count == 0)
715             return 0;
716
717           if (count > NACLENTRIES)
718             /* If NACLENTRIES cannot be trusted, use dynamic memory
719                allocation.  */
720             abort ();
721
722           /* If there are more than 4 entries, there cannot be only the
723              four base ACL entries.  */
724           if (count > 4)
725             return 1;
726
727           if (acl ((char *) name, ACL_GET, count, entries) == count)
728             return acl_nontrivial (count, entries);
729           /* Huh? The number of ACL entries changed since the last call.
730              Repeat.  */
731         }
732
733 # endif
734     }
735 #endif
736
737   return 0;
738 }