2000-01-15 19:44:27 +00:00
|
|
|
/*-
|
2017-11-25 17:12:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
|
|
|
*
|
2001-03-13 02:31:32 +00:00
|
|
|
* Copyright (c) 1999, 2000, 2001 Robert N. M. Watson
|
2000-01-15 19:44:27 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* acl_init -- return a fresh acl structure
|
2000-01-26 04:19:38 +00:00
|
|
|
* acl_dup -- duplicate an acl and return the new copy
|
2000-01-15 19:44:27 +00:00
|
|
|
*/
|
|
|
|
|
2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
2000-01-15 19:44:27 +00:00
|
|
|
#include <sys/types.h>
|
2001-04-04 18:00:52 +00:00
|
|
|
#include "namespace.h"
|
2000-01-15 19:44:27 +00:00
|
|
|
#include <sys/acl.h>
|
2001-04-04 18:00:52 +00:00
|
|
|
#include "un-namespace.h"
|
2000-01-15 19:44:27 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
Add NFSv4 ACL support to libc.
This adds the following functions to the acl(3) API: acl_add_flag_np,
acl_clear_flags_np, acl_create_entry_np, acl_delete_entry_np,
acl_delete_flag_np, acl_get_extended_np, acl_get_flag_np, acl_get_flagset_np,
acl_set_extended_np, acl_set_flagset_np, acl_to_text_np, acl_is_trivial_np,
acl_strip_np, acl_get_brand_np. Most of them are similar to what Darwin
does. There are no backward-incompatible changes.
Approved by: rwatson@
2009-06-25 12:46:59 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "acl_support.h"
|
|
|
|
|
|
|
|
#ifndef CTASSERT
|
|
|
|
#define CTASSERT(x) _CTASSERT(x, __LINE__)
|
|
|
|
#define _CTASSERT(x, y) __CTASSERT(x, y)
|
|
|
|
#define __CTASSERT(x, y) typedef char __assert_ ## y [(x) ? 1 : -1]
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CTASSERT(1 << _ACL_T_ALIGNMENT_BITS > sizeof(struct acl_t_struct));
|
2000-01-15 19:44:27 +00:00
|
|
|
|
|
|
|
acl_t
|
|
|
|
acl_init(int count)
|
|
|
|
{
|
Add NFSv4 ACL support to libc.
This adds the following functions to the acl(3) API: acl_add_flag_np,
acl_clear_flags_np, acl_create_entry_np, acl_delete_entry_np,
acl_delete_flag_np, acl_get_extended_np, acl_get_flag_np, acl_get_flagset_np,
acl_set_extended_np, acl_set_flagset_np, acl_to_text_np, acl_is_trivial_np,
acl_strip_np, acl_get_brand_np. Most of them are similar to what Darwin
does. There are no backward-incompatible changes.
Approved by: rwatson@
2009-06-25 12:46:59 +00:00
|
|
|
int error;
|
2001-04-24 22:45:41 +00:00
|
|
|
acl_t acl;
|
2000-01-15 19:44:27 +00:00
|
|
|
|
2000-01-19 06:13:59 +00:00
|
|
|
if (count > ACL_MAX_ENTRIES) {
|
2000-01-15 19:44:27 +00:00
|
|
|
errno = ENOMEM;
|
2001-01-17 02:40:39 +00:00
|
|
|
return (NULL);
|
2000-01-15 19:44:27 +00:00
|
|
|
}
|
2001-04-24 22:45:41 +00:00
|
|
|
if (count < 0) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
2000-01-15 19:44:27 +00:00
|
|
|
|
Add NFSv4 ACL support to libc.
This adds the following functions to the acl(3) API: acl_add_flag_np,
acl_clear_flags_np, acl_create_entry_np, acl_delete_entry_np,
acl_delete_flag_np, acl_get_extended_np, acl_get_flag_np, acl_get_flagset_np,
acl_set_extended_np, acl_set_flagset_np, acl_to_text_np, acl_is_trivial_np,
acl_strip_np, acl_get_brand_np. Most of them are similar to what Darwin
does. There are no backward-incompatible changes.
Approved by: rwatson@
2009-06-25 12:46:59 +00:00
|
|
|
error = posix_memalign((void *)&acl, 1 << _ACL_T_ALIGNMENT_BITS,
|
|
|
|
sizeof(struct acl_t_struct));
|
2015-09-03 11:30:39 +00:00
|
|
|
if (error) {
|
|
|
|
errno = error;
|
Add NFSv4 ACL support to libc.
This adds the following functions to the acl(3) API: acl_add_flag_np,
acl_clear_flags_np, acl_create_entry_np, acl_delete_entry_np,
acl_delete_flag_np, acl_get_extended_np, acl_get_flag_np, acl_get_flagset_np,
acl_set_extended_np, acl_set_flagset_np, acl_to_text_np, acl_is_trivial_np,
acl_strip_np, acl_get_brand_np. Most of them are similar to what Darwin
does. There are no backward-incompatible changes.
Approved by: rwatson@
2009-06-25 12:46:59 +00:00
|
|
|
return (NULL);
|
2015-09-03 11:30:39 +00:00
|
|
|
}
|
Add NFSv4 ACL support to libc.
This adds the following functions to the acl(3) API: acl_add_flag_np,
acl_clear_flags_np, acl_create_entry_np, acl_delete_entry_np,
acl_delete_flag_np, acl_get_extended_np, acl_get_flag_np, acl_get_flagset_np,
acl_set_extended_np, acl_set_flagset_np, acl_to_text_np, acl_is_trivial_np,
acl_strip_np, acl_get_brand_np. Most of them are similar to what Darwin
does. There are no backward-incompatible changes.
Approved by: rwatson@
2009-06-25 12:46:59 +00:00
|
|
|
|
|
|
|
bzero(acl, sizeof(struct acl_t_struct));
|
|
|
|
acl->ats_brand = ACL_BRAND_UNKNOWN;
|
|
|
|
acl->ats_acl.acl_maxcnt = ACL_MAX_ENTRIES;
|
2000-01-15 19:44:27 +00:00
|
|
|
|
|
|
|
return (acl);
|
|
|
|
}
|
|
|
|
|
2000-01-26 04:19:38 +00:00
|
|
|
acl_t
|
|
|
|
acl_dup(acl_t acl)
|
|
|
|
{
|
2001-04-24 22:45:41 +00:00
|
|
|
acl_t acl_new;
|
2000-01-26 04:19:38 +00:00
|
|
|
|
|
|
|
acl_new = acl_init(ACL_MAX_ENTRIES);
|
2002-02-21 23:17:19 +00:00
|
|
|
if (acl_new != NULL) {
|
|
|
|
*acl_new = *acl;
|
|
|
|
acl->ats_cur_entry = 0;
|
|
|
|
acl_new->ats_cur_entry = 0;
|
|
|
|
}
|
2000-01-26 04:19:38 +00:00
|
|
|
|
2002-02-21 23:17:19 +00:00
|
|
|
return (acl_new);
|
2000-01-26 04:19:38 +00:00
|
|
|
}
|