1 /* 2 Unix SMB/CIFS implementation. 3 Translate unix-defined names to SIDs and vice versa 4 Copyright (C) Volker Lendecke 2005 5 6 This program is free software; you can redistribute it and/or modify 7 it under the terms of the GNU General Public License as published by 8 the Free Software Foundation; either version 3 of the License, or 9 (at your option) any later version. 10 11 This program is distributed in the hope that it will be useful, 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details. 15 16 You should have received a copy of the GNU General Public License 17 along with this program. If not, see <http://www.gnu.org/licenses/>. 18 */ 19 20 #ifndef __UTIL_UNIXSIDS_H__ 21 #define __UTIL_UNIXSIDS_H__ 22 23 #include "replace.h" 24 25 struct dom_sid; 26 27 bool sid_check_is_unix_users(const struct dom_sid *sid); 28 bool sid_check_is_in_unix_users(const struct dom_sid *sid); 29 void uid_to_unix_users_sid(uid_t uid, struct dom_sid *sid); 30 void gid_to_unix_groups_sid(gid_t gid, struct dom_sid *sid); 31 const char *unix_users_domain_name(void); 32 bool sid_check_is_unix_groups(const struct dom_sid *sid); 33 bool sid_check_is_in_unix_groups(const struct dom_sid *sid); 34 const char *unix_groups_domain_name(void); 35 36 #endif 37