libcli/security Move 'private' privileges functions to another header
authorAndrew Bartlett <abartlet@samba.org>
Fri, 3 Sep 2010 23:23:12 +0000 (09:23 +1000)
committerAndrew Bartlett <abartlet@samba.org>
Sat, 11 Sep 2010 08:46:13 +0000 (18:46 +1000)
These functions work on the bitmap, and are only exposed because
the source3/ privileges storage uses the bitmap in account_policy.tdb

Andrew Bartlett

Signed-off-by: Andrew Tridgell <tridge@samba.org>
libcli/security/privileges.c
libcli/security/privileges.h
libcli/security/privileges_private.h [new file with mode: 0644]
source3/lib/privileges.c

index 938f34b858f88a4e1f3e2be1a86be112c46c0883..466bea0565519dcf3702b71817f1fedd2a556bdd 100644 (file)
@@ -34,6 +34,7 @@
 
 #include "includes.h"
 #include "libcli/security/privileges.h"
+#include "libcli/security/privileges_private.h"
 #include "librpc/gen_ndr/security.h"
 
 /* The use of strcasecmp here is safe, all the comparison strings are ASCII */
index 788125e163555f9b9acbe00a6c937d5ee35df2a8..6ba7836e8b0d88acbbb5c428befcf14603dd6883 100644 (file)
@@ -45,23 +45,6 @@ typedef struct {
        struct lsa_LUIDAttribute *set;
 } PRIVILEGE_SET;
 
-/*
-  return a privilege mask given a privilege id
-*/
-uint64_t sec_privilege_mask(enum sec_privilege privilege);
-
-/***************************************************************************
- put all privileges into a mask
-****************************************************************************/
-
-void se_priv_put_all_privileges(uint64_t *privilege_mask);
-
-/*********************************************************************
- Lookup the uint64_t value for a privilege name
-*********************************************************************/
-
-bool se_priv_from_name( const char *name, uint64_t *privilege_mask );
-
 const char* get_privilege_dispname( const char *name );
 
 /*******************************************************************
@@ -70,13 +53,6 @@ const char* get_privilege_dispname( const char *name );
 
 int num_privileges_in_short_list( void );
 
-/****************************************************************************
- Convert a LUID to a named string
-****************************************************************************/
-
-bool se_priv_to_privilege_set( PRIVILEGE_SET *set, uint64_t privilege_mask );
-bool privilege_set_to_se_priv( uint64_t *privilege_mask, struct lsa_PrivilegeSet *privset );
-
 /*
   map a privilege id to the wire string constant
 */
diff --git a/libcli/security/privileges_private.h b/libcli/security/privileges_private.h
new file mode 100644 (file)
index 0000000..eec5ba3
--- /dev/null
@@ -0,0 +1,41 @@
+/*
+   Unix SMB/CIFS implementation.
+   SMB parameters and setup
+   Copyright (C) Andrew Bartlett 2010
+
+   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
+   the Free Software Foundation; either version 3 of the License, or
+   (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
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+*/
+
+/*********************************************************************
+ Lookup the privilege mask for a privilege name
+*********************************************************************/
+bool se_priv_from_name( const char *name, uint64_t *privilege_mask );
+
+/***************************************************************************
+  return a privilege mask given a privilege id
+****************************************************************************/
+uint64_t sec_privilege_mask(enum sec_privilege privilege);
+
+/***************************************************************************
+ put all privileges into a mask
+****************************************************************************/
+
+void se_priv_put_all_privileges(uint64_t *privilege_mask);
+
+/****************************************************************************
+ Convert PRIVILEGE_SET to a privilege bitmap and back again
+****************************************************************************/
+
+bool se_priv_to_privilege_set( PRIVILEGE_SET *set, uint64_t privilege_mask );
+bool privilege_set_to_se_priv( uint64_t *privilege_mask, struct lsa_PrivilegeSet *privset );
index 62ed0a35e0a78fe96beb6112f7fee00ae6f46b5b..3380d472a57857f4f9549147293996d586629f22 100644 (file)
@@ -23,6 +23,7 @@
 
 #include "includes.h"
 #include "dbwrap.h"
+#include "libcli/security/privileges_private.h"
 
 #define PRIVPREFIX              "PRIV_"