2011-08-18 11:08:22 +02:00
|
|
|
/*
|
2016-01-28 15:07:31 +01:00
|
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
2011-08-18 11:08:22 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2011-08-18 11:08:22 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
libzmq is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License (LGPL) as published
|
|
|
|
by the Free Software Foundation; either version 3 of the License, or
|
2011-08-18 11:08:22 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
As a special exception, the Contributors give you permission to link
|
|
|
|
this library with independent modules to produce an executable,
|
|
|
|
regardless of the license terms of these independent modules, and to
|
|
|
|
copy and distribute the resulting executable under terms of your choice,
|
|
|
|
provided that you also meet, for each linked independent module, the
|
|
|
|
terms and conditions of the license of that module. An independent
|
|
|
|
module is a module which is not derived from or based on this library.
|
|
|
|
If you modify this library, you must extend this exception to your
|
|
|
|
version of the library.
|
|
|
|
|
|
|
|
libzmq is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
2011-08-18 11:08:22 +02:00
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-02-18 17:56:52 +01:00
|
|
|
#include "precompiled.hpp"
|
2020-08-21 15:01:17 +02:00
|
|
|
#include "compat.hpp"
|
2011-08-18 11:08:22 +02:00
|
|
|
#include "ipc_address.hpp"
|
|
|
|
|
2019-10-19 14:46:53 +02:00
|
|
|
#if defined ZMQ_HAVE_IPC
|
2011-08-18 11:08:22 +02:00
|
|
|
|
|
|
|
#include "err.hpp"
|
|
|
|
|
2012-04-18 21:42:11 +02:00
|
|
|
#include <string>
|
2011-08-18 11:08:22 +02:00
|
|
|
|
|
|
|
zmq::ipc_address_t::ipc_address_t ()
|
|
|
|
{
|
2019-02-06 13:12:21 +01:00
|
|
|
memset (&_address, 0, sizeof _address);
|
2011-08-18 11:08:22 +02:00
|
|
|
}
|
|
|
|
|
2019-02-06 11:00:33 +01:00
|
|
|
zmq::ipc_address_t::ipc_address_t (const sockaddr *sa_, socklen_t sa_len_) :
|
|
|
|
_addrlen (sa_len_)
|
2012-04-18 21:42:11 +02:00
|
|
|
{
|
2018-05-30 22:13:54 +02:00
|
|
|
zmq_assert (sa_ && sa_len_ > 0);
|
2012-04-18 21:42:11 +02:00
|
|
|
|
2019-02-06 13:12:21 +01:00
|
|
|
memset (&_address, 0, sizeof _address);
|
2018-05-30 22:13:54 +02:00
|
|
|
if (sa_->sa_family == AF_UNIX)
|
2019-02-06 13:12:21 +01:00
|
|
|
memcpy (&_address, sa_, sa_len_);
|
2012-04-18 21:42:11 +02:00
|
|
|
}
|
|
|
|
|
2011-08-18 11:08:22 +02:00
|
|
|
zmq::ipc_address_t::~ipc_address_t ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
int zmq::ipc_address_t::resolve (const char *path_)
|
|
|
|
{
|
2019-02-06 10:14:04 +01:00
|
|
|
const size_t path_len = strlen (path_);
|
2019-02-06 13:12:21 +01:00
|
|
|
if (path_len >= sizeof _address.sun_path) {
|
2011-08-18 11:08:22 +02:00
|
|
|
errno = ENAMETOOLONG;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-07-01 09:17:19 +02:00
|
|
|
if (path_[0] == '@' && !path_[1]) {
|
2013-12-20 14:17:35 +01:00
|
|
|
errno = EINVAL;
|
|
|
|
return -1;
|
2013-10-07 19:42:39 +02:00
|
|
|
}
|
2011-08-18 11:08:22 +02:00
|
|
|
|
2019-02-06 13:12:21 +01:00
|
|
|
_address.sun_family = AF_UNIX;
|
|
|
|
memcpy (_address.sun_path, path_, path_len + 1);
|
2014-05-05 23:26:06 +02:00
|
|
|
/* Abstract sockets start with '\0' */
|
2014-07-01 09:17:19 +02:00
|
|
|
if (path_[0] == '@')
|
2019-02-06 13:12:21 +01:00
|
|
|
*_address.sun_path = '\0';
|
2019-02-06 11:00:33 +01:00
|
|
|
|
2019-10-19 14:46:53 +02:00
|
|
|
_addrlen =
|
|
|
|
static_cast<socklen_t> (offsetof (sockaddr_un, sun_path) + path_len);
|
2011-08-18 11:08:22 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-08-09 16:06:51 +02:00
|
|
|
int zmq::ipc_address_t::to_string (std::string &addr_) const
|
2012-04-18 21:42:11 +02:00
|
|
|
{
|
2019-02-06 13:12:21 +01:00
|
|
|
if (_address.sun_family != AF_UNIX) {
|
2012-04-18 21:42:11 +02:00
|
|
|
addr_.clear ();
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-02-06 10:14:04 +01:00
|
|
|
const char prefix[] = "ipc://";
|
2019-02-06 13:12:21 +01:00
|
|
|
char buf[sizeof prefix + sizeof _address.sun_path];
|
2019-02-06 10:14:04 +01:00
|
|
|
char *pos = buf;
|
|
|
|
memcpy (pos, prefix, sizeof prefix - 1);
|
|
|
|
pos += sizeof prefix - 1;
|
2019-02-06 13:12:21 +01:00
|
|
|
const char *src_pos = _address.sun_path;
|
|
|
|
if (!_address.sun_path[0] && _address.sun_path[1]) {
|
2019-02-06 10:14:04 +01:00
|
|
|
*pos++ = '@';
|
|
|
|
src_pos++;
|
|
|
|
}
|
|
|
|
// according to http://man7.org/linux/man-pages/man7/unix.7.html, NOTES
|
2019-02-06 11:00:33 +01:00
|
|
|
// section, address.sun_path might not always be null-terminated; therefore,
|
|
|
|
// we calculate the length based of addrlen
|
|
|
|
const size_t src_len =
|
|
|
|
strnlen (src_pos, _addrlen - offsetof (sockaddr_un, sun_path)
|
|
|
|
- (src_pos - _address.sun_path));
|
|
|
|
memcpy (pos, src_pos, src_len);
|
|
|
|
addr_.assign (buf, pos - buf + src_len);
|
2012-04-18 21:42:11 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-02-02 14:56:51 +01:00
|
|
|
const sockaddr *zmq::ipc_address_t::addr () const
|
2011-08-18 11:08:22 +02:00
|
|
|
{
|
2019-02-06 13:12:21 +01:00
|
|
|
return reinterpret_cast<const sockaddr *> (&_address);
|
2011-08-18 11:08:22 +02:00
|
|
|
}
|
|
|
|
|
2012-02-02 14:56:51 +01:00
|
|
|
socklen_t zmq::ipc_address_t::addrlen () const
|
2011-08-18 11:08:22 +02:00
|
|
|
{
|
2019-02-06 11:00:33 +01:00
|
|
|
return _addrlen;
|
2011-08-18 11:08:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|