1*0677dfd1SJulio Merino /* Copyright (c) 2007 The NetBSD Foundation, Inc. 2c243e490SMarcel Moolenaar * All rights reserved. 3c243e490SMarcel Moolenaar * 4c243e490SMarcel Moolenaar * Redistribution and use in source and binary forms, with or without 5c243e490SMarcel Moolenaar * modification, are permitted provided that the following conditions 6c243e490SMarcel Moolenaar * are met: 7c243e490SMarcel Moolenaar * 1. Redistributions of source code must retain the above copyright 8c243e490SMarcel Moolenaar * notice, this list of conditions and the following disclaimer. 9c243e490SMarcel Moolenaar * 2. Redistributions in binary form must reproduce the above copyright 10c243e490SMarcel Moolenaar * notice, this list of conditions and the following disclaimer in the 11c243e490SMarcel Moolenaar * documentation and/or other materials provided with the distribution. 12c243e490SMarcel Moolenaar * 13c243e490SMarcel Moolenaar * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND 14c243e490SMarcel Moolenaar * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, 15c243e490SMarcel Moolenaar * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 16c243e490SMarcel Moolenaar * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 17c243e490SMarcel Moolenaar * IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY 18c243e490SMarcel Moolenaar * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19c243e490SMarcel Moolenaar * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 20c243e490SMarcel Moolenaar * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 21c243e490SMarcel Moolenaar * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 22c243e490SMarcel Moolenaar * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 23c243e490SMarcel Moolenaar * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 24*0677dfd1SJulio Merino * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ 25c243e490SMarcel Moolenaar 26*0677dfd1SJulio Merino #if !defined(ATF_C_DETAIL_USER_H) 27*0677dfd1SJulio Merino #define ATF_C_DETAIL_USER_H 28c243e490SMarcel Moolenaar 29c243e490SMarcel Moolenaar #include <sys/types.h> 30c243e490SMarcel Moolenaar 31c243e490SMarcel Moolenaar #include <stdbool.h> 32c243e490SMarcel Moolenaar 33c243e490SMarcel Moolenaar /* TODO: Would be nice to have an atf_user_t type and transform all of 34c243e490SMarcel Moolenaar * the functions below to methods. */ 35c243e490SMarcel Moolenaar 36c243e490SMarcel Moolenaar /* --------------------------------------------------------------------- 37c243e490SMarcel Moolenaar * Free functions. 38c243e490SMarcel Moolenaar * --------------------------------------------------------------------- */ 39c243e490SMarcel Moolenaar 40c243e490SMarcel Moolenaar uid_t atf_user_euid(void); 41c243e490SMarcel Moolenaar bool atf_user_is_member_of_group(gid_t); 42c243e490SMarcel Moolenaar bool atf_user_is_root(void); 43c243e490SMarcel Moolenaar bool atf_user_is_unprivileged(void); 44c243e490SMarcel Moolenaar 45*0677dfd1SJulio Merino #endif /* !defined(ATF_C_DETAIL_USER_H) */ 46