The branch, master has been updated
       via  20e1d5a... More formatting fixes.
       via  44c2d69... Fix formatting.
       via  93d3774... upgradeprovision: Remove unused imports, use 
shutil.rmtree rather than rmall.
       via  254e007... upgradeprovision: Move to pythondoc format
       via  8f1f50d... upgradeprovision: Allow script to be called with pydoc
       via  2bc3631... upgrade provision: change the meaning of 
handle_security_desc to be similar to handle_special_case
       via  5054bdb... upgradeprovision: code cleanup
       via  3bd1641... upgradeprovision: split the big script to put reusable 
functions appart
      from  2238260... s3: Use talloc_tos() in yield_connection()

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 20e1d5a72e8a7d8b3334f6f79bf586cedaa96431
Author: Jelmer Vernooij <jel...@samba.org>
Date:   Mon Mar 1 03:41:52 2010 +0100

    More formatting fixes.

commit 44c2d696bdcb8fecdce8120c7e3ecff1b12ad976
Author: Jelmer Vernooij <jel...@samba.org>
Date:   Mon Mar 1 03:29:47 2010 +0100

    Fix formatting.

commit 93d377424a0236ad5b1c58973f597ce69e123239
Author: Jelmer Vernooij <jel...@samba.org>
Date:   Mon Mar 1 03:25:07 2010 +0100

    upgradeprovision: Remove unused imports, use shutil.rmtree rather than
    rmall.

commit 254e007bd99ebbd351e78b634c483d604ebdcefc
Author: Matthieu Patou <m...@matws.net>
Date:   Sun Feb 21 21:29:36 2010 +0300

    upgradeprovision: Move to pythondoc format
    
    Signed-off-by: Jelmer Vernooij <jel...@samba.org>

commit 8f1f50daa5963d336f7505a2605e1008edf3ce29
Author: Matthieu Patou <m...@matws.net>
Date:   Sun Feb 21 21:28:35 2010 +0300

    upgradeprovision: Allow script to be called with pydoc
    
    Signed-off-by: Jelmer Vernooij <jel...@samba.org>

commit 2bc3631db8546a44fb2bb29db8e380ea15c6441a
Author: Matthieu Patou <m...@matws.net>
Date:   Sat Feb 20 10:51:25 2010 +0300

    upgrade provision: change the meaning of handle_security_desc to be similar 
to handle_special_case
    
    Signed-off-by: Jelmer Vernooij <jel...@samba.org>

commit 5054bdb4f2008216f4591be9064002c3750474e4
Author: Matthieu Patou <m...@matws.net>
Date:   Tue Feb 23 16:45:51 2010 +0300

    upgradeprovision: code cleanup
    
    Signed-off-by: Jelmer Vernooij <jel...@samba.org>

commit 3bd16415d29d074c7a8f9bf949a35b7e8f8b61a2
Author: Matthieu Patou <m...@matws.net>
Date:   Sun Jan 31 22:06:01 2010 +0300

    upgradeprovision: split the big script to put reusable functions appart
    
    Signed-off-by: Jelmer Vernooij <jel...@samba.org>

-----------------------------------------------------------------------

Summary of changes:
 source4/scripting/bin/upgradeprovision           | 1637 +++++++++++-----------
 source4/scripting/python/samba/upgradehelpers.py |  222 +++
 2 files changed, 1029 insertions(+), 830 deletions(-)
 create mode 100755 source4/scripting/python/samba/upgradehelpers.py


Changeset truncated at 500 lines:

diff --git a/source4/scripting/bin/upgradeprovision 
b/source4/scripting/bin/upgradeprovision
index 1d58f5e..180786a 100755
--- a/source4/scripting/bin/upgradeprovision
+++ b/source4/scripting/bin/upgradeprovision
@@ -1,4 +1,5 @@
 #!/usr/bin/python
+# vim: expandtab
 #
 # Copyright (C) Matthieu Patou <m...@matws.net> 2009
 #
@@ -21,90 +22,86 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
-import getopt
 import shutil
 import optparse
 import os
 import sys
-import random
-import string
-import re
-import base64
 import tempfile
-# Find right directory when running from source tree
+# Allow to run from s4 source directory (without installing samba)
 sys.path.insert(0, "bin/python")
 
-from base64 import b64encode
-
 import samba
