WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
Bug 82396
Reinforce Geolocation to prevent accidental leak of the user position
https://bugs.webkit.org/show_bug.cgi?id=82396
Summary
Reinforce Geolocation to prevent accidental leak of the user position
Benjamin Poulain
Reported
2012-03-27 16:42:31 PDT
Some simple changes can be done to enhance Geolocation in case of programming mistake.
Attachments
Patch
(8.80 KB, patch)
2012-03-27 16:58 PDT
,
Benjamin Poulain
abarth
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Benjamin Poulain
Comment 1
2012-03-27 16:42:58 PDT
Related to <
rdar://problem/11106417
>
Benjamin Poulain
Comment 2
2012-03-27 16:58:20 PDT
Created
attachment 134171
[details]
Patch
Adam Barth
Comment 3
2012-03-27 17:03:57 PDT
Comment on
attachment 134171
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=134171&action=review
> Source/WebCore/Modules/geolocation/Geolocation.cpp:128 > + // If we are here and the Geolocation permission is not approved, something has > + // gone horribly wrong. > + // We bail out to avoid any privacy issue. > + ASSERT(m_geolocation->isAllowed()); > + if (!m_geolocation->isAllowed()) > + return;
Should we CRASH() rather than return here?
Benjamin Poulain
Comment 4
2012-03-27 17:10:08 PDT
> > Source/WebCore/Modules/geolocation/Geolocation.cpp:128 > > + // If we are here and the Geolocation permission is not approved, something has > > + // gone horribly wrong. > > + // We bail out to avoid any privacy issue. > > + ASSERT(m_geolocation->isAllowed()); > > + if (!m_geolocation->isAllowed()) > > + return; > > Should we CRASH() rather than return here?
I have considered that but that seemed a bit extreme. Do you have any input on what is bad enough that we should take down the whole browser? It is difficult to know it an error comes from a security breach or a programming mistake.
Adam Barth
Comment 5
2012-03-27 17:45:03 PDT
> Do you have any input on what is bad enough that we should take down the whole browser? It is difficult to know it an error comes from a security breach or a programming mistake.
It's up to you. The nice thing about crashing in impossible situations is that we'll get crash reports and we can fix the issue. :)
Benjamin Poulain
Comment 6
2012-03-27 17:58:54 PDT
Committed
r112347
: <
http://trac.webkit.org/changeset/112347
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug