Closed Bug 322686 Opened 19 years ago Closed 16 years ago

replacing a local file, then reloading, sometimes claims "file not found"

Categories

(Core :: Networking: File, defect, P1)

PowerPC
macOS
defect

Tracking

()

RESOLVED FIXED

People

(Reporter: phil, Assigned: jaas)

References

()

Details

(Keywords: fixed1.9.1)

Attachments

(1 obsolete file)

User-Agent:       Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8) Gecko/20051111 Firefox/1.5
Build Identifier: Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8) Gecko/20051111 Firefox/1.5

Most text editors will save a file by either:

- writing out a new copy, then renaming it over top of the old one; or
- renaming the old file to a backup name, then writing out a new copy

In either case, the name now addresses a new inode, and this seems to make mozilla sad on OS X.  If I "reload", it claims that the file is not found.  If I go to the URL bar and press enter, it finds it back again.

If I go "Back" then "Forward" then "Reload", it works properly.  This would seem to suggest that something is being cached that gets used during Reload, but discarded during Back/Forward or using the URL bar.

It doesn't always happen -- for example, if I try it on the first local page I visit, it doesn't seem to reproduce.  But if I click a link to another local page, replacing that second page will reproduce.

Reproducible: Always

Steps to Reproduce:
1. Create two local html files; say, one.html with an href to two.html
2. Load one.html
3. Click the link to two.html
4. Rename a file over top of two.html, or save it in vi
5. Press "Reload"
> In either case, the name now addresses a new inode, and this seems to make
> mozilla sad on OS X.

To be clear, Phil means "make Firefox sad".  He's just all old-school.
Assignee: darin → nobody
QA Contact: benc → networking.file
This blocks developers working on appple filesystem. 

Tested with and confirmed with Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9b3pre) Gecko/2007121804 Minefield/3.0b3pre
Status: UNCONFIRMED → NEW
Ever confirmed: true
Actually the reproduce steps in bug 311382 is very nice, sorry marked dup of this. Basically reduced testcase: 

* open a file:// file 
* vi it, save it. 
* click reload  -> file not found. 
This is apparently not a regression, but it's really, really annoying for any web developer working from local disk.  I bet the fix isn't hard, just looks like noone has done any analysis on it yet.  Prematurely marking wanted-1.9.0.x, because blocking-1.9+ is kind of iffy, but we should fix it soon.
Flags: wanted1.9.0.x+
Flags: blocking1.9?
My suspicion is that this is related to the caching that nsLocalFileMac does, and which we don't invalidate when reloading the file URL.  Not sure if we get the right notification in the nsFileURL code, but if we do we could just create a new nsILocalFile on reload and probably win.
Flags: tracking1.9? → blocking1.9?
Flags: blocking1.9? → wanted-next+
No longer minor I don't think -- it crops up way too often.
Severity: minor → major
Flags: blocking1.9.1?
Flags: blocking1.9.1? → blocking1.9.1+
Assignee: nobody → joshmoz
Attached patch fix v1.0 (obsolete) — Splinter Review
So this is really a dupe of bug 307815, which I filed years ago. Our stat caches are egregiously incorrect and they need to go away. That's the real fix for this. I'll have to re-assess the feasibility of that in terms of perf, but my personal opinion is that we should kill them off regardless of perf.

The problem in this specific case is that during the reload a security check calls IsDirectory on the file it is reloading, and IsDirectory errors out because it is using a cached FSRef for the file that went away. The cache didn't get cleared because the change was made externally - it wasn't made via the nsIFile object so the nsIFile object doesn't know about it.
Attachment #339157 - Flags: review?(mstange)
Priority: -- → P1
I filed bug 455828 about removing the FSRef cache altogether, if we do that we don't need the patch here.
Depends on: 455828
Attachment #339157 - Attachment is obsolete: true
Attachment #339157 - Flags: review?(mstange)
Bug 455828 landed on trunk, fixes this.
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Flags: wanted1.9.0.x+ → wanted1.9.0.x-
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Creator:
Created:
Updated:
Size: