1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/* Newspost 1.13
Copyright (C) 2000 Jim Faulkner <jfaulkne@ccs.neu.edu>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#include "newspost.h"
int socket_create(struct postsocket *sock, char *address, int port);
int socket_getline(struct postsocket *sock);
int socket_putstring(struct postsocket *sock, char *line);
int socket_putline(struct postsocket *sock, char *line);
int read_from_socket (struct postsocket* ps);
int badreads = 0;
int socket_create(struct postsocket *sock, char *address, int port){
const char* error_str; /* used for some error checking */
struct sigaction act, oact; /* used to prevent a crash in case of a dead socket */
/* use these to make the socket to the host */
struct sockaddr_in serv_addr;
struct in_addr inaddr;
int on;
struct hostent *hp;
int sockfd = -1;
#if (defined(sun) || defined(__sun)) && (defined(__svr4) || defined(__SVR4) || defined(__svr4__))
unsigned long tinaddr;
#endif
sock->sockfd = -1;
sock->bytes_read = 0;
sock->bytes_written = 0;
sock->line_buffer = malloc(BUFSIZE);
sock->inbuf = malloc(BUFSIZE);
sock->endbuf = sock->inbuf;
sock->inptr = sock->inbuf;
memset ( &serv_addr, 0, sizeof(serv_addr) );
serv_addr.sin_family = AF_INET;
serv_addr.sin_port = htons(port);
/* Try to convert host name as dotted decimal */
#if (defined(sun) || defined(__sun)) && (defined(__svr4) || defined(__SVR4) || defined(__svr4__))
tinaddr = inet_addr(address);
if ( tinaddr != -1 )
#else
if ( inet_aton(address, &inaddr) != 0 )
#endif
{
memcpy(&serv_addr.sin_addr, &inaddr, sizeof(inaddr));
}
else /* If that failed, then look up the host name */
{
while (NULL==(hp = gethostbyname(address)))
{
error_str = NULL;
if (errno)
error_str = strerror(errno);
printf (
"Can't resolve %s -- Socket not created\n",
address
/* (error_str ? error_str : "") */ );
exit(0);
}
memcpy(&serv_addr.sin_addr, hp->h_addr, hp->h_length);
}
sockfd = socket(AF_INET, SOCK_STREAM, 0);
if (sockfd < 0) {
printf ("Can't create socket: %s", strerror(errno));
exit(0);
}
if (connect (sockfd, (struct sockaddr*)&serv_addr, sizeof(serv_addr))<0)
{
close (sockfd);
printf ("socket connect to %s, port %d failed: %s", address, port, strerror(errno));
exit(0);
}
on = 1;
if (setsockopt (sockfd, SOL_SOCKET, SO_KEEPALIVE,
(char*)&on, sizeof(on)) < 0)
{
close(sockfd);
printf ("socket keepalive option failed: %s",
strerror(errno));
exit(0);
}
sock->sockfd = sockfd;
/* If we write() to a dead socket, then let write return EPIPE rather
than crashing the program. */
act.sa_handler = SIG_IGN;
sigemptyset (&act.sa_mask);
act.sa_flags = 0;
sigaction (SIGPIPE, &act, &oact);
/* debug1("socket created: %p for %s, port %d, sockfd %d\n", &sock, address, port, sockfd); */
return 0;
}
/*
* get_server - read from a socket until \n
*/
int socket_getline (struct postsocket *sock)
{
char * pch;
char * msg;
char endch = '\0';
bool done = FALSE;
sock->last_action_time = time(0);
while (!done)
{
/* make sure we have text to read */
if (sock->inptr == sock->endbuf)
{
errno = 0;
if (read_from_socket(sock)<0)
{
if (errno)
sprintf (msg,"socket [%p] failed its read:\n%s", sock, strerror(errno));
else
sprintf (msg,"socket [%p] failed its read", sock);
printf (msg);
printf (msg);
exit(0);
}
else badreads = 0;
}
/* find out how many bytes to copy */
for (pch=sock->inptr; pch!=sock->endbuf; ++pch) {
if (*pch=='\n') {
done = TRUE;
++pch; /* keep the \n in the line_buffer */
break;
}
}
/* copy the data */
strncpy (sock->line_buffer, sock->inptr,(pch-sock->inptr));
if (done) {
sock->line_buffer[(pch-sock->inptr)] = endch;
}
/* update stats */
sock->bytes_read += pch-sock->inptr;
sock->inptr = pch;
}
/* debug2 ("socket [%p] received [%s]", sock,
(char*)sock->line_buffer); */
return 0;
}
/* appends "\r\n" to what is to be posted */
/* returns -1 if can't put the line, 0 otherwise */
int socket_putstring (struct postsocket *sock, char *line)
{
char newline[1024];
strcpy(newline,line);
sock->last_action_time=time(0);
sprintf(newline,"%s\r\n",newline);
return socket_putline(sock,newline);
}
/* returns -1 if can't put the line, 0 otherwise */
int socket_putline (struct postsocket *sock, char *line)
{
int nbytes;
int nleft;
char *pch = line;
nbytes = strlen(line);
nleft = nbytes;
sock->last_action_time=time(0);
/* debug2("[%ld][socket %p putline][%s]", time(0), (void*)sock, line); */
while (nleft>0)
{
/* write */
const int nwritten = write(sock->sockfd, pch, nleft);
sock->bytes_written += nwritten;
if (nwritten == -1) {
return -1;
}
nleft -= nwritten;
pch += nwritten;
}
return nleft;
}
/* simple read buffering to hopefully speed things up. */
int read_from_socket (struct postsocket* ps)
{
int read_count = 0;
int retval = 0;
struct timeval tv;
fd_set rfds;
FD_ZERO (&rfds);
FD_SET (ps->sockfd, &rfds);
/* We will timeout after 1 minute. */
tv.tv_sec = 60;
tv.tv_usec = 0;
retval = select (ps->sockfd+1, &rfds, NULL, NULL, &tv);
if (retval <= 0) {
badreads++;
if (errno)
printf ("select() failed: %s", strerror(errno));
else
printf ("Timed out waiting for select()\n");
if(badreads >= READS_UNTIL_FAIL) return -1;
else{
printf("Retrying...");
sleep(5);
return read_from_socket(ps);
}
}
read_count = read (ps->sockfd, ps->inbuf, BUFSIZE);
ps->endbuf = ps->inbuf + read_count;
ps->inptr = ps->inbuf;
if (read_count <= 0)
return read_count;
return 0;
}
|