Note: This bug is displayed in read-only format because the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.

Bug 770942

Summary: memory leaks on libvirt_virDomainBlockStatsFlags
Product: Red Hat Enterprise Linux 6 Reporter: Alex Jia <ajia>
Component: libvirtAssignee: Alex Jia <ajia>
Status: CLOSED ERRATA QA Contact: Virtualization Bugs <virt-bugs>
Severity: high Docs Contact:
Priority: high    
Version: 6.3CC: acathrow, dallan, dyuan, mzhan, rwu, veillard, zhpeng
Target Milestone: rc   
Target Release: ---   
Hardware: x86_64   
OS: Linux   
Whiteboard:
Fixed In Version: libvirt-0.9.10-1.el6 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2012-06-20 06:40:41 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Attachments:
Description Flags
valgrind result none

Description Alex Jia 2011-12-30 11:44:58 UTC
Description of problem:
Memory leak on libvirt_virDomainBlockStatsFlags API.

Version-Release number of selected component (if applicable):
libvirt-python-0.9.9-0rc1.el6.x86_64.rpm

How reproducible:
always

Steps to Reproduce:
1. Paste the following codes into test.py:

import libvirt
con = libvirt.open(None)
dom = con.lookupByName('foo')
dom.blockStatsFlags("/var/lib/libvirt/images/foo.img", 0)

2. valgrind -v --leak-check=full python test.py
  
Actual results:

==18725== 160 bytes in 5 blocks are definitely lost in loss record 1,525 of 2,083
==18725==    at 0x4A05FDE: malloc (vg_replace_malloc.c:236)
==18725==    by 0x39E1A85EC3: PyObject_Malloc (obmalloc.c:935)
==18725==    by 0x39E1A77831: _PyLong_New (longobject.c:75)
==18725==    by 0x39E1A79EB6: PyLong_FromLongLong (longobject.c:864)
==18725==    by 0xB8FAD08: libvirt_virDomainBlockStatsFlags (libvirt-override.c:160)
==18725==    by 0x39E1ADE7F3: PyEval_EvalFrameEx (ceval.c:3794)
==18725==    by 0x39E1ADF99E: PyEval_EvalFrameEx (ceval.c:3880)
==18725==    by 0x39E1AE0466: PyEval_EvalCodeEx (ceval.c:3044)
==18725==    by 0x39E1AE0541: PyEval_EvalCode (ceval.c:545)
==18725==    by 0x39E1AFB88B: run_mod (pythonrun.c:1351)
==18725==    by 0x39E1AFB95F: PyRun_FileExFlags (pythonrun.c:1337)
==18725==    by 0x39E1AFCE4B: PyRun_SimpleFileExFlags (pythonrun.c:941)
==18725==
==18725== 258 bytes in 5 blocks are definitely lost in loss record 1,590 of 2,083
==18725==    at 0x4A05FDE: malloc (vg_replace_malloc.c:236)
==18725==    by 0x39E1A85EC3: PyObject_Malloc (obmalloc.c:935)
==18725==    by 0x39E1A9053C: PyString_FromString (stringobject.c:138)
==18725==    by 0xB8FAD1C: libvirt_virDomainBlockStatsFlags (libvirt-override.c:177)
==18725==    by 0x39E1ADE7F3: PyEval_EvalFrameEx (ceval.c:3794)
==18725==    by 0x39E1ADF99E: PyEval_EvalFrameEx (ceval.c:3880)
==18725==    by 0x39E1AE0466: PyEval_EvalCodeEx (ceval.c:3044)
==18725==    by 0x39E1AE0541: PyEval_EvalCode (ceval.c:545)
==18725==    by 0x39E1AFB88B: run_mod (pythonrun.c:1351)
==18725==    by 0x39E1AFB95F: PyRun_FileExFlags (pythonrun.c:1337)
==18725==    by 0x39E1AFCE4B: PyRun_SimpleFileExFlags (pythonrun.c:941)
==18725==    by 0x39E1B094CE: Py_Main (main.c:577)


Expected results:
Fix memory leaks.

Additional info:

Comment 1 Alex Jia 2012-02-17 10:12:06 UTC
The following patch has fixed the issue together, In POST:

commit 56cec18d761a1f99862c43811de60380c65881e6
Author: Guannan Ren <gren>
Date:   Fri Feb 10 18:17:26 2012 +0800

    python: make other APIs share common {get, set}PyVirTypedParameter
    
            *libvirt_virDomainBlockStatsFlags
            *libvirt_virDomainGetSchedulerParameters
            *libvirt_virDomainGetSchedulerParametersFlags
            *libvirt_virDomainSetSchedulerParameters
            *libvirt_virDomainSetSchedulerParametersFlags
            *libvirt_virDomainSetBlkioParameters
            *libvirt_virDomainGetBlkioParameters
            *libvirt_virDomainSetMemoryParameters
            *libvirt_virDomainGetMemoryParameters
            *libvirt_virDomainSetBlockIoTune
            *libvirt_virDomainGetBlockIoTune

Comment 2 Daniel Veillard 2012-02-21 08:12:49 UTC
This made 0.9.10 release so should be fixed in libvirt-0.9.10-1.el6

Daniel

Comment 3 zhpeng 2012-02-21 09:00:27 UTC
I tested this with:
libvirt-0.9.10-1.el6.x86_64

Test passed.

valgrind test result is attached.

Comment 4 zhpeng 2012-02-21 09:01:03 UTC
Created attachment 564611 [details]
valgrind result

Comment 7 Min Zhan 2012-02-23 08:41:43 UTC
Move it to VERIFIED per Comment 3 and Comment 4.

Comment 9 errata-xmlrpc 2012-06-20 06:40:41 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

http://rhn.redhat.com/errata/RHSA-2012-0748.html