blob: 55e8dc32d1c4b9e9c98a9341e0c309b8b1b75347 [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
Mark Slee29050782006-09-29 00:12:30 +0000156 // Set the socket to be non blocking for connect if a timeout exists
Mark Slee256bdc42007-11-27 08:42:19 +0000157 int flags = fcntl(socket_, F_GETFL, 0);
Mark Slee29050782006-09-29 00:12:30 +0000158 if (connTimeout_ > 0) {
Mark Sleea5a783f2007-03-02 19:41:08 +0000159 if (-1 == fcntl(socket_, F_SETFL, flags | O_NONBLOCK)) {
David Reiss9b209552008-04-08 06:26:05 +0000160 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000161 GlobalOutput.perror("TSocket::open() fcntl() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000162 throw TTransportException(TTransportException::NOT_OPEN, "fcntl() failed", errno_copy);
Mark Sleea5a783f2007-03-02 19:41:08 +0000163 }
Mark Slee29050782006-09-29 00:12:30 +0000164 } else {
Mark Sleea5a783f2007-03-02 19:41:08 +0000165 if (-1 == fcntl(socket_, F_SETFL, flags & ~O_NONBLOCK)) {
David Reiss9b209552008-04-08 06:26:05 +0000166 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000167 GlobalOutput.perror("TSocket::open() fcntl " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000168 throw TTransportException(TTransportException::NOT_OPEN, "fcntl() failed", errno_copy);
Mark Sleea5a783f2007-03-02 19:41:08 +0000169 }
Mark Slee29050782006-09-29 00:12:30 +0000170 }
171
Mark Sleee8540632006-05-30 09:24:40 +0000172 // Connect the socket
Mark Slee6d56eb92007-07-06 22:28:15 +0000173 int ret = connect(socket_, res->ai_addr, res->ai_addrlen);
Mark Slee256bdc42007-11-27 08:42:19 +0000174
David Reiss9b209552008-04-08 06:26:05 +0000175 // success case
Mark Slee29050782006-09-29 00:12:30 +0000176 if (ret == 0) {
177 goto done;
178 }
179
180 if (errno != EINPROGRESS) {
David Reissbc3dddb2007-08-22 23:20:24 +0000181 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000182 GlobalOutput.perror("TSocket::open() connect() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000183 throw TTransportException(TTransportException::NOT_OPEN, "connect() failed", errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000184 }
185
David Reiss22b18862008-04-08 06:25:45 +0000186
187 struct pollfd fds[1];
David Reissc88eb8c2008-06-11 01:18:54 +0000188 std::memset(fds, 0 , sizeof(fds));
David Reiss22b18862008-04-08 06:25:45 +0000189 fds[0].fd = socket_;
190 fds[0].events = POLLOUT;
191 ret = poll(fds, 1, connTimeout_);
Mark Slee29050782006-09-29 00:12:30 +0000192
193 if (ret > 0) {
David Reiss9b209552008-04-08 06:26:05 +0000194 // Ensure the socket is connected and that there are no errors set
Mark Slee29050782006-09-29 00:12:30 +0000195 int val;
196 socklen_t lon;
197 lon = sizeof(int);
198 int ret2 = getsockopt(socket_, SOL_SOCKET, SO_ERROR, (void *)&val, &lon);
199 if (ret2 == -1) {
David Reissbc3dddb2007-08-22 23:20:24 +0000200 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000201 GlobalOutput.perror("TSocket::open() getsockopt() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000202 throw TTransportException(TTransportException::NOT_OPEN, "getsockopt()", errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000203 }
David Reiss9b209552008-04-08 06:26:05 +0000204 // no errors on socket, go to town
Mark Slee29050782006-09-29 00:12:30 +0000205 if (val == 0) {
206 goto done;
207 }
David Reiss01e55c12008-07-13 22:18:51 +0000208 GlobalOutput.perror("TSocket::open() error on socket (after poll) " + getSocketInfo(), val);
David Reiss9b209552008-04-08 06:26:05 +0000209 throw TTransportException(TTransportException::NOT_OPEN, "socket open() error", val);
Mark Slee29050782006-09-29 00:12:30 +0000210 } else if (ret == 0) {
David Reiss9b209552008-04-08 06:26:05 +0000211 // socket timed out
Aditya Agarwal4529c4b2007-09-05 01:01:15 +0000212 string errStr = "TSocket::open() timed out " + getSocketInfo();
213 GlobalOutput(errStr.c_str());
David Reiss9b209552008-04-08 06:26:05 +0000214 throw TTransportException(TTransportException::NOT_OPEN, "open() timed out");
Mark Slee29050782006-09-29 00:12:30 +0000215 } else {
David Reiss9b209552008-04-08 06:26:05 +0000216 // error on poll()
David Reissbc3dddb2007-08-22 23:20:24 +0000217 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000218 GlobalOutput.perror("TSocket::open() poll() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000219 throw TTransportException(TTransportException::NOT_OPEN, "poll() failed", errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000220 }
221
222 done:
223 // Set socket back to normal mode (blocking)
224 fcntl(socket_, F_SETFL, flags);
Mark Sleee8540632006-05-30 09:24:40 +0000225}
226
Mark Slee6d56eb92007-07-06 22:28:15 +0000227void TSocket::open() {
228 if (isOpen()) {
229 throw TTransportException(TTransportException::ALREADY_OPEN);
230 }
231
232 // Validate port number
David Reiss450e35d2010-03-09 05:19:41 +0000233 if (port_ < 0 || port_ > 0xFFFF) {
Mark Slee6d56eb92007-07-06 22:28:15 +0000234 throw TTransportException(TTransportException::NOT_OPEN, "Specified port is invalid");
235 }
236
237 struct addrinfo hints, *res, *res0;
David Reiss9b209552008-04-08 06:26:05 +0000238 res = NULL;
239 res0 = NULL;
Mark Slee6d56eb92007-07-06 22:28:15 +0000240 int error;
David Reiss450e35d2010-03-09 05:19:41 +0000241 char port[sizeof("65535")];
David Reissc88eb8c2008-06-11 01:18:54 +0000242 std::memset(&hints, 0, sizeof(hints));
Mark Slee6d56eb92007-07-06 22:28:15 +0000243 hints.ai_family = PF_UNSPEC;
244 hints.ai_socktype = SOCK_STREAM;
Mark Slee256bdc42007-11-27 08:42:19 +0000245 hints.ai_flags = AI_PASSIVE | AI_ADDRCONFIG;
Mark Slee6d56eb92007-07-06 22:28:15 +0000246 sprintf(port, "%d", port_);
Mark Slee256bdc42007-11-27 08:42:19 +0000247
Mark Sleec37b4c52007-12-05 23:03:37 +0000248 error = getaddrinfo(host_.c_str(), port, &hints, &res0);
249
Mark Slee6d56eb92007-07-06 22:28:15 +0000250 if (error) {
David Reiss9b209552008-04-08 06:26:05 +0000251 string errStr = "TSocket::open() getaddrinfo() " + getSocketInfo() + string(gai_strerror(error));
252 GlobalOutput(errStr.c_str());
Mark Slee6d56eb92007-07-06 22:28:15 +0000253 close();
254 throw TTransportException(TTransportException::NOT_OPEN, "Could not resolve host for client socket.");
255 }
Mark Slee256bdc42007-11-27 08:42:19 +0000256
Mark Slee6d56eb92007-07-06 22:28:15 +0000257 // Cycle through all the returned addresses until one
258 // connects or push the exception up.
259 for (res = res0; res; res = res->ai_next) {
260 try {
261 openConnection(res);
262 break;
263 } catch (TTransportException& ttx) {
264 if (res->ai_next) {
265 close();
266 } else {
267 close();
Mark Slee85287d32007-07-09 19:50:30 +0000268 freeaddrinfo(res0); // cleanup on failure
Mark Slee6d56eb92007-07-06 22:28:15 +0000269 throw;
270 }
271 }
272 }
Mark Slee85287d32007-07-09 19:50:30 +0000273
274 // Free address structure memory
275 freeaddrinfo(res0);
Mark Slee6d56eb92007-07-06 22:28:15 +0000276}
277
Mark Sleee8540632006-05-30 09:24:40 +0000278void TSocket::close() {
Martin Kraemeree341cb2007-02-05 21:40:38 +0000279 if (socket_ >= 0) {
Mark Sleee8540632006-05-30 09:24:40 +0000280 shutdown(socket_, SHUT_RDWR);
281 ::close(socket_);
282 }
Martin Kraemeree341cb2007-02-05 21:40:38 +0000283 socket_ = -1;
Mark Sleee8540632006-05-30 09:24:40 +0000284}
285
Mark Slee8d7e1f62006-06-07 06:48:56 +0000286uint32_t TSocket::read(uint8_t* buf, uint32_t len) {
Martin Kraemeree341cb2007-02-05 21:40:38 +0000287 if (socket_ < 0) {
Mark Sleef9831082007-02-20 20:59:21 +0000288 throw TTransportException(TTransportException::NOT_OPEN, "Called read on non-open socket");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000289 }
Mark Sleee8540632006-05-30 09:24:40 +0000290
Aditya Agarwale04475b2007-05-23 02:14:58 +0000291 int32_t retries = 0;
292
293 // EAGAIN can be signalled both when a timeout has occurred and when
294 // the system is out of resources (an awesome undocumented feature).
295 // The following is an approximation of the time interval under which
296 // EAGAIN is taken to indicate an out of resources error.
297 uint32_t eagainThresholdMicros = 0;
298 if (recvTimeout_) {
Mark Slee256bdc42007-11-27 08:42:19 +0000299 // if a readTimeout is specified along with a max number of recv retries, then
Aditya Agarwale04475b2007-05-23 02:14:58 +0000300 // the threshold will ensure that the read timeout is not exceeded even in the
301 // case of resource errors
302 eagainThresholdMicros = (recvTimeout_*1000)/ ((maxRecvRetries_>0) ? maxRecvRetries_ : 2);
303 }
304
Mark Slee256bdc42007-11-27 08:42:19 +0000305 try_again:
Mark Slee8d7e1f62006-06-07 06:48:56 +0000306 // Read from the socket
Aditya Agarwale04475b2007-05-23 02:14:58 +0000307 struct timeval begin;
308 gettimeofday(&begin, NULL);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000309 int got = recv(socket_, buf, len, 0);
Kevin Clark022b2242009-03-05 21:05:37 +0000310 int errno_copy = errno; //gettimeofday can change errno
Aditya Agarwale04475b2007-05-23 02:14:58 +0000311 struct timeval end;
312 gettimeofday(&end, NULL);
313 uint32_t readElapsedMicros = (((end.tv_sec - begin.tv_sec) * 1000 * 1000)
314 + (((uint64_t)(end.tv_usec - begin.tv_usec))));
Mark Slee8d7e1f62006-06-07 06:48:56 +0000315 ++g_socket_syscalls;
Aditya Agarwale04475b2007-05-23 02:14:58 +0000316
Mark Slee8d7e1f62006-06-07 06:48:56 +0000317 // Check for error on read
Mark Slee256bdc42007-11-27 08:42:19 +0000318 if (got < 0) {
Kevin Clark022b2242009-03-05 21:05:37 +0000319 if (errno_copy == EAGAIN) {
Aditya Agarwale04475b2007-05-23 02:14:58 +0000320 // check if this is the lack of resources or timeout case
321 if (!eagainThresholdMicros || (readElapsedMicros < eagainThresholdMicros)) {
322 if (retries++ < maxRecvRetries_) {
323 usleep(50);
324 goto try_again;
325 } else {
Mark Slee256bdc42007-11-27 08:42:19 +0000326 throw TTransportException(TTransportException::TIMED_OUT,
Aditya Agarwale04475b2007-05-23 02:14:58 +0000327 "EAGAIN (unavailable resources)");
328 }
329 } else {
330 // infer that timeout has been hit
Mark Slee256bdc42007-11-27 08:42:19 +0000331 throw TTransportException(TTransportException::TIMED_OUT,
Aditya Agarwale04475b2007-05-23 02:14:58 +0000332 "EAGAIN (timed out)");
333 }
Mark Sleee8540632006-05-30 09:24:40 +0000334 }
Mark Slee256bdc42007-11-27 08:42:19 +0000335
Mark Slee8d7e1f62006-06-07 06:48:56 +0000336 // If interrupted, try again
Kevin Clark022b2242009-03-05 21:05:37 +0000337 if (errno_copy == EINTR && retries++ < maxRecvRetries_) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000338 goto try_again;
Mark Sleee8540632006-05-30 09:24:40 +0000339 }
Mark Slee256bdc42007-11-27 08:42:19 +0000340
David Reiss840e7522009-06-04 00:10:50 +0000341 #if defined __FreeBSD__ || defined __MACH__
Kevin Clark022b2242009-03-05 21:05:37 +0000342 if (errno_copy == ECONNRESET) {
Kevin Clark022b2242009-03-05 21:05:37 +0000343 /* shigin: freebsd doesn't follow POSIX semantic of recv and fails with
344 * ECONNRESET if peer performed shutdown
345 */
346 close();
347 return 0;
David Reiss840e7522009-06-04 00:10:50 +0000348 }
349 #endif
350
351 // Now it's not a try again case, but a real probblez
352 GlobalOutput.perror("TSocket::read() recv() " + getSocketInfo(), errno_copy);
353
354 // If we disconnect with no linger time
355 if (errno_copy == ECONNRESET) {
Mark Sleef9831082007-02-20 20:59:21 +0000356 throw TTransportException(TTransportException::NOT_OPEN, "ECONNRESET");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000357 }
Mark Slee256bdc42007-11-27 08:42:19 +0000358
Mark Slee8d7e1f62006-06-07 06:48:56 +0000359 // This ish isn't open
Kevin Clark022b2242009-03-05 21:05:37 +0000360 if (errno_copy == ENOTCONN) {
Mark Sleef9831082007-02-20 20:59:21 +0000361 throw TTransportException(TTransportException::NOT_OPEN, "ENOTCONN");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000362 }
Mark Slee256bdc42007-11-27 08:42:19 +0000363
Mark Slee8d7e1f62006-06-07 06:48:56 +0000364 // Timed out!
Kevin Clark022b2242009-03-05 21:05:37 +0000365 if (errno_copy == ETIMEDOUT) {
Mark Sleef9831082007-02-20 20:59:21 +0000366 throw TTransportException(TTransportException::TIMED_OUT, "ETIMEDOUT");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000367 }
Mark Slee256bdc42007-11-27 08:42:19 +0000368
Mark Slee8d7e1f62006-06-07 06:48:56 +0000369 // Some other error, whatevz
David Reiss01e55c12008-07-13 22:18:51 +0000370 throw TTransportException(TTransportException::UNKNOWN, "Unknown", errno_copy);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000371 }
Mark Slee256bdc42007-11-27 08:42:19 +0000372
Mark Slee8d7e1f62006-06-07 06:48:56 +0000373 // The remote host has closed the socket
374 if (got == 0) {
375 close();
376 return 0;
Mark Sleee8540632006-05-30 09:24:40 +0000377 }
Mark Slee256bdc42007-11-27 08:42:19 +0000378
Mark Sleee8540632006-05-30 09:24:40 +0000379 // Pack data into string
Mark Slee8d7e1f62006-06-07 06:48:56 +0000380 return got;
Mark Sleee8540632006-05-30 09:24:40 +0000381}
382
Mark Slee8d7e1f62006-06-07 06:48:56 +0000383void TSocket::write(const uint8_t* buf, uint32_t len) {
Martin Kraemeree341cb2007-02-05 21:40:38 +0000384 if (socket_ < 0) {
Mark Sleef9831082007-02-20 20:59:21 +0000385 throw TTransportException(TTransportException::NOT_OPEN, "Called write on non-open socket");
Mark Slee8d7e1f62006-06-07 06:48:56 +0000386 }
387
Mark Sleee8540632006-05-30 09:24:40 +0000388 uint32_t sent = 0;
Mark Slee256bdc42007-11-27 08:42:19 +0000389
Mark Slee8d7e1f62006-06-07 06:48:56 +0000390 while (sent < len) {
Marc Slemko9d4a3e22006-07-21 19:53:48 +0000391
392 int flags = 0;
Mark Slee29050782006-09-29 00:12:30 +0000393 #ifdef MSG_NOSIGNAL
Mark Slee8d7e1f62006-06-07 06:48:56 +0000394 // Note the use of MSG_NOSIGNAL to suppress SIGPIPE errors, instead we
395 // check for the EPIPE return condition and close the socket in that case
Marc Slemko9d4a3e22006-07-21 19:53:48 +0000396 flags |= MSG_NOSIGNAL;
Mark Slee29050782006-09-29 00:12:30 +0000397 #endif // ifdef MSG_NOSIGNAL
Marc Slemko9d4a3e22006-07-21 19:53:48 +0000398
399 int b = send(socket_, buf + sent, len - sent, flags);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000400 ++g_socket_syscalls;
401
Mark Sleee8540632006-05-30 09:24:40 +0000402 // Fail on a send error
403 if (b < 0) {
David Reiss9b209552008-04-08 06:26:05 +0000404 int errno_copy = errno;
David Reiss01e55c12008-07-13 22:18:51 +0000405 GlobalOutput.perror("TSocket::write() send() " + getSocketInfo(), errno_copy);
David Reiss9b209552008-04-08 06:26:05 +0000406
David Reissbc3dddb2007-08-22 23:20:24 +0000407 if (errno == EPIPE || errno == ECONNRESET || errno == ENOTCONN) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000408 close();
David Reiss9b209552008-04-08 06:26:05 +0000409 throw TTransportException(TTransportException::NOT_OPEN, "write() send()", errno_copy);
Mark Slee8d7e1f62006-06-07 06:48:56 +0000410 }
411
David Reiss9b209552008-04-08 06:26:05 +0000412 throw TTransportException(TTransportException::UNKNOWN, "write() send()", errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000413 }
Mark Slee256bdc42007-11-27 08:42:19 +0000414
Mark Sleee8540632006-05-30 09:24:40 +0000415 // Fail on blocked send
416 if (b == 0) {
Mark Sleef9831082007-02-20 20:59:21 +0000417 throw TTransportException(TTransportException::NOT_OPEN, "Socket send returned 0.");
Mark Sleee8540632006-05-30 09:24:40 +0000418 }
Mark Sleee8540632006-05-30 09:24:40 +0000419 sent += b;
420 }
421}
422
dweatherford14b0ed62007-10-19 01:03:32 +0000423std::string TSocket::getHost() {
424 return host_;
425}
426
427int TSocket::getPort() {
428 return port_;
429}
430
Aditya Agarwalebc99e02007-01-15 23:14:58 +0000431void TSocket::setHost(string host) {
432 host_ = host;
433}
434
435void TSocket::setPort(int port) {
436 port_ = port;
437}
438
Mark Slee8d7e1f62006-06-07 06:48:56 +0000439void TSocket::setLinger(bool on, int linger) {
Mark Slee29050782006-09-29 00:12:30 +0000440 lingerOn_ = on;
441 lingerVal_ = linger;
Martin Kraemeree341cb2007-02-05 21:40:38 +0000442 if (socket_ < 0) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000443 return;
444 }
445
Mark Slee29050782006-09-29 00:12:30 +0000446 struct linger l = {(lingerOn_ ? 1 : 0), lingerVal_};
447 int ret = setsockopt(socket_, SOL_SOCKET, SO_LINGER, &l, sizeof(l));
448 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000449 int errno_copy = errno; // Copy errno because we're allocating memory.
450 GlobalOutput.perror("TSocket::setLinger() setsockopt() " + getSocketInfo(), errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000451 }
Mark Sleee8540632006-05-30 09:24:40 +0000452}
453
Mark Slee8d7e1f62006-06-07 06:48:56 +0000454void TSocket::setNoDelay(bool noDelay) {
Mark Slee29050782006-09-29 00:12:30 +0000455 noDelay_ = noDelay;
Martin Kraemeree341cb2007-02-05 21:40:38 +0000456 if (socket_ < 0) {
Mark Slee8d7e1f62006-06-07 06:48:56 +0000457 return;
458 }
459
Mark Sleee8540632006-05-30 09:24:40 +0000460 // Set socket to NODELAY
Mark Slee29050782006-09-29 00:12:30 +0000461 int v = noDelay_ ? 1 : 0;
462 int ret = setsockopt(socket_, IPPROTO_TCP, TCP_NODELAY, &v, sizeof(v));
463 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000464 int errno_copy = errno; // Copy errno because we're allocating memory.
465 GlobalOutput.perror("TSocket::setNoDelay() setsockopt() " + getSocketInfo(), errno_copy);
Mark Sleee8540632006-05-30 09:24:40 +0000466 }
Mark Sleee8540632006-05-30 09:24:40 +0000467}
Mark Slee29050782006-09-29 00:12:30 +0000468
469void TSocket::setConnTimeout(int ms) {
470 connTimeout_ = ms;
471}
472
473void TSocket::setRecvTimeout(int ms) {
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000474 if (ms < 0) {
475 char errBuf[512];
476 sprintf(errBuf, "TSocket::setRecvTimeout with negative input: %d\n", ms);
477 GlobalOutput(errBuf);
478 return;
479 }
Mark Slee29050782006-09-29 00:12:30 +0000480 recvTimeout_ = ms;
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000481
Martin Kraemeree341cb2007-02-05 21:40:38 +0000482 if (socket_ < 0) {
Mark Slee29050782006-09-29 00:12:30 +0000483 return;
484 }
485
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000486 recvTimeval_.tv_sec = (int)(recvTimeout_/1000);
487 recvTimeval_.tv_usec = (int)((recvTimeout_%1000)*1000);
488
David Reiss22b18862008-04-08 06:25:45 +0000489 // Copy because poll may modify
Mark Sleeb9ff32a2006-11-16 01:00:24 +0000490 struct timeval r = recvTimeval_;
Mark Slee29050782006-09-29 00:12:30 +0000491 int ret = setsockopt(socket_, SOL_SOCKET, SO_RCVTIMEO, &r, sizeof(r));
492 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000493 int errno_copy = errno; // Copy errno because we're allocating memory.
494 GlobalOutput.perror("TSocket::setRecvTimeout() setsockopt() " + getSocketInfo(), errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000495 }
496}
497
498void TSocket::setSendTimeout(int ms) {
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000499 if (ms < 0) {
500 char errBuf[512];
501 sprintf(errBuf, "TSocket::setSendTimeout with negative input: %d\n", ms);
502 GlobalOutput(errBuf);
503 return;
504 }
Mark Slee29050782006-09-29 00:12:30 +0000505 sendTimeout_ = ms;
Aditya Agarwalc31769c2007-12-11 22:23:51 +0000506
Martin Kraemeree341cb2007-02-05 21:40:38 +0000507 if (socket_ < 0) {
Mark Slee29050782006-09-29 00:12:30 +0000508 return;
509 }
Mark Slee256bdc42007-11-27 08:42:19 +0000510
Mark Slee29050782006-09-29 00:12:30 +0000511 struct timeval s = {(int)(sendTimeout_/1000),
512 (int)((sendTimeout_%1000)*1000)};
513 int ret = setsockopt(socket_, SOL_SOCKET, SO_SNDTIMEO, &s, sizeof(s));
514 if (ret == -1) {
David Reiss01e55c12008-07-13 22:18:51 +0000515 int errno_copy = errno; // Copy errno because we're allocating memory.
516 GlobalOutput.perror("TSocket::setSendTimeout() setsockopt() " + getSocketInfo(), errno_copy);
Mark Slee29050782006-09-29 00:12:30 +0000517 }
518}
519
Aditya Agarwale04475b2007-05-23 02:14:58 +0000520void TSocket::setMaxRecvRetries(int maxRecvRetries) {
521 maxRecvRetries_ = maxRecvRetries;
522}
523
Aditya Agarwal4529c4b2007-09-05 01:01:15 +0000524string TSocket::getSocketInfo() {
525 std::ostringstream oss;
526 oss << "<Host: " << host_ << " Port: " << port_ << ">";
527 return oss.str();
528}
529
Mark Sleeb4552922007-11-28 00:12:11 +0000530std::string TSocket::getPeerHost() {
531 if (peerHost_.empty()) {
532 struct sockaddr_storage addr;
533 socklen_t addrLen = sizeof(addr);
534
535 if (socket_ < 0) {
536 return host_;
537 }
538
539 int rv = getpeername(socket_, (sockaddr*) &addr, &addrLen);
540
541 if (rv != 0) {
542 return peerHost_;
543 }
544
545 char clienthost[NI_MAXHOST];
546 char clientservice[NI_MAXSERV];
547
548 getnameinfo((sockaddr*) &addr, addrLen,
549 clienthost, sizeof(clienthost),
550 clientservice, sizeof(clientservice), 0);
551
552 peerHost_ = clienthost;
553 }
554 return peerHost_;
555}
556
557std::string TSocket::getPeerAddress() {
558 if (peerAddress_.empty()) {
559 struct sockaddr_storage addr;
560 socklen_t addrLen = sizeof(addr);
561
562 if (socket_ < 0) {
563 return peerAddress_;
564 }
565
566 int rv = getpeername(socket_, (sockaddr*) &addr, &addrLen);
567
568 if (rv != 0) {
569 return peerAddress_;
570 }
571
572 char clienthost[NI_MAXHOST];
573 char clientservice[NI_MAXSERV];
574
575 getnameinfo((sockaddr*) &addr, addrLen,
576 clienthost, sizeof(clienthost),
577 clientservice, sizeof(clientservice),
578 NI_NUMERICHOST|NI_NUMERICSERV);
579
580 peerAddress_ = clienthost;
581 peerPort_ = std::atoi(clientservice);
582 }
583 return peerAddress_;
584}
585
586int TSocket::getPeerPort() {
587 getPeerAddress();
588 return peerPort_;
589}
590
T Jake Lucianib5e62212009-01-31 22:36:20 +0000591}}} // apache::thrift::transport