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

Fix ability to use gen_tcp/gen_udp with externally open AF_LOCAL fds #612

Closed
wants to merge 1 commit into from
Closed

Conversation

saleyn
Copy link
Contributor

@saleyn saleyn commented Feb 10, 2015

When a AF_LOCAL file descriptor is created externally (e.g. Unix
Domain Socket) and passed to gen_tcp:listen(0, [{fd, FD}]), the
implementation incorrectly assigned the address family to be equal
to inet, which in the inet_drv driver translated to AF_INET instead
of AF_LOCAL (or AF_UNIX), and an einval error code was returned.
This patch fixes this problem such that the file descriptors of the
local address family are supported in the inet:fdopen/5,
gen_tcp:connect/3, gen_tcp:listen/2, gen_udp:open/2 calls.

See https://github.com/saleyn/euds for examples of using this feature.

@okeuday
Copy link
Contributor

okeuday commented Feb 10, 2015

Thanks for fixing this. This has been a long-term problem.

@saleyn
Copy link
Contributor Author

saleyn commented Feb 10, 2015

Maybe if I get some time in a couple of months I'll add "native" support to gen_tcp/gen_udp to deal with opening unix domain sockets, but for now this patch is a good interm solution.

@OTP-Maintainer
Copy link

Patch has passed first testings and has been assigned to be reviewed


I am a script, I am not human


@zhird
Copy link
Contributor

zhird commented Feb 11, 2015

Please add tests for these changes.

@RoadRunnr
Copy link
Contributor

gen_udp and gen_tcp have their names for a reason, there is nothing in the documentation or their naming that suggest that they should be able to handle anything else than udp/tcp sockets.

If anything, they should reject working on fd's that are not udp/tcp, IMO.

There are other solutions to work on native sockets outside of stdlib, search for procket, gen_socket and probably others that I'm not aware of.

@saleyn
Copy link
Contributor Author

saleyn commented Feb 11, 2015

@zhird : Regarding tests - AFAIK there is no way to open a Unix Domain Socket from within the current OTP implementation, which is the reason I tested it outside of the OTP using a NIF-based UDS socket creation. Would it be appropriate to add a NIF library to the test cases?

@saleyn
Copy link
Contributor Author

saleyn commented Feb 11, 2015

@RoadRunnr : I believe you are confusing the address family with the transport. In POSIX different address families (e.g. INET, UNIX, etc) can handle various protocol transports (e.g. UDP, TCP). File descriptor belongs to an address family. Unix Domain Sockets are also perfectly valid candidates for UDP/TCP transport abstractions, and the fact that OTP has current restriction of not allowing to bind them with gen_udp and gen_tcp is a clear oversight.

@RoadRunnr
Copy link
Contributor

@saleyn: I believe you are confusing the meaning of the socket domain and type parameters.

UDP and TCP are IP protocols. When you open a socket of domain AF_INET, you select IPv4, AF_INET with type SOCK_DGRAM then selects UDP and AF_INET with type SOCK_STREAM selects TCP.

AF_UNIX with SOCK_DGRAM does not mean UDP, since UDP is a protocol from the AF_INET domain. UNIX sockets can be run in datagram or stream mode, but this does not mean that it runs UDP or TCP on top of them.

See also 'man 7 ip' on Linux:

An IP socket is created by calling the socket(2) function as socket(AF_INET, socket_type, protocol). Valid socket types are SOCK_STREAM to open a tcp(7) socket, SOCK_DGRAM to open a udp(7) socket...

'man 7 unix':

Valid types are: SOCK_STREAM, for a stream-oriented socket and SOCK_DGRAM, for a datagram-oriented socket that preserves message boundaries ...

@saleyn
Copy link
Contributor Author

saleyn commented Feb 11, 2015

