[icedtea-web] RFC: Fix for cookie handling bug (rhbz# 665104)

Deepak Bhole dbhole at redhat.com
Wed Dec 22 14:18:28 PST 2010


* Dr Andrew John Hughes <ahughes at redhat.com> [2010-12-22 17:02]:
> On 16:38 Wed 22 Dec     , Deepak Bhole wrote:
> > * Deepak Bhole <dbhole at redhat.com> [2010-12-22 16:38]:
> > > Hi,
> > > 
> > > There is a bug in the current version of the plugin that causes the
> > > first cookie set by a server to be skipped:
> > > https://bugzilla.redhat.com/show_bug.cgi?id=665104
> > > 
> > > Attached patch fixes the issue.
> > > 
> > > ChangeLog:
> > > 
> > > 2010-12-22  Deepak Bhole <dbhole at redhat.com>
> > > 
> > >    RH665104: OpenJDK Firefox Java plugin loses a cookie
> > >    * plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java
> > >    (parseReturn): Skip one less space so that the first cookie is not
> > >    skipped.
> > >    * NEWS: Updated.
> > > 
> > > Cheers,
> > > Deepak
> > 
> > Forgot to mention -- this is a very valid bug and I think it deserves to
> > be backported to 1.0 branch.
> > 
> 
> I was going to suggest it for 1.0 :-)
> 
> Approved for both HEAD and 1.0.
> 

Thanks! :) 

Pushed to HEAD and 1.0

Cheers,
Deepak

> > Cheers,
> > Deepak
> > 
> > > diff -r bbbe02c58ddc NEWS
> > > --- a/NEWS	Mon Dec 20 13:37:59 2010 -0500
> > > +++ b/NEWS	Wed Dec 22 16:33:18 2010 -0500
> > > @@ -23,6 +23,7 @@
> > >    - PR593: Increment of invalidated iterator in IcedTeaPluginUtils (patch from barbara.xxx1975 at libero.it)
> > >    - PR597: Entities are parsed incorrectly in PARAM tag in applet plugin
> > >    - Applets are now double-buffered to eliminate flicker in ones that do heavy drawing
> > > +  - RH665104: OpenJDK Firefox Java plugin loses a cookie
> > >  * NetX
> > >    - Add a new option -Xclearcache
> > >    - Interfaces javax.jnlp.IntegrationService and javax.jnlp.DownloadService2 are now available
> > > diff -r bbbe02c58ddc plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java
> > > --- a/plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java	Mon Dec 20 13:37:59 2010 -0500
> > > +++ b/plugin/icedteanp/java/sun/applet/PluginCookieInfoRequest.java	Wed Dec 22 16:33:18 2010 -0500
> > > @@ -56,12 +56,16 @@
> > >  
> > >          PluginDebug.debug("PluginCookieInfoRequest GOT: " + cookieInfo);
> > >  
> > > -        // Skip the first 5 components. We are guaranteed 5 components, 
> > > -        // so no index -1 to worry about
> > > +        // skip 'plugin' marker
> > >          cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
> > > +
> > > +        // skip 'PluginCookieInfo' tag
> > >          cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
> > > +
> > > +        // skip 'reference' tag
> > >          cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
> > > -        cookieInfo = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
> > > +
> > > +        // skip reference # and get the rest
> > >          cookieString = cookieInfo.substring(cookieInfo.indexOf(' ') + 1);
> > >  
> > >          setDone(true);
> > 
> 
> -- 
> Andrew :)
> 
> Free Java Software Engineer
> Red Hat, Inc. (http://www.redhat.com)
> 
> Support Free Java!
> Contribute to GNU Classpath and IcedTea
> http://www.gnu.org/software/classpath
> http://icedtea.classpath.org
> PGP Key: 94EFD9D8 (http://subkeys.pgp.net)
> Fingerprint = F8EF F1EA 401E 2E60 15FA  7927 142C 2591 94EF D9D8



More information about the distro-pkg-dev mailing list