Bug 19794 - [CURL] Crash if a local file has an unknow extension
Summary: [CURL] Crash if a local file has an unknow extension
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Page Loading (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Major
Assignee: Marco Barisione
URL:
Keywords: Curl
Depends on:
Blocks:
 
Reported: 2008-06-27 11:48 PDT by Marco Barisione
Modified: 2009-08-17 15:51 PDT (History)
5 users (show)

See Also:


Attachments
Set the MIME type for files with an unknown extension to "application/octet-stream" (1.79 KB, patch)
2008-07-01 03:46 PDT, Marco Barisione
zecke: review-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Marco Barisione 2008-06-27 11:48:02 PDT
MIMETypeRegistry::getMIMETypeForPath returns empty strings if the extension is not known. This also causes a crash because of the CURL backend setting the mime type to an empty string if the local file has an unknown extension.

From the code using the function and in particular from the comment in FrameLoaderClient::objectContentType() I think that the right behaviour is that getMIMETypeForPath should return "application/octet-stream" upon failure, while getMIMETypeForExtension should return an empty string.
Comment 1 Marco Barisione 2008-06-27 12:05:15 PDT
Sorry, I realise only now that this is not GTK-specific code and that other ports have the same behaviour without breaking anything.

I still wonder why MIMETypeRegistry::getMIMETypeForPath() returns an empty string if the extension is not known but application/octet-stream if there is no extension, however the right fix is in the CURL code.
Comment 2 Marco Barisione 2008-07-01 03:46:59 PDT
Created attachment 22023 [details]
Set the MIME type for files with an unknown extension to  "application/octet-stream"
Comment 3 Wouter Bolsterlee 2008-07-16 12:29:03 PDT
> MIMETypeRegistry::getMIMETypeForPath returns
> empty strings if the extension is not known.

Why is that? Why not a null value or something like that?
Comment 4 Eric Seidel (no email) 2008-08-01 16:57:52 PDT
Comment on attachment 22023 [details]
Set the MIME type for files with an unknown extension to  "application/octet-stream"

Why does curl crash when passed an empty string?  The right fix is right next to the line of curl code which is going to crash...  At least an ASSERT should go next to said line.
Comment 5 Marco Barisione 2008-08-06 03:59:12 PDT
I think that we have 3 different problems:

1. RegularExpression::match() should not pass a null string to jsRegExpExecute. I opened a separate bug report for this, see bug #20295.

2. getMIMETypeForPath() returns "application/octet-stream" if there is not extension but getMIMETypeForExtension() returns a null string. If don't like this difference because it's confusing, but we have code that relies on that and also the win port has the same behaviour but it doesn't crash as it doesn't use the MIMETypeRegistry in this case. I don't know what the mac port does because it calls a function without public source code. The qt port always defaults to "application/octet-stream" so it's not affected by this problem. The soup back-end uses a function in gio for this instead of the MIMETypeRegistry, so it's not affected.
Unless someone (Alp?) thinks that changing getMIMETypeForExtension() to never return a null string is the right behaviour I think that my previous patch is useful, so I'm setting the review flag again

3. For now we don't have downloads in the GTK ports, so WebKit tries to show also unknown mime types. Of course this is wrong but crashing in this case is wronger :)

Comment 6 Holger Freyther 2008-08-11 18:24:06 PDT
Comment on attachment 22023 [details]
Set the MIME type for files with an unknown extension to  "application/octet-stream"

Please patch MIMETypeRegistry::getMIMETypeForExtension (WebCore/platform/gtk/MIMETypeRegistryGtk.cpp) to have it return application/octet-stream by default, this would match with the default return of ::getMIMETypeForPath.
Comment 7 Marco Barisione 2008-08-12 02:12:10 PDT
(In reply to comment #6)
> (From update of attachment 22023 [details] [edit])
> Please patch MIMETypeRegistry::getMIMETypeForExtension
> (WebCore/platform/gtk/MIMETypeRegistryGtk.cpp) to have it return
> application/octet-stream by default, this would match with the default return
> of ::getMIMETypeForPath.

Are you sure that this is the right behaviour? It's what I wanted to do at the beginning but then I found code relying on the null return value and also other ports do the same as the GTK one.

Comment 8 Marco Barisione 2008-09-24 09:21:14 PDT
Any new opinion on this?
Comment 9 Jan Alonzo 2008-10-24 20:08:47 PDT
(In reply to comment #8)
> Any new opinion on this?
> 

String MIMETypeRegistry::getMIMETypeForPath(const String& path) (platform/MIMETypeRegistry.cpp) already returns "application/octet-stream" if it can't find a mime type. We need to figure out why it's returning something else (empty string in this case) and not application/octet-stream. I would've been easier if you can provide at least a test url / case for this.

Here's the code i'm talking about:

String MIMETypeRegistry::getMIMETypeForPath(const String& path)
{
    int pos = path.reverseFind('.');
    if (pos >= 0) {
        String extension = path.substring(pos + 1);
        String result = getMIMETypeForExtension(extension);
        if (result.length())
            return result;
    }
    return "application/octet-stream";
}
Comment 10 Gustavo Noronha (kov) 2009-02-26 15:33:31 PST
Removing the Gtk keyword since Curl is no longer used by the GTK+ port.
Comment 11 Brent Fulgham 2009-08-14 16:09:43 PDT
I wonder if this is the same as Bug 28312?
Comment 12 Brent Fulgham 2009-08-17 15:51:35 PDT
I believe this is resolved by Bug 28312 for the following reasons:

1.  Full header processing prior to Bug 28312 was not being performed for local files.
2.  If the header processing is not performed, no URL is every set in the request object.
3.  If the URL is not set, the attempt to retrieve MIME type crashes due to null access in the HashMap.

Since there is no specific test case documented in this bug, and my attempts to access local files with meaningless extensions does not generate any failures with current WebKit builds, I am closing this bug as resolved.

If you do continue to see this bug, please provide a simple test case I can use to see what's going on.