Bug 82271 - Can't bind UNIX socket through file descriptor opened with O_PATH
Summary: Can't bind UNIX socket through file descriptor opened with O_PATH
Status: RESOLVED WILL_NOT_FIX
Alias: None
Product: Networking
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 enhancement
Assignee: Stephen Hemminger
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-08-12 22:16 UTC by Steven Stewart-Gallus
Modified: 2014-08-21 17:52 UTC (History)
2 users (show)

See Also:
Kernel Version: 3.13
Subsystem:
Regression: No
Bisected commit-id:


Attachments
generic open program (2.32 KB, text/plain)
2014-08-12 22:16 UTC, Steven Stewart-Gallus
Details

Description Steven Stewart-Gallus 2014-08-12 22:16:24 UTC
Created attachment 146391 [details]
generic open program

One might want to open files generically. However, one cannot open a
UNIX socket file found in the filesystem. That fails with ENXIO. To
workaround this one can use stat to check if the file is a socket
first but that is racy. O_PATH offers a possible solution.

As in the program below, one can open a file with O_PATH, check the
file type with fstat and then open (and in the case of a socket bind
or connect to) the file through the file descriptor. Unfortunately,
while this works with connect, and open it fails with bind with
EADDRINUSE.
Comment 1 Stephen Hemminger 2014-08-14 18:24:07 UTC
This is not possible given the UNIX domain socket API is permanently fixed by Posix standards.
Comment 2 Steven Stewart-Gallus 2014-08-15 17:08:03 UTC
The only O_* constants defined by POSIX 2013 are: O_CLOEXEC, O_CREAT,
O_DIRECTORY, O_EXCL, O_NOCTTY, O_NOFOLLOW, O_TRUNC, O_TTY_INIT,
O_APPEND, O_DSYNC, O_NONBLOCK, O_RSYNC, O_SYNC, O_ACCMODE, O_EXEC,
O_RDONLY, O_RDWR, O_SEARCH and O_WRONLY.  Stephen Hemminger, behaviour
relating to O_PATH has absolutely zero to do with UNIX sockets. If you
have some other meaning you are unintelligible.
Comment 3 Steven Stewart-Gallus 2014-08-15 17:09:06 UTC
s/with UNIX sockets/with POSIX/g
Comment 4 Steven Stewart-Gallus 2014-08-15 17:10:58 UTC
> If the address family of the socket is AF_UNIX and the pathname in
> address names a symbolic link, bind() shall fail and set errno to
> [EADDRINUSE].

- POSIX 2013

Ah, I see what you mean now. That's really silly but I'll try to think
and see if there's an alternate way of getting what I want.

Note You need to log in before you can comment on or make changes to this bug.