| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 1 | #include "private-libwebsockets.h" | 
|  | 2 | #include <netdb.h> | 
|  | 3 |  | 
|  | 4 |  | 
| Andy Green | 90c7cbc | 2011-01-27 06:26:52 +0000 | [diff] [blame] | 5 | /** | 
|  | 6 | * libwebsocket_client_connect() - Connect to another websocket server | 
|  | 7 | * @this:	Websocket context | 
|  | 8 | * @address:	Remote server address, eg, "myserver.com" | 
|  | 9 | * @port:	Port to connect to on the remote server, eg, 80 | 
|  | 10 | * @ssl_connection:	0 = ws://, 1 = wss:// encrypted, 2 = wss:// allow self | 
|  | 11 | *			signed certs | 
|  | 12 | * @path:	Websocket path on server | 
|  | 13 | * @host:	Hostname on server | 
|  | 14 | * @origin:	Socket origin name | 
|  | 15 | * @protocol:	Comma-separated list of protocols being asked for from | 
|  | 16 | *		the server, or just one.  The server will pick the one it | 
|  | 17 | *		likes best. | 
| Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 18 | * @ietf_version_or_minus_one: -1 to ask to connect using the default, latest | 
|  | 19 | * 		protocol supported, or the specific protocol ordinal | 
| Andy Green | 90c7cbc | 2011-01-27 06:26:52 +0000 | [diff] [blame] | 20 | * | 
|  | 21 | *	This function creates a connection to a remote server | 
|  | 22 | */ | 
|  | 23 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 24 | struct libwebsocket * | 
| Andy Green | 90c7cbc | 2011-01-27 06:26:52 +0000 | [diff] [blame] | 25 | libwebsocket_client_connect(struct libwebsocket_context *this, | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 26 | const char *address, | 
|  | 27 | int port, | 
| Andy Green | 90c7cbc | 2011-01-27 06:26:52 +0000 | [diff] [blame] | 28 | int ssl_connection, | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 29 | const char *path, | 
|  | 30 | const char *host, | 
|  | 31 | const char *origin, | 
| Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 32 | const char *protocol, | 
|  | 33 | int ietf_version_or_minus_one) | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 34 | { | 
|  | 35 | struct hostent *server_hostent; | 
|  | 36 | struct sockaddr_in server_addr; | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 37 | char pkt[512]; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 38 | struct pollfd pfd; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 39 | struct libwebsocket *wsi; | 
|  | 40 | int n; | 
| Andy Green | 9659f37 | 2011-01-27 22:01:43 +0000 | [diff] [blame] | 41 | int plen = 0; | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 42 | #ifndef LWS_OPENSSL_SUPPORT | 
| Andy Green | 90c7cbc | 2011-01-27 06:26:52 +0000 | [diff] [blame] | 43 | if (ssl_connection) { | 
|  | 44 | fprintf(stderr, "libwebsockets not configured for ssl\n"); | 
|  | 45 | return NULL; | 
|  | 46 | } | 
|  | 47 | #endif | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 48 |  | 
| Andy Green | 6964bb5 | 2011-01-23 16:50:33 +0000 | [diff] [blame] | 49 | wsi = malloc(sizeof(struct libwebsocket)); | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 50 | if (wsi == NULL) | 
|  | 51 | goto bail1; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 52 |  | 
| Darin Willits | c19456f | 2011-02-14 17:52:39 +0000 | [diff] [blame] | 53 | memset(wsi, 0, sizeof *wsi); | 
|  | 54 |  | 
| Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 55 | /* -1 means just use latest supported */ | 
|  | 56 |  | 
|  | 57 | if (ietf_version_or_minus_one == -1) | 
|  | 58 | ietf_version_or_minus_one = 5; | 
|  | 59 |  | 
|  | 60 | wsi->ietf_spec_revision = ietf_version_or_minus_one; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 61 | wsi->name_buffer_pos = 0; | 
|  | 62 | wsi->user_space = NULL; | 
|  | 63 | wsi->state = WSI_STATE_CLIENT_UNCONNECTED; | 
|  | 64 | wsi->pings_vs_pongs = 0; | 
| Andy Green | 927eb7b | 2011-02-01 08:52:55 +0000 | [diff] [blame] | 65 | wsi->protocol = NULL; | 
| Andy Green | a71eafc | 2011-02-14 17:59:43 +0000 | [diff] [blame] | 66 | wsi->pending_timeout = NO_PENDING_TIMEOUT; | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 67 | #ifdef LWS_OPENSSL_SUPPORT | 
|  | 68 | wsi->use_ssl = ssl_connection; | 
|  | 69 | #endif | 
|  | 70 |  | 
|  | 71 | /* copy parameters over so state machine has access */ | 
|  | 72 |  | 
|  | 73 | wsi->c_path = malloc(strlen(path) + 1); | 
|  | 74 | if (wsi->c_path == NULL) | 
|  | 75 | goto bail1; | 
|  | 76 | strcpy(wsi->c_path, path); | 
|  | 77 | wsi->c_host = malloc(strlen(host) + 1); | 
|  | 78 | if (wsi->c_host == NULL) | 
|  | 79 | goto oom1; | 
|  | 80 | strcpy(wsi->c_host, host); | 
|  | 81 | wsi->c_origin = malloc(strlen(origin) + 1); | 
|  | 82 | if (wsi->c_origin == NULL) | 
|  | 83 | goto oom2; | 
|  | 84 | strcpy(wsi->c_origin, origin); | 
|  | 85 | if (protocol) { | 
|  | 86 | wsi->c_protocol = malloc(strlen(protocol) + 1); | 
|  | 87 | if (wsi->c_protocol == NULL) | 
|  | 88 | goto oom3; | 
|  | 89 | strcpy(wsi->c_protocol, protocol); | 
|  | 90 | } else | 
|  | 91 | wsi->c_protocol = NULL; | 
|  | 92 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 93 |  | 
| Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 94 | /* set up appropriate masking */ | 
|  | 95 |  | 
|  | 96 | wsi->xor_mask = xor_no_mask; | 
|  | 97 |  | 
|  | 98 | switch (wsi->ietf_spec_revision) { | 
|  | 99 | case 4: | 
|  | 100 | wsi->xor_mask = xor_mask_04; | 
|  | 101 | break; | 
|  | 102 | case 5: | 
|  | 103 | wsi->xor_mask = xor_mask_05; | 
|  | 104 | break; | 
|  | 105 | default: | 
|  | 106 | fprintf(stderr, | 
|  | 107 | "Client ietf version %d not supported\n", | 
|  | 108 | wsi->ietf_spec_revision); | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 109 | goto oom4; | 
| Andy Green | bfb051f | 2011-02-09 08:49:14 +0000 | [diff] [blame] | 110 | } | 
|  | 111 |  | 
|  | 112 | /* force no mask if he asks for that though */ | 
|  | 113 |  | 
|  | 114 | if (this->options & LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK) | 
|  | 115 | wsi->xor_mask = xor_no_mask; | 
|  | 116 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 117 | for (n = 0; n < WSI_TOKEN_COUNT; n++) { | 
|  | 118 | wsi->utf8_token[n].token = NULL; | 
|  | 119 | wsi->utf8_token[n].token_len = 0; | 
|  | 120 | } | 
|  | 121 |  | 
|  | 122 | /* | 
| Andy Green | 9659f37 | 2011-01-27 22:01:43 +0000 | [diff] [blame] | 123 | * proxy? | 
|  | 124 | */ | 
|  | 125 |  | 
|  | 126 | if (this->http_proxy_port) { | 
|  | 127 | plen = sprintf(pkt, "CONNECT %s:%u HTTP/1.0\x0d\x0a" | 
|  | 128 | "User-agent: libwebsockets\x0d\x0a" | 
|  | 129 | /*Proxy-authorization: basic aGVsbG86d29ybGQ= */ | 
|  | 130 | "\x0d\x0a", address, port); | 
|  | 131 |  | 
|  | 132 | /* OK from now on we talk via the proxy */ | 
|  | 133 |  | 
|  | 134 | address = this->http_proxy_address; | 
|  | 135 | port = this->http_proxy_port; | 
|  | 136 | } | 
|  | 137 |  | 
|  | 138 | /* | 
|  | 139 | * prepare the actual connection (to the proxy, if any) | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 140 | */ | 
|  | 141 |  | 
|  | 142 | server_hostent = gethostbyname(address); | 
|  | 143 | if (server_hostent == NULL) { | 
|  | 144 | fprintf(stderr, "Unable to get host name from %s\n", address); | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 145 | goto oom4; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 146 | } | 
|  | 147 |  | 
|  | 148 | wsi->sock = socket(AF_INET, SOCK_STREAM, 0); | 
| Andy Green | 6964bb5 | 2011-01-23 16:50:33 +0000 | [diff] [blame] | 149 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 150 | if (wsi->sock < 0) { | 
|  | 151 | fprintf(stderr, "Unable to open socket\n"); | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 152 | goto oom4; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 153 | } | 
|  | 154 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 155 | server_addr.sin_family = AF_INET; | 
|  | 156 | server_addr.sin_port = htons(port); | 
|  | 157 | server_addr.sin_addr = *((struct in_addr *)server_hostent->h_addr); | 
|  | 158 | bzero(&server_addr.sin_zero, 8); | 
|  | 159 |  | 
|  | 160 | if (connect(wsi->sock, (struct sockaddr *)&server_addr, | 
|  | 161 | sizeof(struct sockaddr)) == -1)  { | 
| Andy Green | 90c7cbc | 2011-01-27 06:26:52 +0000 | [diff] [blame] | 162 | fprintf(stderr, "Connect failed\n"); | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 163 | goto oom4; | 
| Andy Green | 6964bb5 | 2011-01-23 16:50:33 +0000 | [diff] [blame] | 164 | } | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 165 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 166 | /* into fd -> wsi hashtable */ | 
|  | 167 |  | 
|  | 168 | insert_wsi(this, wsi); | 
|  | 169 |  | 
|  | 170 | /* into internal poll list */ | 
|  | 171 |  | 
|  | 172 | this->fds[this->fds_count].fd = wsi->sock; | 
|  | 173 | this->fds[this->fds_count].revents = 0; | 
|  | 174 | this->fds[this->fds_count++].events = POLLIN; | 
|  | 175 |  | 
|  | 176 | /* external POLL support via protocol 0 */ | 
|  | 177 | this->protocols[0].callback(this, wsi, | 
|  | 178 | LWS_CALLBACK_ADD_POLL_FD, | 
|  | 179 | (void *)(long)wsi->sock, NULL, POLLIN); | 
|  | 180 |  | 
| Andy Green | 9659f37 | 2011-01-27 22:01:43 +0000 | [diff] [blame] | 181 | /* we are connected to server, or proxy */ | 
|  | 182 |  | 
| Andy Green | 9659f37 | 2011-01-27 22:01:43 +0000 | [diff] [blame] | 183 | if (this->http_proxy_port) { | 
|  | 184 |  | 
|  | 185 | n = send(wsi->sock, pkt, plen, 0); | 
|  | 186 | if (n < 0) { | 
| Andy Green | 5b9a4c0 | 2011-01-28 09:39:29 +0000 | [diff] [blame] | 187 | close(wsi->sock); | 
|  | 188 | fprintf(stderr, "ERROR writing to proxy socket\n"); | 
|  | 189 | goto bail1; | 
|  | 190 | } | 
|  | 191 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 192 | libwebsocket_set_timeout(wsi, | 
|  | 193 | PENDING_TIMEOUT_AWAITING_PROXY_RESPONSE, 5); | 
| Andy Green | 5b9a4c0 | 2011-01-28 09:39:29 +0000 | [diff] [blame] | 194 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 195 | wsi->mode = LWS_CONNMODE_WS_CLIENT_WAITING_PROXY_REPLY; | 
| Andy Green | 9659f37 | 2011-01-27 22:01:43 +0000 | [diff] [blame] | 196 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 197 | return wsi; | 
| Andy Green | 9659f37 | 2011-01-27 22:01:43 +0000 | [diff] [blame] | 198 | } | 
|  | 199 |  | 
| Andy Green | 6964bb5 | 2011-01-23 16:50:33 +0000 | [diff] [blame] | 200 | /* | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 201 | * provoke service to issue the handshake directly | 
|  | 202 | * we need to do it this way because in the proxy case, this is the | 
|  | 203 | * next state and executed only if and when we get a good proxy | 
|  | 204 | * response inside the state machine | 
| Andy Green | 6964bb5 | 2011-01-23 16:50:33 +0000 | [diff] [blame] | 205 | */ | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 206 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 207 | wsi->mode = LWS_CONNMODE_WS_CLIENT_ISSUE_HANDSHAKE; | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 208 | pfd.fd = wsi->sock; | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 209 | pfd.revents = POLLIN; | 
|  | 210 | libwebsocket_service_fd(this, &pfd); | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 211 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 212 | return wsi; | 
|  | 213 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 214 | oom4: | 
|  | 215 | if (wsi->c_protocol) | 
|  | 216 | free(wsi->c_protocol); | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 217 |  | 
| Andy Green | be93fef | 2011-02-14 20:25:43 +0000 | [diff] [blame^] | 218 | oom3: | 
|  | 219 | free(wsi->c_origin); | 
|  | 220 |  | 
|  | 221 | oom2: | 
|  | 222 | free(wsi->c_host); | 
|  | 223 |  | 
|  | 224 | oom1: | 
|  | 225 | free(wsi->c_path); | 
|  | 226 |  | 
| Andy Green | 4739e5c | 2011-01-22 12:51:57 +0000 | [diff] [blame] | 227 | bail1: | 
|  | 228 | free(wsi); | 
|  | 229 |  | 
|  | 230 | return NULL; | 
|  | 231 | } |