forked from richm/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bug204966.py
406 lines (375 loc) · 14 KB
/
bug204966.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
from bug_harness import DSAdminHarness as DSAdmin
from dsadmin import Entry
import os
import sys
import time
import ldap
from ldap.controls import LDAPControl
import struct
from dirsyncctrl import DirSyncCtrl
if os.environ.has_key('WINSYNC_USE_DS'):
useds = True
else:
useds = False
ipawinsync = False
if ipawinsync:
usersubtree = "cn=users,cn=accounts"
else:
usersubtree = "ou=people"
if useds:
host1 = 'localhost'
suffix = "dc=example,dc=com"
realm = 'EXAMPLE.COM'
adusersubtree = "ou=People"
else:
host1 = 'vmhost'
suffix = "dc=testdomain,dc=com"
realm = 'TESTDOMAIN.COM'
adusersubtree = "cn=Users"
port1 = 1200
root1 = "cn=directory manager"
rootpw1 = "secret12"
scope = ldap.SCOPE_SUBTREE
filter = "(objectclass=*)"
attrs = ['*', 'nsAccountLock', 'memberOf']
# need to base64 encode several AD attributes
Entry.base64_attrs.extend(['objectGUID', 'objectSid', 'parentGUID',
'userCertificate', 'nTSecurityDescriptor',
'logonHours'])
ipainit = ''
if useds:
host2 = host1
port2 = port1+10
root2 = root1
rootpw2 = rootpw1
if ipawinsync:
ipainit = '/share/dswinsyncipa/ipainit.ldif'
else:
host2 = 'win2k3svr'
port2 = 389
root2 = "cn=administrator,cn=users,DC=testdomain,DC=com"
rootpw2 = "Ornette1"
if ipawinsync:
ipainit = '/share/dswinsyncipa/ipainittestdomain.ldif'
replargs = {
'suffix': suffix,
'bename': "userRoot",
'binddn': "cn=replrepl,cn=config",
'bindcn': "replrepl",
'bindpw': "replrepl",
'winsync': True,
'newwingroups': 'false',
'log': False
}
if ipawinsync:
configfile = ['/share/dswinsyncipa/testipawinsyncplugin.ldif']
schemafile = ['/share/freeipa/freeipa/ipa-server/ipa-install/share/60ipaconfig.ldif',
'/share/freeipa/freeipa/ipa-server/ipa-install/share/60kerberos.ldif',
'/share/freeipa/freeipa/ipa-server/ipa-install/share/60radius.ldif']
else:
configfile = []
schemafile = []
#os.environ['USE_GDB'] = "1"
os.environ['USE_VALGRIND'] = "1"
ds = DSAdmin.createAndSetupReplica({
'newrootpw': rootpw1,
'newhost': host1,
'newport': port1,
'newinst': 'ds',
'newsuffix': suffix,
'verbose': False,
'no_admin': True,
'ConfigFile': configfile,
'SchemaFile': schemafile
}, replargs
)
os.environ['USE_VALGRIND'] = ''
os.environ.pop('USE_VALGRIND')
try:
foo = os.environ['USE_VALGRIND']
except KeyError:
print "should no longer have USE_VALGRIND env. var"
if ipawinsync:
print "Enable the memberof plugin . . ."
dn = "cn=MemberOf Plugin,cn=plugins,cn=config"
mod = [(ldap.MOD_REPLACE, 'nsslapd-pluginenabled', 'on')]
ds.modify_s(dn, mod)
ds.stop()
ds.start()
ds.importLDIF(ipainit, suffix)
if useds:
ad = DSAdmin.createInstance({
'newrootpw': rootpw2,
'newhost': host2,
'newport': port2,
'newinst': 'ad',
'newsuffix': suffix,
'verbose': False,
'no_admin': True
})
print "Fake AD needs extra schema . . ."
oidnum = 10000000
ad.addAttr("( 2.16.840.1.113730.3.1.%d NAME 'samAccountName' DESC 'AD uid attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE )" % oidnum)
oidnum = oidnum + 1
ad.addAttr("( 2.16.840.1.113730.3.1.%d NAME 'objectGUID' DESC 'AD uuid attribute' SYNTAX 1.3.6.1.4.1.1466.115.121.1.5 SINGLE-VALUE )" % oidnum)
oidnum = oidnum + 1
ad.addAttr("( 2.16.840.1.113730.3.1.%d NAME 'userAccountControl' DESC 'AD user account control' SYNTAX 1.3.6.1.4.1.1466.115.121.1.27 SINGLE-VALUE )" % oidnum)
oidnum = oidnum + 1
ad.addObjClass("( 2.16.840.1.113730.3.2.%d NAME 'adPerson' DESC 'AD person mixin' SUP top AUXILIARY MAY ( samAccountName $ objectGUID $ name $ userAccountControl ) )" % oidnum)
oidnum = oidnum + 1
ad.addAttr("( 2.16.840.1.113730.3.1.%d NAME 'groupType' DESC 'AD group type' SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 SINGLE-VALUE X-ORIGIN 'Netscape NT Synchronization' )" % oidnum)
oidnum = oidnum + 1
ad.addObjClass("( 2.16.840.1.113730.3.2.%d NAME 'group' DESC 'AD group' SUP top STRUCTURAL MAY ( samAccountName $ groupType $ objectGUID $ name $ member $ ou $ cn $ description ) )" % oidnum)
oidnum = oidnum + 1
aduserObjClasses = ['adPerson']
else:
aduserObjClasses = ['top', 'person', 'organizationalperson', 'user']
ad = DSAdmin(host2, port2, root2, rootpw2)
# the list of users we want to check to see if they were synced
userids = {}
# All IPA users must have these objectclasses - they should be
# the same as in the cn=ipaConfig ipaUserObjectClasses list
# ntUser either by the winsync code, or when you want an
# existing IPA user to be synced with AD
userObjClasses = [
'top', 'person', 'organizationalPerson', 'inetOrgPerson'
]
if ipawinsync:
useObjClasses.extend(['inetUser', 'posixAccount', 'krbPrincipalAux', 'radiusprofile'])
# array of hashes
userAcctVals = [
{'description': 'normal, regular AD account',
'userAccountControl': 512},
{'description': 'normal, regular AD account disabled',
'userAccountControl': 512 + 2},
{'description': 'normal, regular AD account, do not expire password',
'userAccountControl': 512 + 65536},
{'description': 'normal, regular AD account disabled, do not expire password',
'userAccountControl': 512 + 2 + 65536}
]
userids_disabled = {}
if useds:
print "Create sub-ou's on the AD side and add users . . ."
ii = 0
dns = ['ou=people,' + suffix,
'ou=1,ou=people,' + suffix, 'ou=2,ou=people,' + suffix,
'ou=11,ou=1,ou=people,' + suffix,
'ou=12,ou=1,ou=people,' + suffix]
for dn in dns:
ent = Entry(dn)
ent.setValues('objectclass', 'organizationalUnit')
try: ad.add_s(ent)
except ldap.ALREADY_EXISTS: pass
print "Add users to", dn
for jj in range(0,5):
strii = str(ii)
userdn = 'cn=Test User' + strii + ',' + dn
ent = Entry(userdn)
userid = 'userid' + strii
ent.setValues('objectclass', ['person', 'adPerson'])
ent.setValues('sn', 'User' + strii)
ent.setValues('samAccountName', userid)
ent.setValues('objectGUID', struct.pack('B', ii))
ent.setValues('name', 'Test User' + strii) # same as cn
kk = ii % len(userAcctVals)
for attr, val in userAcctVals[kk].iteritems():
ent.setValues(attr, str(val))
if str(val).find("account disabled") > -1:
userids_disabled[userid] = userid
try: ad.add_s(ent)
except ldap.ALREADY_EXISTS: pass
userids[userid] = userdn
ii += 1
groupids = []
print "Create an AD group entry"
groupid = ii
groupdn = "ou=Group%d,ou=people,%s" % (groupid, suffix)
ent = Entry(groupdn)
ent.setValues('objectclass', 'group')
ent.setValues('groupType', '2')
ent.setValues('objectGUID', struct.pack('B', groupid))
ent.setValues('member', 'cn=Test User0, ou=people,' + suffix)
ent.setValues('description', 'should not be synced to DS')
try: ad.add_s(ent)
except ldap.ALREADY_EXISTS: pass
groupids.append(ii)
ii += 1
else:
print "Search the AD to get the entries which will be returned with the dirsync control"
ents = ad.search_ext_s(suffix, scope, '(objectclass=user)',
None, 0, [DirSyncCtrl(1, 0, -1)])
for ent in ents:
print "Entry", ent.dn
if not ent.userAccountControl:
print "\thas no userAccountControl - skipping"
continue
val = int(ent.userAccountControl)
if val & 0x20: # PASSWD_NOTREQD
print "\tis marked as no password required - skipping"
continue
if val & 0x200: # a normal account
ent.setValues('nTSecurityDescriptor', '')
if ent.isCriticalSystemObject:
print "\tisCriticalSystemObject - skipping"
continue
if ent.samaccountname.startswith("SUPPORT_"):
print "\tis special entry", ent.samaccountname, "- skipping"
continue
userids[ent.samaccountname] = ent.dn
if val & 0x2: # account is disabled
userids_disabled[ent.samaccountname] = ent.samaccountname
print "\tis disabled", val
else:
print "\tis enabled", val
else:
print "\tis not a normal account - val", ent.userAccountControl
continue
idnum = 0
def makeDSUserEnt():
global idnum
id = str(idnum)
userid = 'testuser' + id
dn = 'uid=%s,%s,%s' % (userid, usersubtree, suffix)
ent = Entry(dn)
ent.setValues('objectclass', userObjClasses)
ent.setValues('cn', 'Test User' + id)
ent.setValues('sn', 'User' + id)
ent.setValues('uid', userid)
ent.setValues('userPassword', 'Password' + id)
if ipawinsync:
ent.setValues('krbPrincipalName', '%s@%s' % (userid, realm))
ent.setValues('uidNumber', str(500+idnum))
ent.setValues('gidNumber', '1002')
ent.setValues('homeDirectory', '/home/' + userid)
if jj % 2:
ent.setValues('description', 'User added disabled to DS')
else:
ent.setValues('description', 'User added enabled to DS')
idnum += 1
return ent
def makeADUserEnt():
global idnum
id = str(idnum)
userid = 'testuser' + id
cn = 'Test User' + id
dn = 'cn=%s,%s,%s' % (cn, adusersubtree, suffix)
ent = Entry(dn)
ent.setValues('objectclass', aduserObjClasses)
ent.setValues('cn', cn)
ent.setValues('sn', 'User' + id)
ent.setValues('userPrincipalName', '%s@%s' % (userid, realm))
ent.setValues('sAMAccountName', userid)
idnum += 1
return ent
telnum1 = '888 555-1212'
telnum2 = '800 555-1212'
print "Add initial users to the DS side . . ."
enabled_ds_users = {}
disabled_ds_users = {}
if useds:
for jj in xrange(0, ii):
if not jj % 3: continue
strjj = str(jj)
userid = "userid" + strjj
if not userids.has_key(userid): continue
dn = "uid=%s,%s,%s" % (userid, usersubtree, suffix)
ent = Entry(dn)
ent.setValues('objectclass', userObjClasses)
if ipawinsync:
ent.setValues('krbPrincipalName', '%s@%s' % (userid, realm))
ent.setValues('uidNumber', str(500+jj))
ent.setValues('gidNumber', '1002')
ent.setValues('homeDirectory', '/home/' + userid)
ent.setValues('cn', 'Test User' + strjj)
ent.setValues('sn', 'User' + strjj)
ent.setValues('ou', 'people')
if jj % 2:
ent.setValues('description', 'User added disabled to DS')
else:
ent.setValues('description', 'User added enabled to DS')
try: ds.add_s(ent)
except ldap.ALREADY_EXISTS: pass
if ipawinsync and (jj % 2):
print "Add user to inactive group"
groupdn = 'cn=inactivated,cn=account inactivation,cn=accounts,' + suffix
disabled_ds_users[userid] = dn
mod = [(ldap.MOD_ADD, 'member', dn)]
ds.modify_s(groupdn, mod)
else:
print "User is activated by default"
enabled_ds_users[userid] = dn
else:
for userid in ['testuser', 'testuser2', 'testuser5']:
dn = "uid=%s,%s,%s" % (userid, usersubtree, suffix)
ent = Entry(dn)
if userid == 'testuser':
foo = userObjClasses[:] # makes a copy
foo.append('ntUser')
ent.setValues('objectclass', foo)
ent.setValues('ntUserDomainId', userid)
else:
ent.setValues('objectclass', userObjClasses)
if ipawinsync:
ent.setValues('krbPrincipalName', '%s@%s' % (userid, realm))
ent.setValues('uidNumber', '99999')
ent.setValues('gidNumber', '1002')
ent.setValues('homeDirectory', '/home/' + userid)
ent.setValues('cn', 'Test User' + userid)
ent.setValues('sn', 'User' + userid)
ent.setValues('ou', 'people')
ent.setValues('telephoneNumber', telnum1)
if userid == 'testuser':
ent.setValues('description', 'User added disabled to DS')
else:
ent.setValues('description', 'User added enabled to DS')
try: ds.add_s(ent)
except ldap.ALREADY_EXISTS: pass
if ipawinsync and (userid == 'testuser'):
print "Add user to inactive group"
groupdn = 'cn=inactivated,cn=account inactivation,cn=accounts,' + suffix
disabled_ds_users[userid] = dn
mod = [(ldap.MOD_ADD, 'member', dn)]
ds.modify_s(groupdn, mod)
else:
print "User is active by default"
enabled_ds_users[userid] = dn
ds.setLogLevel(0)
ds.setLogLevel(8192)
#ds.setLogLevel(65536)
replargs['binddn'] = root2
replargs['bindpw'] = rootpw2
replargs['win_subtree'] = adusersubtree + "," + suffix
replargs['ds_subtree'] = usersubtree + ',' + suffix
agmtdn = ds.setupAgreement(ad, replargs)
time.sleep(5)
print "repl status:", ds.getReplStatus(agmtdn)
ds.startReplication(agmtdn)
time.sleep(5)
print "repl status:", ds.getReplStatus(agmtdn)
idnum = 6
ent = makeDSUserEnt()
uid = ent.uid
print "Now adding", uid, "to DS . . ."
ds.add_s(ent)
time.sleep(1)
ents = ds.search_s(suffix, scope, "(uid=%s)" % uid, attrs)
ent = ents[0]
print "Added entry to DS, adding telephonenumber . . ."
mod = [(ldap.MOD_ADD, 'telephoneNumber', telnum1)]
ds.modify_s(ent.dn, mod)
time.sleep(1)
print "Making entry a sync-able entry . . ."
mod = [(ldap.MOD_DELETE, 'telephoneNumber', telnum1),
(ldap.MOD_ADD, 'telephoneNumber', telnum2),
(ldap.MOD_ADD, 'description', 'test bug206966'),
(ldap.MOD_ADD, 'objectclass', 'ntUser'),
(ldap.MOD_ADD, 'ntUserDomainId', uid),
(ldap.MOD_ADD, 'ntUserCreateNewAccount', 'true')
]
ds.modify_s(ent.dn, mod)
time.sleep(1)
print "Now compare the entries . . ."
ents = ds.search_s(suffix, scope, "(uid=%s)" % uid)
print "DS Entry: ", str(ents[0])
ents = ad.search_s(suffix, scope, "(samaccountname=%s)" % uid)
print "AD Entry: ", str(ents[0])