kanoi 10 years ago
parent
commit
3a8b793fbb
  1. 17
      src/connector.c
  2. 18
      src/libckpool.c

17
src/connector.c

@ -219,7 +219,6 @@ static int accept_client(cdata_t *cdata, const int epfd, const uint64_t server)
}
keep_sockalive(fd);
nolinger_socket(fd);
LOGINFO("Connected new client %d on socket %d to %d active clients from %s:%d",
cdata->nfds, fd, no_clients, client->address_name, port);
@ -258,7 +257,8 @@ static int drop_client(cdata_t *cdata, client_instance_t *client)
if (fd != -1) {
client_id = client->id;
epoll_ctl(cdata->epfd, EPOLL_CTL_DEL, client->fd, NULL);
epoll_ctl(cdata->epfd, EPOLL_CTL_DEL, fd, NULL);
nolinger_socket(fd);
Close(client->fd);
HASH_DEL(cdata->clients, client);
DL_APPEND(cdata->dead_clients, client);
@ -318,31 +318,26 @@ static void send_client(cdata_t *cdata, int64_t id, char *buf);
/* Client is holding a reference count from being on the epoll list */
static void parse_client_msg(cdata_t *cdata, client_instance_t *client)
{
int buflen, ret, selfail = 0;
ckpool_t *ckp = cdata->ckp;
char msg[PAGESIZE], *eol;
int buflen, ret;
json_t *val;
retry:
/* Select should always return positive after poll unless we have
* been disconnected. On retries, decdatade whether we should do further
* reads based on select readiness and only fail if we get an error. */
ret = wait_read_select(client->fd, 0);
if (ret < 1) {
if (ret > selfail)
if (!ret)
return;
LOGINFO("Client fd %d disconnected - select fail with bufofs %d ret %d errno %d %s",
client->fd, client->bufofs, ret, errno, ret && errno ? strerror(errno) : "");
invalidate_client(ckp, cdata, client);
return;
}
selfail = -1;
buflen = PAGESIZE - client->bufofs;
ret = recv(client->fd, client->buf + client->bufofs, buflen, 0);
if (ret < 1) {
/* We should have something to read if called since poll set
* this fd's revents status so if there's nothing it means the
* client has disconnected. */
if (!ret)
return;
LOGINFO("Client fd %d disconnected - recv fail with bufofs %d ret %d errno %d %s",
client->fd, client->bufofs, ret, errno, ret && errno ? strerror(errno) : "");
invalidate_client(ckp, cdata, client);

18
src/libckpool.c

@ -906,14 +906,19 @@ int wait_close(int sockd, int timeout)
int wait_read_select(int sockd, int timeout)
{
struct pollfd sfd;
int ret = -1;
if (unlikely(sockd < 0))
return -1;
goto out;
sfd.fd = sockd;
sfd.events = POLLIN;
sfd.revents = 0;
timeout *= 1000;
return poll(&sfd, 1, timeout);
ret = poll(&sfd, 1, timeout);
if (ret && !(sfd.revents & POLLIN))
ret = -1;
out:
return ret;
}
int read_length(int sockd, void *buf, int len)
@ -983,14 +988,19 @@ out:
int wait_write_select(int sockd, int timeout)
{
struct pollfd sfd;
int ret = -1;
if (unlikely(sockd < 0))
return -1;
goto out;
sfd.fd = sockd;
sfd.events = POLLOUT;
sfd.revents = 0;
timeout *= 1000;
return poll(&sfd, 1, timeout);
ret = poll(&sfd, 1, timeout);
if (ret && !(sfd.revents & POLLOUT))
ret = -1;
out:
return ret;
}
int write_length(int sockd, const void *buf, int len)

Loading…
Cancel
Save