Bug 212689 - [EME] CDMProxyInstance should not keep CDMInstanceSessions hard referenced
Summary: [EME] CDMProxyInstance should not keep CDMInstanceSessions hard referenced
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Xabier Rodríguez Calvar
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2020-06-03 02:11 PDT by Xabier Rodríguez Calvar
Modified: 2020-06-09 01:24 PDT (History)
13 users (show)

See Also:


Attachments
Patch (13.14 KB, patch)
2020-06-03 02:18 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff
Patch (14.53 KB, patch)
2020-06-03 08:52 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff
Patch (14.09 KB, patch)
2020-06-06 08:30 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff
Patch (13.15 KB, patch)
2020-06-08 07:34 PDT, Xabier Rodríguez Calvar
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Xabier Rodríguez Calvar 2020-06-03 02:11:33 PDT
[EME] CDMProxy should not keep CDMInstanceSessions hard referenced
Comment 1 Xabier Rodríguez Calvar 2020-06-03 02:18:05 PDT
Created attachment 400909 [details]
Patch
Comment 2 Xabier Rodríguez Calvar 2020-06-03 08:52:20 PDT
Created attachment 400922 [details]
Patch
Comment 3 Charlie Turner 2020-06-05 03:22:09 PDT
Comment on attachment 400922 [details]
Patch

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

I don't know about the IDL stuff so I only have a question about the test coverage of the null session purger.

> Source/WebCore/platform/encryptedmedia/CDMProxy.cpp:319
> +        return current == value;

Why do you have to create an empty WeakPtr object to check if it has been cleared? It looks like WeakPtr::operator bool() would be good enough using removeIf?

> Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.cpp:466
> +    return adoptRef(newSession);

