// This file is part of BOINC. // http://boinc.berkeley.edu // Copyright (C) 2008 University of California // // BOINC is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation, // either version 3 of the License, or (at your option) any later version. // // BOINC is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // See the GNU Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with BOINC. If not, see . // SetupSecurity.h #ifdef _DEBUG // Comment out this #define for easier debugging of project applications. // Make it active for better debugging of SANDBOX permissions logic. // #define DEBUG_WITH_FAKE_PROJECT_USER_AND_GROUP #endif int CreateBOINCUsersAndGroups(void); int SetBOINCAppOwnersGroupsAndPermissions(char *path); int SetBOINCDataOwnersGroupsAndPermissions(void); int AddAdminUserToGroups(char *user_name, bool add_to_boinc_project=true); void ShowSecurityError(const char *format, ...);