+import samba.getopt as options
 from samba.credentials import DONT_USE_KERBEROS
 from samba.auth import system_session, admin_session
-from samba import Ldb, DS_DOMAIN_FUNCTION_2000, DS_DOMAIN_FUNCTION_2003, 
DS_DOMAIN_FUNCTION_2008, DS_DC_FUNCTION_2008_R2
-from ldb import SCOPE_SUBTREE, SCOPE_ONELEVEL, SCOPE_BASE, LdbError
-import ldb
-import samba.getopt as options
-from samba.samdb import SamDB
+from samba import Ldb
+from ldb import SCOPE_SUBTREE, SCOPE_BASE, \
+                FLAG_MOD_REPLACE, FLAG_MOD_ADD, FLAG_MOD_DELETE,\
+                MessageElement, Message, Dn
 from samba import param
 from samba import glue
 from samba.misc import messageEltFlagToString
-from samba.provision import  
ProvisionNames,provision_paths_from_lp,find_setup_dir,FILL_FULL,provision, 
get_domain_descriptor, get_config_descriptor, secretsdb_self_join
+from samba.provision import  find_setup_dir, get_domain_descriptor, 
get_config_descriptor, secretsdb_self_join
 from samba.provisionexceptions import ProvisioningError
-from samba.schema import get_dnsyntax_attributes, get_linked_attributes, 
Schema, get_schema_descriptor
-from samba.dcerpc import misc, security
-from samba.ndr import ndr_pack, ndr_unpack
+from samba.schema import get_linked_attributes, Schema, get_schema_descriptor
+from samba.dcerpc import security
+from samba.ndr import ndr_unpack
 from samba.dcerpc.misc import SEC_CHAN_BDC
+from samba.upgradehelpers import dn_sort, get_paths, newprovision, 
find_provision_key_parameters
 
 never=0
-replace=2^ldb.FLAG_MOD_REPLACE
-add=2^ldb.FLAG_MOD_ADD
-delete=2^ldb.FLAG_MOD_DELETE
+replace=2^FLAG_MOD_REPLACE
+add=2^FLAG_MOD_ADD
+delete=2^FLAG_MOD_DELETE
 
 #Errors are always logged
-ERROR =        -1
-SIMPLE =       0x00
-CHANGE =       0x01
-CHANGESD =     0x02
-GUESS =        0x04
-PROVISION =    0x08
-CHANGEALL =    0xff
+ERROR =     -1
+SIMPLE =     0x00
+CHANGE =     0x01
+CHANGESD =     0x02
+GUESS =     0x04
+PROVISION =    0x08
+CHANGEALL =    0xff
+
+__docformat__ = "restructuredText"
 
 # Attributes that are never copied from the reference provision (even if they
 # do not exist in the destination object).
 # This is most probably because they are populated automatcally when object is
 # created
 # This also apply to imported object from reference provision
-hashAttrNotCopied = {  "dn": 1,"whenCreated": 1,"whenChanged": 1,"objectGUID": 
1,"replPropertyMetaData": 1,"uSNChanged": 1,
-                                               "uSNCreated": 1,"parentGUID": 
1,"objectCategory": 1,"distinguishedName": 1,
-                                               "showInAdvancedViewOnly": 
1,"instanceType": 1, "cn": 1, "msDS-Behavior-Version":1, "nextRid":1,
-                                               "nTMixedDomain": 
1,"versionNumber":1, "lmPwdHistory":1, "pwdLastSet": 1, "ntPwdHistory":1, 
"unicodePwd":1,
-                                               
"dBCSPwd":1,"supplementalCredentials":1,"gPCUserExtensionNames":1, 
"gPCMachineExtensionNames":1,
-                                               "maxPwdAge":1, "mail":1, 
"secret":1,"possibleInferiors":1, "sAMAccountType":1}
+hashAttrNotCopied = {     "dn": 1, "whenCreated": 1, "whenChanged": 1, 
"objectGUID": 1, "replPropertyMetaData": 1, "uSNChanged": 1,
+                        "uSNCreated": 1, "parentGUID": 1, "objectCategory": 1, 
"distinguishedName": 1,
+                        "showInAdvancedViewOnly": 1, "instanceType": 1, "cn": 
1, "msDS-Behavior-Version":1, "nextRid":1,
+                        "nTMixedDomain": 1, "versionNumber":1, 
"lmPwdHistory":1, "pwdLastSet": 1, "ntPwdHistory":1, "unicodePwd":1,
+                        "dBCSPwd":1, "supplementalCredentials":1, 
"gPCUserExtensionNames":1, "gPCMachineExtensionNames":1,
+                        "maxPwdAge":1, "mail":1, "secret":1, 
"possibleInferiors":1, "sAMAccountType":1}
 
 # Usually for an object that already exists we do not overwrite attributes as
 # they might have been changed for good reasons. Anyway for a few of them it's
 # mandatory to replace them otherwise the provision will be broken somehow.
