2019-02-25 08:48:22 -05:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2012-11-23 05:02:34 -05:00
|
|
|
|
2014-05-25 10:23:35 -04:00
|
|
|
#include "base/unixsocket.hpp"
|
|
|
|
|
#include "base/exception.hpp"
|
2012-11-23 05:02:34 -05:00
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
2018-01-03 22:25:35 -05:00
|
|
|
UnixSocket::UnixSocket()
|
2012-11-23 05:02:34 -05:00
|
|
|
{
|
2014-01-28 03:57:56 -05:00
|
|
|
int fd = socket(AF_UNIX, SOCK_STREAM, 0);
|
2012-11-23 05:02:34 -05:00
|
|
|
|
2013-03-11 08:45:08 -04:00
|
|
|
if (fd < 0) {
|
|
|
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
2017-12-19 09:50:05 -05:00
|
|
|
<< boost::errinfo_api_function("socket")
|
|
|
|
|
<< boost::errinfo_errno(errno));
|
2013-03-11 08:45:08 -04:00
|
|
|
}
|
2012-11-23 05:02:34 -05:00
|
|
|
|
|
|
|
|
SetFD(fd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UnixSocket::Bind(const String& path)
|
|
|
|
|
{
|
|
|
|
|
unlink(path.CStr());
|
|
|
|
|
|
2013-11-23 18:27:10 -05:00
|
|
|
sockaddr_un s_un;
|
|
|
|
|
memset(&s_un, 0, sizeof(s_un));
|
|
|
|
|
s_un.sun_family = AF_UNIX;
|
|
|
|
|
strncpy(s_un.sun_path, path.CStr(), sizeof(s_un.sun_path));
|
|
|
|
|
s_un.sun_path[sizeof(s_un.sun_path) - 1] = '\0';
|
2012-11-23 05:02:34 -05:00
|
|
|
|
2013-11-23 18:27:10 -05:00
|
|
|
if (bind(GetFD(), (sockaddr *)&s_un, SUN_LEN(&s_un)) < 0) {
|
2013-03-11 08:45:08 -04:00
|
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
2017-12-19 09:50:05 -05:00
|
|
|
<< boost::errinfo_api_function("bind")
|
|
|
|
|
<< boost::errinfo_errno(errno));
|
2013-03-11 08:45:08 -04:00
|
|
|
}
|
2012-11-23 05:02:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void UnixSocket::Connect(const String& path)
|
|
|
|
|
{
|
2013-11-23 18:27:10 -05:00
|
|
|
sockaddr_un s_un;
|
|
|
|
|
memset(&s_un, 0, sizeof(s_un));
|
|
|
|
|
s_un.sun_family = AF_UNIX;
|
|
|
|
|
strncpy(s_un.sun_path, path.CStr(), sizeof(s_un.sun_path));
|
|
|
|
|
s_un.sun_path[sizeof(s_un.sun_path) - 1] = '\0';
|
2012-11-23 05:02:34 -05:00
|
|
|
|
2013-11-23 18:27:10 -05:00
|
|
|
if (connect(GetFD(), (sockaddr *)&s_un, SUN_LEN(&s_un)) < 0 && errno != EINPROGRESS) {
|
2013-03-11 08:45:08 -04:00
|
|
|
BOOST_THROW_EXCEPTION(posix_error()
|
2017-12-19 09:50:05 -05:00
|
|
|
<< boost::errinfo_api_function("connect")
|
|
|
|
|
<< boost::errinfo_errno(errno));
|
2013-03-11 08:45:08 -04:00
|
|
|
}
|
2012-11-23 05:02:34 -05:00
|
|
|
}
|
2012-11-23 06:34:06 -05:00
|
|
|
#endif /* _WIN32 */
|