18c7327e1SRobert Watson /*- 28c7327e1SRobert Watson * Copyright (c) 1999, 2000, 2001, 2002 Robert N. M. Watson 38c7327e1SRobert Watson * Copyright (c) 2001, 2002 Networks Associates Technology, Inc. 48c7327e1SRobert Watson * All rights reserved. 58c7327e1SRobert Watson * 68c7327e1SRobert Watson * This software was developed by Robert Watson for the TrustedBSD Project. 78c7327e1SRobert Watson * 88c7327e1SRobert Watson * This software was developed for the FreeBSD Project in part by NAI Labs, 98c7327e1SRobert Watson * the Security Research Division of Network Associates, Inc. under 108c7327e1SRobert Watson * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA 118c7327e1SRobert Watson * CHATS research program. 128c7327e1SRobert Watson * 138c7327e1SRobert Watson * Redistribution and use in source and binary forms, with or without 148c7327e1SRobert Watson * modification, are permitted provided that the following conditions 158c7327e1SRobert Watson * are met: 168c7327e1SRobert Watson * 1. Redistributions of source code must retain the above copyright 178c7327e1SRobert Watson * notice, this list of conditions and the following disclaimer. 188c7327e1SRobert Watson * 2. Redistributions in binary form must reproduce the above copyright 198c7327e1SRobert Watson * notice, this list of conditions and the following disclaimer in the 208c7327e1SRobert Watson * documentation and/or other materials provided with the distribution. 218c7327e1SRobert Watson * 3. The names of the authors may not be used to endorse or promote 228c7327e1SRobert Watson * products derived from this software without specific prior written 238c7327e1SRobert Watson * permission. 248c7327e1SRobert Watson * 258c7327e1SRobert Watson * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 268c7327e1SRobert Watson * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 278c7327e1SRobert Watson * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 288c7327e1SRobert Watson * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 298c7327e1SRobert Watson * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 308c7327e1SRobert Watson * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 318c7327e1SRobert Watson * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 328c7327e1SRobert Watson * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 338c7327e1SRobert Watson * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 348c7327e1SRobert Watson * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 358c7327e1SRobert Watson * SUCH DAMAGE. 368c7327e1SRobert Watson * 378c7327e1SRobert Watson * $FreeBSD$ 388c7327e1SRobert Watson */ 398c7327e1SRobert Watson 408c7327e1SRobert Watson /* 418c7327e1SRobert Watson * Definitions for the TrustedBSD partition policy module. 428c7327e1SRobert Watson */ 438c7327e1SRobert Watson 448c7327e1SRobert Watson #ifndef _SYS_SECURITY_MAC_PARTITION_H 458c7327e1SRobert Watson #define _SYS_SECURITY_MAC_PARTITION_H 468c7327e1SRobert Watson 478c7327e1SRobert Watson #define MAC_PARTITION_LABEL_NAME "partition" 488c7327e1SRobert Watson 498c7327e1SRobert Watson #endif /* !_SYS_SECURITY_MAC_PARTITION_H */ 50