-hashOverwrittenAtt = { "prefixMap": replace, "systemMayContain": 
replace,"systemOnly":replace, "searchFlags":replace,
-                                               "mayContain":replace,  
"systemFlags":replace,"description":replace,
-                                               "oEMInformation":replace, 
"operatingSystemVersion":replace, "adminPropertyPages":replace,
-                                               "defaultSecurityDescriptor": 
replace,"wellKnownObjects":replace,"privilege":delete,"groupType":replace,
-                                               "rIDAvailablePool": never}
+hashOverwrittenAtt = {    "prefixMap": replace, "systemMayContain": replace, 
"systemOnly":replace, "searchFlags":replace,
+                        "mayContain":replace,  "systemFlags":replace, 
"description":replace,
+                        "oEMInformation":replace, 
"operatingSystemVersion":replace, "adminPropertyPages":replace,
+                        "defaultSecurityDescriptor": replace, 
"wellKnownObjects":replace, "privilege":delete, "groupType":replace,
+                        "rIDAvailablePool": never}
 
 
 backlinked = []
 dn_syntax_att = []
 def define_what_to_log(opts):
-       what = 0
-       if opts.debugchange:
-               what = what | CHANGE
-       if opts.debugchangesd:
-               what = what | CHANGESD
-       if opts.debugguess:
-               what = what | GUESS
-       if opts.debugprovision:
-               what = what | PROVISION
-       if opts.debugall:
-               what = what | CHANGEALL
-       return what
+    what = 0
+    if opts.debugchange:
+        what = what | CHANGE
+    if opts.debugchangesd:
+        what = what | CHANGESD
+    if opts.debugguess:
+        what = what | GUESS
+    if opts.debugprovision:
+        what = what | PROVISION
+    if opts.debugall:
+        what = what | CHANGEALL
+    return what
 
 
 parser = optparse.OptionParser("provision [options]")
