pydsdb: Mark all SamDB and Schema methods that are in pydsdb as
[Samba/id10ts.git] / source4 / scripting / python / samba / __init__.py
blob915729310d7f63f633c43e73f04d7742936eb4f9
1 #!/usr/bin/python
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/>.
23 """Samba 4."""
25 __docformat__ = "restructuredText"
27 import os
28 import sys
30 def _in_source_tree():
31 """Check whether the script is being run from the source dir. """
32 return os.path.exists("%s/../../../selftest/skip" % os.path.dirname(__file__))
35 # When running, in-tree, make sure bin/python is in the PYTHONPATH
36 if _in_source_tree():
37 srcdir = "%s/../../.." % os.path.dirname(__file__)
38 sys.path.append("%s/bin/python" % srcdir)
39 default_ldb_modules_dir = "%s/bin/modules/ldb" % srcdir
40 else:
41 default_ldb_modules_dir = None
44 import ldb
45 from samba._ldb import Ldb as _Ldb
47 class Ldb(_Ldb):
48 """Simple Samba-specific LDB subclass that takes care
49 of setting up the modules dir, credentials pointers, etc.
51 Please note that this is intended to be for all Samba LDB files,
52 not necessarily the Sam database. For Sam-specific helper
53 functions see samdb.py.
54 """
55 def __init__(self, url=None, lp=None, modules_dir=None, session_info=None,
56 credentials=None, flags=0, options=None):
57 """Opens a Samba Ldb file.
59 :param url: Optional LDB URL to open
60 :param lp: Optional loadparm object
61 :param modules_dir: Optional modules directory
62 :param session_info: Optional session information
63 :param credentials: Optional credentials, defaults to anonymous.
64 :param flags: Optional LDB flags
65 :param options: Additional options (optional)
67 This is different from a regular Ldb file in that the Samba-specific
68 modules-dir is used by default and that credentials and session_info
69 can be passed through (required by some modules).
70 """
72 if modules_dir is not None:
73 self.set_modules_dir(modules_dir)
74 elif default_ldb_modules_dir is not None:
75 self.set_modules_dir(default_ldb_modules_dir)
76 elif lp is not None:
77 self.set_modules_dir(os.path.join(lp.get("modules dir"), "ldb"))
79 if session_info is not None:
80 self.set_session_info(session_info)
82 if credentials is not None:
83 self.set_credentials(credentials)
85 if lp is not None:
86 self.set_loadparm(lp)
88 # This must be done before we load the schema, as these handlers for
89 # objectSid and objectGUID etc must take precedence over the 'binary
90 # attribute' declaration in the schema
91 self.register_samba_handlers()
93 # TODO set debug
94 def msg(l,text):
95 print text
96 #self.set_debug(msg)
98 self.set_utf8_casefold()
100 # Allow admins to force non-sync ldb for all databases
101 if lp is not None:
102 nosync_p = lp.get("nosync", "ldb")
103 if nosync_p is not None and nosync_p == True:
104 flags |= ldb.FLG_NOSYNC
106 self.set_create_perms(0600)
108 if url is not None:
109 self.connect(url, flags, options)
111 def searchone(self, attribute, basedn=None, expression=None,
112 scope=ldb.SCOPE_BASE):
113 """Search for one attribute as a string.
115 :param basedn: BaseDN for the search.
116 :param attribute: Name of the attribute
117 :param expression: Optional search expression.
118 :param scope: Search scope (defaults to base).
119 :return: Value of attribute as a string or None if it wasn't found.
121 res = self.search(basedn, scope, expression, [attribute])
122 if len(res) != 1 or res[0][attribute] is None:
123 return None
124 values = set(res[0][attribute])
125 assert len(values) == 1
126 return self.schema_format_value(attribute, values.pop())
128 def erase_users_computers(self, dn):
129 """Erases user and computer objects from our AD.
131 This is needed since the 'samldb' module denies the deletion of primary
132 groups. Therefore all groups shouldn't be primary somewhere anymore.
135 try:
136 res = self.search(base=dn, scope=ldb.SCOPE_SUBTREE, attrs=[],
137 expression="(|(objectclass=user)(objectclass=computer))")
138 except ldb.LdbError, (errno, _):
139 if errno == ldb.ERR_NO_SUCH_OBJECT:
140 # Ignore no such object errors
141 return
142 else:
143 raise
145 try:
146 for msg in res:
147 self.delete(msg.dn, ["relax:0"])
148 except ldb.LdbError, (errno, _):
149 if errno != ldb.ERR_NO_SUCH_OBJECT:
150 # Ignore no such object errors
151 raise
153 def erase_except_schema_controlled(self):
154 """Erase this ldb.
156 :note: Removes all records, except those that are controlled by
157 Samba4's schema.
160 basedn = ""
162 # Try to delete user/computer accounts to allow deletion of groups
163 self.erase_users_computers(basedn)
165 # Delete the 'visible' records, and the invisble 'deleted' records (if this DB supports it)
166 for msg in self.search(basedn, ldb.SCOPE_SUBTREE,
167 "(&(|(objectclass=*)(distinguishedName=*))(!(distinguishedName=@BASEINFO)))",
168 [], controls=["show_deleted:0"]):
169 try:
170 self.delete(msg.dn, ["relax:0"])
171 except ldb.LdbError, (errno, _):
172 if errno != ldb.ERR_NO_SUCH_OBJECT:
173 # Ignore no such object errors
174 raise
176 res = self.search(basedn, ldb.SCOPE_SUBTREE,
177 "(&(|(objectclass=*)(distinguishedName=*))(!(distinguishedName=@BASEINFO)))", [], controls=["show_deleted:0"])
178 assert len(res) == 0
180 # delete the specials
181 for attr in ["@SUBCLASSES", "@MODULES",
182 "@OPTIONS", "@PARTITION", "@KLUDGEACL"]:
183 try:
184 self.delete(attr, ["relax:0"])
185 except ldb.LdbError, (errno, _):
186 if errno != ldb.ERR_NO_SUCH_OBJECT:
187 # Ignore missing dn errors
188 raise
190 def erase(self):
191 """Erase this ldb, removing all records."""
192 self.erase_except_schema_controlled()
194 # delete the specials
195 for attr in ["@INDEXLIST", "@ATTRIBUTES"]:
196 try:
197 self.delete(attr, ["relax:0"])
198 except ldb.LdbError, (errno, _):
199 if errno != ldb.ERR_NO_SUCH_OBJECT:
200 # Ignore missing dn errors
201 raise
203 def erase_partitions(self):
204 """Erase an ldb, removing all records."""
206 def erase_recursive(self, dn):
207 try:
208 res = self.search(base=dn, scope=ldb.SCOPE_ONELEVEL, attrs=[],
209 controls=["show_deleted:0"])
210 except ldb.LdbError, (errno, _):
211 if errno == ldb.ERR_NO_SUCH_OBJECT:
212 # Ignore no such object errors
213 return
215 for msg in res:
216 erase_recursive(self, msg.dn)
218 try:
219 self.delete(dn, ["relax:0"])
220 except ldb.LdbError, (errno, _):
221 if errno != ldb.ERR_NO_SUCH_OBJECT:
222 # Ignore no such object errors
223 raise
225 res = self.search("", ldb.SCOPE_BASE, "(objectClass=*)",
226 ["namingContexts"])
227 assert len(res) == 1
228 if not "namingContexts" in res[0]:
229 return
230 for basedn in res[0]["namingContexts"]:
231 # Try to delete user/computer accounts to allow deletion of groups
232 self.erase_users_computers(basedn)
233 # Try and erase from the bottom-up in the tree
234 erase_recursive(self, basedn)
236 def load_ldif_file_add(self, ldif_path):
237 """Load a LDIF file.
239 :param ldif_path: Path to LDIF file.
241 self.add_ldif(open(ldif_path, 'r').read())
243 def add_ldif(self, ldif, controls=None):
244 """Add data based on a LDIF string.
246 :param ldif: LDIF text.
248 for changetype, msg in self.parse_ldif(ldif):
249 assert changetype == ldb.CHANGETYPE_NONE
250 self.add(msg,controls)
252 def modify_ldif(self, ldif, controls=None):
253 """Modify database based on a LDIF string.
255 :param ldif: LDIF text.
257 for changetype, msg in self.parse_ldif(ldif):
258 if changetype == ldb.CHANGETYPE_ADD:
259 self.add(msg, controls)
260 else:
261 self.modify(msg, controls)
264 def substitute_var(text, values):
265 """Substitute strings of the form ${NAME} in str, replacing
266 with substitutions from values.
268 :param text: Text in which to subsitute.
269 :param values: Dictionary with keys and values.
272 for (name, value) in values.items():
273 assert isinstance(name, str), "%r is not a string" % name
274 assert isinstance(value, str), "Value %r for %s is not a string" % (value, name)
275 text = text.replace("${%s}" % name, value)
277 return text
280 def check_all_substituted(text):
281 """Make sure that all substitution variables in a string have been replaced.
282 If not, raise an exception.
284 :param text: The text to search for substitution variables
286 if not "${" in text:
287 return
289 var_start = text.find("${")
290 var_end = text.find("}", var_start)
292 raise Exception("Not all variables substituted: %s" % text[var_start:var_end+1])
295 def read_and_sub_file(file, subst_vars):
296 """Read a file and sub in variables found in it
298 :param file: File to be read (typically from setup directory)
299 param subst_vars: Optional variables to subsitute in the file.
301 data = open(file, 'r').read()
302 if subst_vars is not None:
303 data = substitute_var(data, subst_vars)
304 check_all_substituted(data)
305 return data
308 def setup_file(template, fname, subst_vars=None):
309 """Setup a file in the private dir.
311 :param template: Path of the template file.
312 :param fname: Path of the file to create.
313 :param subst_vars: Substitution variables.
315 if os.path.exists(fname):
316 os.unlink(fname)
318 data = read_and_sub_file(template, subst_vars)
319 f = open(fname, 'w')
320 try:
321 f.write(data)
322 finally:
323 f.close()
326 def valid_netbios_name(name):
327 """Check whether a name is valid as a NetBIOS name. """
328 # See crh's book (1.4.1.1)
329 if len(name) > 15:
330 return False
331 for x in name:
332 if not x.isalnum() and not x in " !#$%&'()-.@^_{}~":
333 return False
334 return True
337 def ensure_external_module(modulename, location):
338 """Add a location to sys.path if an external dependency can't be found.
340 :param modulename: Module name to import
341 :param location: Location to add to sys.path (can be relative to
342 ${srcdir}/lib
344 try:
345 __import__(modulename)
346 except ImportError:
347 import sys
348 if _in_source_tree():
349 sys.path.insert(0,
350 os.path.join(os.path.dirname(__file__),
351 "../../../../lib", location))
352 __import__(modulename)
353 else:
354 sys.modules[modulename] = __import__(
355 "samba.external.%s" % modulename, fromlist=["samba.external"])
357 import _glue
358 version = _glue.version
359 interface_ips = _glue.interface_ips
360 set_debug_level = _glue.set_debug_level
361 unix2nttime = _glue.unix2nttime
362 generate_random_password = _glue.generate_random_password