2005-02-03 18:14:54 +03:00
2003-05-06 17:10:10 +04:00
/*
Unix SMB / CIFS implementation .
SMB parameters and setup
Copyright ( C ) Andrew Tridgell 1992 - 1997
Copyright ( C ) Luke Kenneth Casson Leighton 1996 - 1997
Copyright ( C ) Paul Ashton 1997
2005-01-13 21:20:37 +03:00
Copyright ( C ) Simo Sorce 2003
2005-03-10 21:50:47 +03:00
Copyright ( C ) Gerald ( Jerry ) Carter 2005
2003-05-06 17:10:10 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-05-06 17:10:10 +04:00
( at your option ) any later version .
This program 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 General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-05-06 17:10:10 +04:00
*/
# ifndef PRIVILEGES_H
# define PRIVILEGES_H
2010-06-05 04:39:11 +04:00
# include "../librpc/gen_ndr/lsa.h"
2010-08-27 06:44:35 +04:00
# include "../librpc/gen_ndr/security.h"
2010-06-05 04:39:11 +04:00
2005-01-19 19:52:19 +03:00
/* privilege bitmask */
2010-08-24 08:47:26 +04:00
typedef uint64_t SE_PRIV ;
2005-01-19 19:52:19 +03:00
2005-01-13 21:20:37 +03:00
/* common privilege defines */
2003-06-18 19:24:10 +04:00
2010-08-24 08:47:26 +04:00
# define SE_END 0x0
# define SE_NONE 0x0
# define SE_ALL_PRIVS (SE_PRIV)-1
2003-06-18 19:24:10 +04:00
2005-01-13 21:20:37 +03:00
2007-06-14 15:29:35 +04:00
/* defined in lib/privilegs_basic.c */
extern const SE_PRIV se_priv_all ;
2005-01-19 19:52:19 +03:00
2005-02-03 18:14:54 +03:00
extern const SE_PRIV se_priv_none ;
2005-01-19 19:52:19 +03:00
extern const SE_PRIV se_machine_account ;
extern const SE_PRIV se_print_operator ;
extern const SE_PRIV se_add_users ;
extern const SE_PRIV se_disk_operators ;
extern const SE_PRIV se_remote_shutdown ;
2005-06-09 19:20:11 +04:00
extern const SE_PRIV se_restore ;
2005-09-02 16:53:46 +04:00
extern const SE_PRIV se_take_ownership ;
2005-01-19 19:52:19 +03:00
2005-01-13 21:20:37 +03:00
/*
* These are used in Lsa replies ( srv_lsa_nt . c )
*/
2005-06-29 20:35:32 +04:00
typedef struct {
2003-10-06 05:38:46 +04:00
TALLOC_CTX * mem_ctx ;
2007-10-19 04:40:25 +04:00
bool ext_ctx ;
2003-05-06 17:10:10 +04:00
uint32 count ;
uint32 control ;
2010-06-05 04:39:11 +04:00
struct lsa_LUIDAttribute * set ;
2003-05-06 17:10:10 +04:00
} PRIVILEGE_SET ;
2005-06-29 20:35:32 +04:00
typedef struct {
2005-01-17 18:23:11 +03:00
SE_PRIV se_priv ;
2005-01-13 21:20:37 +03:00
const char * name ;
2003-06-18 19:24:10 +04:00
const char * description ;
2010-06-05 04:39:11 +04:00
struct lsa_LUID luid ;
2003-06-18 19:24:10 +04:00
} PRIVS ;
# endif /* PRIVILEGES_H */