@@ -114,7 +111,7 @@ parser.add_option_group(options.VersionOptions(parser))
 credopts = options.CredentialsOptions(parser)
 parser.add_option_group(credopts)
 parser.add_option("--setupdir", type="string", metavar="DIR",
-                                       help="directory with setup files")
+                    help="directory with setup files")
 parser.add_option("--debugprovision", help="Debug provision", 
action="store_true")
 parser.add_option("--debugguess", help="Print information on what is different 
but won't be changed", action="store_true")
 parser.add_option("--debugchange", help="Print information on what is 
different but won't be changed", action="store_true")
@@ -127,17 +124,22 @@ opts = parser.parse_args()[0]
 whatToLog = define_what_to_log(opts)
 
 def messageprovision(text):
-       """print a message if quiet is not set."""
-       if opts.debugprovision or opts.debugall:
-               print text
+    """Print a message if quiet is not set
+
+    :param text: Message to print """
+    if opts.debugprovision or opts.debugall:
+        print text
 
 def message(what,text):
-       """print a message if quiet is not set."""
-       if (whatToLog & what) or (what <= 0 ):
-               print text
+    """Print a message if this message type has been selected to be printed
+
+    :param what: Category of the message
+    :param text: Message to print """
+    if (whatToLog & what) or what <= 0:
+        print text
 
 if len(sys.argv) == 1:
-       opts.interactive = True
+    opts.interactive = True
 lp = sambaopts.get_loadparm()
 smbconf = lp.configfile
 
@@ -149,791 +151,766 @@ if setup_dir is None:
 
 session = system_session()
 
-# simple helper to allow back and forth rename
 def identic_rename(ldbobj,dn):
-       (before,sep,after)=str(dn).partition('=')
-       ldbobj.rename(dn,ldb.Dn(ldbobj,"%s=foo%s"%(before,after)))
-       ldbobj.rename(ldb.Dn(ldbobj,"%s=foo%s"%(before,after)),dn)
+    """Perform a back and forth rename to trigger renaming on attribute that 
can't be directly modified.
+
+    :param lbdobj: An Ldb Object
+    :param dn: DN of the object to manipulate """
+    (before,sep,after)=str(dn).partition('=')
+    ldbobj.rename(dn,Dn(ldbobj,"%s=foo%s"%(before,after)))
+    ldbobj.rename(Dn(ldbobj,"%s=foo%s"%(before,after)),dn)
+
 
-# Create an array of backlinked attributes
 def populate_backlink(newpaths,creds,session,schemadn):
-       newsam_ldb = Ldb(newpaths.samdb, session_info=session, 
credentials=creds,lp=lp)
-       linkedAttHash = 
get_linked_attributes(ldb.Dn(newsam_ldb,str(schemadn)),newsam_ldb)
-       backlinked.extend(linkedAttHash.values())
+    """Populate an array with all the back linked attributes
+
+    This attributes that are modified automaticaly when
+    front attibutes are changed
+
+    :param newpaths: a list of paths for different provision objects
+    :param creds: credential for the authentification
+    :param session: session for connexion
+    :param schemadn: DN of the schema for the partition"""
+    newsam_ldb = Ldb(newpaths.samdb, session_info=session, 
credentials=creds,lp=lp)
+    linkedAttHash = 
get_linked_attributes(Dn(newsam_ldb,str(schemadn)),newsam_ldb)
+    backlinked.extend(linkedAttHash.values())
 
-# Create an array of  attributes with a dn synthax (2.5.5.1)
 def populate_dnsyntax(newpaths,creds,session,schemadn):
-       newsam_ldb = Ldb(newpaths.samdb, session_info=session, 
credentials=creds,lp=lp)
-       res = 
newsam_ldb.search(expression="(attributeSyntax=2.5.5.1)",base=ldb.Dn(newsam_ldb,str(schemadn)),
 scope=SCOPE_SUBTREE, attrs=["lDAPDisplayName"])
-       for elem in res:
-               dn_syntax_att.append(elem["lDAPDisplayName"])
-
-# Get Paths for important objects (ldb, keytabs ...)
-def get_paths(targetdir=None,smbconf=None):
-       if targetdir is not None:
-               if (not os.path.exists(os.path.join(targetdir, "etc"))):
-                       os.makedirs(os.path.join(targetdir, "etc"))
-               smbconf = os.path.join(targetdir, "etc", "smb.conf")
-       if smbconf is None:
-                       smbconf = param.default_path()
-
-       if not os.path.exists(smbconf):
-               message(ERROR,"Unable to find smb.conf ..")
-               parser.print_usage()
-               sys.exit(1)
-
-       lp = param.LoadParm()
-       lp.load(smbconf)
-# Normally we need the domain name for this function but for our needs it's
-# pointless
-       paths = provision_paths_from_lp(lp,"foo")
-       return paths
+    """Populate an array with all the attributes that have DN synthax (oid 
2.5.5.1)
+
+    :param newpaths: a list of paths for different provision objects
+    :param creds: credential for the authentification
+    :param session: session for connexion
+    :param schemadn: DN of the schema for the partition"""
+    newsam_ldb = Ldb(newpaths.samdb, session_info=session, 
credentials=creds,lp=lp)
+    res = 
newsam_ldb.search(expression="(attributeSyntax=2.5.5.1)",base=Dn(newsam_ldb,str(schemadn)),
+                            scope=SCOPE_SUBTREE, attrs=["lDAPDisplayName"])
+    for elem in res:
+        dn_syntax_att.append(elem["lDAPDisplayName"])
 
 
 def sanitychecks(credentials,session_info,names,paths):
-       sam_ldb = Ldb(paths.samdb, session_info=session, 
credentials=creds,lp=lp,options=["modules:samba_dsdb"])
-       # First update the SD for the rootdn
-       sam_ldb.set_session_info(session)
-       res = 
sam_ldb.search(expression="objectClass=ntdsdsa",base=str(names.configdn), 
scope=SCOPE_SUBTREE,attrs=["dn"],controls=["search_options:1:2"])
-       if len(res) == 0:
-               print "No DC found, your provision is most probalby hardly 
broken !"
-               return 0
-       elif len(res) != 1:
-               print "Found %d domain controllers, for the moment 
upgradeprovision is not able to handle upgrade on \
-domain with more than one DC, please demote the other DC before 
upgrading"%len(res)
-               return 0
-       else:
-               return 1
-
-
-# This function guesses (fetches) informations needed to make a fresh provision
-# from the current provision
-# It includes: realm, workgroup, partitions, netbiosname, domain guid, ...
-def guess_names_from_current_provision(credentials,session_info,paths):
-       lp = param.LoadParm()
-       lp.load(paths.smbconf)
-       names = ProvisionNames()
-       # NT domain, kerberos realm, root dn, domain dn, domain dns name
-       names.domain = string.upper(lp.get("workgroup"))
-       names.realm = lp.get("realm")
-       basedn = "DC=" + names.realm.replace(".",",DC=")
-       names.dnsdomain = names.realm
-       names.realm = string.upper(names.realm)
-       # netbiosname
-       secrets_ldb = Ldb(paths.secrets, session_info=session_info, 
credentials=credentials,lp=lp, options=["modules:samba_secrets"])
-       # Get the netbiosname first (could be obtained from smb.conf in theory)
-       attrs = ["sAMAccountName"]
-       res = 
secrets_ldb.search(expression="(flatname=%s)"%names.domain,base="CN=Primary 
Domains", scope=SCOPE_SUBTREE, attrs=attrs)
-       names.netbiosname = str(res[0]["sAMAccountName"]).replace("$","")
-
-       names.smbconf = smbconf
-       # It's important here to let ldb load with the old module or it's quite
-       # certain that the LDB won't load ...
-       samdb = Ldb(paths.samdb, session_info=session_info,
-                   credentials=credentials, lp=lp, 
options=["modules:samba_dsdb"])
-
-       # That's a bit simplistic but it's ok as long as we have only 3
-       # partitions
-       attrs2 = ["defaultNamingContext", 
"schemaNamingContext","configurationNamingContext","rootDomainNamingContext"]
-       current = samdb.search(expression="(objectClass=*)",base="", 
scope=SCOPE_BASE, attrs=attrs2)
-
-       names.configdn = current[0]["configurationNamingContext"]
-       configdn = str(names.configdn)
-       names.schemadn = current[0]["schemaNamingContext"]
-       if not (ldb.Dn(samdb, basedn) == (ldb.Dn(samdb, 
current[0]["defaultNamingContext"][0]))):
-               raise ProvisioningError(("basedn in %s (%s) and from %s (%s) is 
not the same ..." % (paths.samdb, str(current[0]["defaultNamingContext"][0]), 
paths.smbconf, basedn)))
-
-       names.domaindn=current[0]["defaultNamingContext"]
-       names.rootdn=current[0]["rootDomainNamingContext"]
-       # default site name
-       attrs3 = ["cn"]
-       res3= 
samdb.search(expression="(objectClass=*)",base="CN=Sites,"+configdn, 
scope=SCOPE_ONELEVEL, attrs=attrs3)
-       names.sitename = str(res3[0]["cn"])
-
-       # dns hostname and server dn
-       attrs4 = ["dNSHostName"]
-       res4= 
samdb.search(expression="(CN=%s)"%names.netbiosname,base="OU=Domain 
Controllers,"+basedn, \
-                                               scope=SCOPE_ONELEVEL, 
attrs=attrs4)
-       names.hostname = 
str(res4[0]["dNSHostName"]).replace("."+names.dnsdomain,"")
-
-       server_res = samdb.search(expression="serverReference=%s"%res4[0].dn, 
attrs=[], base=configdn)
-       names.serverdn = server_res[0].dn
-
-       # invocation id/objectguid
-       res5 = samdb.search(expression="(objectClass=*)",base="CN=NTDS 
Settings,%s" % str(names.serverdn), scope=SCOPE_BASE, 
attrs=["invocationID","objectGUID"])
-       names.invocation = str(ndr_unpack( 
misc.GUID,res5[0]["invocationId"][0]))
-       names.ntdsguid = str(ndr_unpack( misc.GUID,res5[0]["objectGUID"][0]))
-
-       # domain guid/sid
-       attrs6 = ["objectGUID", "objectSid","msDS-Behavior-Version" ]
-       res6 = samdb.search(expression="(objectClass=*)",base=basedn, 
scope=SCOPE_BASE, attrs=attrs6)
-       names.domainguid = str(ndr_unpack( misc.GUID,res6[0]["objectGUID"][0]))
-       names.domainsid = ndr_unpack( security.dom_sid,res6[0]["objectSid"][0])
-       if res6[0].get("msDS-Behavior-Version") == None or 
int(res6[0]["msDS-Behavior-Version"][0]) < DS_DOMAIN_FUNCTION_2000:
-               names.domainlevel = DS_DOMAIN_FUNCTION_2000
-       else:
-               names.domainlevel = int(res6[0]["msDS-Behavior-Version"][0])
-
-       # policy guid
-       attrs7 = ["cn","displayName"]
-       res7 = samdb.search(expression="(displayName=Default Domain 
Policy)",base="CN=Policies,CN=System,"+basedn, \
-                                                       scope=SCOPE_ONELEVEL, 
attrs=attrs7)
-       names.policyid = str(res7[0]["cn"]).replace("{","").replace("}","")
-       # dc policy guid
-       attrs8 = ["cn","displayName"]
-       res8 = samdb.search(expression="(displayName=Default Domain Controllers 
Policy)",base="CN=Policies,CN=System,"+basedn, \
-                                                       scope=SCOPE_ONELEVEL, 
attrs=attrs7)
-       if len(res8) == 1:
-               names.policyid_dc = 
str(res8[0]["cn"]).replace("{","").replace("}","")
-       else:
-               names.policyid_dc = None
-
-
-       return names
-
-# Debug a little bit
-def print_names(names):
-       message(GUESS, "rootdn      :"+str(names.rootdn))
-       message(GUESS, "configdn    :"+str(names.configdn))
-       message(GUESS, "schemadn    :"+str(names.schemadn))
-       message(GUESS, "serverdn    :"+str(names.serverdn))
-       message(GUESS, "netbiosname :"+names.netbiosname)
-       message(GUESS, "defaultsite :"+names.sitename)
-       message(GUESS, "dnsdomain   :"+names.dnsdomain)
-       message(GUESS, "hostname    :"+names.hostname)
-       message(GUESS, "domain      :"+names.domain)
-       message(GUESS, "realm       :"+names.realm)
-       message(GUESS, "invocationid:"+names.invocation)
-       message(GUESS, "policyguid  :"+names.policyid)
-       message(GUESS, "policyguiddc:"+str(names.policyid_dc))
-       message(GUESS, "domainsid   :"+str(names.domainsid))
-       message(GUESS, "domainguid  :"+names.domainguid)
-       message(GUESS, "ntdsguid    :"+names.ntdsguid)
-       message(GUESS, "domainlevel :"+str(names.domainlevel))
-
-# Create a fresh new reference provision
-# This provision will be the reference for knowing what has changed in the
-# since the latest upgrade in the current provision
-def newprovision(names,setup_dir,creds,session,smbconf):
-       message(SIMPLE, "Creating a reference provision")
-       provdir=tempfile.mkdtemp(dir=paths.private_dir, 
prefix="referenceprovision")
-       if os.path.isdir(provdir):
-               rmall(provdir)
-       logstd=os.path.join(provdir,"log.std")
-       os.chdir(os.path.join(setup_dir,".."))
-       os.mkdir(provdir)
-       os.close(2)
-       sys.stderr = open("%s/provision.log"%provdir, "w")
-       message(PROVISION, "Reference provision stored in %s"%provdir)
-       message(PROVISION, "STDERR message of provision will be logged in 
%s/provision.log"%provdir)
-       sys.stderr = open("/dev/stdout", "w")
-       provision(setup_dir, messageprovision,
-               session, creds, smbconf=smbconf, targetdir=provdir,
-               samdb_fill=FILL_FULL, realm=names.realm, domain=names.domain,
-               domainguid=names.domainguid, 
domainsid=str(names.domainsid),ntdsguid=names.ntdsguid,
-               
policyguid=names.policyid,policyguid_dc=names.policyid_dc,hostname=names.netbiosname,
-               hostip=None, hostip6=None,
-               invocationid=names.invocation, adminpass=None,
-               krbtgtpass=None, machinepass=None,
-               dnspass=None, root=None, nobody=None,
-               wheel=None, users=None,
-               serverrole="domain controller",
-               ldap_backend_extra_port=None,
-               backend_type=None,
-               ldapadminpass=None,
-               ol_mmr_urls=None,
-               slapd_path=None,
-               setup_ds_path=None,
-               nosync=None,
-               dom_for_fun_level=names.domainlevel,
-               ldap_dryrun_mode=None,useeadb=True)
-       return provdir
-
-# This function sorts two DNs in the lexicographical order and put higher level
-# DN before.
-# So given the dns cn=bar,cn=foo and cn=foo the later will be return as smaller
-# (-1) as it has less level
-def dn_sort(x,y):
-       p = re.compile(r'(?<!\\),')
-       tab1 = p.split(str(x))
-       tab2 = p.split(str(y))
-       min = 0
-       if (len(tab1) > len(tab2)):
-               min = len(tab2)
-       elif (len(tab1) < len(tab2)):
-               min = len(tab1)
-       else:
-               min = len(tab1)
-       len1=len(tab1)-1
-       len2=len(tab2)-1
-       space = " "
-       # Note: python range go up to upper limit but do not include it
-       for i in range(0,min):
-               ret=cmp(tab1[len1-i],tab2[len2-i])
-               if(ret != 0):
-                       return ret
-               else:
-                       if(i==min-1):
-                               if(len1==len2):
-                                       message(ERROR,"PB PB 
PB"+space.join(tab1)+" / "+space.join(tab2))
-                               if(len1>len2):
-                                       return 1
-                               else:
-                                       return -1
-       return ret
-
-# Check for security descriptors modifications return 1 if it is and 0 
otherwise
-# it also populate hash structure for later use in the upgrade process
-def handle_security_desc(ischema,att,msgElt,hashallSD,old,new):
-       if ischema == 1 and att == "defaultSecurityDescriptor"  and 
msgElt.flags() == ldb.FLAG_MOD_REPLACE:
-               hashSD = {}
-               hashSD["oldSD"] = old[0][att]
-               hashSD["newSD"] = new[0][att]
-               hashallSD[str(old[0].dn)] = hashSD
-               return 0
-       if att == "nTSecurityDescriptor"  and msgElt.flags() == 
ldb.FLAG_MOD_REPLACE:
-               if ischema == 0:
-                       hashSD = {}
-                       hashSD["oldSD"] =  
ndr_unpack(security.descriptor,str(old[0][att]))
-                       hashSD["newSD"] =  
ndr_unpack(security.descriptor,str(new[0][att]))
-                       hashallSD[str(old[0].dn)] = hashSD
-               return 1
-       return 0
-
-# Handle special cases ... That's when we want to update a particular attribute
-# only, e.g. if it has a certain value or if it's for a certain object or
-# a class of object.
-# It can be also if we want to do a merge of value instead of a simple replace
-def handle_special_case(att,delta,new,old,ischema):
-       flag = delta.get(att).flags()
-       if (att == "gPLink" or att == "gPCFileSysPath") and flag ==  
ldb.FLAG_MOD_REPLACE and str(new[0].dn).lower() == str(old[0].dn).lower():
-               delta.remove(att)
-               return 1
-       if att == "forceLogoff":
-               ref=0x8000000000000000
-               oldval=int(old[0][att][0])
-               newval=int(new[0][att][0])
-               ref == old and ref == abs(new)
-               return 1
-       if (att == "adminDisplayName" or att == "adminDescription") and ischema:
-               return 1
-       if (str(old[0].dn) == "CN=Samba4-Local-Domain,%s"%(str(names.schemadn)) 
and att == "defaultObjectCategory" and flag  == ldb.FLAG_MOD_REPLACE):
-               return 1
-#      if (str(old[0].dn) == 
"CN=S-1-5-11,CN=ForeignSecurityPrincipals,%s"%(str(names.rootdn)) and att == 
"description" and flag  == ldb.FLAG_MOD_DELETE):
-#              return 1
-       if (str(old[0].dn) == "CN=Title,%s"%(str(names.schemadn)) and att == 
"rangeUpper" and flag  == ldb.FLAG_MOD_REPLACE):
-               return 1
-       if ( (att == "member" or att == "servicePrincipalName") and flag  == 
ldb.FLAG_MOD_REPLACE):
-
-               hash = {}
-               newval = []
-               changeDelta=0


-- 
Samba Shared Repository

Reply via email to