Handling secrets.tdb in upgrade.py for classicupgrade

Gémes Géza geza at kzsdabas.hu
Mon Jul 16 14:15:59 MDT 2012


2012-07-16 12:00 keltezéssel, Andrew Bartlett írta:
> On Mon, 2012-07-16 at 19:05 +1000, Andrew Bartlett wrote:
>> On Mon, 2012-07-16 at 07:57 +0200, Gémes Géza wrote:
>>
>>> Hi,
>>>
>>> I've attached the patch. Under valgrind the whole samba-tool
>>> classicupgrade gives a lot of memory problems related messages, and even
>>> fails at initializing the ldb connection to the openldap directory. The
>>> output is:
>> A few thoughts on the patch.
>>
>> Why do you build multiple ldbs?  You should only need one - feel free to
>> walk the list of URLs if you think that one of the ldap hosts might be
>> down, but you should end up with just one ldb for posix attributes.
>>
>> Use creds.set_bind_dn() rather than set_username() to set the simple
>> bind DN.
>>
>> Also try applying this patch to the pytdb layer to see if we can trace
>> where this segfault comes from.
> The segfault should be fixed by this patch.
>
> Also, you need to do all your secrets_db access before this line:
>
>      # We must close the direct pytdb database before the C code loads it
>      secrets_db.close()
>
> I know it's a bit awkward, but it's a limitation of tdb.  With the patch
> attached, at least it will error rather than segfault.
>
> Thank you very much for your patience with this.  Hopefully after this
> the API will be safer for everyone.
>
> Andrew Bartlett
>
Hi,

I've applied the tdb patch (actually seen that it is in master and 
pulled from then).
Modified the upgrade.py (the new patch is attached).
The upgrade doesn't segfaults anymore, however the ldb.search still 
breaks without any message, and running under valgrind --leak-check=full 
--track-origins=yes gives:

no talloc stackframe around, leaking memory
Reading smb.conf
Provisioning
Exporting account policy
Exporting groups
Exporting users
   Skipping wellknown rid=500 (for username=root)
   Demoting BDC account trust for fax, this DC must be elevated to an AD 
