]>
git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/dynmessenger.cc
2 PowerDNS Versatile Database Driven Nameserver
3 Copyright (C) 2002 - 2008 PowerDNS.COM BV
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2
7 as published by the Free Software Foundation
9 Additionally, the license of this program contains a special
10 exception which allows to distribute the program in binary form when
11 it is linked against OpenSSL.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 #include "dynmessenger.hh"
28 #include <sys/types.h>
31 DynMessenger::DynMessenger(const string
&fname
,
35 d_s
=socket(AF_UNIX
,SOCK_STREAM
,0);
36 Utility::setCloseOnExec(d_s
);
39 throw PDNSException(string("socket")+strerror(errno
));
43 if(makeUNsockaddr(fname
, &d_remote
))
44 throw PDNSException("Unable to connect to remote '"+fname
+"': Path is not a valid UNIX socket path.");
46 struct timeval timeout
;
47 timeout
.tv_sec
= timeout_sec
;
48 timeout
.tv_usec
= timeout_usec
;
50 if (setsockopt (d_s
, SOL_SOCKET
, SO_RCVTIMEO
, (char *)&timeout
, sizeof(timeout
)) < 0)
51 throw PDNSException("Unable to set SO_RCVTIMEO option on socket: " + stringerror());
53 if (setsockopt (d_s
, SOL_SOCKET
, SO_SNDTIMEO
, (char *)&timeout
, sizeof(timeout
)) < 0)
54 throw PDNSException("Unable to set SO_SNDTIMEO option on socket: " + stringerror());
56 int ret
= Utility::timed_connect(d_s
,(sockaddr
*)&d_remote
,sizeof(d_remote
), timeout_sec
, timeout_usec
);
59 throw TimeoutException("Unable to connect to remote '"+fname
+"': "+stringerror());
61 throw PDNSException("Unable to connect to remote '"+fname
+"': "+stringerror());
70 DynMessenger::DynMessenger(const ComboAddress
& remote
,
75 d_s
=socket(AF_INET
, SOCK_STREAM
,0);
76 Utility::setCloseOnExec(d_s
);
79 throw PDNSException(string("socket")+strerror(errno
));
83 struct timeval timeout
;
84 timeout
.tv_sec
= timeout_sec
;
85 timeout
.tv_usec
= timeout_usec
;
87 if (setsockopt (d_s
, SOL_SOCKET
, SO_RCVTIMEO
, (char *)&timeout
, sizeof(timeout
)) < 0)
88 throw PDNSException("Unable to set SO_RCVTIMEO option on socket: " + stringerror());
90 if (setsockopt (d_s
, SOL_SOCKET
, SO_SNDTIMEO
, (char *)&timeout
, sizeof(timeout
)) < 0)
91 throw PDNSException("Unable to set SO_SNDTIMEO option on socket: " + stringerror());
93 int ret
= Utility::timed_connect(d_s
, (sockaddr
*)&remote
, remote
.getSocklen(), timeout_sec
, timeout_usec
);
96 throw TimeoutException("Unable to connect to remote '"+remote
.toStringWithPort()+"': "+string(strerror(errno
)));
98 throw PDNSException("Unable to connect to remote '"+remote
.toStringWithPort()+"': "+string(strerror(errno
)));
100 string login
=secret
+"\n";
109 DynMessenger::~DynMessenger()
115 int DynMessenger::send(const string
&msg
) const
118 if(writen2(d_s
, msg
+"\n") < 0) { // sue me
123 } catch(std::runtime_error
& e
) {
125 throw TimeoutException("Error from remote in send(): " + string(e
.what()));
127 throw PDNSException("Error from remote in send(): " + string(e
.what()));
131 string
DynMessenger::receive() const
138 retlen
=recv(d_s
,buffer
,sizeof(buffer
),0);
141 throw TimeoutException("Error from remote in receive(): " + string(strerror(errno
)));
143 throw PDNSException("Error from remote in receive(): " + string(strerror(errno
)));
146 answer
.append(buffer
,retlen
);