1331722Seadler/*
2101242Srwatson * Copyright (c) 1999, 2000, 2001, 2002 Robert N. M. Watson
3101242Srwatson * All rights reserved.
4101242Srwatson *
5101242Srwatson * This software was developed by Robert Watson for the TrustedBSD Project.
6101242Srwatson *
7101242Srwatson * Redistribution and use in source and binary forms, with or without
8101242Srwatson * modification, are permitted provided that the following conditions
9101242Srwatson * are met:
10101242Srwatson * 1. Redistributions of source code must retain the above copyright
11101242Srwatson *    notice, this list of conditions and the following disclaimer.
12101242Srwatson * 2. Redistributions in binary form must reproduce the above copyright
13101242Srwatson *    notice, this list of conditions and the following disclaimer in the
14101242Srwatson *    documentation and/or other materials provided with the distribution.
15101242Srwatson * 3. The names of the authors may not be used to endorse or promote
16101242Srwatson *    products derived from this software without specific prior written
17101242Srwatson *    permission.
18101242Srwatson *
19101242Srwatson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20101242Srwatson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21101242Srwatson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22101242Srwatson * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23101242Srwatson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24101242Srwatson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25101242Srwatson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26101242Srwatson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27101242Srwatson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28101242Srwatson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29101242Srwatson * SUCH DAMAGE.
30101242Srwatson */
31101242Srwatson
32176901Srwatson#include <sys/cdefs.h>
33176901Srwatson__FBSDID("$FreeBSD$");
34176901Srwatson
35101242Srwatson#include <sys/types.h>
36101242Srwatson#include <sys/mac.h>
37101242Srwatson
38111618Snectarextern	int	__mac_set_fd(int fd, struct mac *mac_p);
39111618Snectarextern	int	__mac_set_file(const char *path_p, struct mac *mac_p);
40111618Snectarextern	int	__mac_set_link(const char *path_p, struct mac *mac_p);
41111618Snectarextern	int	__mac_set_proc(struct mac *mac_p);
42111618Snectar
43101242Srwatsonint
44105698Srwatsonmac_set_fd(int fd, struct mac *label)
45101242Srwatson{
46101242Srwatson
47105698Srwatson	return (__mac_set_fd(fd, label));
48101242Srwatson}
49101242Srwatson
50101242Srwatsonint
51105698Srwatsonmac_set_file(const char *path, struct mac *label)
52101242Srwatson{
53101242Srwatson
54105698Srwatson	return (__mac_set_file(path, label));
55101242Srwatson}
56101242Srwatson
57101242Srwatsonint
58105698Srwatsonmac_set_link(const char *path, struct mac *label)
59101242Srwatson{
60101242Srwatson
61105698Srwatson	return (__mac_set_link(path, label));
62105698Srwatson}
63105698Srwatson
64105698Srwatsonint
65105698Srwatsonmac_set_proc(struct mac *label)
66105698Srwatson{
67105698Srwatson
68101242Srwatson	return (__mac_set_proc(label));
69101242Srwatson}
70