@RoadRunnr: though technically you are correct that SOCK_DGRAM is not the same as UDP and SOCK_STREAM is not the same as TCP, the protocol selection is not explicitly defined by neither 1st nor 2nd parameter in the socket(2) call, but by the 3rd one (which selects the default protocol implementation only when specified as 0). SOCK_DGRAM and SOCK_STREAM define the semantics of communication over the socket, whereas the actual protocol type (e.g. UDP/TCP/SCTP) is chosen either explicitly or implicitly (e.g. IPPROTO_TCP/IPPROTO_UDP, which for UDS sockets is always implicit). The UDS socket family uses transport protocols that support the SOCK_STREAM and SOCK_DGRAM abstractions. Since all higher level functions dealing with sockets are fully compatible with file descriptors of LOCAL/INET address families, it's logical to offer that functionality to the user of gen_udp and gen_tcp, who shouldn't care about the origin of the lower-level protocol implementation. IMHO, it would actually make more sense to call these modules more generically gen_dgram and gen_stream, but since TCP and UDP are much more "user-friendly" (and it's questionable whether they were exclusively meant to be used on the INET sockets by design or this was the result of an oversight) I understand why more specific names were selected.

@zhird
Copy link
Contributor

zhird commented Feb 12, 2015

I looked into this some and yes, @RoadRunnr has a good point. We'll look into it some more, so no need to spend time on fixing the tests yet.

@okeuday
Copy link
Contributor

okeuday commented Feb 12, 2015

@zhird @RoadRunnr It appears you may be confusing the type UDP (i.e., User Datagram Protocol, SOCK_DGRAM) with the domain AF_UNIX or AF_LOCAL (UNIX domain sockets). For many years Erlang has changed internal validation to block UNIX domain socket usage, making it harder and harder to use, crippling the usage internally. Please do not block this due to ignorance or the "well they don't exist on Windows" (anonymous pipes) excuse that was on the mailing list a year ago or more. It would be nice to get past this. There is less latency when using a unix domain socket when compared to an inet socket on localhost, both using TCP, making this a significant oversight.

@saleyn
Copy link
Contributor Author

saleyn commented Feb 12, 2015

To summarize the main questions:

  1. Should the gen_udp / gen_tcp modules allow to accept {fd, FD} if FD is not of AF_INET address family (domain) but otherwise is compatible with all other function calls in these modules supporting connectionless and connection-oriented transport protocols?
  2. Should the unix domain socket (UDS) support be implemented as an extension of the two modules mentioned above (rather than as a separate gen_uds module)?

The current patch answers the first question affirmatively, and given that UDS support is not available on Windows, IMHO the answer "yes" to the second question would make more sense.

@okeuday
Copy link
Contributor

okeuday commented Feb 12, 2015

@saleyn To give a background on the problem, links to erlang-questions mailing list posts can help: http://erlang.org/pipermail/erlang-questions/2014-March/078347.html . That post shows the problem has been the source of complaints for 6 or more years. The (2) approach was what worked with release R15 and earlier as mentioned in the email thread. All the inet Erlang source code was replicated at https://github.com/tonyrog/afunix because the Erlang/OTP team was unwilling to consider UNIX domain sockets in the past, for unknown reasons. The example https://github.com/mikma/unixdom_drv was broken due to the validation added to the Erlang inet source code in R16 and later. To completely bypass Erlang/OTP socket support, https://github.com/msantos/procket exists, but does not provide all the functionality found in Erlang/OTP, so it ends up being less useful and more error-prone due to a lack of testing and use.

I strongly believe we need the (1) approach to get the Erlang/OTP source code back to the usable state it was in at R15 and earlier, with unix domain sockets, since there is no good reason not to. The (2) approach will just continue to fragment effort more than it already has been, so it would not be constructive.

@saleyn saleyn changed the title Fixed ability to assign externally open fds to gen_tcp Fix ability to use gen_tcp/gen_udp with externally open AF_LOCAL fds Feb 19, 2015
@nox
Copy link
Contributor

nox commented Feb 22, 2015

There is less latency when using a unix domain socket when compared to an inet socket on localhost, both using TCP, making this a significant oversight.

How does your UNIX socket use TCP?

+1 for gen_uds.

@okeuday
Copy link
Contributor

okeuday commented Feb 22, 2015

@nox I have code like the simplified sequence below, in a NIF at https://github.com/CloudI/CloudI/blob/develop/src/lib/cloudi_core/cxx_src/cloudi_socket_drv.cpp#L97-L167 which creates the unix domain socket listener for TCP connections:

struct sockaddr_un local;
local.sun_family = PF_LOCAL;
strncpy(local.sun_path, filepath, 104);
int fd_listener = ::socket(PF_LOCAL, SOCK_STREAM, 0);
bind(fd_listener, (struct sockaddr *) &local, sizeof(struct sockaddr_un));
listen(fd_listener, 0);

Due to Erlang not supporting unix domain sockets, but still wanting to use the inet source code path due to its testing, I create an inet socket and use dup2 on the file descriptor... which is an unfortunate solution which angers the io thread (it consumes 100% of the CPU after the socket is used the first time). From what I have seen, it is an error in the Erlang VM which is not handled (CloudI/CloudI#39).

So, it would be nice to have this be a real feature to avoid integration problems. Otherwise it is just forcing people to avoid OTP usage to get efficient localhost sockets, which seems wrong.

If it was required to be in gen_uds due to too much cruft in inet: ok. However, that is just making it more complicated than it needs to be IMO (since gen_tcp and gen_udp are for the TCP/UDP protocols that are not exclusive to the inet domain/family). (e.g., see inet:address_family() for the current selection with gen_tcp)

@OTP-Maintainer
Copy link

Patch has passed first testings and has been assigned to be reviewed


I am a script, I am not human


@saleyn
Copy link
Contributor Author

saleyn commented Jun 2, 2015

Could you please give an update on the status of this patch?

@RaimoNiskanen
Copy link
Contributor

It is on my table for review, mostly because no-one else wanted it.

I am sorry that it takes so long, it is an awkward decision between your patch that gets the job done right now and the hopefully better knowing people I have asked that agrees it is a problem that should be solved but there should be better ways (all suggest different ways), but no ways that work right now...

So currently this pull request gets starved by a steady stream of higher priority problems on my table and the high hill of reading up I will have to do to form an opinion of myself I can stand by.

That is the sad situation...

/ Raimo

@saleyn
Copy link
Contributor Author

saleyn commented Jun 3, 2015

Raimo, thanks for following up quickly! Though this is not as involved as the SCTP patch you helped us integrate years back, I am sure you will eventually do as amazing job as you did with the former. 😉
Not quite sure why in the current design the local domain stuff was completely augmented. Likely an oversight. This is an essential niche that needs to be filled, and I wish this comes to a solution that doesn't require patching some time in 2015.
Best,
Serge

@RaimoNiskanen
Copy link
Contributor

I'll try to do my very best...

@msporleder
Copy link

I have a strong desire for this functionality to get into RabbitMQ, which I use heavily as the broker for fire-and-forget messages from my web servers (installed on each web server to handle the load). I have been able to get 30% or better latency improvements from memcached by using unix sockets for similar tasks.

@jeanparpaillon
Copy link

Any update on this pr ? Any help needed ?

@saleyn
Copy link
Contributor Author

saleyn commented Dec 30, 2015

Rebased to current maint

@OTP-Maintainer
Copy link

Patch has passed first testings and has been assigned to be reviewed


I am a script, I am not human


@okeuday
Copy link
Contributor

okeuday commented Jan 9, 2016

👍

@RaimoNiskanen
Copy link
Contributor

Nope. 8 bit length field was also the right decision...

There has been many historical mistakes when designing the network APIs in Erlang. So I guess squeezing the UDS name into the IP field as you did is the only viable option, allthough the UDS address really is on the same level as an {IP,Port} tuple.

@saleyn
Copy link
Contributor Author

saleyn commented May 1, 2016

@RaimoNiskanen: regarding setting desc->name_addr in fdopen - I can't recall 100% why I did that, as it's been quite a while, but I suspect it was so that when inet:sockname(Socket) is called so that the UNIX file name is returned. Also, if memory serves, I had to add that code or else ability to pass external an external FD to a gen_tcp/udp instance didn't work (likely because).

One other design question to consider is if in the active mode it's acceptable to return {udp|tcp, Port, UDSFileName, 0, Data} as it does now, where USDFileName is always a copy of the file name, which might be an unnecessary copy. That file name can be obtained by issuing inet:sockname(Port) call.

@RaimoNiskanen
Copy link
Contributor

RaimoNiskanen commented May 31, 2016

@saleyn wrote:

One other design question to consider is if in the active mode it's acceptable to return {udp|tcp, Port, UDSFileName, 0, Data} as it does now, where USDFileName is always a copy of the file name, which might be an unnecessary copy. That file name can be obtained by issuing inet:sockname(Port) call.

Shouldn't that be {udp,Socket,PeerAddr,0,Data} so you can not get PeerAddr through inet:sockname(Socket) and not through inet:peername(Socket) since UDP is connectionless, so the only viable option is to have PeerAddr copied into every {udp,,,,} tuple?

Check out the upcoming RC2

I have reworked your suggestion somewhat (a lot(?)) so I hope you like the result or at least can bear with it :-)

I have used {local,Bin|String} as the address format and you get {local,Bin} from prim_inet + inet_drv.c. This opens for using {AddressFamily,Address} for any address e.g {inet,{127,0,0,1}} in some future.

The local and remote names for the socket is not cached in inet_drv.c to be more transparent to the OS network stack. I for example have read in the FastCGI specification that you could use peername() (or was it sockname() on a file descriptor to deduce if it was an UDS socket or a normal Inet socket, so this answer should come from the OS.

I have not had time for any test suites or documentation, awaiting feedback on this suggestion coming in 19.0.rc2 now running in our daily build on proposed updates for master i.e to be RC2.

I have tested this manually on Ubuntu 14.04, FreeBSD 10.1 and OpenBSD 5.9 (which needs a little fix):

{ok,S1} = gen_udp:open(0, [{ifaddr,{local,"/tmp/socket1"}}])
inet:sockname(S1)
{ok,S2} = gen_udp:open(0, [{ifaddr,{local,"/tmp/socket2"}}])
inet:sockname(S2)
gen_udp:send(S2, {local,"/tmp/socket1"}, 0, "Hello, world")
Receives: {udp,S1,{local,<<"/tmp/socket2">>},0,"Hello, world"}

And this, which is a weird one since S3 is not bound:

file:delete("/tmp/socket1")
file:delete("/tmp/socket2")
{ok,L} = gen_tcp:listen(0, [{ifaddr,{local,"/tmp/socket"}}]).
{ok,S} = prim_inet:open(tcp, local, stream).
{ok,Fd} = prim_inet:getfd(S)
{ok,S3} = gen_tcp:connect({local,"/tmp/socket"}, 0, [{fd,Fd}])
{ok,S4} = gen_tcp:accept(L)
inet:sockname(S3)
inet:peername(S3)
inet:sockname(S4)
inet:peername(S4)
inet:sockname(L)
inet:peername(L)
gen_tcp:send(S3, "Hello, World")
Receives: {tcp,S3,"Hello, World"}

Linux's "Abstract Addresses" feature works; just use {ifaddr,{local,<<>>}} and you will get a generated unique address.

Have fun! Give me feedback!

@RaimoNiskanen
Copy link
Contributor

@okeuday: I am awaiting further problem description after 19.0.rc2

@okeuday
Copy link
Contributor

okeuday commented Jun 1, 2016

@RaimoNiskanen The problem at CloudI/CloudI#39 is not due to the changes in this pull request. I would like to use the changes (or at least the interface) in this pull request to avoid the problem. The problem CloudI/CloudI#39 is related to my usage of undocumented functions (prim_inet:getfd/1 and prim_inet:ignorefd/2) and using dup2 on a file descriptor used by an Erlang port object. It was the easiest way to get AF_LOCAL usage working through inet despite the validation present that attempts to prevent it, so this particular hack might not be considered valid use (i.e., is using undocumented functions a bug if the functions are not meant to be used?). If that problem needs a bug filed, tell me to file it, but that problem is not caused by these changes.

@RaimoNiskanen
Copy link
Contributor

@okeuday: Well..., if our own undocumented primitives does not work as we expect them to, then it should be fixed. So the question is if they behave badly or unfortunately as expected in this case. :-) But it is of course better if you can use AF_LOCAL through gen_* from 19.0.rc2.

@saleyn
Copy link
Contributor Author

saleyn commented Jun 1, 2016

@RaimoNiskanen: is there a tag for RC2 that includes your changes? I believe the current latest tag is rc1 (https://github.com/erlang/otp/tree/OTP-19.0-rc1).

@RaimoNiskanen
Copy link
Contributor

RaimoNiskanen commented Jun 2, 2016

Merged to master.

@saleyn: Nope, no tag. The integration team sets the tag today. But a master branch of 30a202a or later contains the changes.

I think no.1 on the todo list will be to rename the address family from local to unix since that is a more traditional and portable name.

@okeuday: Might it be simply so that a socket fed via the {fd,Fd} option to inet_drv.c should be set to nonblocking by inet_drv.c just to be sure...?

@RaimoNiskanen
Copy link
Contributor

The tag is now out: OTP-19.0-rc2

What do you think; should we name the address family unix or local?

@okeuday: It seems inet_drv.c:inet_ctl_fdopen calls SET_NONBLOCKING(desc->s), so your problem probably needs more investigation.

@saleyn
Copy link
Contributor Author

saleyn commented Jun 2, 2016

Regarding the address family, since AF_UNIX and AF_LOCAL are used interchangeably, this is likely just a matter of taste. The name unix is a bit more comprehensive for Windows people, which would implicitly mean that it's not available on Windows. Though, arguably, at some point it could be possible to implement the same functionality on Windows using the Windows named pipes API, in which case the name local would be more suitable. So, I would suggest leaving local as is, as it would potentially open a possibility for using that on other platforms.

One other point that was brought up earlier in this thread by @RoadRunnr, is not so much in regards to the use of unix vs local, but whether TCP/UDP are suitable names for use with local address family of sockets. Technically he was right that local sockets don't involve those protocol stacks and instead use just connection/connectionless signification (STREAM vs DGRAM). I realize that using local_stream and local_dgram module names instead of current local_tcp and local_udp might be a stretch for some developers, but at least this little caveat should be documented.

@okeuday
Copy link
Contributor

okeuday commented Jun 3, 2016

@RaimoNiskanen I agree local is best due to being a more platform neutral name. For the Windows equivalent functionality, my understanding is that "anonymous pipes" are better than "named pipes" but I haven't looked into it much. The problem I mentioned at CloudI/CloudI#39 now has a bug filed at http://bugs.erlang.org/browse/ERL-154 with a minimal example, so it can be handled separately.

@RaimoNiskanen
Copy link
Contributor

Alright. Fair point! It also seems like some kind of way in the middle since I find Linux forums that talk about renaming AF_LOCAL to AF_FILE, so AF_LOCAL maybe is the common name today...

@saleyn
Copy link
Contributor Author

saleyn commented Jun 6, 2016

@RaimoNiskanen: First of all, thank you for taking the time to rework the patch in order to integrate it into the distribution! I played with this a little bit, and even though the following works fine:

Terminal1:

1> file:delete("/tmp/socket1").
{error,enoent}
2> f(L), {ok,L} = gen_tcp:listen(0, [{ifaddr,{local,"/tmp/socket1"}}]).
{ok,#Port<0.516>}
3> {ok,S4} = gen_tcp:accept(L).
{ok,#Port<0.517>}
4> gen_tcp:send(S4, "Hello!").                              
ok

Terminal2:

1> f(S), {ok,S} = prim_inet:open(tcp, local, stream).                    
{ok,#Port<0.537>}
2> f(Fd), {ok,Fd} = prim_inet:getfd(S).                                  
{ok,12}
3> f(S3), {ok,S3} = gen_tcp:connect({local,"/tmp/socket1"}, 0, [{fd,Fd}]).
{ok,#Port<0.538>}
4> flush().
Shell got {tcp,#Port<0.538>,"Hello!"}
ok

I find it a little strange that the client can't connect to a local socket with just:

1> f(S), {ok,S} = gen_tcp:connect({local,"/tmp/socket1"}, 0, []).
** exception exit: badarg
     in function  gen_tcp:connect/4 (gen_tcp.erl, line 149)
2> f(S), {ok,S} = local_tcp:connect({local,"/tmp/socket1"}, 0, []).       
** exception error: no match of right hand side value {error,einval}

It seems to me that this should be permitted without requiring a client to go through separate calls for file descriptor creation.

@RaimoNiskanen
Copy link
Contributor

A slight modification works:

1> gen_tcp:listen(0, [{ifaddr,{local,"/tmp/socket1"}}]).
{ok,#Port<0.435>}
2> gen_tcp:connect({local,"/tmp/socket1"}, 0, [{ifaddr,{local,"/tmp/socket2"}}]).
{ok,#Port<0.437>}

On Linux you can use {ifaddr,{local,""}} which gives you an "abstract address" that you can read back with inet:sockname/1 or inet:peername/1 from the other side.

This is because the outgoing connection can not utilize an ephemeral port (0) to bind to any port interfaces since ports have no meaning for AF_LOCAL, so it needs an outbound address.

An outbound address is not actually needed, though... For AF_LOCAL you can connect without binding to an address and then you get an anonymous address denoted by the address {local,<<>>} or rather at the OS level it is a bit different between platforms: it can be {local,<<>>}, {local,<<0,0,...,0,0>>} with differing numbers of zeros, but I have made inet_drv.c strip trailing zeros for another reason.

There is also an OS function socketpair() that can give two connected anonymous sockets, and this function I think we should implement as local:socketpair(). The existence of this function shows that anonymous addresses is a supported feature of AF_LOCAL.

Today inet_drv.c checks that the socket has bound an address before allowing to connect. I do not know why, but it is probably an AF_INET safeguard that I suspect should be removed. I would like to get some insight on this... Anyway this is why an outbound address is needed for gen_tcp:connect/3 for now, but I think this restriction should be removed. gen_tcp:connect/3 with {fd,Fd} happens to not have this restriction.

I almost had this implemented, but ran into the existing inet_drv.c restriction so I thought it needed some more contemplation first...

@saleyn
Copy link
Contributor Author

saleyn commented Jun 7, 2016

Yes, that AF_INET safeguard seems to be unnecessary. If the need for that code is still not understood, perhaps as a work-around for the local sockets when connect is issued without {ifaddr, Addr} option, to populate it in the local_tcp:connect call by {ifaddr, {local, ""}} by default?

@RaimoNiskanen
Copy link
Contributor

Since {ifaddr,{local,""}} on Linux means an "Abstract Address" and fails on FreeBSD and OpenBSD I will have to separate not having the option from having that empty address option. But I have a plan...

@RaimoNiskanen
Copy link
Contributor

I ripped out the internal state BOUND from inet_drv.c, and it seems to cause no problems in our daily tests. This, I felt, was the smallest and safest solution...

I am adding test cases and polishing corner cases in the code, for the release.

@lpgauth
Copy link
Contributor

lpgauth commented Jun 13, 2016

FYI, a common optimisation for UDP is skipping gen_udp and calling erlang:port_command/2 directly with the UDP header cached.

e.g. https://github.com/lpgauth/shackle/blob/master/src/shackle_udp.erl#L49

This change breaks this pattern since now UDP requires enc_value/3 for the payload.

011954e#diff-0678e81d6dbaf11af22bce8d589c0fb6R448

@RaimoNiskanen
Copy link
Contributor

Being a common optimization does not make it correct. ;-) And I wonder how common it really is...

Nevertheless the optimization uses a very internal API and I have no second thoughts about changing an internal API for a major release.

The use case the optimization targets seems to be the same one that the undocumented gen_udp:connect/3 targets. Unfortunately a send over a connected UDP socket is just as badly optimized as over an unconnected, but the connected send will be easy to optimize, which we probably will have to look at fairly soon.

Optimizing connected UDP send would simply do erlang:port_command(Socket, [3,0,0,Data]) corresponding to prim_inet:sendto(Socket, any, 0, Data). Further improvement could be to add another fake address family to inet_drv.c, shortening that prefix to one byte which would make inet_drv.c skip encoding the destination address that is ignored anyway by sock_send(Fd, ...). But that is for the future.

Regarding your optimization you can change header(IP, Port) to produce the result of what enc_value/3 would produce for an IPv4 address and port, which would be: [1,?int16(Port),ip4_to_bytes(IP)]. I have just added an address family marker.

@lpgauth
Copy link
Contributor

lpgauth commented Jun 14, 2016

@RaimoNiskanen cool, I like the idea of optimizing connected UDP.

And yes, I just need to add the address family. https://github.com/lpgauth/shackle/blob/master/src/shackle_udp.erl#L26

@slashmili
Copy link

@RaimoNiskanen I have question regarding "Abstract Address", given that I have this address:

abstract=/tmp/dbus-cNsBK4GIj1

How can I connect to it as a client from Erlang?

@RaimoNiskanen
Copy link
Contributor

RaimoNiskanen commented Sep 21, 2016

That does not look like an "Abstract Address". That looks like a normal AF_LOCAL address.
gen_tcp:connect({local,<<"/tmp/dbus-cNsBK4GIj1">>}, 0, Options, Timeout) should work.

The type inet:socket_address() contains inet:local_address():
http://erlang.org/doc/man/inet.html#type-local_address
describes this.

An abstract address in erlang might look like this: {local,<<0,48,48,48,53,50>>}, that is: {local,<<0,"00052">>}, on Linux, that is, since I know nowhere else it is supported.

@slashmili
Copy link

slashmili commented Sep 21, 2016

@RaimoNiskanen thank for your help, I had to set the first byte of abstract socket path to <<0>>:

1> {ok, S} = prim_inet:open(tcp, local, stream).
{ok,#Port<0.436>}
2> {ok, Fd} = prim_inet:getfd(S).
{ok,11}
3> AbstractPath = <<"/tmp/dbus-cNsBK4GIj1">>.
<<"/tmp/dbus-cNsBK4GIj1">>
4> gen_tcp:connect({local, <<0, AbstractPath/binary>> }, 0, [{fd, Fd}]).
{ok,#Port<0.450>}

@RaimoNiskanen
Copy link
Contributor

Curious: Where did you find this "Abstract Path", how did you find out that it was "abstract", is there a file /tmp/dbus-cNsBK4GIj1 in the filesystem and does not gen_tcp:connect({local, <<0, AbstractPath/binary>> }, 0, []) work that is without the prim_inet:open/3 call?

If not try gen_tcp:connect({local, <<0, AbstractPath/binary>> }, 0, [local])

You should not have to use prim_inet.

@slashmili
Copy link

Well in Linux distros that are using D-Bus, D-Bus provides access to current session like this

export  | grep BUS_ADD
DBUS_SESSION_BUS_ADDRESS unix:abstract=/tmp/dbus-cNsBK4GIj1

And no there is no file in this path.

I just tried it without prim_inet:getfd and it does work! Why did you use it here #612 (comment) ? 😬

@saleyn saleyn deleted the uds branch September 21, 2016 17:28
@RaimoNiskanen
Copy link
Contributor

RaimoNiskanen commented Sep 22, 2016

That was to get an Fd with prim_inet:getfd(Port) to test the {fd,Fd} option on the line below. This tests the case of e.g FCGI where a program creates the listen socket and then spawns another program such as Erlang and gives it the listen socket to use connect() on. Notice that the line above calls gen_tcp:listen/2 with a local address, and the gen_udp example in the box above does the same.

DBUS has got a for me new new way to use abstract addresses. I have just had the OS create an abstract address, and then it gives me one like i showed above...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature team:PS Assigned to OTP team PS
Projects
None yet
Development

Successfully merging this pull request may close these issues.