DC using 'samba-tool domain promote'
Next rid = 1000014
Looking up IPv4 addresses
Looking up IPv6 addresses
No IPv6 address will be assigned
==2147== Invalid read of size 4
==2147==    at 0x43AAB9: PyObject_Realloc.part.0.20660 (in 
/usr/bin/python2.7)
==2147==    by 0x47054C: _PyString_Resize (in /usr/bin/python2.7)
==2147==    by 0x52D56D: get_line.13074 (in /usr/bin/python2.7)
==2147==    by 0x517289: file_readline.13078 (in /usr/bin/python2.7)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4D8479: gen_send_ex.isra.0.12660.6830 (in 
/usr/bin/python2.7)
==2147==    by 0x4EAE11: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==  Address 0x1f578020 is not stack'd, malloc'd or (recently) free'd
==2147==
==2147== Invalid read of size 4
==2147==    at 0x43AAB9: PyObject_Realloc.part.0.20660 (in 
/usr/bin/python2.7)
==2147==    by 0x47054C: _PyString_Resize (in /usr/bin/python2.7)
==2147==    by 0x52D3D8: get_line.13074 (in /usr/bin/python2.7)
==2147==    by 0x517289: file_readline.13078 (in /usr/bin/python2.7)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4D8479: gen_send_ex.isra.0.12660.6830 (in 
/usr/bin/python2.7)
==2147==    by 0x4EAE11: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==  Address 0x1f56a020 is not stack'd, malloc'd or (recently) free'd
==2147==
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4EAB66: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4D8479: gen_send_ex.isra.0.12660.6830 (in 
/usr/bin/python2.7)
==2147==    by 0x4EAE11: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==  Address 0x1d879020 is 0 bytes inside a block of size 21 free'd
==2147==    at 0x4C27D4E: free (vg_replace_malloc.c:427)
==2147==    by 0x16ECA17C: ldap_get_values (in 
/usr/lib/x86_64-linux-gnu/libldap_r-2.4.so.2.8.3)
==2147==    by 0x1667002C: smbldap_talloc_single_attribute (smbldap.c:86)
==2147==    by 0x15F8D60B: init_sam_from_ldap (pdb_ldap.c:942)
==2147==    by 0x15F8F5BF: ldapsam_getsampwnam (pdb_ldap.c:1530)
==2147==    by 0x15D45F63: py_pdb_getsampwnam (py_passdb.c:1228)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4358A1: list_dealloc.16561 (in /usr/bin/python2.7)
==2147==    by 0x435741: frame_dealloc.14611 (in /usr/bin/python2.7)
==2147==    by 0x4EB246: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==  Address 0x68af020 is 0 bytes after a block of size 96 alloc'd
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x730C699: __talloc (talloc.c:560)
==2147==    by 0x730CA5D: _talloc_named_const (talloc.c:669)
==2147==    by 0x730F2A6: _talloc_memdup (talloc.c:1919)
==2147==    by 0x7520D7B: data_blob_talloc_named (data_blob.c:52)
==2147==    by 0x15F6C933: pdb_set_nt_passwd (pdb_get_set.c:838)
==2147==    by 0x15F8D212: init_sam_from_ldap (pdb_ldap.c:857)
==2147==    by 0x15F8F5BF: ldapsam_getsampwnam (pdb_ldap.c:1530)
==2147==    by 0x15D45F63: py_pdb_getsampwnam (py_passdb.c:1228)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== Conditional jump or move depends on uninitialised value(s)
==2147==    at 0x546008: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4358A1: list_dealloc.16561 (in /usr/bin/python2.7)
==2147==    by 0x435741: frame_dealloc.14611 (in /usr/bin/python2.7)
==2147==    by 0x4EB246: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x435207: PyObject_Malloc (in /usr/bin/python2.7)
==2147==    by 0x4B34F2: PyCode_New (in /usr/bin/python2.7)
==2147==    by 0x48EC3C: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48FC03: PyMarshal_ReadLastObjectFromFile (in 
/usr/bin/python2.7)
==2147==    by 0x41EA17: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==
==2147== Use of uninitialised value of size 8
==2147==    at 0x546020: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4358A1: list_dealloc.16561 (in /usr/bin/python2.7)
==2147==    by 0x435741: frame_dealloc.14611 (in /usr/bin/python2.7)
==2147==    by 0x4EB246: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x435207: PyObject_Malloc (in /usr/bin/python2.7)
==2147==    by 0x4B34F2: PyCode_New (in /usr/bin/python2.7)
==2147==    by 0x48EC3C: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48FC03: PyMarshal_ReadLastObjectFromFile (in 
/usr/bin/python2.7)
==2147==    by 0x41EA17: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==
==2147==
==2147== More than 100 errors detected.  Subsequent errors
==2147== will still be recorded, but in less detail than before.
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4F6126: list_ass_item.16745 (in /usr/bin/python2.7)
==2147==    by 0x4F6675: list_ass_subscript.16750 (in /usr/bin/python2.7)
==2147==    by 0x4EB81E: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==  Address 0x13871020 is not stack'd, malloc'd or (recently) free'd
==2147==
==2147== Conditional jump or move depends on uninitialised value(s)
==2147==    at 0x546008: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4F6126: list_ass_item.16745 (in /usr/bin/python2.7)
==2147==    by 0x4F6675: list_ass_subscript.16750 (in /usr/bin/python2.7)
==2147==    by 0x4EB81E: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x730C699: __talloc (talloc.c:560)
==2147==    by 0x730CA5D: _talloc_named_const (talloc.c:669)
==2147==    by 0x730E27E: talloc_named_const (talloc.c:1328)
==2147==    by 0xAD7319B: dom_sid_dup (dom_sid.c:267)
==2147==    by 0xAD7328B: dom_sid_add_rid (dom_sid.c:298)
==2147==    by 0x15D47696: py_pdb_enum_group_members (py_passdb.c:1915)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x429D04: insertdict.18196 (in /usr/bin/python2.7)
==2147==    by 0x57B728: PyDict_SetItem (in /usr/bin/python2.7)
==2147==    by 0x50A42A: _PyObject_GenericSetAttrWithDict (in 
/usr/bin/python2.7)
==2147==    by 0x50A69C: PyObject_SetAttr (in /usr/bin/python2.7)
==2147==    by 0x4EB5BA: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==  Address 0x26b2c020 is 883,936 bytes inside a block of size 
884,854 free'd
==2147==    at 0x4C28CCE: realloc (vg_replace_malloc.c:632)
==2147==    by 0x47054C: _PyString_Resize (in /usr/bin/python2.7)
==2147==    by 0x517EB5: string_concatenate.33792 (in /usr/bin/python2.7)
==2147==    by 0x4EE67D: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4EF20E: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==    by 0x4499F5: type_call.25283 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==  Address 0x694d020 is not stack'd, malloc'd or (recently) free'd
==2147==
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4EAA94: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==    by 0x4499F5: type_call.25283 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EB0B9: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==  Address 0x11ba9020 is not stack'd, malloc'd or (recently) free'd
==2147==
Setting up share.ldb
Setting up secrets.ldb
Setting up the registry
Setting up the privileges database
Setting up idmap db
Setting up SAM db
Setting up sam.ldb partitions and settings
Setting up sam.ldb rootDSE
Pre-loading the Samba 4 and AD schema
Adding DomainDN: DC=kzsdabas,DC=hu
Adding configuration container
Setting up sam.ldb schema
Setting up sam.ldb configuration data
Setting up display specifiers
Adding users container
Modifying users container
Adding computers container
Modifying computers container
Setting up sam.ldb data
Setting up well known security principals
Setting up sam.ldb users and groups
==2147== Invalid read of size 4
==2147==    at 0x545FFF: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x546E68: unicode_dealloc.27140 (in /usr/bin/python2.7)
==2147==    by 0x529F03: utf_16_le_encode.68733 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x44C665: PyEval_CallObjectWithKeywords (in 
/usr/bin/python2.7)
==2147==    by 0x45D427: PyCodec_Encode (in /usr/bin/python2.7)
==2147==    by 0x45D708: string_encode.22645 (in /usr/bin/python2.7)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==  Address 0x27485020 is 32 bytes inside a block of size 101 free'd
==2147==    at 0x4C27D4E: free (vg_replace_malloc.c:427)
==2147==    by 0x730D224: _talloc_free_internal (talloc.c:876)
==2147==    by 0x730DF89: _talloc_free_children_internal (talloc.c:1254)
==2147==    by 0x730D0D1: _talloc_free_internal (talloc.c:846)
==2147==    by 0x730DF89: _talloc_free_children_internal (talloc.c:1254)
==2147==    by 0x730D0D1: _talloc_free_internal (talloc.c:846)
==2147==    by 0x730E382: _talloc_free (talloc.c:1369)
==2147==    by 0x263081C3: search_func (ldb_search.c:444)
==2147==    by 0xA80CAC1: tdb_traverse_internal (traverse.c:190)
==2147==    by 0xA80CCE9: tdb_traverse (traverse.c:260)
==2147==    by 0x2630829A: ltdb_search_full (ldb_search.c:478)
==2147==    by 0x26308641: ltdb_search (ldb_search.c:607)
==2147==
Setting up self join
==2147== Conditional jump or move depends on uninitialised value(s)
==2147==    at 0x546008: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4EAB66: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x730C699: __talloc (talloc.c:560)
==2147==    by 0x730CA5D: _talloc_named_const (talloc.c:669)
==2147==    by 0x730FC2D: _talloc_array (talloc.c:2216)
==2147==    by 0xAF9A57A: ndr_push_init_ctx (ndr.c:118)
==2147==    by 0xAF9C898: ndr_push_struct_blob (ndr.c:995)
==2147==    by 0x96E94C8: ldif_read_objectSid (ldif_handlers.c:93)
==2147==    by 0x8E8A73B: ldb_ldif_read (ldb_ldif.c:863)
==2147==    by 0x8E8A948: ldb_ldif_read_string (ldb_ldif.c:944)
==2147==    by 0x8A6E735: py_ldb_parse_ldif (pyldb.c:1449)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
Adding DNS accounts
Creating CN=MicrosoftDNS,CN=System,DC=kzsdabas,DC=hu
Creating DomainDnsZones and ForestDnsZones partitions
Populating DomainDnsZones and ForestDnsZones partitions
==2147== Conditional jump or move depends on uninitialised value(s)
==2147==    at 0x546008: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x435FF6: tupledealloc.24225 (in /usr/bin/python2.7)
==2147==    by 0x4EAA5D: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x730C699: __talloc (talloc.c:560)
==2147==    by 0x730CA5D: _talloc_named_const (talloc.c:669)
==2147==    by 0x730FC2D: _talloc_array (talloc.c:2216)
==2147==    by 0xAF9A57A: ndr_push_init_ctx (ndr.c:118)
==2147==    by 0xAF9C898: ndr_push_struct_blob (ndr.c:995)
==2147==    by 0xAF99966: GUID_to_ndr_blob (uuid.c:34)
==2147==    by 0x96E99A1: ldif_read_objectGUID (ldif_handlers.c:234)
==2147==    by 0x8E8A73B: ldb_ldif_read (ldb_ldif.c:863)
==2147==    by 0x8E8A948: ldb_ldif_read_string (ldb_ldif.c:944)
==2147==    by 0x8A6E735: py_ldb_parse_ldif (pyldb.c:1449)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== Use of uninitialised value of size 8
==2147==    at 0x546020: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x435FF6: tupledealloc.24225 (in /usr/bin/python2.7)
==2147==    by 0x4EAA5D: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x730C699: __talloc (talloc.c:560)
==2147==    by 0x730CA5D: _talloc_named_const (talloc.c:669)
==2147==    by 0x730FC2D: _talloc_array (talloc.c:2216)
==2147==    by 0xAF9A57A: ndr_push_init_ctx (ndr.c:118)
==2147==    by 0xAF9C898: ndr_push_struct_blob (ndr.c:995)
==2147==    by 0xAF99966: GUID_to_ndr_blob (uuid.c:34)
==2147==    by 0x96E99A1: ldif_read_objectGUID (ldif_handlers.c:234)
==2147==    by 0x8E8A73B: ldb_ldif_read (ldb_ldif.c:863)
==2147==    by 0x8E8A948: ldb_ldif_read_string (ldb_ldif.c:944)
==2147==    by 0x8A6E735: py_ldb_parse_ldif (pyldb.c:1449)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
See /usr/local/samba/private/named.conf for an example configuration 
include file for BIND
and /usr/local/samba/private/named.txt for further documentation 
required for secure DNS updates
Setting up sam.ldb rootDSE marking as synchronized
Fixing provision GUIDs
==2147== Conditional jump or move depends on uninitialised value(s)
==2147==    at 0x546008: PyObject_Free (in /usr/bin/python2.7)
==2147==    by 0x4EAA94: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==  Uninitialised value was created by a heap allocation
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x730C699: __talloc (talloc.c:560)
==2147==    by 0x730CA5D: _talloc_named_const (talloc.c:669)
==2147==    by 0x730FC2D: _talloc_array (talloc.c:2216)
==2147==    by 0x753B7F1: strupper_talloc_n_handle (util_unistr.c:108)
==2147==    by 0x753B92F: strupper_talloc_n (util_unistr.c:145)
==2147==    by 0x96D48DE: wrap_casefold (ldb_wrap.c:111)
==2147==    by 0x8E8F1F2: ldb_casefold (ldb_utf8.c:77)
==2147==    by 0x8E96C3A: ldb_handler_fold (attrib_handlers.c:64)
==2147==    by 0x8E915E0: ldb_dn_casefold_internal (ldb_dn.c:938)
==2147==    by 0x8E91AFF: ldb_dn_compare_base (ldb_dn.c:1055)
==2147==    by 0x236690AB: partition_search (partition.c:731)
==2147==
A Kerberos configuration suitable for Samba 4 has been generated at 
/usr/local/samba/private/krb5.conf
Setting up fake yp server settings
Once the above files are installed, your Samba4 server will be ready to use
Admin password:        Yh&RfXkM&GF~)<KN>E=e1O
Server Role:           active directory domain controller
Hostname:              dc0
NetBIOS Domain:        KZSDABAS
DNS Domain:            kzsdabas.hu
DOMAIN SID:            S-1-5-21-2107120446-224765601-1821260193
A phpLDAPadmin configuration file suitable for administering the Samba 4 
LDAP server has been created in 
/usr/local/samba/private/phpldapadmin-config.php.
Importing WINS database
Importing Account policy
Importing idmap database
Cannot open idmap database, Ignoring: [Errno 2] No such file or directory
Exporting posix attributes
Importing groups
Group already exists sid=S-1-5-21-2107120446-224765601-1821260193-512, 
groupname=Kossuth Zsuzsanna SZKI Számítógép-hálózatának rendszergazdái 
existing_groupname=Domain Admins, Ignoring.
Group already exists sid=S-1-5-21-2107120446-224765601-1821260193-513, 
groupname=Kossuth Zsuzsanna SZKI számítógép-hálózatának felhasználói 
existing_groupname=Domain Users, Ignoring.
Group already exists sid=S-1-5-21-2107120446-224765601-1821260193-514, 
groupname=Kossuth Zsuzsanna SZKI vendégei existing_groupname=Domain 
Guests, Ignoring.
Group already exists sid=S-1-5-21-2107120446-224765601-1821260193-515, 
groupname=Kossuth Zsuzsanna SZKI Számítógépei existing_groupname=Domain 
Computers, Ignoring.
Group already exists sid=S-1-5-21-2107120446-224765601-1821260193-516, 
groupname=Kossuth Zsuzsanna SZKI Tarományvezérlői 
existing_groupname=Domain Controllers, Ignoring.
Importing users

