xref: /freebsd/lib/libc/posix1e/acl_copy.c (revision aa015c8e4ad07fbe76ec137fa491c89856b871e0)
14bf60dfaSChris D. Faulhaber /*
2e76872c1SChris D. Faulhaber  * Copyright (c) 2001-2002 Chris D. Faulhaber
34bf60dfaSChris D. Faulhaber  * All rights reserved.
44bf60dfaSChris D. Faulhaber  *
54bf60dfaSChris D. Faulhaber  * Redistribution and use in source and binary forms, with or without
64bf60dfaSChris D. Faulhaber  * modification, are permitted provided that the following conditions
74bf60dfaSChris D. Faulhaber  * are met:
84bf60dfaSChris D. Faulhaber  * 1. Redistributions of source code must retain the above copyright
94bf60dfaSChris D. Faulhaber  *    notice, this list of conditions and the following disclaimer.
104bf60dfaSChris D. Faulhaber  * 2. Redistributions in binary form must reproduce the above copyright
114bf60dfaSChris D. Faulhaber  *    notice, this list of conditions and the following disclaimer in the
124bf60dfaSChris D. Faulhaber  *    documentation and/or other materials provided with the distribution.
134bf60dfaSChris D. Faulhaber  *
144bf60dfaSChris D. Faulhaber  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
154bf60dfaSChris D. Faulhaber  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
164bf60dfaSChris D. Faulhaber  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1768b23992SWarner Losh  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
1868b23992SWarner Losh  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1968b23992SWarner Losh  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2068b23992SWarner Losh  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2168b23992SWarner Losh  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2268b23992SWarner Losh  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2368b23992SWarner Losh  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2468b23992SWarner Losh  * SUCH DAMAGE.
254bf60dfaSChris D. Faulhaber  */
264bf60dfaSChris D. Faulhaber 
27333fc21eSDavid E. O'Brien #include <sys/cdefs.h>
28333fc21eSDavid E. O'Brien __FBSDID("$FreeBSD$");
29333fc21eSDavid E. O'Brien 
304bf60dfaSChris D. Faulhaber #include <sys/types.h>
317bd44e92SThomas Moestl #include "namespace.h"
324bf60dfaSChris D. Faulhaber #include <sys/acl.h>
337bd44e92SThomas Moestl #include "un-namespace.h"
344bf60dfaSChris D. Faulhaber 
354bf60dfaSChris D. Faulhaber #include <errno.h>
364bf60dfaSChris D. Faulhaber #include <string.h>
374bf60dfaSChris D. Faulhaber 
38aa015c8eSEdward Tomasz Napierala #include "acl_support.h"
39aa015c8eSEdward Tomasz Napierala 
404bf60dfaSChris D. Faulhaber /*
410f626307SChris D. Faulhaber  * acl_copy_entry() (23.4.4): copy the contents of ACL entry src_d to
424bf60dfaSChris D. Faulhaber  * ACL entry dest_d
434bf60dfaSChris D. Faulhaber  */
444bf60dfaSChris D. Faulhaber int
454bf60dfaSChris D. Faulhaber acl_copy_entry(acl_entry_t dest_d, acl_entry_t src_d)
464bf60dfaSChris D. Faulhaber {
474bf60dfaSChris D. Faulhaber 
48e76872c1SChris D. Faulhaber 	if (src_d == NULL || dest_d == NULL || src_d == dest_d) {
494bf60dfaSChris D. Faulhaber 		errno = EINVAL;
50e76872c1SChris D. Faulhaber 		return (-1);
514bf60dfaSChris D. Faulhaber 	}
524bf60dfaSChris D. Faulhaber 
53aa015c8eSEdward Tomasz Napierala 	/*
54aa015c8eSEdward Tomasz Napierala 	 * Can we brand the new entry the same as the source entry?
55aa015c8eSEdward Tomasz Napierala 	 */
56aa015c8eSEdward Tomasz Napierala 	if (!_entry_brand_may_be(dest_d, _entry_brand(src_d))) {
57aa015c8eSEdward Tomasz Napierala 		errno = EINVAL;
58aa015c8eSEdward Tomasz Napierala 		return (-1);
59aa015c8eSEdward Tomasz Napierala 	}
60aa015c8eSEdward Tomasz Napierala 
61aa015c8eSEdward Tomasz Napierala 	_entry_brand_as(dest_d, _entry_brand(src_d));
62aa015c8eSEdward Tomasz Napierala 
634bf60dfaSChris D. Faulhaber 	dest_d->ae_tag = src_d->ae_tag;
644bf60dfaSChris D. Faulhaber 	dest_d->ae_id = src_d->ae_id;
654bf60dfaSChris D. Faulhaber 	dest_d->ae_perm = src_d->ae_perm;
66aa015c8eSEdward Tomasz Napierala 	dest_d->ae_entry_type = src_d->ae_entry_type;
67aa015c8eSEdward Tomasz Napierala 	dest_d->ae_flags = src_d->ae_flags;
684bf60dfaSChris D. Faulhaber 
69e76872c1SChris D. Faulhaber 	return (0);
704bf60dfaSChris D. Faulhaber }
714bf60dfaSChris D. Faulhaber 
724bf60dfaSChris D. Faulhaber ssize_t
734bf60dfaSChris D. Faulhaber acl_copy_ext(void *buf_p, acl_t acl, ssize_t size)
744bf60dfaSChris D. Faulhaber {
754bf60dfaSChris D. Faulhaber 
764bf60dfaSChris D. Faulhaber 	errno = ENOSYS;
77e76872c1SChris D. Faulhaber 	return (-1);
784bf60dfaSChris D. Faulhaber }
794bf60dfaSChris D. Faulhaber 
804bf60dfaSChris D. Faulhaber acl_t
814bf60dfaSChris D. Faulhaber acl_copy_int(const void *buf_p)
824bf60dfaSChris D. Faulhaber {
834bf60dfaSChris D. Faulhaber 
844bf60dfaSChris D. Faulhaber 	errno = ENOSYS;
85e76872c1SChris D. Faulhaber 	return (NULL);
864bf60dfaSChris D. Faulhaber }
87