blob: ce1ddcb1814b6570dc3431f3f8b6e8bc257cf4b4 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
Mark Slee9f0c6512007-02-28 23:58:26 +000019
Marc Slemkoe03da182006-07-21 21:32:36 +000020#include <config.h>
David Reissc88eb8c2008-06-11 01:18:54 +000021#include <cstring>
22#include <sstream>
Mark Sleee8540632006-05-30 09:24:40 +000023#include <sys/socket.h>
David Reiss22b18862008-04-08 06:25:45 +000024#include <sys/poll.h>
Mark Sleedd564972007-08-21 02:39:57 +000025#include <sys/types.h>
Mark Sleee8540632006-05-30 09:24:40 +000026#include <arpa/inet.h>
27#include <netinet/in.h>
28#include <netinet/tcp.h>
29#include <netdb.h>
30#include <unistd.h>
31#include <errno.h>
Mark Slee29050782006-09-29 00:12:30 +000032#include <fcntl.h>
Mark Sleee8540632006-05-30 09:24:40 +000033
Mark Slee29050782006-09-29 00:12:30 +000034#include "concurrency/Monitor.h"
Marc Slemkod42a2c22006-08-10 03:30:18 +000035#include "TSocket.h"
36#include "TTransportException.h"
Mark Sleee8540632006-05-30 09:24:40 +000037
T Jake Lucianib5e62212009-01-31 22:36:20 +000038namespace apache { namespace thrift { namespace transport {
Marc Slemko6f038a72006-08-03 18:58:09 +000039
Mark Sleee8540632006-05-30 09:24:40 +000040using namespace std;
41
Mark Slee29050782006-09-29 00:12:30 +000042// Global var to track total socket sys calls
Mark Slee8d7e1f62006-06-07 06:48:56 +000043uint32_t g_socket_syscalls = 0;
44
45/**
46 * TSocket implementation.
47 *
Mark Slee8d7e1f62006-06-07 06:48:56 +000048 */
49
Mark Slee256bdc42007-11-27 08:42:19 +000050TSocket::TSocket(string host, int port) :
Mark Slee29050782006-09-29 00:12:30 +000051 host_(host),
52 port_(port),
Martin Kraemeree341cb2007-02-05 21:40:38 +000053 socket_(-1),
Mark Slee29050782006-09-29 00:12:30 +000054 connTimeout_(0),
55 sendTimeout_(0),
56 recvTimeout_(0),
57 lingerOn_(1),
58 lingerVal_(0),
Aditya Agarwale04475b2007-05-23 02:14:58 +000059 noDelay_(1),
60 maxRecvRetries_(5) {
Mark Sleeb9ff32a2006-11-16 01:00:24 +000061 recvTimeval_.tv_sec = (int)(recvTimeout_/1000);
62 recvTimeval_.tv_usec = (int)((recvTimeout_%1000)*1000);
Mark Sleee8540632006-05-30 09:24:40 +000063}
64
Mark Slee256bdc42007-11-27 08:42:19 +000065TSocket::TSocket() :
Aditya Agarwalebc99e02007-01-15 23:14:58 +000066 host_(""),
67 port_(0),
Martin Kraemeree341cb2007-02-05 21:40:38 +000068 socket_(-1),
Aditya Agarwalebc99e02007-01-15 23:14:58 +000069 connTimeout_(0),
70 sendTimeout_(0),
71 recvTimeout_(0),
72 lingerOn_(1),
73 lingerVal_(0),
Aditya Agarwale04475b2007-05-23 02:14:58 +000074 noDelay_(1),
75 maxRecvRetries_(5) {
Aditya Agarwalebc99e02007-01-15 23:14:58 +000076 recvTimeval_.tv_sec = (int)(recvTimeout_/1000);
77 recvTimeval_.tv_usec = (int)((recvTimeout_%1000)*1000);
78}
79
Mark Slee29050782006-09-29 00:12:30 +000080TSocket::TSocket(int socket) :
81 host_(""),
82 port_(0),
83 socket_(socket),
84 connTimeout_(0),
85 sendTimeout_(0),
86 recvTimeout_(0),
87 lingerOn_(1),
88 lingerVal_(0),
Aditya Agarwale04475b2007-05-23 02:14:58 +000089 noDelay_(1),
90 maxRecvRetries_(5) {
Mark Sleeb9ff32a2006-11-16 01:00:24 +000091 recvTimeval_.tv_sec = (int)(recvTimeout_/1000);
92 recvTimeval_.tv_usec = (int)((recvTimeout_%1000)*1000);
Mark Slee29050782006-09-29 00:12:30 +000093}
Mark Slee256bdc42007-11-27 08:42:19 +000094
Mark Sleee8540632006-05-30 09:24:40 +000095TSocket::~TSocket() {
96 close();
97}
98
Mark Slee256bdc42007-11-27 08:42:19 +000099bool TSocket::isOpen() {
100 return (socket_ >= 0);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000101}
102
Mark Sleeb9ff32a2006-11-16 01:00:24 +0000103bool TSocket::peek() {
104 if (!isOpen()) {
105 return false;
106 }
107 uint8_t buf;
108 int r = recv(socket_, &buf, 1, MSG_PEEK);
109 if (r == -1) {
David Reissbc3dddb2007-08-22 23:20:24 +0000110 int errno_copy = errno;
David Reiss840e7522009-06-04 00:10:50 +0000111 #if defined __FreeBSD__ || defined __MACH__
Kevin Clark022b2242009-03-05 21:05:37 +0000112 /* shigin:
113 * freebsd returns -1 and ECONNRESET if socket was closed by
114 * the other side
115 */
116 if (errno_copy == ECONNRESET)
117 {
118 close();
119 return false;
120 }
121 #endif
David Reiss01e55c12008-07-13 22:18:51 +0000122 GlobalOutput.perror("TSocket::peek() recv() " + getSocketInfo(), errno_copy);
David Reissbc3dddb2007-08-22 23:20:24 +0000123 throw TTransportException(TTransportException::UNKNOWN, "recv()", errno_copy);
Mark Sleeb9ff32a2006-11-16 01:00:24 +0000124 }
125 return (r > 0);
126}
127
Mark Slee6d56eb92007-07-06 22:28:15 +0000128void TSocket::openConnection(struct addrinfo *res) {
Mark Sleea9848d72007-02-21 04:54:05 +0000129 if (isOpen()) {
130 throw TTransportException(TTransportException::ALREADY_OPEN);
131 }
Aditya Agarwal4529c4b2007-09-05 01:01:15 +0000132
Mark Slee6d56eb92007-07-06 22:28:15 +0000133 socket_ = socket(res->ai_family, res->ai_socktype, res->ai_protocol);
Mark Sleee8540632006-05-30 09:24:40 +0000134 if (socket_ == -1) {
David Reissbc3dddb2007-08-22 23:20:24 +0000135 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000136 GlobalOutput.perror("TSocket::open() socket() " + getSocketInfo(), errno_copy);
David Reissbc3dddb2007-08-22 23:20:24 +0000137 throw TTransportException(TTransportException::NOT_OPEN, "socket()", errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000138 }
Mark Slee29050782006-09-29 00:12:30 +0000139
140 // Send timeout
141 if (sendTimeout_ > 0) {
142 setSendTimeout(sendTimeout_);
143 }
144
145 // Recv timeout
146 if (recvTimeout_ > 0) {
147 setRecvTimeout(recvTimeout_);
148 }
149
150 // Linger
151 setLinger(lingerOn_, lingerVal_);
152
153 // No delay
154 setNoDelay(noDelay_);
155
David Reiss1c20c872010-03-09 05:20:14 +0000156 // Uses a low min RTO if asked to.
157#ifdef TCP_LOW_MIN_RTO
158 if (getUseLowMinRto()) {
159 int one = 1;
160 setsockopt(socket_, IPPROTO_TCP, TCP_LOW_MIN_RTO, &one, sizeof(one));
161 }
162#endif
163
164
Mark Slee29050782006-09-29 00:12:30 +0000165 // Set the socket to be non blocking for connect if a timeout exists
Mark Slee256bdc42007-11-27 08:42:19 +0000166 int flags = fcntl(socket_, F_GETFL, 0);
Mark Slee29050782006-09-29 00:12:30 +0000167 if (connTimeout_ > 0) {
Mark Sleea5a783f2007-03-02 19:41:08 +0000168 if (-1 == fcntl(socket_, F_SETFL, flags | O_NONBLOCK)) {
David Reiss9b209552008-04-08 06:26:05 +0000169 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000170 GlobalOutput.perror("TSocket::open() fcntl() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000171 throw TTransportException(TTransportException::NOT_OPEN, "fcntl() failed", errno_copy);
Mark Sleea5a783f2007-03-02 19:41:08 +0000172 }
Mark Slee29050782006-09-29 00:12:30 +0000173 } else {
Mark Sleea5a783f2007-03-02 19:41:08 +0000174 if (-1 == fcntl(socket_, F_SETFL, flags & ~O_NONBLOCK)) {
David Reiss9b209552008-04-08 06:26:05 +0000175 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000176 GlobalOutput.perror("TSocket::open() fcntl " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000177 throw TTransportException(TTransportException::NOT_OPEN, "fcntl() failed", errno_copy);
Mark Sleea5a783f2007-03-02 19:41:08 +0000178 }
Mark Slee29050782006-09-29 00:12:30 +0000179 }
180
Mark Sleee8540632006-05-30 09:24:40 +0000181 // Connect the socket
Mark Slee6d56eb92007-07-06 22:28:15 +0000182 int ret = connect(socket_, res->ai_addr, res->ai_addrlen);
Mark Slee256bdc42007-11-27 08:42:19 +0000183
David Reiss9b209552008-04-08 06:26:05 +0000184 // success case
Mark Slee29050782006-09-29 00:12:30 +0000185 if (ret == 0) {
186 goto done;
187 }
188
189 if (errno != EINPROGRESS) {
David Reissbc3dddb2007-08-22 23:20:24 +0000190 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000191 GlobalOutput.perror("TSocket::open() connect() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000192 throw TTransportException(TTransportException::NOT_OPEN, "connect() failed", errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000193 }
194
David Reiss22b18862008-04-08 06:25:45 +0000195
196 struct pollfd fds[1];
David Reissc88eb8c2008-06-11 01:18:54 +0000197 std::memset(fds, 0 , sizeof(fds));
David Reiss22b18862008-04-08 06:25:45 +0000198 fds[0].fd = socket_;
199 fds[0].events = POLLOUT;
200 ret = poll(fds, 1, connTimeout_);
Mark Slee29050782006-09-29 00:12:30 +0000201
202 if (ret > 0) {
David Reiss9b209552008-04-08 06:26:05 +0000203 // Ensure the socket is connected and that there are no errors set
Mark Slee29050782006-09-29 00:12:30 +0000204 int val;
205 socklen_t lon;
206 lon = sizeof(int);
207 int ret2 = getsockopt(socket_, SOL_SOCKET, SO_ERROR, (void *)&val, &lon);
208 if (ret2 == -1) {
David Reissbc3dddb2007-08-22 23:20:24 +0000209 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000210 GlobalOutput.perror("TSocket::open() getsockopt() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000211 throw TTransportException(TTransportException::NOT_OPEN, "getsockopt()", errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000212 }
David Reiss9b209552008-04-08 06:26:05 +0000213 // no errors on socket, go to town
Mark Slee29050782006-09-29 00:12:30 +0000214 if (val == 0) {
215 goto done;
216 }
David Reiss01e55c12008-07-13 22:18:51 +0000217 GlobalOutput.perror("TSocket::open() error on socket (after poll) " + getSocketInfo(), val);
David Reiss9b209552008-04-08 06:26:05 +0000218 throw TTransportException(TTransportException::NOT_OPEN, "socket open() error", val);
Mark Slee29050782006-09-29 00:12:30 +0000219 } else if (ret == 0) {
David Reiss9b209552008-04-08 06:26:05 +0000220 // socket timed out
Aditya Agarwal4529c4b2007-09-05 01:01:15 +0000221 string errStr = "TSocket::open() timed out " + getSocketInfo();
222 GlobalOutput(errStr.c_str());
David Reiss9b209552008-04-08 06:26:05 +0000223 throw TTransportException(TTransportException::NOT_OPEN, "open() timed out");
Mark Slee29050782006-09-29 00:12:30 +0000224 } else {
David Reiss9b209552008-04-08 06:26:05 +0000225 // error on poll()
David Reissbc3dddb2007-08-22 23:20:24 +0000226 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000227 GlobalOutput.perror("TSocket::open() poll() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000228 throw TTransportException(TTransportException::NOT_OPEN, "poll() failed", errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000229 }
230
231 done:
232 // Set socket back to normal mode (blocking)
233 fcntl(socket_, F_SETFL, flags);
Mark Sleee8540632006-05-30 09:24:40 +0000234}
235
Mark Slee6d56eb92007-07-06 22:28:15 +0000236void TSocket::open() {
237 if (isOpen()) {
238 throw TTransportException(TTransportException::ALREADY_OPEN);
239 }
240
241 // Validate port number
David Reiss450e35d2010-03-09 05:19:41 +0000242 if (port_ < 0 || port_ > 0xFFFF) {
Mark Slee6d56eb92007-07-06 22:28:15 +0000243 throw TTransportException(TTransportException::NOT_OPEN, "Specified port is invalid");
244 }
245
246 struct addrinfo hints, *res, *res0;
David Reiss9b209552008-04-08 06:26:05 +0000247 res = NULL;
248 res0 = NULL;
Mark Slee6d56eb92007-07-06 22:28:15 +0000249 int error;
David Reiss450e35d2010-03-09 05:19:41 +0000250 char port[sizeof("65535")];
David Reissc88eb8c2008-06-11 01:18:54 +0000251 std::memset(&hints, 0, sizeof(hints));
Mark Slee6d56eb92007-07-06 22:28:15 +0000252 hints.ai_family = PF_UNSPEC;
253 hints.ai_socktype = SOCK_STREAM;
Mark Slee256bdc42007-11-27 08:42:19 +0000254 hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
Mark Slee6d56eb92007-07-06 22:28:15 +0000255 sprintf(port, "%d", port_);
Mark Slee256bdc42007-11-27 08:42:19 +0000256
Mark Sleec37b4c52007-12-05 23:03:37 +0000257 error = getaddrinfo(host_.c_str(), port, &hints, &res0);
258
Mark Slee6d56eb92007-07-06 22:28:15 +0000259 if (error) {
David Reiss9b209552008-04-08 06:26:05 +0000260 string errStr = "TSocket::open() getaddrinfo() " + getSocketInfo() + string(gai_strerror(error));
261 GlobalOutput(errStr.c_str());
Mark Slee6d56eb92007-07-06 22:28:15 +0000262 close();
263 throw TTransportException(TTransportException::NOT_OPEN, "Could not resolve host for client socket.");
264 }
Mark Slee256bdc42007-11-27 08:42:19 +0000265
Mark Slee6d56eb92007-07-06 22:28:15 +0000266 // Cycle through all the returned addresses until one
267 // connects or push the exception up.
268 for (res = res0; res; res = res->ai_next) {
269 try {
270 openConnection(res);
271 break;
272 } catch (TTransportException& ttx) {
273 if (res->ai_next) {
274 close();
275 } else {
276 close();
Mark Slee85287d32007-07-09 19:50:30 +0000277 freeaddrinfo(res0); // cleanup on failure
Mark Slee6d56eb92007-07-06 22:28:15 +0000278 throw;
279 }
280 }
281 }
Mark Slee85287d32007-07-09 19:50:30 +0000282
283 // Free address structure memory
284 freeaddrinfo(res0);
Mark Slee6d56eb92007-07-06 22:28:15 +0000285}
286
Mark Sleee8540632006-05-30 09:24:40 +0000287void TSocket::close() {
Martin Kraemeree341cb2007-02-05 21:40:38 +0000288 if (socket_ >= 0) {
Mark Sleee8540632006-05-30 09:24:40 +0000289 shutdown(socket_, SHUT_RDWR);
290 ::close(socket_);
291 }
Martin Kraemeree341cb2007-02-05 21:40:38 +0000292 socket_ = -1;
Mark Sleee8540632006-05-30 09:24:40 +0000293}
294
Mark Slee8d7e1f62006-06-07 06:48:56 +0000295uint32_t TSocket::read(uint8_t* buf, uint32_t len) {
Martin Kraemeree341cb2007-02-05 21:40:38 +0000296 if (socket_ < 0) {
Mark Sleef9831082007-02-20 20:59:21 +0000297 throw TTransportException(TTransportException::NOT_OPEN, "Called read on non-open socket");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000298 }
Mark Sleee8540632006-05-30 09:24:40 +0000299
Aditya Agarwale04475b2007-05-23 02:14:58 +0000300 int32_t retries = 0;
301
302 // EAGAIN can be signalled both when a timeout has occurred and when
303 // the system is out of resources (an awesome undocumented feature).
304 // The following is an approximation of the time interval under which
305 // EAGAIN is taken to indicate an out of resources error.
306 uint32_t eagainThresholdMicros = 0;
307 if (recvTimeout_) {
Mark Slee256bdc42007-11-27 08:42:19 +0000308 // if a readTimeout is specified along with a max number of recv retries, then
Aditya Agarwale04475b2007-05-23 02:14:58 +0000309 // the threshold will ensure that the read timeout is not exceeded even in the
310 // case of resource errors
311 eagainThresholdMicros = (recvTimeout_*1000)/ ((maxRecvRetries_>0) ? maxRecvRetries_ : 2);
312 }
313
Mark Slee256bdc42007-11-27 08:42:19 +0000314 try_again:
Mark Slee8d7e1f62006-06-07 06:48:56 +0000315 // Read from the socket
Aditya Agarwale04475b2007-05-23 02:14:58 +0000316 struct timeval begin;
317 gettimeofday(&begin, NULL);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000318 int got = recv(socket_, buf, len, 0);
Kevin Clark022b2242009-03-05 21:05:37 +0000319 int errno_copy = errno; //gettimeofday can change errno
Mark Slee8d7e1f62006-06-07 06:48:56 +0000320 ++g_socket_syscalls;
Aditya Agarwale04475b2007-05-23 02:14:58 +0000321
Mark Slee8d7e1f62006-06-07 06:48:56 +0000322 // Check for error on read
Mark Slee256bdc42007-11-27 08:42:19 +0000323 if (got < 0) {
Kevin Clark022b2242009-03-05 21:05:37 +0000324 if (errno_copy == EAGAIN) {
Aditya Agarwale04475b2007-05-23 02:14:58 +0000325 // check if this is the lack of resources or timeout case
David Reissa1a15112010-03-09 05:19:54 +0000326 struct timeval end;
327 gettimeofday(&end, NULL);
328 uint32_t readElapsedMicros = (((end.tv_sec - begin.tv_sec) * 1000 * 1000)
329 + (((uint64_t)(end.tv_usec - begin.tv_usec))));
330
Aditya Agarwale04475b2007-05-23 02:14:58 +0000331 if (!eagainThresholdMicros || (readElapsedMicros < eagainThresholdMicros)) {
332 if (retries++ < maxRecvRetries_) {
333 usleep(50);
334 goto try_again;
335 } else {
Mark Slee256bdc42007-11-27 08:42:19 +0000336 throw TTransportException(TTransportException::TIMED_OUT,
Aditya Agarwale04475b2007-05-23 02:14:58 +0000337 "EAGAIN (unavailable resources)");
338 }
339 } else {
340 // infer that timeout has been hit
Mark Slee256bdc42007-11-27 08:42:19 +0000341 throw TTransportException(TTransportException::TIMED_OUT,
Aditya Agarwale04475b2007-05-23 02:14:58 +0000342 "EAGAIN (timed out)");
343 }
Mark Sleee8540632006-05-30 09:24:40 +0000344 }
Mark Slee256bdc42007-11-27 08:42:19 +0000345
Mark Slee8d7e1f62006-06-07 06:48:56 +0000346 // If interrupted, try again
Kevin Clark022b2242009-03-05 21:05:37 +0000347 if (errno_copy == EINTR && retries++ < maxRecvRetries_) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000348 goto try_again;
Mark Sleee8540632006-05-30 09:24:40 +0000349 }
Mark Slee256bdc42007-11-27 08:42:19 +0000350
David Reiss840e7522009-06-04 00:10:50 +0000351 #if defined __FreeBSD__ || defined __MACH__
Kevin Clark022b2242009-03-05 21:05:37 +0000352 if (errno_copy == ECONNRESET) {
Kevin Clark022b2242009-03-05 21:05:37 +0000353 /* shigin: freebsd doesn't follow POSIX semantic of recv and fails with
354 * ECONNRESET if peer performed shutdown
355 */
356 close();
357 return 0;
David Reiss840e7522009-06-04 00:10:50 +0000358 }
359 #endif
360
361 // Now it's not a try again case, but a real probblez
362 GlobalOutput.perror("TSocket::read() recv() " + getSocketInfo(), errno_copy);
363
364 // If we disconnect with no linger time
365 if (errno_copy == ECONNRESET) {
Mark Sleef9831082007-02-20 20:59:21 +0000366 throw TTransportException(TTransportException::NOT_OPEN, "ECONNRESET");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000367 }
Mark Slee256bdc42007-11-27 08:42:19 +0000368
Mark Slee8d7e1f62006-06-07 06:48:56 +0000369 // This ish isn't open
Kevin Clark022b2242009-03-05 21:05:37 +0000370 if (errno_copy == ENOTCONN) {
Mark Sleef9831082007-02-20 20:59:21 +0000371 throw TTransportException(TTransportException::NOT_OPEN, "ENOTCONN");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000372 }
Mark Slee256bdc42007-11-27 08:42:19 +0000373
Mark Slee8d7e1f62006-06-07 06:48:56 +0000374 // Timed out!
Kevin Clark022b2242009-03-05 21:05:37 +0000375 if (errno_copy == ETIMEDOUT) {
Mark Sleef9831082007-02-20 20:59:21 +0000376 throw TTransportException(TTransportException::TIMED_OUT, "ETIMEDOUT");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000377 }
Mark Slee256bdc42007-11-27 08:42:19 +0000378
Mark Slee8d7e1f62006-06-07 06:48:56 +0000379 // Some other error, whatevz
David Reiss01e55c12008-07-13 22:18:51 +0000380 throw TTransportException(TTransportException::UNKNOWN, "Unknown", errno_copy);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000381 }
Mark Slee256bdc42007-11-27 08:42:19 +0000382
Mark Slee8d7e1f62006-06-07 06:48:56 +0000383 // The remote host has closed the socket
384 if (got == 0) {
385 close();
386 return 0;
Mark Sleee8540632006-05-30 09:24:40 +0000387 }
Mark Slee256bdc42007-11-27 08:42:19 +0000388
Mark Sleee8540632006-05-30 09:24:40 +0000389 // Pack data into string
Mark Slee8d7e1f62006-06-07 06:48:56 +0000390 return got;
Mark Sleee8540632006-05-30 09:24:40 +0000391}
392
Mark Slee8d7e1f62006-06-07 06:48:56 +0000393void TSocket::write(const uint8_t* buf, uint32_t len) {
Martin Kraemeree341cb2007-02-05 21:40:38 +0000394 if (socket_ < 0) {
Mark Sleef9831082007-02-20 20:59:21 +0000395 throw TTransportException(TTransportException::NOT_OPEN, "Called write on non-open socket");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000396 }
397
Mark Sleee8540632006-05-30 09:24:40 +0000398 uint32_t sent = 0;
Mark Slee256bdc42007-11-27 08:42:19 +0000399
Mark Slee8d7e1f62006-06-07 06:48:56 +0000400 while (sent < len) {
Marc Slemko9d4a3e22006-07-21 19:53:48 +0000401
402 int flags = 0;
Mark Slee29050782006-09-29 00:12:30 +0000403 #ifdef MSG_NOSIGNAL
Mark Slee8d7e1f62006-06-07 06:48:56 +0000404 // Note the use of MSG_NOSIGNAL to suppress SIGPIPE errors, instead we
405 // check for the EPIPE return condition and close the socket in that case
Marc Slemko9d4a3e22006-07-21 19:53:48 +0000406 flags |= MSG_NOSIGNAL;
Mark Slee29050782006-09-29 00:12:30 +0000407 #endif // ifdef MSG_NOSIGNAL
Marc Slemko9d4a3e22006-07-21 19:53:48 +0000408
409 int b = send(socket_, buf + sent, len - sent, flags);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000410 ++g_socket_syscalls;
411
Mark Sleee8540632006-05-30 09:24:40 +0000412 // Fail on a send error
413 if (b < 0) {
David Reiss9b209552008-04-08 06:26:05 +0000414 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000415 GlobalOutput.perror("TSocket::write() send() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000416
David Reissbc3dddb2007-08-22 23:20:24 +0000417 if (errno == EPIPE || errno == ECONNRESET || errno == ENOTCONN) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000418 close();
David Reiss9b209552008-04-08 06:26:05 +0000419 throw TTransportException(TTransportException::NOT_OPEN, "write() send()", errno_copy);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000420 }
421
David Reiss9b209552008-04-08 06:26:05 +0000422 throw TTransportException(TTransportException::UNKNOWN, "write() send()", errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000423 }
Mark Slee256bdc42007-11-27 08:42:19 +0000424
Mark Sleee8540632006-05-30 09:24:40 +0000425 // Fail on blocked send
426 if (b == 0) {
Mark Sleef9831082007-02-20 20:59:21 +0000427 throw TTransportException(TTransportException::NOT_OPEN, "Socket send returned 0.");
Mark Sleee8540632006-05-30 09:24:40 +0000428 }
Mark Sleee8540632006-05-30 09:24:40 +0000429 sent += b;
430 }
431}
432
dweatherford14b0ed62007-10-19 01:03:32 +0000433std::string TSocket::getHost() {
434 return host_;
435}
436
437int TSocket::getPort() {
438 return port_;
439}
440
Aditya Agarwalebc99e02007-01-15 23:14:58 +0000441void TSocket::setHost(string host) {
442 host_ = host;
443}
444
445void TSocket::setPort(int port) {
446 port_ = port;
447}
448
Mark Slee8d7e1f62006-06-07 06:48:56 +0000449void TSocket::setLinger(bool on, int linger) {
Mark Slee29050782006-09-29 00:12:30 +0000450 lingerOn_ = on;
451 lingerVal_ = linger;
Martin Kraemeree341cb2007-02-05 21:40:38 +0000452 if (socket_ < 0) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000453 return;
454 }
455
Mark Slee29050782006-09-29 00:12:30 +0000456 struct linger l = {(lingerOn_ ? 1 : 0), lingerVal_};
457 int ret = setsockopt(socket_, SOL_SOCKET, SO_LINGER, &l, sizeof(l));
458 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000459 int errno_copy = errno; // Copy errno because we're allocating memory.
460 GlobalOutput.perror("TSocket::setLinger() setsockopt() " + getSocketInfo(), errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000461 }
Mark Sleee8540632006-05-30 09:24:40 +0000462}
463
Mark Slee8d7e1f62006-06-07 06:48:56 +0000464void TSocket::setNoDelay(bool noDelay) {
Mark Slee29050782006-09-29 00:12:30 +0000465 noDelay_ = noDelay;
Martin Kraemeree341cb2007-02-05 21:40:38 +0000466 if (socket_ < 0) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000467 return;
468 }
469
Mark Sleee8540632006-05-30 09:24:40 +0000470 // Set socket to NODELAY
Mark Slee29050782006-09-29 00:12:30 +0000471 int v = noDelay_ ? 1 : 0;
472 int ret = setsockopt(socket_, IPPROTO_TCP, TCP_NODELAY, &v, sizeof(v));
473 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000474 int errno_copy = errno; // Copy errno because we're allocating memory.
475 GlobalOutput.perror("TSocket::setNoDelay() setsockopt() " + getSocketInfo(), errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000476 }
Mark Sleee8540632006-05-30 09:24:40 +0000477}
Mark Slee29050782006-09-29 00:12:30 +0000478
479void TSocket::setConnTimeout(int ms) {
480 connTimeout_ = ms;
481}
482
483void TSocket::setRecvTimeout(int ms) {
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000484 if (ms < 0) {
485 char errBuf[512];
486 sprintf(errBuf, "TSocket::setRecvTimeout with negative input: %d\n", ms);
487 GlobalOutput(errBuf);
488 return;
489 }
Mark Slee29050782006-09-29 00:12:30 +0000490 recvTimeout_ = ms;
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000491
Martin Kraemeree341cb2007-02-05 21:40:38 +0000492 if (socket_ < 0) {
Mark Slee29050782006-09-29 00:12:30 +0000493 return;
494 }
495
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000496 recvTimeval_.tv_sec = (int)(recvTimeout_/1000);
497 recvTimeval_.tv_usec = (int)((recvTimeout_%1000)*1000);
498
David Reiss22b18862008-04-08 06:25:45 +0000499 // Copy because poll may modify
Mark Sleeb9ff32a2006-11-16 01:00:24 +0000500 struct timeval r = recvTimeval_;
Mark Slee29050782006-09-29 00:12:30 +0000501 int ret = setsockopt(socket_, SOL_SOCKET, SO_RCVTIMEO, &r, sizeof(r));
502 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000503 int errno_copy = errno; // Copy errno because we're allocating memory.
504 GlobalOutput.perror("TSocket::setRecvTimeout() setsockopt() " + getSocketInfo(), errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000505 }
506}
507
508void TSocket::setSendTimeout(int ms) {
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000509 if (ms < 0) {
510 char errBuf[512];
511 sprintf(errBuf, "TSocket::setSendTimeout with negative input: %d\n", ms);
512 GlobalOutput(errBuf);
513 return;
514 }
Mark Slee29050782006-09-29 00:12:30 +0000515 sendTimeout_ = ms;
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000516
Martin Kraemeree341cb2007-02-05 21:40:38 +0000517 if (socket_ < 0) {
Mark Slee29050782006-09-29 00:12:30 +0000518 return;
519 }
Mark Slee256bdc42007-11-27 08:42:19 +0000520
Mark Slee29050782006-09-29 00:12:30 +0000521 struct timeval s = {(int)(sendTimeout_/1000),
522 (int)((sendTimeout_%1000)*1000)};
523 int ret = setsockopt(socket_, SOL_SOCKET, SO_SNDTIMEO, &s, sizeof(s));
524 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000525 int errno_copy = errno; // Copy errno because we're allocating memory.
526 GlobalOutput.perror("TSocket::setSendTimeout() setsockopt() " + getSocketInfo(), errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000527 }
528}
529
Aditya Agarwale04475b2007-05-23 02:14:58 +0000530void TSocket::setMaxRecvRetries(int maxRecvRetries) {
531 maxRecvRetries_ = maxRecvRetries;
532}
533
Aditya Agarwal4529c4b2007-09-05 01:01:15 +0000534string TSocket::getSocketInfo() {
535 std::ostringstream oss;
536 oss << "<Host: " << host_ << " Port: " << port_ << ">";
537 return oss.str();
538}
539
Mark Sleeb4552922007-11-28 00:12:11 +0000540std::string TSocket::getPeerHost() {
541 if (peerHost_.empty()) {
542 struct sockaddr_storage addr;
543 socklen_t addrLen = sizeof(addr);
544
545 if (socket_ < 0) {
546 return host_;
547 }
548
549 int rv = getpeername(socket_, (sockaddr*) &addr, &addrLen);
550
551 if (rv != 0) {
552 return peerHost_;
553 }
554
555 char clienthost[NI_MAXHOST];
556 char clientservice[NI_MAXSERV];
557
558 getnameinfo((sockaddr*) &addr, addrLen,
559 clienthost, sizeof(clienthost),
560 clientservice, sizeof(clientservice), 0);
561
562 peerHost_ = clienthost;
563 }
564 return peerHost_;
565}
566
567std::string TSocket::getPeerAddress() {
568 if (peerAddress_.empty()) {
569 struct sockaddr_storage addr;
570 socklen_t addrLen = sizeof(addr);
571
572 if (socket_ < 0) {
573 return peerAddress_;
574 }
575
576 int rv = getpeername(socket_, (sockaddr*) &addr, &addrLen);
577
578 if (rv != 0) {
579 return peerAddress_;
580 }
581
582 char clienthost[NI_MAXHOST];
583 char clientservice[NI_MAXSERV];
584
585 getnameinfo((sockaddr*) &addr, addrLen,
586 clienthost, sizeof(clienthost),
587 clientservice, sizeof(clientservice),
588 NI_NUMERICHOST|NI_NUMERICSERV);
589
590 peerAddress_ = clienthost;
591 peerPort_ = std::atoi(clientservice);
592 }
593 return peerAddress_;
594}
595
596int TSocket::getPeerPort() {
597 getPeerAddress();
598 return peerPort_;
599}
600
David Reiss1c20c872010-03-09 05:20:14 +0000601bool TSocket::useLowMinRto_ = false;
602void TSocket::setUseLowMinRto(bool useLowMinRto) {
603 useLowMinRto_ = useLowMinRto;
604}
605bool TSocket::getUseLowMinRto() {
606 return useLowMinRto_;
607}
608
T Jake Lucianib5e62212009-01-31 22:36:20 +0000609}}} // apache::thrift::transport