Replaced the readline() function with a new version which has no

restrictions on the length of a line (unless you fill memory of course.)
Reformated the source.
This commit is contained in:
Robert James Kaes 2001-11-22 00:19:18 +00:00
parent 757d341d96
commit d08d088d4a
2 changed files with 134 additions and 59 deletions

View File

@ -1,4 +1,4 @@
/* $Id: sock.c,v 1.15 2001-11-12 21:10:51 rjkaes Exp $ /* $Id: sock.c,v 1.16 2001-11-22 00:19:18 rjkaes Exp $
* *
* Sockets are created and destroyed here. When a new connection comes in from * Sockets are created and destroyed here. When a new connection comes in from
* a client, we need to copy the socket and the create a second socket to the * a client, we need to copy the socket and the create a second socket to the
@ -49,7 +49,8 @@ static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
* dotted-decimal form before it does a name lookup. * dotted-decimal form before it does a name lookup.
* - rjkaes * - rjkaes
*/ */
int opensock(char *ip_addr, uint16_t port) int
opensock(char *ip_addr, uint16_t port)
{ {
int sock_fd; int sock_fd;
struct sockaddr_in port_info; struct sockaddr_in port_info;
@ -66,19 +67,24 @@ int opensock(char *ip_addr, uint16_t port)
ret = dnscache(&port_info.sin_addr, ip_addr); ret = dnscache(&port_info.sin_addr, ip_addr);
if (ret < 0) { if (ret < 0) {
log_message(LOG_ERR, "opensock: Could not lookup address \"%s\".", ip_addr); log_message(LOG_ERR,
"opensock: Could not lookup address \"%s\".",
ip_addr);
return -1; return -1;
} }
port_info.sin_port = htons(port); port_info.sin_port = htons(port);
if ((sock_fd = socket(AF_INET, SOCK_STREAM, 0)) == -1) { if ((sock_fd = socket(AF_INET, SOCK_STREAM, 0)) == -1) {
log_message(LOG_ERR, "opensock: socket() error \"%s\".", strerror(errno)); log_message(LOG_ERR, "opensock: socket() error \"%s\".",
strerror(errno));
return -1; return -1;
} }
if (connect(sock_fd, (struct sockaddr*)&port_info, sizeof(port_info)) < 0) { if (connect(sock_fd, (struct sockaddr *) &port_info, sizeof(port_info))
log_message(LOG_ERR, "opensock: connect() error \"%s\".", strerror(errno)); < 0) {
log_message(LOG_ERR, "opensock: connect() error \"%s\".",
strerror(errno));
return -1; return -1;
} }
@ -88,7 +94,8 @@ int opensock(char *ip_addr, uint16_t port)
/* /*
* Set the socket to non blocking -rjkaes * Set the socket to non blocking -rjkaes
*/ */
int socket_nonblocking(int sock) int
socket_nonblocking(int sock)
{ {
int flags; int flags;
@ -101,7 +108,8 @@ int socket_nonblocking(int sock)
/* /*
* Set the socket to blocking -rjkaes * Set the socket to blocking -rjkaes
*/ */
int socket_blocking(int sock) int
socket_blocking(int sock)
{ {
int flags; int flags;
@ -117,7 +125,8 @@ int socket_blocking(int sock)
* the pointer, while the socket is returned as a default return. * the pointer, while the socket is returned as a default return.
* - rjkaes * - rjkaes
*/ */
int listen_sock(uint16_t port, socklen_t *addrlen) int
listen_sock(uint16_t port, socklen_t * addrlen)
{ {
int listenfd; int listenfd;
const int on = 1; const int on = 1;
@ -152,7 +161,8 @@ int listen_sock(uint16_t port, socklen_t *addrlen)
* Takes a socket descriptor and returns the string contain the peer's * Takes a socket descriptor and returns the string contain the peer's
* IP address. * IP address.
*/ */
char *getpeer_ip(int fd, char *ipaddr) char *
getpeer_ip(int fd, char *ipaddr)
{ {
struct sockaddr_in name; struct sockaddr_in name;
size_t namelen = sizeof(name); size_t namelen = sizeof(name);
@ -166,7 +176,8 @@ char *getpeer_ip(int fd, char *ipaddr)
*ipaddr = '\0'; *ipaddr = '\0';
if (getpeername(fd, (struct sockaddr *) &name, &namelen) != 0) { if (getpeername(fd, (struct sockaddr *) &name, &namelen) != 0) {
log_message(LOG_ERR, "getpeer_ip: getpeername() error \"%s\".", strerror(errno)); log_message(LOG_ERR, "getpeer_ip: getpeername() error \"%s\".",
strerror(errno));
} else { } else {
strlcpy(ipaddr, strlcpy(ipaddr,
inet_ntoa(*(struct in_addr *) &name.sin_addr.s_addr), inet_ntoa(*(struct in_addr *) &name.sin_addr.s_addr),
@ -180,7 +191,8 @@ char *getpeer_ip(int fd, char *ipaddr)
* Takes a socket descriptor and returns the string containing the peer's * Takes a socket descriptor and returns the string containing the peer's
* address. * address.
*/ */
char *getpeer_string(int fd, char *string) char *
getpeer_string(int fd, char *string)
{ {
struct sockaddr_in name; struct sockaddr_in name;
size_t namelen = sizeof(name); size_t namelen = sizeof(name);
@ -195,16 +207,19 @@ char *getpeer_string(int fd, char *string)
*string = '\0'; *string = '\0';
if (getpeername(fd, (struct sockaddr *) &name, &namelen) != 0) { if (getpeername(fd, (struct sockaddr *) &name, &namelen) != 0) {
log_message(LOG_ERR, "getpeer_string: getpeername() error \"%s\".", strerror(errno)); log_message(LOG_ERR,
"getpeer_string: getpeername() error \"%s\".",
strerror(errno));
} else { } else {
LOCK(); LOCK();
peername = gethostbyaddr((char *) &name.sin_addr.s_addr, peername = gethostbyaddr((char *) &name.sin_addr.s_addr,
sizeof(name.sin_addr.s_addr), sizeof(name.sin_addr.s_addr), AF_INET);
AF_INET);
if (peername) if (peername)
strlcpy(string, peername->h_name, PEER_STRING_LENGTH); strlcpy(string, peername->h_name, PEER_STRING_LENGTH);
else else
log_message(LOG_ERR, "getpeer_string: gethostbyaddr() error \"%s\".", hstrerror(h_errno)); log_message(LOG_ERR,
"getpeer_string: gethostbyaddr() error \"%s\".",
hstrerror(h_errno));
UNLOCK(); UNLOCK();
} }
@ -216,7 +231,8 @@ char *getpeer_string(int fd, char *string)
* Write the buffer to the socket. If an EINTR occurs, pick up and try * Write the buffer to the socket. If an EINTR occurs, pick up and try
* again. * again.
*/ */
ssize_t safe_write(int fd, const void *buffer, size_t count) ssize_t
safe_write(int fd, const void *buffer, size_t count)
{ {
ssize_t len; ssize_t len;
@ -231,7 +247,8 @@ ssize_t safe_write(int fd, const void *buffer, size_t count)
* Matched pair for safe_write(). If an EINTR occurs, pick up and try * Matched pair for safe_write(). If an EINTR occurs, pick up and try
* again. * again.
*/ */
ssize_t safe_read(int fd, void *buffer, size_t count) ssize_t
safe_read(int fd, void *buffer, size_t count)
{ {
ssize_t len; ssize_t len;
@ -242,45 +259,103 @@ ssize_t safe_read(int fd, void *buffer, size_t count)
return len; return len;
} }
#define EERROR 1 /* Generic error */
#define ENOMEMORY 2 /* Out of memory (or allocation error) */
/* /*
* Reads in a line of text one character at a time. Finishes when either a * Read in a "line" from the socket. It might take a few loops through
* newline is detected, or maxlen characters have been read. The function * the read sequence. The full string is allocate off the heap and stored
* will actually copy one less than maxlen into the buffer. In other words, * at the whole_buffer pointer. The caller needs to free the memory when
* the returned string will _always_ be '\0' terminated. * it is no longer in use. The returned line is NULL terminated.
*
* Returns the length of the buffer on success (not including the NULL
* termination), 0 if the socket was closed, and -1 on all other errors.
*/ */
ssize_t readline(int fd, char *ptr, size_t maxlen) #define SEGMENT_LEN (512)
ssize_t
readline(int fd, char **whole_buffer)
{ {
size_t n; ssize_t whole_buffer_len;
ssize_t rc; char buffer[SEGMENT_LEN];
char c; char *ptr;
assert(fd >= 0); ssize_t ret;
assert(ptr != NULL); ssize_t diff;
for (n = 1; n < maxlen; n++) { struct read_lines_s {
again: char *data;
if ((rc = recv(fd, &c, 1, MSG_NOSIGNAL)) == 1) { size_t len;
*ptr++ = c; struct read_lines_s *next;
if (c == '\n') };
struct read_lines_s *first_line, *line_ptr;
first_line = calloc(sizeof(struct read_lines_s), 1);
if (!first_line)
return -ENOMEMORY;
line_ptr = first_line;
whole_buffer_len = 0;
for (;;) {
ret = recv(fd, buffer, SEGMENT_LEN, MSG_PEEK);
if (ret <= 0)
goto CLEANUP;
ptr = memchr(buffer, '\n', ret);
if (ptr)
diff = ptr - buffer + 1;
else
diff = ret;
whole_buffer_len += diff;
line_ptr->data = malloc(diff);
if (!line_ptr->data) {
ret = -ENOMEMORY;
goto CLEANUP;
}
recv(fd, line_ptr->data, diff, 0);
line_ptr->len = diff;
if (ptr) {
line_ptr->next = NULL;
break; break;
} else if (rc == 0) {
if (n == 1) {
DEBUG2("File_Desc: %d Closed.", fd);
return 0;
} else
break;
} else {
if (errno == EINTR)
goto again;
DEBUG2("File_Desc: %d \"%s\" (%d)", fd, strerror(errno), errno);
return -1;
}
} }
/* Tack a NIL to the end to make is a standard "C" string */ line_ptr->next = calloc(sizeof(struct read_lines_s), 1);
*ptr = '\0'; if (!line_ptr->next) {
ret = -ENOMEMORY;
return (ssize_t)n; goto CLEANUP;
}
line_ptr = line_ptr->next;
}
*whole_buffer = malloc(whole_buffer_len + 1);
if (!*whole_buffer)
return -ENOMEMORY;
*(*whole_buffer + whole_buffer_len) = '\0';
whole_buffer_len = 0;
line_ptr = first_line;
while (line_ptr) {
memcpy(*whole_buffer + whole_buffer_len, line_ptr->data,
line_ptr->len);
whole_buffer_len += line_ptr->len;
line_ptr = line_ptr->next;
}
ret = whole_buffer_len;
CLEANUP:
do {
line_ptr = first_line->next;
free(first_line->data);
free(first_line);
first_line = line_ptr;
} while (first_line);
return ret;
} }

View File

@ -1,4 +1,4 @@
/* $Id: sock.h,v 1.6 2001-10-25 17:02:50 rjkaes Exp $ /* $Id: sock.h,v 1.7 2001-11-22 00:19:18 rjkaes Exp $
* *
* See 'sock.c' for a detailed description. * See 'sock.c' for a detailed description.
* *
@ -38,6 +38,6 @@ extern char *getpeer_string(int fd, char *string);
extern ssize_t safe_write(int fd, const void *buffer, size_t count); extern ssize_t safe_write(int fd, const void *buffer, size_t count);
extern ssize_t safe_read(int fd, void *buffer, size_t count); extern ssize_t safe_read(int fd, void *buffer, size_t count);
extern ssize_t readline(int fd, char *ptr, size_t maxlen); extern ssize_t readline(int fd, char **whole_buffer);
#endif #endif