Bug 59072 - LEAK: SVGElement leaks when detaching it in a pending resource state
Summary: LEAK: SVGElement leaks when detaching it in a pending resource state
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: SVG (show other bugs)
Version: 528+ (Nightly build)
Hardware: PC All
: P2 Normal
Assignee: Nikolas Zimmermann
URL:
Keywords:
: 59084 (view as bug list)
Depends on: 59084
Blocks:
  Show dependency treegraph
 
Reported: 2011-04-20 21:11 PDT by Leo Yang
Modified: 2011-05-02 07:15 PDT (History)
5 users (show)

See Also:


Attachments
Patch (2.51 KB, patch)
2011-04-20 22:40 PDT, Leo Yang
no flags Details | Formatted Diff | Diff
New approach (2.48 KB, patch)
2011-04-21 07:33 PDT, Nikolas Zimmermann
no flags Details | Formatted Diff | Diff
Patch (10.55 KB, patch)
2011-04-22 04:51 PDT, Nikolas Zimmermann
krit: review-
Details | Formatted Diff | Diff
Patch v2 (22.61 KB, patch)
2011-04-27 01:24 PDT, Nikolas Zimmermann
no flags Details | Formatted Diff | Diff
Patch v3 (22.79 KB, patch)
2011-04-27 01:35 PDT, Nikolas Zimmermann
krit: review-
Details | Formatted Diff | Diff
Patch v4 (24.59 KB, patch)
2011-05-01 06:24 PDT, Nikolas Zimmermann
krit: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Leo Yang 2011-04-20 21:11:54 PDT
SVG <use> element is leaking when detaching from pending on resource state.

<?xml version="1.0" standalone="no"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.0" width="400" height="400">
    <use xlink:href="#undefined" id="use" />
</svg>

the above document will cause <use> be leaking.

patch is coming soon.
Comment 1 Leo Yang 2011-04-20 22:40:23 PDT
Created attachment 90495 [details]
Patch
Comment 2 Leo Yang 2011-04-21 02:42:56 PDT
This is a generic problem for SVGElement. So changing title.
Comment 3 Nikolas Zimmermann 2011-04-21 07:09:08 PDT
As discussed on IRC:
SVGElement::removedFromDocument() needs to be implemented, that clears any pending resource state.
Aka removes the offending element from the SVGDocumentExtensions HashSet.


    typedef HashSet<RefPtr<SVGStyledElement> > SVGPendingElements;

Some time ago this HashSet was changed to contain RefPtr, as we saw dangling pointer crashes. The reason is now clear:

<rect fill="url(#foo)"> causes the <rect> to be present in the HashSet. If foo never appears, and we remove the <rect> from DOM, or destruct the document, the RefPtr in SVGPendingElements is still present!

The RefCounting itself is relatively new, but now the reason is clear why we had dangling pointer crashes in first place: we're not cleaning up this SVGPendingElements HashSet properly!
Comment 4 Nikolas Zimmermann 2011-04-21 07:09:41 PDT
(In reply to comment #3)
> As discussed on IRC:
> SVGElement::removedFromDocument() needs to be implemented, that clears any pending resource state.
> Aka removes the offending element from the SVGDocumentExtensions HashSet.
> 
> 
>     typedef HashSet<RefPtr<SVGStyledElement> > SVGPendingElements;
> 
> Some time ago this HashSet was changed to contain RefPtr, as we saw dangling pointer crashes. The reason is now clear:
> 
> <rect fill="url(#foo)"> causes the <rect> to be present in the HashSet. If foo never appears, and we remove the <rect> from DOM, or destruct the document, the RefPtr in SVGPendingElements is still present!
> 
> The RefCounting itself is relatively new, but now the reason is clear why we had dangling pointer crashes in first place: we're not cleaning up this SVGPendingElements HashSet properly!

As discussed with Leo on IRC, all we need to do to fix is:
implement SVGElement::removedFromDocument, similar to insertedIntoDocument, that just removes the pending resource...
Comment 5 Antti Koivisto 2011-04-21 07:14:24 PDT
This is leaking SVG documents too (due to elements holding guard refs), https://bugs.webkit.org/show_bug.cgi?id=58889.
Comment 6 Nikolas Zimmermann 2011-04-21 07:33:27 PDT
Created attachment 90528 [details]
New approach

This should fix the problem, Antti is going to try.
Comment 7 Nikolas Zimmermann 2011-04-21 07:39:59 PDT
*** Bug 59084 has been marked as a duplicate of this bug. ***
Comment 8 Eric Seidel (no email) 2011-04-21 09:10:12 PDT
Comment on attachment 90528 [details]
New approach

View in context: https://bugs.webkit.org/attachment.cgi?id=90528&action=review

> Source/WebCore/svg/SVGElement.cpp:67
> +static inline void clearPendingResourceState(SVGDocumentExtensions* extensions, const String& id)

I'm confused.  Why wouldnt this go on SVGDocumentExtensions.  And can we add an ASSERT that would catch the leak?
Comment 9 Nikolas Zimmermann 2011-04-21 10:35:52 PDT
Comment on attachment 90528 [details]
New approach

Wrong approach, doesn't fix anything. I'm investigating...
Comment 10 Nikolas Zimmermann 2011-04-22 04:51:27 PDT
Created attachment 90692 [details]
Patch

New approach, the previous patch was just plain wrong :-) Included several testcases that leak in trunk and stop with that patch.
Comment 11 Leo Yang 2011-04-22 06:13:39 PDT
(In reply to comment #10)
> Created an attachment (id=90692) [details]
> Patch
> 
> New approach, the previous patch was just plain wrong :-) Included several testcases that leak in trunk and stop with that patch.