AFAICT, the test checks this alone (i.e., the double ref bump that existed before being fixed). But the meat of this patch is the WeakPtr and the null session purger, I don't understand how the test checks that?
Comment 4 Xabier Rodríguez Calvar 2020-06-06 08:25:14 PDT
(In reply to Charlie Turner from comment #3)
> > Source/WebCore/platform/encryptedmedia/CDMProxy.cpp:319
> > +        return current == value;
> 
> Why do you have to create an empty WeakPtr object to check if it has been
> cleared? It looks like WeakPtr::operator bool() would be good enough using
> removeIf?
> 
> > Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.cpp:466
> > +    return adoptRef(newSession);
> 
> AFAICT, the test checks this alone (i.e., the double ref bump that existed
> before being fixed). But the meat of this patch is the WeakPtr and the null
> session purger, I don't understand how the test checks that?

The session purger is not a big deal, just an insurance but as we discussed in private it is not a big deal, so I am removing it. The rest is tested so I think we'll be good in the next patch.
Comment 5 Xabier Rodríguez Calvar 2020-06-06 08:30:40 PDT
Created attachment 401260 [details]
Patch
Comment 6 Charlie Turner 2020-06-07 03:57:59 PDT
(In reply to Xabier Rodríguez Calvar from comment #4)
> (In reply to Charlie Turner from comment #3)
> > > Source/WebCore/platform/encryptedmedia/CDMProxy.cpp:319
> > > +        return current == value;
> > 
> > Why do you have to create an empty WeakPtr object to check if it has been
> > cleared? It looks like WeakPtr::operator bool() would be good enough using
> > removeIf?
> > 
> > > Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.cpp:466
> > > +    return adoptRef(newSession);
> > 
> > AFAICT, the test checks this alone (i.e., the double ref bump that existed
> > before being fixed). But the meat of this patch is the WeakPtr and the null
> > session purger, I don't understand how the test checks that?
> 
> The session purger is not a big deal, just an insurance but as we discussed
> in private it is not a big deal, so I am removing it. The rest is tested so
> I think we'll be good in the next patch.

OK, I defer the review of the internals stuff to someone who knows that, perhaps Jer could take a look?
Comment 7 youenn fablet 2020-06-08 01:03:43 PDT
Comment on attachment 401260 [details]
Patch

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

> Source/WebCore/Modules/encryptedmedia/MediaKeySession.h:89
> +    unsigned internalInstanceSessionObjectRefCount() { return m_instanceSession->refCount(); }

const

> Source/WebCore/Modules/encryptedmedia/MediaKeys.h:83
> +    unsigned internalInstanceObjectRefCount() { return m_instance->refCount(); }

const

> Source/WebCore/platform/encryptedmedia/CDMProxy.cpp:316
> +void CDMInstanceProxy::trackSession(WeakPtr<CDMInstanceSessionProxy>&& session)

It might be better to use trackSession(CDMInstanceSessionProxy& session).
This way, we are sure session is not null.

> Source/WebCore/platform/encryptedmedia/CDMProxy.h:201
> +    Vector<WeakPtr<CDMInstanceSessionProxy>> m_sessions;

Do we care of m_sessions order? Could we use a WeakHashSet here?
Looking at the code, I do not see where m_sessions is used/read, the only case I see is trackSession.

> Source/WebCore/platform/encryptedmedia/clearkey/CDMClearKey.cpp:464
> +    CDMInstanceSessionClearKey* newSession = new CDMInstanceSessionClearKey(*this);

auto*
It might be a tad better to write it as:
auto newSession = adoptRef(...)
trackSession(newSession.get());
return newSession;

This way, the adoptRef is happening sooner, just after the allocation.

> Source/WebCore/testing/Internals.h:53
> +#include "MediaKeys.h"

Can we forward declare MediaKeySession and MediaKeys?

> Source/WebCore/testing/Internals.h:1032
> +    unsigned mediaKeySessionInternalInstanceSessionObjectRefCount(MediaKeySession&);

Could be const&
Comment 8 Xabier Rodríguez Calvar 2020-06-08 07:34:15 PDT
Created attachment 401333 [details]
Patch

(In reply to youenn fablet from comment #7)
> > Source/WebCore/testing/Internals.h:53
> > +#include "MediaKeys.h"
> 
> Can we forward declare MediaKeySession and MediaKeys?

Nope, compiler complains.

The rest is handled.
Comment 9 youenn fablet 2020-06-08 08:58:25 PDT
Comment on attachment 401333 [details]
Patch

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

> Source/WebCore/platform/encryptedmedia/CDMProxy.cpp:319
> +    m_sessions.add(session);

It seems m_sessions is only used here.
Can we even go further and remove m_sessions?
Comment 10 youenn fablet 2020-06-08 08:59:03 PDT
(In reply to Xabier Rodríguez Calvar from comment #8)
> Created attachment 401333 [details]
> Patch
> 
> (In reply to youenn fablet from comment #7)
> > > Source/WebCore/testing/Internals.h:53
> > > +#include "MediaKeys.h"
> > 
> > Can we forward declare MediaKeySession and MediaKeys?
> 
> Nope, compiler complains.

That is a bit sad. What is the compilation error?
Comment 11 Xabier Rodríguez Calvar 2020-06-09 01:18:55 PDT
(In reply to youenn fablet from comment #9)
> > Source/WebCore/platform/encryptedmedia/CDMProxy.cpp:319
> > +    m_sessions.add(session);
> 
> It seems m_sessions is only used here.
> Can we even go further and remove m_sessions?

Nope, it will be used later in other patches.

(In reply to youenn fablet from comment #10)
> (In reply to Xabier Rodríguez Calvar from comment #8)
> > Created attachment 401333 [details]
> > Patch
> > 
> > (In reply to youenn fablet from comment #7)
> > > > Source/WebCore/testing/Internals.h:53
> > > > +#include "MediaKeys.h"
> > > 
> > > Can we forward declare MediaKeySession and MediaKeys?
> > 
> > Nope, compiler complains.
> 
> That is a bit sad. What is the compilation error?

Easy:

DerivedSources/WebCore/JSInternals.cpp:12612:102: error: no viable conversion from 'WebCore::MediaKeys' to incomplete type 'const MediaKeys'
    auto result = JSValue::encode(toJS<IDLUnsignedLong>(impl.mediaKeysInternalInstanceObjectRefCount(*mediaKeys)));
                                                                                                     ^~~~~~~~~~
/home/calvaris/gnome/WebKit/Source/WebCore/testing/Internals.h:53:7: note: forward declaration of 'MediaKeys'
class MediaKeys;
      ^
/home/calvaris/gnome/WebKit/Source/WebCore/testing/Internals.h:1028:70: note: passing argument to parameter here
    unsigned mediaKeysInternalInstanceObjectRefCount(const MediaKeys&) const;
                                                                     ^
Comment 12 EWS 2020-06-09 01:23:33 PDT
Committed r262781: <https://trac.webkit.org/changeset/262781>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 401333 [details].
Comment 13 Radar WebKit Bug Importer 2020-06-09 01:24:20 PDT
<rdar://problem/64154743>
Comment 14 Radar WebKit Bug Importer 2020-06-09 01:24:21 PDT
<rdar://problem/64154744>