]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/posix1e/acl_calc_mask.c
Minor fixes to library interface to improve POSIX.1e compliance. This
[FreeBSD/FreeBSD.git] / lib / libc / posix1e / acl_calc_mask.c
1 /*-
2  * Copyright (c) 1999 Robert N. M. Watson
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  *
26  *      $FreeBSD$
27  */
28 /*
29  * acl_calc_mask(): POSIX.1e routine to recalculate the mask value
30  */
31
32 #include <sys/types.h>
33 #include <sys/acl.h>
34 #include <sys/errno.h>
35 #include <string.h>
36
37 #include "acl_support.h"
38
39 /*
40  * POSIX.1e ACL semantics:
41  *
42  * acl_calc_mask(): calculate an ACL_MASK entry for the ACL, then either
43  * insert into the ACL if there is none already, or replace the existing
44  * one.  This will act up if called on a non-POSIX.1e semantics ACL.
45  */
46 int
47 acl_calc_mask(acl_t *acl_p)
48 {
49         acl_perm_t      perm_union = ACL_PERM_NONE;
50         acl_t   acl = *acl_p;
51         int     mask_entry = -1;
52         int     i;
53
54         /* search for ACL_MASK */
55         for (i = 0; i < acl->acl_cnt; i++)
56                 if (acl->acl_entry[i].ae_tag == ACL_MASK)
57                         mask_entry = i;
58                 else
59                         perm_union |= acl->acl_entry[i].ae_perm;
60
61         if (mask_entry != -1) {
62                 /* already have a mask, replace */
63                 acl->acl_entry[mask_entry].ae_perm = perm_union;
64         } else {
65                 /* must add a new mask */
66                 if (acl_add_entry(acl, ACL_MASK, 0, perm_union) == -1)
67                         return (-1);
68         }
69
70         return (0);
71 }