I did something like this today. But I think we maybe do this more efficient. My thought is the following.

  add a function like
  virtual Vector<AtomticString> SVGElement::collectPendingResourceId()

  add a resource id parameter to SVGDocumentExtensions::removeElementFromPendingResources, make it like
  void SVGDocumentExtensions::removeElementFromPendingResources(const AtomicString& resurctId SVGElement* element)

  In SVGElement::removedFromDocument, we can call removeElementFromPendingResources for each resource which are collected by collectPendingResourceId().

  This enable us to implement removeElementFromPendingResources more efficient because 1) we can quick reject to call removeElementFromPendingResources if the vector is empty; 2)otherwise, we can use resourceId to find pending elements quickly.

  The implementation of SVGElement::collectPendingResourceId() like

  {
       return SVGResources::collectPendingResourceId(this); //static function
  }

  Vector<AtomicString> SVGResources::collectPendingResourceId(SVGElement* element)
  {
       // Do something like SVGResources::buildCachedResource()
       // use element's style to collect pending resource id.
  }

  For other elements like SVGUseElement, the implmentation of collectPendingResourceId like

   {
       Vector<AtomicString> vector = Super::collectPendingResourceId();
       if (m_isPendingResource) {
           vector.append(m_resourceId);
           // Do other clear things;
       }
       return vector;
   }

  One thing that I'm not sure is that I don't know if SVGElement's style is
  available when we call collectPendingResourceId

  The above is just my thought, but might be wrong :p
