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 770943 - memory leaks on libvirt_virNodeGetCPUStats
Summary: memory leaks on libvirt_virNodeGetCPUStats
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: libvirt
Version: 6.3
Hardware: x86_64
OS: Linux
high
high
Target Milestone: rc
: ---
Assignee: Michal Privoznik
QA Contact: Virtualization Bugs
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-12-30 11:46 UTC by Alex Jia
Modified: 2012-06-20 06:40 UTC (History)
8 users (show)

Fixed In Version: libvirt-0.9.10-7.el6
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2012-06-20 06:40:44 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2012:0748 0 normal SHIPPED_LIVE Low: libvirt security, bug fix, and enhancement update 2012-06-19 19:31:38 UTC

Description Alex Jia 2011-12-30 11:46:50 UTC
Description of problem:
Memory leak on libvirt_virNodeGetCPUStats 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')
con.getCPUStats(0, 0)

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

==15786== 160 bytes in 4 blocks are definitely lost in loss record 1,525 of 2,083
==15786==    at 0x4A05FDE: malloc (vg_replace_malloc.c:236)
==15786==    by 0x39E1A85EC3: PyObject_Malloc (obmalloc.c:935)
==15786==    by 0x39E1A77831: _PyLong_New (longobject.c:75)
==15786==    by 0x39E1A79E2E: PyLong_FromUnsignedLongLong (longobject.c:892)
==15786==    by 0xB8FC2B4: libvirt_virNodeGetCPUStats (libvirt-override.c:2323)
==15786==    by 0x39E1ADE7F3: PyEval_EvalFrameEx (ceval.c:3794)
==15786==    by 0x39E1ADF99E: PyEval_EvalFrameEx (ceval.c:3880)
==15786==    by 0x39E1AE0466: PyEval_EvalCodeEx (ceval.c:3044)
==15786==    by 0x39E1AE0541: PyEval_EvalCode (ceval.c:545)
==15786==    by 0x39E1AFB88B: run_mod (pythonrun.c:1351)
==15786==    by 0x39E1AFB95F: PyRun_FileExFlags (pythonrun.c:1337)
==15786==    by 0x39E1AFCE4B: PyRun_SimpleFileExFlags (pythonrun.c:941)
==15786==
==15786== 180 bytes in 4 blocks are definitely lost in loss record 1,536 of 2,083
==15786==    at 0x4A05FDE: malloc (vg_replace_malloc.c:236)
==15786==    by 0x39E1A85EC3: PyObject_Malloc (obmalloc.c:935)
==15786==    by 0x39E1A9053C: PyString_FromString (stringobject.c:138)
==15786==    by 0xB8FC2C3: libvirt_virNodeGetCPUStats (libvirt-override.c:2323)
==15786==    by 0x39E1ADE7F3: PyEval_EvalFrameEx (ceval.c:3794)
==15786==    by 0x39E1ADF99E: PyEval_EvalFrameEx (ceval.c:3880)
==15786==    by 0x39E1AE0466: PyEval_EvalCodeEx (ceval.c:3044)
==15786==    by 0x39E1AE0541: PyEval_EvalCode (ceval.c:545)
==15786==    by 0x39E1AFB88B: run_mod (pythonrun.c:1351)
==15786==    by 0x39E1AFB95F: PyRun_FileExFlags (pythonrun.c:1337)
==15786==    by 0x39E1AFCE4B: PyRun_SimpleFileExFlags (pythonrun.c:941)
==15786==    by 0x39E1B094CE: Py_Main (main.c:577)

Expected results:
Fix memory leaks.

Additional info:

Comment 1 Alex Jia 2012-02-17 10:00:43 UTC
The Patch has been sent to upstream and wait for review:
https://www.redhat.com/archives/libvir-list/2012-February/msg00764.html

Comment 2 Alex Jia 2012-03-22 02:26:52 UTC
Moving to POST:
http://www.redhat.com/archives/libvir-list/2012-March/msg00895.html

Comment 3 Michal Privoznik 2012-03-22 08:55:03 UTC
In fact, now we can move to POST:

http://post-office.corp.redhat.com/archives/rhvirt-patches/2012-March/msg02003.html

Comment 5 Wayne Sun 2012-03-28 05:46:13 UTC
packages:
libvirt-0.9.10-8.el6.x86_64
qemu-kvm-0.12.1.2-2.265.el6rhev.x86_64
kernel-2.6.32-252.el6.x86_64
libvirt-python-0.9.10-8.el6.x86_64


Follow the steps in description.
result:
==8464== LEAK SUMMARY:
==8464==    definitely lost: 0 bytes in 0 blocks
==8464==    indirectly lost: 0 bytes in 0 blocks
==8464==      possibly lost: 6,152 bytes in 13 blocks
==8464==    still reachable: 1,243,298 bytes in 10,245 blocks
==8464==         suppressed: 0 bytes in 0 blocks

So, this is fixed now.

Comment 7 errata-xmlrpc 2012-06-20 06:40:44 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


Note You need to log in before you can comment on or make changes to this bug.