-- I've lost a few messages due to terminal settings (I couldn't scroll 
:-( )--

==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==    by 0x4499F5: type_call.25283 (in /usr/bin/python2.7)
==2147==
==2147== 1,352 bytes in 3 blocks are possibly lost in loss record 2,309 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 1,376 bytes in 3 blocks are possibly lost in loss record 2,312 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x57EEDA: PyObject_CallFunctionObjArgs (in 
/usr/bin/python2.7)
==2147==    by 0x57AEFF: PyObject_IsSubclass (in /usr/bin/python2.7)
==2147==
==2147== 1,380 bytes in 5 blocks are possibly lost in loss record 2,313 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B9D8: PyString_FromString (in /usr/bin/python2.7)
==2147==    by 0x4490B7: getset_get.10975 (in /usr/bin/python2.7)
==2147==    by 0x44D529: _PyObject_GenericGetAttrWithDict (in 
/usr/bin/python2.7)
==2147==    by 0x4EAADD: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4D8D97: PyImport_ExecCodeModuleEx (in /usr/bin/python2.7)
==2147==    by 0x41EA87: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CB88: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FD43: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==
==2147== 1,880 bytes in 4 blocks are possibly lost in loss record 2,343 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
==2147== 1,896 bytes in 4 blocks are possibly lost in loss record 2,348 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 1,920 bytes in 4 blocks are possibly lost in loss record 2,350 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== 2,024 bytes in 4 blocks are possibly lost in loss record 2,357 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== 2,032 bytes in 4 blocks are possibly lost in loss record 2,358 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4F1C81: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x44C665: PyEval_CallObjectWithKeywords (in 
/usr/bin/python2.7)
==2147==    by 0x56EC0A: PyInstance_New (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 2,096 (560 direct, 1,536 indirect) bytes in 2 blocks are 
definitely lost in loss record 2,361 of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x46CA83: PyDict_New (in /usr/bin/python2.7)
==2147==    by 0x50A4CD: _PyObject_GenericSetAttrWithDict (in 
/usr/bin/python2.7)
==2147==    by 0x50A69C: PyObject_SetAttr (in /usr/bin/python2.7)
==2147==    by 0x4EB5BA: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==
==2147== 2,224 bytes in 5 blocks are possibly lost in loss record 2,367 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EB0B9: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
==2147== 2,248 bytes in 5 blocks are possibly lost in loss record 2,368 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== 2,336 bytes in 5 blocks are possibly lost in loss record 2,373 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4F1C81: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EB0B9: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==
==2147== 2,576 bytes in 5 blocks are possibly lost in loss record 2,380 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4F1C81: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== 2,688 bytes in 6 blocks are possibly lost in loss record 2,381 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 2,752 bytes in 9 blocks are possibly lost in loss record 2,383 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x57EB68: PyTuple_New (in /usr/bin/python2.7)
==2147==    by 0x48E9EE: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB5F: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48FC03: PyMarshal_ReadLastObjectFromFile (in 
/usr/bin/python2.7)
==2147==    by 0x41EA17: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==
==2147== 3,072 bytes in 1 blocks are possibly lost in loss record 2,458 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x12D3EA53: initmisc (py_misc.c:777)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4DDE9D: PyObject_CallFunction (in /usr/bin/python2.7)
==2147==    by 0x4FE84E: PyImport_Import (in /usr/bin/python2.7)
==2147==
==2147== 3,072 bytes in 1 blocks are possibly lost in loss record 2,459 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x1DDDE870: initkrb5pac (py_krb5pac.c:2273)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4DDE9D: PyObject_CallFunction (in /usr/bin/python2.7)
==2147==    by 0x4FE84E: PyImport_Import (in /usr/bin/python2.7)
==2147==
==2147== 3,640 bytes in 13 blocks are possibly lost in loss record 2,470 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x46CA83: PyDict_New (in /usr/bin/python2.7)
==2147==    by 0x50A4CD: _PyObject_GenericSetAttrWithDict (in 
/usr/bin/python2.7)
==2147==    by 0x50A69C: PyObject_SetAttr (in /usr/bin/python2.7)
==2147==    by 0x4EB5BA: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4D8D97: PyImport_ExecCodeModuleEx (in /usr/bin/python2.7)
==2147==    by 0x41EA87: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CB88: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FD43: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==
==2147== 3,840 bytes in 5 blocks are possibly lost in loss record 2,474 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x43C3FD: PyDict_SetItemString (in /usr/bin/python2.7)
==2147==    by 0x15D48AC2: py_pdb_search_users (py_passdb.c:2483)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
==2147== 4,056 bytes in 9 blocks are possibly lost in loss record 2,477 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
==2147== 4,200 bytes in 15 blocks are possibly lost in loss record 2,479 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x46CA83: PyDict_New (in /usr/bin/python2.7)
==2147==    by 0x50A4CD: _PyObject_GenericSetAttrWithDict (in 
/usr/bin/python2.7)
==2147==    by 0x50A69C: PyObject_SetAttr (in /usr/bin/python2.7)
==2147==    by 0x4EB5BA: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4EB221: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4D8D97: PyImport_ExecCodeModuleEx (in /usr/bin/python2.7)
==2147==    by 0x41EA87: load_source_module.39076 (in /usr/bin/python2.7)
==2147==
==2147== 5,992 bytes in 13 blocks are possibly lost in loss record 2,502 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x44C665: PyEval_CallObjectWithKeywords (in 
/usr/bin/python2.7)
==2147==    by 0x56EC0A: PyInstance_New (in /usr/bin/python2.7)
==2147==
==2147== 6,064 bytes in 12 blocks are possibly lost in loss record 2,504 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4F1C81: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==    by 0x4499F5: type_call.25283 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 6,184 bytes in 13 blocks are possibly lost in loss record 2,507 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4EB1CB: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
==2147== 8,296 bytes in 22 blocks are possibly lost in loss record 2,517 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x57EB68: PyTuple_New (in /usr/bin/python2.7)
==2147==    by 0x48E9EE: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48FC03: PyMarshal_ReadLastObjectFromFile (in 
/usr/bin/python2.7)
==2147==    by 0x41EA17: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==
==2147== 12,288 bytes in 1 blocks are possibly lost in loss record 2,531 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x131CA6EB: initlsa (py_lsa.c:11476)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4DDE9D: PyObject_CallFunction (in /usr/bin/python2.7)
==2147==    by 0x4FE84E: PyImport_Import (in /usr/bin/python2.7)
==2147==
==2147== 12,288 bytes in 1 blocks are possibly lost in loss record 2,532 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x12F73EEB: initsamr (py_samr.c:11985)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4DDE9D: PyObject_CallFunction (in /usr/bin/python2.7)
==2147==    by 0x4FE84E: PyImport_Import (in /usr/bin/python2.7)
==2147==
==2147== 12,288 bytes in 1 blocks are possibly lost in loss record 2,533 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x1B2389EC: initdnsp (py_dnsp.c:2455)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x41F949: ensure_fromlist.part.7.39142.3571 (in 
/usr/bin/python2.7)
==2147==    by 0x41FE52: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x44C665: PyEval_CallObjectWithKeywords (in 
/usr/bin/python2.7)
==2147==    by 0x4ED1F2: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==
==2147== 12,288 bytes in 1 blocks are possibly lost in loss record 2,534 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x1E0302FF: initnetlogon (py_netlogon.c:18531)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4DDE9D: PyObject_CallFunction (in /usr/bin/python2.7)
==2147==    by 0x4FE84E: PyImport_Import (in /usr/bin/python2.7)
==2147==
==2147== 14,128 bytes in 30 blocks are possibly lost in loss record 
2,538 of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x5806AD: _PyObject_GC_NewVar (in /usr/bin/python2.7)
==2147==    by 0x445020: PyFrame_New (in /usr/bin/python2.7)
==2147==    by 0x4F1C81: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==    by 0x4499F5: type_call.25283 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 16,040 bytes in 43 blocks are possibly lost in loss record 
2,542 of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x57EB68: PyTuple_New (in /usr/bin/python2.7)
==2147==    by 0x48E9EE: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB49: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EA15: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48EB33: r_object.40141 (in /usr/bin/python2.7)
==2147==    by 0x48FC03: PyMarshal_ReadLastObjectFromFile (in 
/usr/bin/python2.7)
==2147==    by 0x41EA17: load_source_module.39076 (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==
==2147== 24,080 bytes in 86 blocks are possibly lost in loss record 
2,550 of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x46CA83: PyDict_New (in /usr/bin/python2.7)
==2147==    by 0x50A4CD: _PyObject_GenericSetAttrWithDict (in 
/usr/bin/python2.7)
==2147==    by 0x50A69C: PyObject_SetAttr (in /usr/bin/python2.7)
==2147==    by 0x4EB5BA: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2DFF: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x47CC79: instancemethod_call.8523 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4742FD: slot_tp_init.25634 (in /usr/bin/python2.7)
==2147==
==2147== 49,152 bytes in 1 blocks are possibly lost in loss record 2,563 
of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x442463: PyModule_AddObject (in /usr/bin/python2.7)
==2147==    by 0x1343EA57: initdrsuapi (py_drsuapi.c:20885)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4DDE9D: PyObject_CallFunction (in /usr/bin/python2.7)
==2147==    by 0x4FE84E: PyImport_Import (in /usr/bin/python2.7)
==2147==
==2147== 786,432 bytes in 1 blocks are possibly lost in loss record 
2,605 of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57B3CE: dictresize.18102 (in /usr/bin/python2.7)
==2147==    by 0x57B901: PyString_InternInPlace (in /usr/bin/python2.7)
==2147==    by 0x443FE4: PyDescr_NewWrapper (in /usr/bin/python2.7)
==2147==    by 0x94C7683: PyInterface_AddNdrRpcMethods (pyrpc_util.c:254)
==2147==    by 0x131C9C4C: initlsa (py_lsa.c:11185)
==2147==    by 0x4A2AC3: _PyImport_LoadDynamicModule (in /usr/bin/python2.7)
==2147==    by 0x41F47A: import_submodule.39130 (in /usr/bin/python2.7)
==2147==    by 0x43CAFE: load_next.39135 (in /usr/bin/python2.7)
==2147==    by 0x41FF00: import_module_level.isra.3.39156 (in 
/usr/bin/python2.7)
==2147==    by 0x50917A: builtin___import__.32811 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==
==2147== 3,276,400 (876,400 direct, 2,400,000 indirect) bytes in 3,130 
blocks are definitely lost in loss record 2,616 of 2,617
==2147==    at 0x4C28BED: malloc (vg_replace_malloc.c:263)
==2147==    by 0x57E63C: _PyObject_GC_Malloc (in /usr/bin/python2.7)
==2147==    by 0x46CA83: PyDict_New (in /usr/bin/python2.7)
==2147==    by 0x15D489C7: py_pdb_search_users (py_passdb.c:2474)
==2147==    by 0x4EAA3A: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4EAFD7: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==    by 0x4F2F31: function_call.15047 (in /usr/bin/python2.7)
==2147==    by 0x44A175: PyObject_Call (in /usr/bin/python2.7)
==2147==    by 0x4EC758: PyEval_EvalFrameEx (in /usr/bin/python2.7)
==2147==    by 0x4F1DAF: PyEval_EvalCodeEx (in /usr/bin/python2.7)
==2147==
==2147== LEAK SUMMARY:
==2147==    definitely lost: 877,673 bytes in 3,142 blocks
==2147==    indirectly lost: 2,403,072 bytes in 3,129 blocks
==2147==      possibly lost: 1,070,423 bytes in 464 blocks
==2147==    still reachable: 32,020,095 bytes in 196,395 blocks
==2147==         suppressed: 0 bytes in 0 blocks
==2147== Reachable blocks (those to which a pointer was found) are not 
shown.
==2147== To see them, rerun with: --leak-check=full --show-reachable=yes
==2147==
==2147== For counts of detected and suppressed errors, rerun with: -v
==2147== ERROR SUMMARY: 8522 errors from 270 contexts (suppressed: 506 
from 8)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: upgrade.py.patch
Type: text/x-patch
Size: 7360 bytes
Desc: not available
URL: <http://lists.samba.org/pipermail/samba-technical/attachments/20120716/7af47ce2/attachment.bin>


More information about the samba-technical mailing list