3 # Unix SMB/CIFS implementation.
4 # Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007-2008
6 # Based on the original in EJS:
7 # Copyright (C) Andrew Tridgell <tridge@samba.org> 2005
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 __docformat__
= "restructuredText"
31 def source_tree_topdir():
32 """Return the top level source directory."""
33 paths
= [ "../../..", "../../../.." ]
35 topdir
= os
.path
.normpath(os
.path
.join(os
.path
.dirname(__file__
), p
))
36 if os
.path
.exists(os
.path
.join(topdir
, 'source4')):
38 raise RuntimeError("unable to find top level source directory")
41 """Return True if we are running from within the samba source tree"""
43 topdir
= source_tree_topdir()
50 from samba
._ldb
import Ldb
as _Ldb
53 """Simple Samba-specific LDB subclass that takes care
54 of setting up the modules dir, credentials pointers, etc.
56 Please note that this is intended to be for all Samba LDB files,
57 not necessarily the Sam database. For Sam-specific helper
58 functions see samdb.py.
61 def __init__(self
, url
=None, lp
=None, modules_dir
=None, session_info
=None,
62 credentials
=None, flags
=0, options
=None):
63 """Opens a Samba Ldb file.
65 :param url: Optional LDB URL to open
66 :param lp: Optional loadparm object
67 :param modules_dir: Optional modules directory
68 :param session_info: Optional session information
69 :param credentials: Optional credentials, defaults to anonymous.
70 :param flags: Optional LDB flags
71 :param options: Additional options (optional)
73 This is different from a regular Ldb file in that the Samba-specific
74 modules-dir is used by default and that credentials and session_info
75 can be passed through (required by some modules).
78 if modules_dir
is not None:
79 self
.set_modules_dir(modules_dir
)
81 self
.set_modules_dir(os
.path
.join(samba
.param
.modules_dir(), "ldb"))
83 if session_info
is not None:
84 self
.set_session_info(session_info
)
86 if credentials
is not None:
87 self
.set_credentials(credentials
)
92 # This must be done before we load the schema, as these handlers for
93 # objectSid and objectGUID etc must take precedence over the 'binary
94 # attribute' declaration in the schema
95 self
.register_samba_handlers()
102 self
.set_utf8_casefold()
104 # Allow admins to force non-sync ldb for all databases
106 nosync_p
= lp
.get("nosync", "ldb")
107 if nosync_p
is not None and nosync_p
== True:
108 flags |
= ldb
.FLG_NOSYNC
110 self
.set_create_perms(0600)
113 self
.connect(url
, flags
, options
)
115 def searchone(self
, attribute
, basedn
=None, expression
=None,
116 scope
=ldb
.SCOPE_BASE
):
117 """Search for one attribute as a string.
119 :param basedn: BaseDN for the search.
120 :param attribute: Name of the attribute
121 :param expression: Optional search expression.
122 :param scope: Search scope (defaults to base).
123 :return: Value of attribute as a string or None if it wasn't found.
125 res
= self
.search(basedn
, scope
, expression
, [attribute
])
126 if len(res
) != 1 or res
[0][attribute
] is None:
128 values
= set(res
[0][attribute
])
129 assert len(values
) == 1
130 return self
.schema_format_value(attribute
, values
.pop())
132 def erase_users_computers(self
, dn
):
133 """Erases user and computer objects from our AD.
135 This is needed since the 'samldb' module denies the deletion of primary
136 groups. Therefore all groups shouldn't be primary somewhere anymore.
140 res
= self
.search(base
=dn
, scope
=ldb
.SCOPE_SUBTREE
, attrs
=[],
141 expression
="(|(objectclass=user)(objectclass=computer))")
142 except ldb
.LdbError
, (errno
, _
):
143 if errno
== ldb
.ERR_NO_SUCH_OBJECT
:
144 # Ignore no such object errors
151 self
.delete(msg
.dn
, ["relax:0"])
152 except ldb
.LdbError
, (errno
, _
):
153 if errno
!= ldb
.ERR_NO_SUCH_OBJECT
:
154 # Ignore no such object errors
157 def erase_except_schema_controlled(self
):
160 :note: Removes all records, except those that are controlled by
166 # Try to delete user/computer accounts to allow deletion of groups
167 self
.erase_users_computers(basedn
)
169 # Delete the 'visible' records, and the invisble 'deleted' records (if this DB supports it)
170 for msg
in self
.search(basedn
, ldb
.SCOPE_SUBTREE
,
171 "(&(|(objectclass=*)(distinguishedName=*))(!(distinguishedName=@BASEINFO)))",
172 [], controls
=["show_deleted:0", "show_recycled:0"]):
174 self
.delete(msg
.dn
, ["relax:0"])
175 except ldb
.LdbError
, (errno
, _
):
176 if errno
!= ldb
.ERR_NO_SUCH_OBJECT
:
177 # Ignore no such object errors
180 res
= self
.search(basedn
, ldb
.SCOPE_SUBTREE
,
181 "(&(|(objectclass=*)(distinguishedName=*))(!(distinguishedName=@BASEINFO)))", [], controls
=["show_deleted:0", "show_recycled:0"])
184 # delete the specials
185 for attr
in ["@SUBCLASSES", "@MODULES",
186 "@OPTIONS", "@PARTITION", "@KLUDGEACL"]:
188 self
.delete(attr
, ["relax:0"])
189 except ldb
.LdbError
, (errno
, _
):
190 if errno
!= ldb
.ERR_NO_SUCH_OBJECT
:
191 # Ignore missing dn errors
195 """Erase this ldb, removing all records."""
196 self
.erase_except_schema_controlled()
198 # delete the specials
199 for attr
in ["@INDEXLIST", "@ATTRIBUTES"]:
201 self
.delete(attr
, ["relax:0"])
202 except ldb
.LdbError
, (errno
, _
):
203 if errno
!= ldb
.ERR_NO_SUCH_OBJECT
:
204 # Ignore missing dn errors
207 def load_ldif_file_add(self
, ldif_path
):
210 :param ldif_path: Path to LDIF file.
212 self
.add_ldif(open(ldif_path
, 'r').read())
214 def add_ldif(self
, ldif
, controls
=None):
215 """Add data based on a LDIF string.
217 :param ldif: LDIF text.
219 for changetype
, msg
in self
.parse_ldif(ldif
):
220 assert changetype
== ldb
.CHANGETYPE_NONE
221 self
.add(msg
, controls
)
223 def modify_ldif(self
, ldif
, controls
=None):
224 """Modify database based on a LDIF string.
226 :param ldif: LDIF text.
228 for changetype
, msg
in self
.parse_ldif(ldif
):
229 if changetype
== ldb
.CHANGETYPE_ADD
:
230 self
.add(msg
, controls
)
232 self
.modify(msg
, controls
)
235 def substitute_var(text
, values
):
236 """Substitute strings of the form ${NAME} in str, replacing
237 with substitutions from values.
239 :param text: Text in which to subsitute.
240 :param values: Dictionary with keys and values.
243 for (name
, value
) in values
.items():
244 assert isinstance(name
, str), "%r is not a string" % name
245 assert isinstance(value
, str), "Value %r for %s is not a string" % (value
, name
)
246 text
= text
.replace("${%s}" % name
, value
)
251 def check_all_substituted(text
):
252 """Check that all substitution variables in a string have been replaced.
254 If not, raise an exception.
256 :param text: The text to search for substitution variables
261 var_start
= text
.find("${")
262 var_end
= text
.find("}", var_start
)
264 raise Exception("Not all variables substituted: %s" %
265 text
[var_start
:var_end
+1])
268 def read_and_sub_file(file_name
, subst_vars
):
269 """Read a file and sub in variables found in it
271 :param file_name: File to be read (typically from setup directory)
272 param subst_vars: Optional variables to subsitute in the file.
274 data
= open(file_name
, 'r').read()
275 if subst_vars
is not None:
276 data
= substitute_var(data
, subst_vars
)
277 check_all_substituted(data
)
281 def setup_file(template
, fname
, subst_vars
=None):
282 """Setup a file in the private dir.
284 :param template: Path of the template file.
285 :param fname: Path of the file to create.
286 :param subst_vars: Substitution variables.
288 if os
.path
.exists(fname
):
291 data
= read_and_sub_file(template
, subst_vars
)
299 def valid_netbios_name(name
):
300 """Check whether a name is valid as a NetBIOS name. """
301 # See crh's book (1.4.1.1)
305 if not x
.isalnum() and not x
in " !#$%&'()-.@^_{}~":
310 def import_bundled_package(modulename
, location
):
311 """Import the bundled version of a package.
313 :note: This should only be called if the system version of the package
316 :param modulename: Module name to import
317 :param location: Location to add to sys.path (can be relative to
321 sys
.path
.insert(0, os
.path
.join(source_tree_topdir(), "lib", location
))
322 sys
.modules
[modulename
] = __import__(modulename
)
324 sys
.modules
[modulename
] = __import__(
325 "samba.external.%s" % modulename
, fromlist
=["samba.external"])
328 def ensure_external_module(modulename
, location
):
329 """Add a location to sys.path if an external dependency can't be found.
331 :param modulename: Module name to import
332 :param location: Location to add to sys.path (can be relative to
336 __import__(modulename
)
338 import_bundled_package(modulename
, location
)
341 def dn_from_dns_name(dnsdomain
):
342 """return a DN from a DNS name domain/forest root"""
343 return "DC=" + ",DC=".join(dnsdomain
.split("."))
345 from samba
import _glue
346 version
= _glue
.version
347 interface_ips
= _glue
.interface_ips
348 set_debug_level
= _glue
.set_debug_level
349 get_debug_level
= _glue
.get_debug_level
350 unix2nttime
= _glue
.unix2nttime
351 nttime2string
= _glue
.nttime2string
352 nttime2unix
= _glue
.nttime2unix
353 unix2nttime
= _glue
.unix2nttime
354 generate_random_password
= _glue
.generate_random_password
355 strcasecmp_m
= _glue
.strcasecmp_m
356 strstr_m
= _glue
.strstr_m