Comment 12 Nikolas Zimmermann 2011-04-22 06:48:11 PDT
(In reply to comment #11)
> (In reply to comment #10)
> > Created an attachment (id=90692) [details] [details]
> > Patch
> > 
> > New approach, the previous patch was just plain wrong :-) Included several testcases that leak in trunk and stop with that patch.
> 
> I did something like this today. But I think we maybe do this more efficient. 
>   Vector<AtomicString> SVGResources::collectPendingResourceId(SVGElement* element)
>   {
>        // Do something like SVGResources::buildCachedResource()
>        // use element's style to collect pending resource id.
>   }

This is problematic, we need to remove the pending resources that were initially registered.
Think of <rect fill="url(#foo)", if I change the url to #bar using JS, how would you handle that?
Your collectPendingResourceId would return #bar, and we'd miss to remove the #foo reference from the HashSet in the SVGDocumentExtensions.

> 
>   One thing that I'm not sure is that I don't know if SVGElement's style is
>   available when we call collectPendingResourceId
Not necessarily...
> 
>   The above is just my thought, but might be wrong :p
What do you think about the approach in my patch? you have speed concerns?
Comment 13 Leo Yang 2011-04-22 07:17:39 PDT
(In reply to comment #12)
> (In reply to comment #11)
> > (In reply to comment #10)
> > > Created an attachment (id=90692) [details] [details] [details]
> > > Patch
> > > 
> > > New approach, the previous patch was just plain wrong :-) Included several testcases that leak in trunk and stop with that patch.
> > 
> > I did something like this today. But I think we maybe do this more efficient. 
> >   Vector<AtomicString> SVGResources::collectPendingResourceId(SVGElement* element)
> >   {
> >        // Do something like SVGResources::buildCachedResource()
> >        // use element's style to collect pending resource id.
> >   }
> 
> This is problematic, we need to remove the pending resources that were initially registered.
> Think of <rect fill="url(#foo)", if I change the url to #bar using JS, how would you handle that?
> Your collectPendingResourceId would return #bar, and we'd miss to remove the #foo reference from the HashSet in the SVGDocumentExtensions.
> 
> > 
> >   One thing that I'm not sure is that I don't know if SVGElement's style is
> >   available when we call collectPendingResourceId
> Not necessarily...
> > 
> >   The above is just my thought, but might be wrong :p
> What do you think about the approach in my patch? you have speed concerns?
The approach will work. But every SVGElement costs time which is taken by removeElementFromPendingReources even if it has no pending resource. And elements which have no pending resource are very common. Maybe adding a bit to SVGElement as a hint of pending on resources can reduce most uncessary calls.
Comment 14 Dirk Schulze 2011-04-22 09:53:08 PDT
Comment on attachment 90692 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=90692&action=review

> Source/WebCore/svg/SVGDocumentExtensions.cpp:214
> +void SVGDocumentExtensions::addPendingResource(const AtomicString& id, PassRefPtr<SVGElement> obj)

I wonder why you need this change. Or better: why did it work before? None-styleable elements can be pending resources or could need pending resources.

> Source/WebCore/svg/SVGDocumentExtensions.cpp:242
> +    if (m_pendingResources.isEmpty())
> +        return;

To Leo's comment. We have to call SVGDocumentExtensions for animations anyway. And if the element doesn't have pending resources we return earlier.
Comment 15 Nikolas Zimmermann 2011-04-22 11:13:59 PDT
(In reply to comment #14)
> (From update of attachment 90692 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=90692&action=review
> 
> > Source/WebCore/svg/SVGDocumentExtensions.cpp:214
> > +void SVGDocumentExtensions::addPendingResource(const AtomicString& id, PassRefPtr<SVGElement> obj)
> 
> I wonder why you need this change. Or better: why did it work before? None-styleable elements can be pending resources or could need pending resources.
Nope only SVGStyledElements use this framework. The question is correct, the stuff calling add/removePendingResources should be in SVGStyledElements dtor, not in SVGElement.
I'm looking into it...

> > Source/WebCore/svg/SVGDocumentExtensions.cpp:242
> > +    if (m_pendingResources.isEmpty())
> > +        return;
> 
> To Leo's comment. We have to call SVGDocumentExtensions for animations anyway. And if the element doesn't have pending resources we return earlier.
Comment 16 Leo Yang 2011-04-22 18:11:01 PDT
(In reply to comment #14)
> (From update of attachment 90692 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=90692&action=review
> 
> > Source/WebCore/svg/SVGDocumentExtensions.cpp:214
> > +void SVGDocumentExtensions::addPendingResource(const AtomicString& id, PassRefPtr<SVGElement> obj)
> 
> I wonder why you need this change. Or better: why did it work before? None-styleable elements can be pending resources or could need pending resources.
> 
> > Source/WebCore/svg/SVGDocumentExtensions.cpp:242
> > +    if (m_pendingResources.isEmpty())
> > +        return;
> 
> To Leo's comment. We have to call SVGDocumentExtensions for animations anyway. And if the element doesn't have pending resources we return earlier.
How about m_pendingResources is not empty? Consider a few SVGStyledElements in a document are pending on resources, which means m_pendingResources is not empty, but some other SVGStyledElements in the document aren't. Every SVGStyledElement not in the pending map also will cost the time of the loop.
Comment 17 Nikolas Zimmermann 2011-04-23 00:40:52 PDT
(In reply to comment #13)
> (In reply to comment #12)
> > (In reply to comment #11)
> > > (In reply to comment #10)
> > > > Created an attachment (id=90692) [details] [details] [details] [details]
> > > > Patch
> > > > 
> > > > New approach, the previous patch was just plain wrong :-) Included several testcases that leak in trunk and stop with that patch.
> > > 
> > > I did something like this today. But I think we maybe do this more efficient. 
> > >   Vector<AtomicString> SVGResources::collectPendingResourceId(SVGElement* element)
> > >   {
> > >        // Do something like SVGResources::buildCachedResource()
> > >        // use element's style to collect pending resource id.
> > >   }
> > 
> > This is problematic, we need to remove the pending resources that were initially registered.
> > Think of <rect fill="url(#foo)", if I change the url to #bar using JS, how would you handle that?
> > Your collectPendingResourceId would return #bar, and we'd miss to remove the #foo reference from the HashSet in the SVGDocumentExtensions.
> > 
> > > 
> > >   One thing that I'm not sure is that I don't know if SVGElement's style is
> > >   available when we call collectPendingResourceId
> > Not necessarily...
> > > 
> > >   The above is just my thought, but might be wrong :p
> > What do you think about the approach in my patch? you have speed concerns?
> The approach will work. But every SVGElement costs time which is taken by removeElementFromPendingReources even if it has no pending resource. And elements which have no pending resource are very common. Maybe adding a bit to SVGElement as a hint of pending on resources can reduce most uncessary calls.
You're right, though adding anything to SVGElement/SVGStyledElement is a bad idea, as it enlarges the size of all these classes, even though it's mostly unused. so I've used SVGElementRareData as place to track whether the SVGStyledElement is pending or not.

Updating patch soon...
Comment 18 Nikolas Zimmermann 2011-04-23 00:42:34 PDT
(In reply to comment #14)
> (From update of attachment 90692 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=90692&action=review
> 
> > Source/WebCore/svg/SVGDocumentExtensions.cpp:214
> > +void SVGDocumentExtensions::addPendingResource(const AtomicString& id, PassRefPtr<SVGElement> obj)
> 
> I wonder why you need this change. Or better: why did it work before? None-styleable elements can be pending resources or could need pending resources.
It turns out all resources that can be pending are SVGStyledElements. I'm reverting that part of the patch, and move the code where it belongs (from SVGElement to SVGStyledElement).

> 
> > Source/WebCore/svg/SVGDocumentExtensions.cpp:242
> > +    if (m_pendingResources.isEmpty())
> > +        return;
> 
> To Leo's comment. We have to call SVGDocumentExtensions for animations anyway. And if the element doesn't have pending resources we return earlier.
Nope, that was exactly Leos point. We only exit earlier if needsPendingResourceHandling() is false.
And by-default we return true there for every SVGStyledElement, only false for a few (filter, marker, mask, etc..). So we have to track pending resources state explicitely in SVGStyledElement oherwhise we're always doing extra work, so Leo is right.
Comment 19 Dirk Schulze 2011-04-25 14:19:53 PDT
Comment on attachment 90692 [details]
Patch

r-. See the comments of Niko.
Comment 20 Nikolas Zimmermann 2011-04-27 01:24:19 PDT
Created attachment 91253 [details]
Patch v2
Comment 21 Nikolas Zimmermann 2011-04-27 01:35:26 PDT
Created attachment 91254 [details]
Patch v3

Oops, forgot to update the ChangeLog to reflect the refcounting change.
Comment 22 Leo Yang 2011-04-27 02:30:55 PDT
Comment on attachment 91254 [details]
Patch v3

View in context: https://bugs.webkit.org/attachment.cgi?id=91254&action=review

I just add my comments, not a review :)

> Source/WebCore/svg/SVGElementRareData.h:64
> +    bool isPendingResource() const { return m_isPendingResource; }

Is hasPendingResource() better?

> Source/WebCore/svg/SVGElementRareData.h:65
> +    void setIsPendingResource(bool value) { m_isPendingResource = value; }

Is setHasPendingResource() better?

> Source/WebCore/svg/SVGElementRareData.h:78
> +    bool m_isPendingResource : 1;

ditto: m_hasPendingResource?

> Source/WebCore/svg/SVGStyledElement.cpp:454
> +}

ditto

> Source/WebCore/svg/SVGStyledElement.cpp:459
> +}

ditto

> Source/WebCore/svg/SVGStyledElement.h:56
> +    void setIsPendingResource(bool);

ditto

> Source/WebCore/svg/SVGUseElement.cpp:176
> +            }

I can't understand why this <use>'s href affects the other <use>'s. Shall we call document()->accessSVGExtensions()->removeElementFromPendingResources(this)?
Comment 23 Dirk Schulze 2011-04-27 06:18:43 PDT
Comment on attachment 91254 [details]
Patch v3

View in context: https://bugs.webkit.org/attachment.cgi?id=91254&action=review

Mainly r- because of the wrong style of the tests. Still some open questions on the patch itself.

> Source/WebCore/svg/SVGDocumentExtensions.cpp:251
> +    HashMap<AtomicString, SVGPendingElements*>::iterator end = m_pendingResources.end();

Why can we have multiple resources for one id? Even if the user sets the same id to two different elements, we don't end up with two resources. What am I missing? Ah you try to catch the scenario where the user removes one of the elements and we take the other resource?

>> Source/WebCore/svg/SVGElementRareData.h:64
>> +    bool isPendingResource() const { return m_isPendingResource; }
> 
> Is hasPendingResource() better?

First unofficial reviews. Great! really.

>> Source/WebCore/svg/SVGElementRareData.h:65
>> +    void setIsPendingResource(bool value) { m_isPendingResource = value; }
> 
> Is setHasPendingResource() better?

The naming is correct here. The affected element _is_ a pending resource. But it may have it self pending resources of course.

>> Source/WebCore/svg/SVGElementRareData.h:78
>> +    bool m_isPendingResource : 1;
> 
> ditto: m_hasPendingResource?

Ditto.

>> Source/WebCore/svg/SVGUseElement.cpp:176
>> +            }
> 
> I can't understand why this <use>'s href affects the other <use>'s. Shall we call document()->accessSVGExtensions()->removeElementFromPendingResources(this)?

the use element can have pending resources it self: xlink:hreaf="foo". We need to remove foo from the pending lists. Nevertheless I agree. Why are you doing it if the use element is itself a pending resource? Should this if condition get removed?

> LayoutTests/svg/custom/pending-resource-leak-2.svg:6
> +			layoutTestController.waitUntilDone();

No tabs please. For some reason this is not checked by the style bot :-(

> LayoutTests/svg/custom/pending-resource-leak-3.svg:6
> +			layoutTestController.waitUntilDone();

ditto. The following files have the same problem.
Comment 24 Nikolas Zimmermann 2011-05-01 06:23:17 PDT
(In reply to comment #23)
> (From update of attachment 91254 [details])
> View in context: https://bugs.webkit.org/attachment.cgi?id=91254&action=review
> 
> Mainly r- because of the wrong style of the tests. Still some open questions on the patch itself.
> 
> > Source/WebCore/svg/SVGDocumentExtensions.cpp:251
> > +    HashMap<AtomicString, SVGPendingElements*>::iterator end = m_pendingResources.end();
> 
> Why can we have multiple resources for one id? Even if the user sets the same id to two different elements, we don't end up with two resources. What am I missing? Ah you try to catch the scenario where the user removes one of the elements and we take the other resource?
<rect fill="url(#foo)" stroke="url(#foo)"> that's the scenario :-)

> 
> >> Source/WebCore/svg/SVGElementRareData.h:64
> >> +    bool isPendingResource() const { return m_isPendingResource; }
> > 
> > Is hasPendingResource() better?
> 
> First unofficial reviews. Great! really.
Yeah, it's better, I changed the name.

> 
> >> Source/WebCore/svg/SVGElementRareData.h:65
> >> +    void setIsPendingResource(bool value) { m_isPendingResource = value; }
> > 
> > Is setHasPendingResource() better?
> 
> The naming is correct here. The affected element _is_ a pending resource. But it may have it self pending resources of course.
Wait Leo is right, when we have
<rect fill="url(#foo)" id="rect"/>
Then we call addPendingResource("url(#foo), rectElement).
That doesn't mean rectElement is a pending resource, but it _has_ pending resources, so Leos suggestions is good.

> 
> >> Source/WebCore/svg/SVGUseElement.cpp:176
> >> +            }
> > 
> > I can't understand why this <use>'s href affects the other <use>'s. Shall we call document()->accessSVGExtensions()->removeElementFromPendingResources(this)?
> 
> the use element can have pending resources it self: xlink:hreaf="foo". We need to remove foo from the pending lists. Nevertheless I agree. Why are you doing it if the use element is itself a pending resource? Should this if condition get removed?
Use is special, my changes only mimic the "old way" use handles resources. I tried to change this, but it's really tricky -- we have to postpone cleaning use & pending resources until the point where we use the new shadow DOM creation. Currently RenderSVGShadowTreeRootContainer _manually_ handles pending resources, and calls useElement->buildPendingResource() on its own, that's why we have the check in there and can't remove the condition. This only affects use.

> 
> > LayoutTests/svg/custom/pending-resource-leak-2.svg:6
> > +			layoutTestController.waitUntilDone();
> 
> No tabs please. For some reason this is not checked by the style bot :-(
Fixed.

Uploading a new patch soon..
Comment 25 Nikolas Zimmermann 2011-05-01 06:24:59 PDT
Created attachment 91822 [details]
Patch v4

Fixed Leos & Dirks comments.
Comment 26 Dirk Schulze 2011-05-01 07:34:37 PDT
Comment on attachment 91822 [details]
Patch v4

r=me. You're right with renaming the function.
Comment 27 Nikolas Zimmermann 2011-05-01 07:39:15 PDT
Landed in r85413.