Opened 14 years ago

Closed 14 years ago

Last modified 14 years ago

#5520 closed enhancement (invalid)

IsWritable / IsReadable methods do not currently check Write/Read mode bits.

Reported by: ver Owned by: axeld
Priority: normal Milestone: R1
Component: Kits/Storage Kit Version: R1/Development
Keywords: IsWritable IsReadable BFile Cc: ver@…
Blocked By: Blocking:
Platform: All

Description

In BeBook, it says IsReadable and IsWritable methods on BFile: "Note that these functions don't query the actual file to check permissions, they only tell you what the access request was when the BFile object was initialized." which makes me ask.. "Why not?"

The developer is aware of the flag they used when they instantiate a BFile, so these methods seem redundant.

An application (Pe, for example,) must fstat the file (GetStat()), and then sift through mode flags to decipher if the read or write bits are set, which is several lines of code which would likely require a lot of reimplementing.

This patch implements mode checking in IsWritable and IsReadable.

Please note that the file is statted once for each time either of these methods are called. This is done because the mode of the file may change AFTER opening. (Eg, a read-only flagged text file is opened in StyledEdit, the user attempts to save, a warning dialogue appears to inform the user of the read-only setting of the file. The user cancels, updates the mode of the file, and selects Save again. If the stat is done only when the file is initially opened, the mode continue to indicate a read-only status.)

Attachments (1)

libbe_storagekit_file-isreadable_iswritable-checkmode.patch (2.8 KB ) - added by ver 14 years ago.
Revision to stat only if InitCheck() results in B_OK

Download all attachments as: .zip

Change History (12)

comment:1 by ver, 14 years ago

Blocking: 5521 added

comment:2 by ver, 14 years ago

Cc: ver@… added

by ver, 14 years ago

Revision to stat only if InitCheck() results in B_OK

comment:3 by axeld, 14 years ago

Resolution: invalid
Status: newclosed

These changes make no sense - if a file is not writable for you, you cannot open it read/write anyway, hence the additional check is superfluous.

Furthermore, we cannot change original Be API, since we aim for binary compatibility (ie. if we would actually change such a method, we'd need to use symbol versioning in order to make it still work as expected for legacy applications).

comment:4 by axeld, 14 years ago

Blocking: 5521 removed

(In #5521) Besides that #5520 has been marked as invalid, your patch also contains a number of style violations - we do have a coding style and require all of our own sources to comply to it.

Anyway, StyledEdit obviously issues no warning, as writing actually succeeds (since you are the root user), so the file is writable after all. I guess it would make sense to check for the writable bit being set; so while this patch isn't adequate, I'm keeping the bug open.

BTW: Instead of fstat(), there is also a BFile::GetStat() inherited from BStatable.

in reply to:  3 ; comment:4 by ver, 14 years ago

Blocking: 5521 added

Replying to axeld:

These changes make no sense - if a file is not writable for you, you cannot open it read/write anyway, hence the additional check is superfluous.

Why would you set a file mode to r-x if you never check the w? What is the point of IsWritable() otherwise? To tell me I passed THIS flag when I called my BFile constructor? :/

Furthermore, we cannot change original Be API, since we aim for binary compatibility (ie. if we would actually change such a method, we'd need to use symbol versioning in order to make it still work as expected for legacy applications).

Meh, alright, I wasn't aware it would break binary compatibility. So, would the solution be to effectively move this check directly into StyledEdit code, in that case?

in reply to:  4 comment:5 by anevilyak, 14 years ago

Replying to ver:

Why would you set a file mode to r-x if you never check the w? What is the point of IsWritable() otherwise? To tell me I passed THIS flag when I called my BFile constructor? :/

How does a different function call in another place in the program that may have to deal with many different BFile pointers know which flags a given one was opened with? It doesn't, hence those accessors.

comment:6 by axeld, 14 years ago

Blocking: 5521 removed

Meh, alright, I wasn't aware it would break binary compatibility.

It breaks compatibility on a functional level - if an application is using IsWritable(), it will not work as expected all of a sudden anymore.

So, would the solution be to effectively move this check directly into StyledEdit code, in that case?

Yes, indeed, I'm afraid that would be the solution.

comment:7 by stippi, 14 years ago

ver, what you seem to be missing, and what the other commenters write between the lines only (unless I overlooked it), is that the open mode of a BFile object cannot change. You create a new BFile object, or you call SetTo() on an existing BFile object. In both cases, you have to provide the open mode. What you seem to be missing is that this operation will simply fail if the desired open mode is not allowed. You cannot create BFile with B_READ_FILE | B_WRITE_FILE, have it succeed and in reality, the file is only readable. Instead, SetTo() or InitCheck() will return an error code, and you just cannot use the object. That's why there is no problem with IsWritable() and IsReadable() at all, since the mode cannot change after construction or SetTo(). The usecase you pointed out with the user changing permissions of the file makes no sense, since StyledEdit for example would have to reopen the file internally, for any changes to take affect, it won't have an affect on already open BFile objects.

comment:8 by axeld, 14 years ago

There is a point for this for root users, though, since they can just write to write protected files. Normally, editors issue a warning for this, but this has to be specifically coded everywhere.

A handy getter wouldn't be too bad, but that should probably be end up in BStatable, and should get a better fitting name.

in reply to:  8 comment:9 by bonefish, 14 years ago

Replying to axeld:

There is a point for this for root users, though, since they can just write to write protected files. Normally, editors issue a warning for this, but this has to be specifically coded everywhere.

A handy getter wouldn't be too bad, but that should probably be end up in BStatable, and should get a better fitting name.

Yeah, we should call it GetPermissions(). Oh wait, that already exists. ;-)

comment:10 by axeld, 14 years ago

I know about GetPermissions() - I meant a function that also takes into account your group info, for example.

Note: See TracTickets for help on using tickets.