2009-10-24 15:34:31 +04:00
# Manipulate file NT ACLs
#
# Copyright Matthieu Patou 2010 <mat@matws.net>
#
# 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/>.
#
from samba . credentials import DONT_USE_KERBEROS
import samba . getopt as options
2012-08-22 12:32:18 +04:00
from samba . dcerpc import security , idmap
2018-07-30 09:19:05 +03:00
from samba . ntacls import setntacl , getntacl , getdosinfo
2009-10-24 15:34:31 +04:00
from samba import Ldb
2012-09-05 11:06:33 +04:00
from samba . ndr import ndr_unpack , ndr_print
2012-08-22 12:32:18 +04:00
from samba . samdb import SamDB
from samba . samba3 import param as s3param , passdb , smbd
from samba import provision
2009-10-24 15:34:31 +04:00
from ldb import SCOPE_BASE
import os
from samba . auth import system_session
from samba . netcmd import (
Command ,
CommandError ,
2010-03-01 06:39:53 +03:00
SuperCommand ,
2009-10-24 15:34:31 +04:00
Option ,
2018-07-30 09:14:37 +03:00
)
2009-10-24 15:34:31 +04:00
2011-08-31 01:19:59 +04:00
class cmd_ntacl_set ( Command ) :
2012-10-08 14:32:58 +04:00
""" Set ACLs on a file. """
2011-10-14 01:47:45 +04:00
2011-10-14 01:27:22 +04:00
synopsis = " % prog <acl> <file> [options] "
2009-10-24 15:34:31 +04:00
2012-02-06 19:33:38 +04:00
takes_optiongroups = {
" sambaopts " : options . SambaOptions ,
" credopts " : options . CredentialsOptions ,
" versionopts " : options . VersionOptions ,
2018-07-30 09:14:37 +03:00
}
2012-02-06 19:33:38 +04:00
2009-10-24 15:34:31 +04:00
takes_options = [
2018-04-19 08:17:28 +03:00
Option ( " -q " , " --quiet " , help = " Be quiet " , action = " store_true " ) ,
2009-10-24 15:34:31 +04:00
Option ( " --xattr-backend " , type = " choice " , help = " xattr backend type (native fs or tdb) " ,
2018-07-30 09:19:05 +03:00
choices = [ " native " , " tdb " ] ) ,
2009-10-24 15:34:31 +04:00
Option ( " --eadb-file " , help = " Name of the tdb file where attributes are stored " , type = " string " ) ,
2012-09-05 12:12:52 +04:00
Option ( " --use-ntvfs " , help = " Set the ACLs directly to the TDB or xattr for use with the ntvfs file server " , action = " store_true " ) ,
2012-12-15 14:24:26 +04:00
Option ( " --use-s3fs " , help = " Set the ACLs for use with the default s3fs file server via the VFS layer " , action = " store_true " ) ,
Option ( " --service " , help = " Name of the smb.conf service to use when applying the ACLs " , type = " string " )
2018-07-30 09:14:37 +03:00
]
2009-10-24 15:34:31 +04:00
2018-07-30 09:19:05 +03:00
takes_args = [ " acl " , " file " ]
2009-10-24 15:34:31 +04:00
2012-09-05 12:12:52 +04:00
def run ( self , acl , file , use_ntvfs = False , use_s3fs = False ,
2018-07-30 09:19:05 +03:00
quiet = False , xattr_backend = None , eadb_file = None ,
2012-12-15 14:24:26 +04:00
credopts = None , sambaopts = None , versionopts = None ,
service = None ) :
2012-09-05 12:12:52 +04:00
logger = self . get_logger ( )
2010-03-01 06:39:53 +03:00
lp = sambaopts . get_loadparm ( )
try :
2012-09-05 12:12:52 +04:00
samdb = SamDB ( session_info = system_session ( ) ,
lp = lp )
2018-02-14 00:07:23 +03:00
except Exception as e :
2012-09-05 12:12:52 +04:00
raise CommandError ( " Unable to open samdb: " , e )
if not use_ntvfs and not use_s3fs :
use_ntvfs = " smb " in lp . get ( " server services " )
elif use_s3fs :
use_ntvfs = False
try :
domain_sid = security . dom_sid ( samdb . domain_sid )
except :
2010-03-01 06:39:53 +03:00
raise CommandError ( " Unable to read domain SID from configuration files " )
2012-09-05 12:12:52 +04:00
s3conf = s3param . get_context ( )
s3conf . load ( lp . configfile )
# ensure we are using the right samba_dsdb passdb backend, no matter what
s3conf . set ( " passdb backend " , " samba_dsdb: %s " % samdb . url )
2012-12-15 14:24:26 +04:00
setntacl ( lp , file , acl , str ( domain_sid ) , xattr_backend , eadb_file , use_ntvfs = use_ntvfs , service = service )
2012-09-05 12:12:52 +04:00
if use_ntvfs :
logger . warning ( " Please note that POSIX permissions have NOT been changed, only the stored NT ACL " )
2009-10-24 15:34:31 +04:00
2011-08-31 01:19:59 +04:00
2015-09-26 02:16:50 +03:00
class cmd_dosinfo_get ( Command ) :
""" Get DOS info of a file from xattr. """
synopsis = " % prog <file> [options] "
takes_optiongroups = {
" sambaopts " : options . SambaOptions ,
" credopts " : options . CredentialsOptions ,
" versionopts " : options . VersionOptions ,
2018-07-30 09:14:37 +03:00
}
2015-09-26 02:16:50 +03:00
takes_args = [ " file " ]
def run ( self , file , credopts = None , sambaopts = None , versionopts = None ) :
lp = sambaopts . get_loadparm ( )
s3conf = s3param . get_context ( )
s3conf . load ( lp . configfile )
dosinfo = getdosinfo ( lp , file )
if dosinfo :
self . outf . write ( ndr_print ( dosinfo ) )
2011-08-31 01:19:59 +04:00
class cmd_ntacl_get ( Command ) :
2012-10-08 14:32:58 +04:00
""" Get ACLs of a file. """
2011-10-14 01:27:22 +04:00
synopsis = " % prog <file> [options] "
2009-10-24 15:34:31 +04:00
2012-02-06 19:33:38 +04:00
takes_optiongroups = {
" sambaopts " : options . SambaOptions ,
" credopts " : options . CredentialsOptions ,
" versionopts " : options . VersionOptions ,
2018-07-30 09:14:37 +03:00
}
2012-02-06 19:33:38 +04:00
2009-10-24 15:34:31 +04:00
takes_options = [
Option ( " --as-sddl " , help = " Output ACL in the SDDL format " , action = " store_true " ) ,
Option ( " --xattr-backend " , type = " choice " , help = " xattr backend type (native fs or tdb) " ,
2018-07-30 09:19:05 +03:00
choices = [ " native " , " tdb " ] ) ,
2009-10-24 15:34:31 +04:00
Option ( " --eadb-file " , help = " Name of the tdb file where attributes are stored " , type = " string " ) ,
2012-09-05 12:12:52 +04:00
Option ( " --use-ntvfs " , help = " Get the ACLs directly from the TDB or xattr used with the ntvfs file server " , action = " store_true " ) ,
2012-12-15 14:24:26 +04:00
Option ( " --use-s3fs " , help = " Get the ACLs for use via the VFS layer used by the default s3fs file server " , action = " store_true " ) ,
Option ( " --service " , help = " Name of the smb.conf service to use when getting the ACLs " , type = " string " )
2018-07-30 09:14:37 +03:00
]
2009-10-24 15:34:31 +04:00
takes_args = [ " file " ]
2012-09-05 12:12:52 +04:00
def run ( self , file , use_ntvfs = False , use_s3fs = False ,
as_sddl = False , xattr_backend = None , eadb_file = None ,
2012-12-15 14:24:26 +04:00
credopts = None , sambaopts = None , versionopts = None ,
service = None ) :
2009-10-24 15:34:31 +04:00
lp = sambaopts . get_loadparm ( )
2012-09-05 12:12:52 +04:00
try :
samdb = SamDB ( session_info = system_session ( ) ,
lp = lp )
2018-02-14 00:07:23 +03:00
except Exception as e :
2012-09-05 12:12:52 +04:00
raise CommandError ( " Unable to open samdb: " , e )
if not use_ntvfs and not use_s3fs :
use_ntvfs = " smb " in lp . get ( " server services " )
elif use_s3fs :
use_ntvfs = False
s3conf = s3param . get_context ( )
s3conf . load ( lp . configfile )
# ensure we are using the right samba_dsdb passdb backend, no matter what
s3conf . set ( " passdb backend " , " samba_dsdb: %s " % samdb . url )
2012-12-15 14:24:26 +04:00
acl = getntacl ( lp , file , xattr_backend , eadb_file , direct_db_access = use_ntvfs , service = service )
2009-10-24 15:34:31 +04:00
if as_sddl :
2012-09-05 12:12:52 +04:00
try :
domain_sid = security . dom_sid ( samdb . domain_sid )
except :
raise CommandError ( " Unable to read domain SID from configuration files " )
2018-07-30 09:18:25 +03:00
self . outf . write ( acl . as_sddl ( domain_sid ) + " \n " )
2009-10-24 15:34:31 +04:00
else :
2012-09-05 11:06:33 +04:00
self . outf . write ( ndr_print ( acl ) )
2009-10-24 15:34:31 +04:00
2012-08-22 12:32:18 +04:00
class cmd_ntacl_sysvolreset ( Command ) :
2012-10-08 14:32:58 +04:00
""" Reset sysvol ACLs to defaults (including correct ACLs on GPOs). """
2012-08-22 12:32:18 +04:00
synopsis = " % prog <file> [options] "
takes_optiongroups = {
" sambaopts " : options . SambaOptions ,
" credopts " : options . CredentialsOptions ,
" versionopts " : options . VersionOptions ,
2018-07-30 09:14:37 +03:00
}
2012-08-22 12:32:18 +04:00
takes_options = [
Option ( " --use-ntvfs " , help = " Set the ACLs for use with the ntvfs file server " , action = " store_true " ) ,
Option ( " --use-s3fs " , help = " Set the ACLs for use with the default s3fs file server " , action = " store_true " )
2018-07-30 09:14:37 +03:00
]
2012-08-22 12:32:18 +04:00
def run ( self , use_ntvfs = False , use_s3fs = False ,
credopts = None , sambaopts = None , versionopts = None ) :
lp = sambaopts . get_loadparm ( )
path = lp . private_path ( " secrets.ldb " )
creds = credopts . get_credentials ( lp )
creds . set_kerberos_state ( DONT_USE_KERBEROS )
logger = self . get_logger ( )
netlogon = lp . get ( " path " , " netlogon " )
sysvol = lp . get ( " path " , " sysvol " )
try :
2012-09-27 20:30:47 +04:00
samdb = SamDB ( session_info = system_session ( ) ,
2012-08-22 12:32:18 +04:00
lp = lp )
2018-02-14 00:07:23 +03:00
except Exception as e :
2012-08-22 12:32:18 +04:00
raise CommandError ( " Unable to open samdb: " , e )
if not use_ntvfs and not use_s3fs :
use_ntvfs = " smb " in lp . get ( " server services " )
elif use_s3fs :
use_ntvfs = False
domain_sid = security . dom_sid ( samdb . domain_sid )
s3conf = s3param . get_context ( )
s3conf . load ( lp . configfile )
2012-09-04 04:27:50 +04:00
# ensure we are using the right samba_dsdb passdb backend, no matter what
s3conf . set ( " passdb backend " , " samba_dsdb: %s " % samdb . url )
2012-08-22 12:32:18 +04:00
LA_sid = security . dom_sid ( str ( domain_sid )
2018-07-30 09:18:25 +03:00
+ " - " + str ( security . DOMAIN_RID_ADMINISTRATOR ) )
2012-08-22 12:32:18 +04:00
BA_sid = security . dom_sid ( security . SID_BUILTIN_ADMINISTRATORS )
s4_passdb = passdb . PDB ( s3conf . get ( " passdb backend " ) )
2015-03-05 20:08:43 +03:00
# These assertions correct for current ad_dc selftest
2012-08-22 12:32:18 +04:00
# configuration. When other environments have a broad range of
# groups mapped via passdb, we can relax some of these checks
2018-07-30 09:19:05 +03:00
( LA_uid , LA_type ) = s4_passdb . sid_to_id ( LA_sid )
2012-08-22 12:32:18 +04:00
if ( LA_type != idmap . ID_TYPE_UID and LA_type != idmap . ID_TYPE_BOTH ) :
raise CommandError ( " SID %s is not mapped to a UID " % LA_sid )
2018-07-30 09:19:05 +03:00
( BA_gid , BA_type ) = s4_passdb . sid_to_id ( BA_sid )
2012-08-22 12:32:18 +04:00
if ( BA_type != idmap . ID_TYPE_GID and BA_type != idmap . ID_TYPE_BOTH ) :
raise CommandError ( " SID %s is not mapped to a GID " % BA_sid )
if use_ntvfs :
logger . warning ( " Please note that POSIX permissions have NOT been changed, only the stored NT ACL " )
2012-09-27 20:30:47 +04:00
2012-08-22 12:32:18 +04:00
provision . setsysvolacl ( samdb , netlogon , sysvol ,
2012-09-27 20:30:47 +04:00
LA_uid , BA_gid , domain_sid ,
lp . get ( " realm " ) . lower ( ) , samdb . domain_dn ( ) ,
2012-08-22 12:32:18 +04:00
lp , use_ntvfs = use_ntvfs )
2012-08-23 04:37:46 +04:00
class cmd_ntacl_sysvolcheck ( Command ) :
2012-10-08 14:32:58 +04:00
""" Check sysvol ACLs match defaults (including correct ACLs on GPOs). """
2012-08-23 04:37:46 +04:00
synopsis = " % prog <file> [options] "
takes_optiongroups = {
" sambaopts " : options . SambaOptions ,
" credopts " : options . CredentialsOptions ,
" versionopts " : options . VersionOptions ,
2018-07-30 09:14:37 +03:00
}
2012-08-23 04:37:46 +04:00
2012-09-27 20:30:47 +04:00
def run ( self , credopts = None , sambaopts = None , versionopts = None ) :
2012-08-23 04:37:46 +04:00
lp = sambaopts . get_loadparm ( )
path = lp . private_path ( " secrets.ldb " )
creds = credopts . get_credentials ( lp )
creds . set_kerberos_state ( DONT_USE_KERBEROS )
logger = self . get_logger ( )
netlogon = lp . get ( " path " , " netlogon " )
sysvol = lp . get ( " path " , " sysvol " )
try :
2012-09-27 20:30:47 +04:00
samdb = SamDB ( session_info = system_session ( ) , lp = lp )
2018-02-14 00:07:23 +03:00
except Exception as e :
2012-08-23 04:37:46 +04:00
raise CommandError ( " Unable to open samdb: " , e )
domain_sid = security . dom_sid ( samdb . domain_sid )
provision . checksysvolacl ( samdb , netlogon , sysvol ,
2012-09-27 20:30:47 +04:00
domain_sid ,
lp . get ( " realm " ) . lower ( ) , samdb . domain_dn ( ) ,
2012-08-23 04:37:46 +04:00
lp )
2012-08-22 12:32:18 +04:00
2011-08-31 01:19:59 +04:00
class cmd_ntacl ( SuperCommand ) :
2012-10-09 13:53:21 +04:00
""" NT ACLs manipulation. """
2009-10-24 15:34:31 +04:00
subcommands = { }
2011-08-31 01:19:59 +04:00
subcommands [ " set " ] = cmd_ntacl_set ( )
subcommands [ " get " ] = cmd_ntacl_get ( )
2012-08-22 12:32:18 +04:00
subcommands [ " sysvolreset " ] = cmd_ntacl_sysvolreset ( )
2012-08-23 04:37:46 +04:00
subcommands [ " sysvolcheck " ] = cmd_ntacl_sysvolcheck ( )
2015-09-26 02:16:50 +03:00
subcommands [ " getdosinfo " ] = cmd_dosinfo_get ( )
2009-10-24 15:34:31 +04:00