Project

General

Profile

Actions

Bug #19897

open

FUSE should return a different error when attempting to create a file in a project

Added by Peter Amstutz over 1 year ago. Updated over 1 year ago.

Status:
New
Priority:
Normal
Assigned To:
Category:
-
Target version:
Start date:
Due date:
% Done:

0%

Estimated time:
(Total: 0.00 h)
Story points:
0.5

Description

You cannot create a bare file in a Project in the FUSE mount (only in Collections). If you try, you will get I/O error. This is disorienting because I/O error usually means something very bad happened. This should be something else like:

EPERM "Operation not permitted"
ENOSYS "Function not implemented"

Internally it is actually throwing NoImplementedError so catching that exception generally and turning it into ENOSYS would make sense. However the particular function that tries to create a file in a project could throw EPERM since it is more precise semantics.

From discussion: let's go with ENOTSUP "Operation not supported (POSIX.1-2001)."


Subtasks 1 (1 open0 closed)

Task #19950: ReviewNewPeter Amstutz

Actions
Actions #1

Updated by Peter Amstutz over 1 year ago

  • Status changed from New to In Progress
Actions #2

Updated by Peter Amstutz over 1 year ago

  • Description updated (diff)
Actions #3

Updated by Peter Amstutz over 1 year ago

  • Status changed from In Progress to New
Actions #4

Updated by Peter Amstutz over 1 year ago

  • Target version changed from 2023-02-01 sprint to To be groomed
Actions #5

Updated by Peter Amstutz over 1 year ago

  • Assigned To set to Peter Amstutz
Actions #6

Updated by Peter Amstutz over 1 year ago

  • Story points set to 0.5
Actions #7

Updated by Peter Amstutz over 1 year ago

  • Assigned To deleted (Peter Amstutz)
  • Target version deleted (To be groomed)
  • Release set to 59
Actions #8

Updated by Peter Amstutz over 1 year ago

  • Description updated (diff)
Actions #9

Updated by Peter Amstutz over 1 year ago

  • Target version set to To be scheduled
Actions #10

Updated by Brett Smith over 1 year ago

Before we put this on a sprint I feel like we should really pick which error we're going with.

Personally I would vote for ENOSYS since I think "the system doesn't support this" more accurately describes the problem than "you don't have permission to do this."

Actions #11

Updated by Peter Amstutz over 1 year ago

  • Target version changed from To be scheduled to To be groomed
Actions #12

Updated by Peter Amstutz over 1 year ago

  • Description updated (diff)
Actions #13

Updated by Peter Amstutz over 1 year ago

  • Target version changed from To be groomed to To be scheduled
Actions #14

Updated by Peter Amstutz over 1 year ago

  • Target version changed from To be scheduled to 2023-02-01 sprint
Actions #15

Updated by Peter Amstutz over 1 year ago

  • Assigned To set to Brett Smith
Actions #16

Updated by Peter Amstutz over 1 year ago

      ENOTSUP         Operation not supported (POSIX.1-2001).

      EOPNOTSUPP      Operation not supported on socket (POSIX.1-2001).

                       (ENOTSUP and EOPNOTSUPP have the same value on Linux, but according to POSIX.1 these error values should be distinct.)

The thing that actually matters is what error message is printed by other programs, e.g. the shell, when you try to do something. Which probably comes from strerror(3)

Actions

Also available in: Atom PDF