| 1 | WebSockets on C - coding: |
---|
| 2 | Daemonization |
---|
| 3 | ------------- |
---|
| 4 | |
---|
| 5 | There's a helper api lws_daemonize built by default that does everything you |
---|
| 6 | need to daemonize well, including creating a lock file. If you're making |
---|
| 7 | what's basically a daemon, just call this early in your init to fork to a |
---|
| 8 | headless background process and exit the starting process. |
---|
| 9 | |
---|
| 10 | Notice stdout, stderr, stdin are all redirected to /dev/null to enforce your |
---|
| 11 | daemon is headless, so you'll need to sort out alternative logging, by, eg, |
---|
| 12 | syslog. |
---|
| 13 | |
---|
| 14 | |
---|
| 15 | Maximum number of connections |
---|
| 16 | ----------------------------- |
---|
| 17 | |
---|
| 18 | The maximum number of connections the library can deal with is decided when |
---|
| 19 | it starts by querying the OS to find out how many file descriptors it is |
---|
| 20 | allowed to open (1024 on Fedora for example). It then allocates arrays that |
---|
| 21 | allow up to that many connections, minus whatever other file descriptors are |
---|
| 22 | in use by the user code. |
---|
| 23 | |
---|
| 24 | If you want to restrict that allocation, or increase it, you can use ulimit or |
---|
| 25 | similar to change the avaiable number of file descriptors, and when restarted |
---|
| 26 | libwebsockets will adapt accordingly. |
---|
| 27 | |
---|
| 28 | |
---|
| 29 | Libwebsockets is singlethreaded |
---|
| 30 | ------------------------------- |
---|
| 31 | |
---|
| 32 | Directly performing websocket actions from other threads is not allowed. |
---|
| 33 | Aside from the internal data being inconsistent in forked() processes, |
---|
| 34 | the scope of a wsi (struct websocket) can end at any time during service |
---|
| 35 | with the socket closing and the wsi freed. |
---|
| 36 | |
---|
| 37 | Websocket write activities should only take place in the |
---|
| 38 | "LWS_CALLBACK_SERVER_WRITEABLE" callback as described below. |
---|
| 39 | |
---|
| 40 | Only live connections appear in the user callbacks, so this removes any |
---|
| 41 | possibility of trying to used closed and freed wsis. |
---|
| 42 | |
---|
| 43 | If you need to service other socket or file descriptors as well as the |
---|
| 44 | websocket ones, you can combine them together with the websocket ones |
---|
| 45 | in one poll loop, see "External Polling Loop support" below, and |
---|
| 46 | still do it all in one thread / process context. |
---|
| 47 | |
---|
| 48 | |
---|
| 49 | Only send data when socket writeable |
---|
| 50 | ------------------------------------ |
---|
| 51 | |
---|
| 52 | You should only send data on a websocket connection from the user callback |
---|
| 53 | "LWS_CALLBACK_SERVER_WRITEABLE" (or "LWS_CALLBACK_CLIENT_WRITEABLE" for |
---|
| 54 | clients). |
---|
| 55 | |
---|
| 56 | If you want to send something, do not just send it but request a callback |
---|
| 57 | when the socket is writeable using |
---|
| 58 | |
---|
| 59 | - libwebsocket_callback_on_writable(context, wsi) for a specific wsi, or |
---|
| 60 | - libwebsocket_callback_on_writable_all_protocol(protocol) for all connections |
---|
| 61 | using that protocol to get a callback when next writeable. |
---|
| 62 | |
---|
| 63 | Usually you will get called back immediately next time around the service |
---|
| 64 | loop, but if your peer is slow or temporarily inactive the callback will be |
---|
| 65 | delayed accordingly. Generating what to write and sending it should be done |
---|
| 66 | in the ...WRITEABLE callback. |
---|
| 67 | |
---|
| 68 | See the test server code for an example of how to do this. |
---|
| 69 | |
---|
| 70 | |
---|
| 71 | Closing connections from the user side |
---|
| 72 | -------------------------------------- |
---|
| 73 | |
---|
| 74 | When you want to close a connection, you do it by returning -1 from a |
---|
| 75 | callback for that connection. |
---|
| 76 | |
---|
| 77 | You can provoke a callback by calling libwebsocket_callback_on_writable on |
---|
| 78 | the wsi, then notice in the callback you want to close it and just return -1. |
---|
| 79 | But usually, the decision to close is made in a callback already and returning |
---|
| 80 | -1 is simple. |
---|
| 81 | |
---|
| 82 | If the socket knows the connection is dead, because the peer closed or there |
---|
| 83 | was an affirmitive network error like a FIN coming, then libwebsockets will |
---|
| 84 | take care of closing the connection automatically. |
---|
| 85 | |
---|
| 86 | If you have a silently dead connection, it's possible to enter a state where |
---|
| 87 | the send pipe on the connection is choked but no ack will ever come, so the |
---|
| 88 | dead connection will never become writeable. To cover that, you can use TCP |
---|
| 89 | keepalives (see later in this document) |
---|
| 90 | |
---|
| 91 | |
---|
| 92 | Fragmented messages |
---|
| 93 | ------------------- |
---|
| 94 | |
---|
| 95 | To support fragmented messages you need to check for the final |
---|
| 96 | frame of a message with libwebsocket_is_final_fragment. This |
---|
| 97 | check can be combined with libwebsockets_remaining_packet_payload |
---|
| 98 | to gather the whole contents of a message, eg: |
---|
| 99 | |
---|
| 100 | case LWS_CALLBACK_RECEIVE: |
---|
| 101 | { |
---|
| 102 | Client * const client = (Client *)user; |
---|
| 103 | const size_t remaining = libwebsockets_remaining_packet_payload(wsi); |
---|
| 104 | |
---|
| 105 | if (!remaining && libwebsocket_is_final_fragment(wsi)) { |
---|
| 106 | if (client->HasFragments()) { |
---|
| 107 | client->AppendMessageFragment(in, len, 0); |
---|
| 108 | in = (void *)client->GetMessage(); |
---|
| 109 | len = client->GetMessageLength(); |
---|
| 110 | } |
---|
| 111 | |
---|
| 112 | client->ProcessMessage((char *)in, len, wsi); |
---|
| 113 | client->ResetMessage(); |
---|
| 114 | } else |
---|
| 115 | client->AppendMessageFragment(in, len, remaining); |
---|
| 116 | } |
---|
| 117 | break; |
---|
| 118 | |
---|
| 119 | The test app llibwebsockets-test-fraggle sources also show how to |
---|
| 120 | deal with fragmented messages. |
---|
| 121 | |
---|
| 122 | |
---|
| 123 | Debug Logging |
---|
| 124 | ------------- |
---|
| 125 | |
---|
| 126 | Also using lws_set_log_level api you may provide a custom callback to actually |
---|
| 127 | emit the log string. By default, this points to an internal emit function |
---|
| 128 | that sends to stderr. Setting it to NULL leaves it as it is instead. |
---|
| 129 | |
---|
| 130 | A helper function lwsl_emit_syslog() is exported from the library to simplify |
---|
| 131 | logging to syslog. You still need to use setlogmask, openlog and closelog |
---|
| 132 | in your user code. |
---|
| 133 | |
---|
| 134 | The logging apis are made available for user code. |
---|
| 135 | |
---|
| 136 | lwsl_err(...) |
---|
| 137 | lwsl_warn(...) |
---|
| 138 | lwsl_notice(...) |
---|
| 139 | lwsl_info(...) |
---|
| 140 | lwsl_debug(...) |
---|
| 141 | |
---|
| 142 | The difference between notice and info is that notice will be logged by default |
---|
| 143 | whereas info is ignored by default. |
---|
| 144 | |
---|
| 145 | |
---|
| 146 | External Polling Loop support |
---|
| 147 | ----------------------------- |
---|
| 148 | |
---|
| 149 | libwebsockets maintains an internal poll() array for all of its |
---|
| 150 | sockets, but you can instead integrate the sockets into an |
---|
| 151 | external polling array. That's needed if libwebsockets will |
---|
| 152 | cooperate with an existing poll array maintained by another |
---|
| 153 | server. |
---|
| 154 | |
---|
| 155 | Four callbacks LWS_CALLBACK_ADD_POLL_FD, LWS_CALLBACK_DEL_POLL_FD, |
---|
| 156 | LWS_CALLBACK_SET_MODE_POLL_FD and LWS_CALLBACK_CLEAR_MODE_POLL_FD |
---|
| 157 | appear in the callback for protocol 0 and allow interface code to |
---|
| 158 | manage socket descriptors in other poll loops. |
---|
| 159 | |
---|
| 160 | You can pass all pollfds that need service to libwebsocket_service_fd(), even |
---|
| 161 | if the socket or file does not belong to libwebsockets it is safe. |
---|
| 162 | |
---|
| 163 | If libwebsocket handled it, it zeros the pollfd revents field before returning. |
---|
| 164 | So you can let libwebsockets try and if pollfd->revents is nonzero on return, |
---|
| 165 | you know it needs handling by your code. |
---|
| 166 | |
---|
| 167 | |
---|
| 168 | Using with in c++ apps |
---|
| 169 | ---------------------- |
---|
| 170 | |
---|
| 171 | The library is ready for use by C++ apps. You can get started quickly by |
---|
| 172 | copying the test server |
---|
| 173 | |
---|
| 174 | $ cp test-server/test-server.c test.cpp |
---|
| 175 | |
---|
| 176 | and building it in C++ like this |
---|
| 177 | |
---|
| 178 | $ g++ -DINSTALL_DATADIR=\"/usr/share\" -ocpptest test.cpp -lwebsockets |
---|
| 179 | |
---|
| 180 | INSTALL_DATADIR is only needed because the test server uses it as shipped, if |
---|
| 181 | you remove the references to it in your app you don't need to define it on |
---|
| 182 | the g++ line either. |
---|
| 183 | |
---|
| 184 | |
---|
| 185 | Availability of header information |
---|
| 186 | ---------------------------------- |
---|
| 187 | |
---|
| 188 | From v1.2 of the library onwards, the HTTP header content is free()d as soon |
---|
| 189 | as the websocket connection is established. For websocket servers, you can |
---|
| 190 | copy interesting headers by handling LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION |
---|
| 191 | callback, for clients there's a new callback just for this purpose |
---|
| 192 | LWS_CALLBACK_CLIENT_FILTER_PRE_ESTABLISH. |
---|
| 193 | |
---|
| 194 | |
---|
| 195 | TCP Keepalive |
---|
| 196 | ------------- |
---|
| 197 | |
---|
| 198 | It is possible for a connection which is not being used to send to die |
---|
| 199 | silently somewhere between the peer and the side not sending. In this case |
---|
| 200 | by default TCP will just not report anything and you will never get any more |
---|
| 201 | incoming data or sign the link is dead until you try to send. |
---|
| 202 | |
---|
| 203 | To deal with getting a notification of that situation, you can choose to |
---|
| 204 | enable TCP keepalives on all libwebsockets sockets, when you create the |
---|
| 205 | context. |
---|
| 206 | |
---|
| 207 | To enable keepalive, set the ka_time member of the context creation parameter |
---|
| 208 | struct to a nonzero value (in seconds) at context creation time. You should |
---|
| 209 | also fill ka_probes and ka_interval in that case. |
---|
| 210 | |
---|
| 211 | With keepalive enabled, the TCP layer will send control packets that should |
---|
| 212 | stimulate a response from the peer without affecting link traffic. If the |
---|
| 213 | response is not coming, the socket will announce an error at poll() forcing |
---|
| 214 | a close. |
---|
| 215 | |
---|
| 216 | Note that BSDs don't support keepalive time / probes / inteveral per-socket |
---|
| 217 | like Linux does. On those systems you can enable keepalive by a nonzero |
---|
| 218 | value in ka_time, but the systemwide kernel settings for the time / probes/ |
---|
| 219 | interval are used, regardless of what nonzero value is in ka_time. |
---|
| 220 | |
---|
| 221 | Optimizing SSL connections |
---|
| 222 | -------------------------- |
---|
| 223 | |
---|
| 224 | There's a member ssl_cipher_list in the lws_context_creation_info struct |
---|
| 225 | which allows the user code to restrict the possible cipher selection at |
---|
| 226 | context-creation time. |
---|
| 227 | |
---|
| 228 | You might want to look into that to stop the ssl peers selecting a ciher which |
---|
| 229 | is too computationally expensive. To use it, point it to a string like |
---|
| 230 | |
---|
| 231 | "RC4-MD5:RC4-SHA:AES128-SHA:AES256-SHA:HIGH:!DSS:!aNULL" |
---|
| 232 | |
---|
| 233 | if left NULL, then the "DEFAULT" set of ciphers are all possible to select. |
---|
| 234 | |
---|
| 235 | |
---|
| 236 | Async nature of client connections |
---|
| 237 | ---------------------------------- |
---|
| 238 | |
---|
| 239 | When you call libwebsocket_client_connect(..) and get a wsi back, it does not |
---|
| 240 | mean your connection is active. It just mean it started trying to connect. |
---|
| 241 | |
---|
| 242 | Your client connection is actually active only when you receive |
---|
| 243 | LWS_CALLBACK_CLIENT_ESTABLISHED for it. |
---|
| 244 | |
---|
| 245 | There's a 5 second timeout for the connection, and it may give up or die for |
---|
| 246 | other reasons, if any of that happens you'll get a |
---|
| 247 | LWS_CALLBACK_CLIENT_CONNECTION_ERROR callback on protocol 0 instead for the |
---|
| 248 | wsi. |
---|
| 249 | |
---|
| 250 | After attempting the connection and getting back a non-NULL wsi you should |
---|
| 251 | loop calling libwebsocket_service() until one of the above callbacks occurs. |
---|
| 252 | |
---|
| 253 | As usual, see test-client.c for example code. |
---|
| 254 | |