1 /*- 2 * Copyright (c) 2003-2006 SPARTA, Inc. 3 * All rights reserved. 4 * 5 * This software was developed for the FreeBSD Project in part by Network 6 * Associates Laboratories, the Security Research Division of Network 7 * Associates, Inc. under DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), 8 * as part of the DARPA CHATS research program. 9 * 10 * This software was enhanced by SPARTA ISSO under SPAWAR contract 11 * N66001-04-C-6019 ("SEFOS"). 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 22 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 25 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 32 * SUCH DAMAGE. 33 */ 34 35 #include <sys/cdefs.h> 36 __FBSDID("$FreeBSD$"); 37 38 #include "opt_mac.h" 39 #include "opt_posix.h" 40 41 #include <sys/param.h> 42 #include <sys/kernel.h> 43 #include <sys/ksem.h> 44 #include <sys/malloc.h> 45 #include <sys/module.h> 46 #include <sys/systm.h> 47 #include <sys/sysctl.h> 48 49 #include <security/mac/mac_framework.h> 50 #include <security/mac/mac_internal.h> 51 #include <security/mac/mac_policy.h> 52 53 static struct label * 54 mac_posixsem_label_alloc(void) 55 { 56 struct label *label; 57 58 label = mac_labelzone_alloc(M_WAITOK); 59 MAC_PERFORM(posixsem_init_label, label); 60 return (label); 61 } 62 63 void 64 mac_posixsem_init(struct ksem *ks) 65 { 66 67 ks->ks_label = mac_posixsem_label_alloc(); 68 } 69 70 static void 71 mac_posixsem_label_free(struct label *label) 72 { 73 74 MAC_PERFORM(posixsem_destroy_label, label); 75 } 76 77 void 78 mac_posixsem_destroy(struct ksem *ks) 79 { 80 81 mac_posixsem_label_free(ks->ks_label); 82 ks->ks_label = NULL; 83 } 84 85 void 86 mac_posixsem_create(struct ucred *cred, struct ksem *ks) 87 { 88 89 MAC_PERFORM(posixsem_create, cred, ks, ks->ks_label); 90 } 91 92 int 93 mac_posixsem_check_destroy(struct ucred *cred, struct ksem *ks) 94 { 95 int error; 96 97 MAC_CHECK(posixsem_check_destroy, cred, ks, ks->ks_label); 98 99 return (error); 100 } 101 102 int 103 mac_posixsem_check_open(struct ucred *cred, struct ksem *ks) 104 { 105 int error; 106 107 MAC_CHECK(posixsem_check_open, cred, ks, ks->ks_label); 108 109 return (error); 110 } 111 112 int 113 mac_posixsem_check_getvalue(struct ucred *cred, struct ksem *ks) 114 { 115 int error; 116 117 MAC_CHECK(posixsem_check_getvalue, cred, ks, ks->ks_label); 118 119 return (error); 120 } 121 122 int 123 mac_posixsem_check_post(struct ucred *cred, struct ksem *ks) 124 { 125 int error; 126 127 MAC_CHECK(posixsem_check_post, cred, ks, ks->ks_label); 128 129 return (error); 130 } 131 132 int 133 mac_posixsem_check_unlink(struct ucred *cred, struct ksem *ks) 134 { 135 int error; 136 137 MAC_CHECK(posixsem_check_unlink, cred, ks, ks->ks_label); 138 139 return (error); 140 } 141 142 int 143 mac_posixsem_check_wait(struct ucred *cred, struct ksem *ks) 144 { 145 int error; 146 147 MAC_CHECK(posixsem_check_wait, cred, ks, ks->ks_label); 148 149 return (error); 150 } 151