Opened 8 years ago

Closed 7 years ago

Last modified 7 years ago

#3405 closed defect (fixed)

Memory leak in lwgeom_to_points

Reported by: dbaston Owned by: pramsey
Priority: blocker Milestone: PostGIS 2.4.0
Component: postgis Version: master
Keywords: history Cc:

Description

==8742== 1,024 bytes in 1 blocks are definitely lost in loss record 3 of 4
==8742==    at 0x4C2CE8E: realloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==8742==    by 0x4E5C2BB: lwcollection_reserve (lwcollection.c:180)
==8742==    by 0x4E5CB69: lwcollection_add_lwgeom (lwcollection.c:211)
==8742==    by 0x4E8668C: lwpoly_to_points (lwgeom_geos.c:1710)
==8742==    by 0x4E868A0: lwmpoly_to_points (lwgeom_geos.c:1768)
==8742==    by 0x406416: test_point_density (cu_algorithm.c:1014)
==8742==    by 0x52EAC99: ??? (in /usr/lib/libcunit.so.1.0.1)
==8742==    by 0x52EAF27: ??? (in /usr/lib/libcunit.so.1.0.1)
==8742==    by 0x52EB2A5: CU_run_all_tests (in /usr/lib/libcunit.so.1.0.1)
==8742==    by 0x40620E: main (cu_tester.c:163)

Change History (11)

comment:1 by pramsey, 8 years ago

Looks like it was just the test leaking. Should be fixed at r14509

comment:2 by dbaston, 8 years ago

It's more than the test. On line 1782, lwgeom_release is leaving sub_mpt->geoms intact, and the reference isn't being given to anyone else. Adding a lwfree(sub_mpt->geoms) on the following line fixes it but somehow feels wrong. Is it?

What do you think about adding a lwmpoint_add_lwmpoint that would handle this situation?

comment:3 by pramsey, 8 years ago

The answer might be a review of the use and semantics of lwgeom_release. i don't think it's widely used, so we can tweak it slightly. I think it's fair to say the semantic is: "release the container but leave the contained". for for a lienstring, it would leave the pointarray intact, and for a polygon it would leave the pointarrays intact, but drop the rings[] array. And for collections it would leave the sub-geometries intact but lose the geoms[]. But possibly it's being used somewhere outside that semantic box.

comment:4 by robe, 8 years ago

Milestone: PostGIS 2.3.0PostGIS 2.4.0

comment:5 by dbaston, 8 years ago

Should we just fix the leak directly for this release?

comment:6 by strk, 8 years ago

Fix in trunk, check with valgrind, mark for backport if everyone's happy

comment:7 by dbaston, 7 years ago

Priority: mediumblocker

comment:8 by robe, 7 years ago

Milestone: PostGIS 2.4.0PostGIS 2.5.0

comment:9 by pramsey, 7 years ago

Well, I tried extending the semantic of lwgeom_release very slightly, to also free the underlying array containing the geoms, but unfortunately the topology code is tied to the existing semantic. It's the only major user of lwgeom_release, almost nothing else does. Here's what I tried

void
lwgeom_release(LWGEOM *lwgeom)
{
	if ( ! lwgeom )
		lwerror("lwgeom_release: someone called on 0x0");

	LWDEBUGF(3, "releasing type %s", lwtype_name(lwgeom->type));

	if (lwgeom_is_collection(lwgeom)) 
	{
		LWCOLLECTION *lwcol = lwgeom_as_lwcollection(lwgeom);
		if (lwcol && lwcol->geoms) 
			lwfree(lwcol->geoms);
	}
	
	if (lwgeom_get_type(lwgeom) == POLYGONTYPE) 
	{
		LWPOLY *lwpoly = lwgeom_as_lwpoly(lwgeom);
		if (lwpoly && lwpoly->rings) 
			lwfree(lwpoly->rings);
	}

	/* Drop bounding box (always a copy) */
	if ( lwgeom->bbox )
	{
		LWDEBUGF(3, "lwgeom_release: releasing bbox. %p", lwgeom->bbox);
		lwfree(lwgeom->bbox);
	}
	lwfree(lwgeom);

}

I'm just going to do the single-point patch you proposed Dan, to fix this particular function. A library-wide fix on the semantics of cloning/freeing/releasing is beyond scope… really at any time at all.

comment:10 by pramsey, 7 years ago

Resolution: fixed
Status: newclosed

Point fix applied to trunk at r15640

comment:11 by robe, 7 years ago

Keywords: history added
Milestone: PostGIS 2.5.0PostGIS 2.4.0
Note: See TracTickets for help on using tickets.