Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot connect to abstract unix domain socket #52165

Closed
ghost opened this issue Jul 8, 2018 · 3 comments
Closed

Cannot connect to abstract unix domain socket #52165

ghost opened this issue Jul 8, 2018 · 3 comments
Labels
C-feature-request Category: A feature request, i.e: not implemented / a PR.

Comments

@ghost
Copy link

ghost commented Jul 8, 2018

Hello,

I'm using stable Rust 1.27.0.

According to man 7 unix, about abstract socket:

an abstract socket address is distinguished (from a pathname socket) by the fact that sun_path[0] is a null byte ('\0'). The socket's address in this namespace is given by the additional bytes in sun_path that are covered by the specified length of the address structure. (Null bytes in the name have no special significance.) The name has no connection with filesystem pathnames. When the address of an abstract socket is returned, the returned addrlen is greater than sizeof(sa_family_t) (i.e., greater than 2), and the name of the socket is contained in the first (addrlen - sizeof(sa_family_t)) bytes of sun_path.

I failed to run this:

use std::os::unix::net::UnixListener;
use std::path::PathBuf;

fn main() {
    let sock_path = PathBuf::from("\0test");
    match UnixListener::bind(&sock_path) {
        Ok(_) => println!("Server running at {:?}", &sock_path),
        Err(err) => eprintln!("Failed to start server: {}", &err),
    };
}

The error message was paths may not contain interior null bytes. I searched and found the code here:

https://doc.rust-lang.org/src/std/sys/unix/ext/net.rs.html#61

I consider this a bug, but I'm really not sure. May I ask if you could help?

Thank you,

@csmoe csmoe added the C-feature-request Category: A feature request, i.e: not implemented / a PR. label Jul 9, 2018
@csmoe
Copy link
Member

csmoe commented Jul 9, 2018

cc #14194
abstract socket is not supported right now, if you really need that, try nix crate: https://docs.rs/nix/0.11.0/nix/sys/socket/struct.UnixAddr.html#method.as_abstract

@ghost
Copy link
Author

ghost commented Jul 9, 2018

@csmoe

Thank you. As I understand from that issue: abstract socket is not fully supported on all unix systems. However I think it would be great if the API simply returns any OS error. That won't break the UnixListener::bind() signature.

I'm not sure if I should close this issue. So I leave it open.

@Havvy
Copy link
Contributor

Havvy commented Aug 5, 2018

This is a dupe of #42048

@sfackler sfackler closed this as completed Aug 5, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-feature-request Category: A feature request, i.e: not implemented / a PR.
Projects
None yet
Development

No branches or pull requests

3 participants