mkdir(2) prefers EACCES over EEXIST

Corinna Vinschen corinna-cygwin@cygwin.com
Wed Jul 12 08:46:00 GMT 2017


On Jul 11 21:12, Christopher Wellons wrote:
> This isn't _really_ a bug, more of an oddity. Calling mkdir(2) on an
> existing directory will fail with EACCES instead of EEXIST if the directory
> couldn't have been created in the first place. For example, this is the
> typical situation for /cygdrive/c:
> 
>    mkdir("/cygdrive/c", 0700);
>    // errno == EACCES
> 
> Or from the shell:
> 
>    $ mkdir /cygdrive/c
>    mkdir: cannot create directory ‘/cygdrive/c’: Permission denied
> 
> Compare that to Linux or *BSD (giving EEXIST):
> 
>    $ mkdir /etc
>    mkdir: cannot create directory ‘/etc’: File exists
> 
>    $ mkdir /etc
>    mkdir: /etc: File exists
> 
> This behavior seems to be permitted by POSIX — both are valid reasons for
> this system call to fail — but it's a surprising result. I'd expect
> existence to take priority.

That's a result of calling the Windows function without prior check for
existence.  The Windows function apparently prefers it's variation of
EACCES over EEXIST, *iff* the target of the function is a drive.

I don't think it's worth to add a check to mkdir for such a border
case, just to prefer one error code over another.


Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Maintainer                 cygwin AT cygwin DOT com
Red Hat
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://cygwin.com/pipermail/cygwin/attachments/20170712/bc550bef/attachment.sig>


More information about the Cygwin mailing list