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
|
#include <sys/socket.h>
#include <assert.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "events.h"
#include "network.h"
#include "sock.h"
#include "warnp.h"
struct senddata {
char * buffer;
ssize_t nchars;
int socket;
int conndone;
void * connect_cookie;
void * write_cookie;
void * read_cookie;
uint8_t dummybuf[1];
};
/* Forward declaration. */
static int callback_wrote(void *, ssize_t);
static int
callback_stopping(void * cookie, ssize_t lenread)
{
struct senddata * send = (struct senddata *)cookie;
/* We are no longer reading. */
send->read_cookie = NULL;
/* Check results. */
if (lenread == -1) {
warnp("network_read received");
goto err0;
} else {
/* We should have received nothing. */
if (lenread != 0) {
warn0("network_read received non-zero data");
goto err0;
}
}
/* Close connection. */
send->conndone = 1;
/* Success! */
return (0);
err0:
/* Failure! */
return (-1);
}
/* Send data from stdin to a socket, or close the connection. */
static int
send_input(void * cookie)
{
struct senddata * send = (struct senddata *)cookie;
size_t len = 0;
/* Read data from stdin. */
if ((send->nchars = getline(&send->buffer, &len, stdin)) != -1) {
/* Send data to server. */
if ((send->write_cookie = network_write(send->socket,
(uint8_t *)send->buffer, (size_t)send->nchars,
(size_t)send->nchars, callback_wrote, cookie)) == NULL) {
warn0("network_write failure");
goto err0;
}
} else {
/* If we didn't get an EOF, then there was an error. */
if (!feof(stdin)) {
warn0("getline(..., ..., stdin)");
goto err0;
}
/* We're not going to send anything else. */
if (shutdown(send->socket, SHUT_WR)) {
warnp("shutdown");
goto err0;
}
/*
* The server should not send any data back, but attempting to
* read will detect when the other end of the socket is closed.
*/
if ((send->read_cookie = network_read(send->socket,
send->dummybuf, 1, 1, callback_stopping, cookie))
== NULL) {
warn0("network_read initialize");
goto err0;
}
}
/* Success! */
return (0);
err0:
/* Failure! */
return (-1);
}
/* Finished writing data; look for more from stdin. */
static int
callback_wrote(void * cookie, ssize_t lenwrit)
{
struct senddata * send = (struct senddata *)cookie;
/* We are no longer writing. */
send->write_cookie = NULL;
/* Check results. */
if (lenwrit == -1) {
warnp("network_write send");
goto err0;
} else {
/* We should have sent everything. */
assert(lenwrit == send->nchars);
}
/* Clear the buffer that was used. */
free(send->buffer);
send->buffer = NULL;
return send_input(cookie);
err0:
/* Failure! */
return (-1);
}
/* Got a connection; look for data from stdin. */
static int
callback_connected(void * cookie, int socket)
{
struct senddata * send = (struct senddata *)cookie;
/* We are no longer connecting. */
send->connect_cookie = NULL;
/* Check that the connection did not fail. */
if (socket == -1) {
warn0("failed to connect");
goto err0;
}
/* Record socket for future use. */
send->socket = socket;
return send_input(cookie);
err0:
/* Failure! */
return (-1);
}
int
main(int argc, char ** argv)
{
/* Command-line parameter. */
const char * addr;
/* Working variables. */
struct sock_addr ** sas_t;
struct senddata send_allocated;
struct senddata * send = &send_allocated;
WARNP_INIT;
/* Parse command-line arguments. */
if (argc < 2) {
fprintf(stderr, "%s ADDRESS\n", argv[0]);
goto err0;
}
addr = argv[1];
/* Initialize cookie. */
send->buffer = NULL;
send->conndone = 0;
send->connect_cookie = NULL;
send->write_cookie = NULL;
send->read_cookie = NULL;
/* Resolve target address. */
if ((sas_t = sock_resolve(addr)) == NULL) {
warnp("Error resolving socket address: %s", addr);
goto err1;
}
if (sas_t[0] == NULL) {
warn0("No addresses found for %s", addr);
goto err2;
}
/* Connect to target. */
if ((send->connect_cookie = network_connect(sas_t, callback_connected,
send)) == NULL) {
warn0("Error connecting");
goto err2;
}
/* Loop until we're done with the connection. */
if (events_spin(&send->conndone)) {
warn0("Error running event loop");
goto err3;
}
/* Clean up. */
sock_addr_freelist(sas_t);
free(send->buffer);
/* Success! */
exit(0);
err3:
if (send->connect_cookie != NULL)
network_connect_cancel(send->connect_cookie);
if (send->write_cookie != NULL)
network_write_cancel(send->write_cookie);
if (send->read_cookie != NULL)
network_read_cancel(send->read_cookie);
err2:
sock_addr_freelist(sas_t);
err1:
free(send->buffer);
err0:
/* Failure! */
exit(1);
}
|