10 #define SET_PIXEL_FORMAT 0
11 #define SET_ENCODINGS 2
12 #define FB_UPDATE_REQUEST 3
14 #define POINTER_EVENT 5
15 #define CLIENT_CUT_TEXT 6
17 #define RFB_BUF_SIZE 64
33 struct server_init_message {
36 struct pixel_format fmt;
41 struct fb_update_req {
57 struct key_event_pkt {
64 struct pointer_event_pkt {
71 struct text_event_pkt {
78 struct update_header {
98 char data[RFB_BUF_SIZE];
102 char next_update_incremental;
103 char update_requested;
105 struct fb_update_req client_interest_area;
114 uint32_t frame_bytes;
117 static struct server_init_message server_info;
119 static void init_server_info() {
120 server_info.name_length = htonl(8);
121 memcpy(server_info.name_string, "NetWatch", 8);
124 static void update_server_info() {
126 outputf("RFB: setting fmt %d", fb->curmode.format);
127 server_info.fb_width = htons(fb->curmode.xres);
128 server_info.fb_height = htons(fb->curmode.yres);
129 switch (fb->curmode.format) {
131 server_info.fmt.bpp = 32;
132 server_info.fmt.depth = 24;
133 server_info.fmt.big_endian = 0;
134 server_info.fmt.true_color = 1;
135 server_info.fmt.red_max = htons(255);
136 server_info.fmt.green_max = htons(255);
137 server_info.fmt.blue_max = htons(255);
138 server_info.fmt.red_shift = 0;
139 server_info.fmt.green_shift = 8;
140 server_info.fmt.blue_shift = 16;
143 outputf("RFB: unknown fb fmt %d", fb->curmode.format);
147 outputf("RFB: fb null");
151 static void send_fsm(struct tcp_pcb *pcb, struct rfb_state *state) {
152 struct update_header hdr;
156 switch (state->send_state) {
159 if (state->update_requested) {
160 outputf("RFB send: update requested");
161 state->update_requested = 0;
162 state->send_state = SST_NEEDS_UPDATE;
167 /* potential FALL THROUGH */
169 case SST_NEEDS_UPDATE:
170 outputf("RFB send: sending header");
172 state->frame_bytes = fb->curmode.xres * fb->curmode.yres * 3; /* XXX */
174 hdr.nrects = htons(1);
177 hdr.width = htons(fb->curmode.xres);
178 hdr.height = htons(fb->curmode.yres);
179 hdr.enctype = htonl(0);
180 tcp_write(pcb, &hdr, sizeof(hdr), 0);
183 state->update_pos = 0;
184 state->send_state = SST_SENDING;
189 left = state->frame_bytes - state->update_pos;
191 if (left > tcp_sndbuf(pcb)) {
192 sndlength = tcp_sndbuf(pcb);
198 err = tcp_write(pcb, fb->fbaddr + state->update_pos, sndlength, 0);
199 if (err == ERR_MEM) {
200 outputf("RFB: ERR_MEM sending %d", sndlength);
203 } while (err == ERR_MEM && sndlength > 1);
206 outputf("RFB: sent %d", sndlength);
207 state->update_pos += sndlength;
209 outputf("RFB: send error %d", err);
214 if (state->update_pos == state->frame_bytes) {
215 state->send_state = SST_IDLE;
222 static err_t rfb_sent(void *arg, struct tcp_pcb *pcb, uint16_t len) {
223 struct rfb_state *state = arg;
224 send_fsm(pcb, state);
228 static void close_conn(struct tcp_pcb *pcb, struct rfb_state *state) {
242 static enum fsm_result recv_fsm(struct tcp_pcb *pcb, struct rfb_state *state) {
246 outputf("RFB FSM: st %d rp %d wp %d", state->state, state->readpos,
249 switch(state->state) {
251 if (state->writepos < 12) return NEEDMORE;
253 if (!strncmp(state->data, "RFB 003.003\n", 12)) {
255 } else if (!strncmp(state->data, "RFB 003.005\n", 12)) {
256 /* Spec states that "RFB 003.005", an incorrect value,
257 * should be treated by the server as 3.3. */
259 } else if (!strncmp(state->data, "RFB 003.007\n", 12)) {
261 } else if (!strncmp(state->data, "RFB 003.008\n", 12)) {
264 outputf("RFB: Negotiation fail");
268 outputf("RFB: Negotiated v3.%d", state->version);
270 state->readpos += 12;
271 state->state = ST_CLIENTINIT;
273 /* We support one security type, currently "none".
274 * Send that and SecurityResult. */
275 if (state->version >= 7) {
276 tcp_write(pcb, "\x01\x01\x00\x00\x00\x00", 6, 0);
278 tcp_write(pcb, "\x01\x00\x00\x00\x00", 5, 0);
286 if (state->version >= 7) {
287 /* Ignore the security type and ClientInit */
288 if (state->writepos < 2) return NEEDMORE;
291 /* Just ClientInit */
292 if (state->writepos < 1) return NEEDMORE;
296 state->state = ST_MAIN;
298 outputf("RFB: Sending server info", state->version);
299 tcp_write(pcb, &server_info, sizeof(server_info), 0);
305 if (state->writepos < 1) return NEEDMORE;
307 outputf("RFB: cmd %d", state->data[0]);
308 switch (state->data[0]) {
310 case SET_PIXEL_FORMAT:
312 if (state->writepos < (sizeof(struct pixel_format) + 4))
314 outputf("RFB: SetPixelFormat");
316 struct pixel_format * new_fmt =
317 (struct pixel_format *)(&state->data[4]);
321 state->readpos += sizeof(struct pixel_format) + 4;
325 if (state->writepos < 4) return NEEDMORE;
327 struct set_encs_req * req = (struct set_encs_req *)state->data;
329 pktsize = sizeof(struct set_encs_req) + (4 * ntohs(req->num));
331 outputf("RFB: SetEncodings [%d]", ntohs(req->num));
332 if (state->writepos < pktsize) return NEEDMORE;
334 for (i = 0; i < ntohs(req->num); i++) {
335 outputf("RFB: Encoding: %d", ntohl(req->encodings[i]));
340 state->readpos += pktsize;
343 case FB_UPDATE_REQUEST:
344 if (state->writepos < sizeof(struct fb_update_req))
346 outputf("RFB: UpdateRequest");
348 state->update_requested = 1;
349 memcpy(&state->client_interest_area, state->data,
350 sizeof(struct fb_update_req));
352 state->readpos += sizeof(struct fb_update_req);
356 if (state->writepos < sizeof(struct key_event_pkt))
362 state->readpos += sizeof(struct key_event_pkt);
366 if (state->writepos < sizeof(struct pointer_event_pkt))
368 outputf("RFB: Pointer");
372 state->readpos += sizeof(struct pointer_event_pkt);
375 case CLIENT_CUT_TEXT:
376 if (state->writepos < sizeof(struct text_event_pkt))
378 outputf("RFB: Cut Text");
380 struct text_event_pkt * pkt =
381 (struct text_event_pkt *)state->data;
383 if (state->writepos < sizeof(struct text_event_pkt)
389 state->readpos += sizeof(struct text_event_pkt)
394 outputf("RFB: Bad command: %d", state->data[0]);
397 outputf("RFB: Bad state");
402 static err_t rfb_recv(void *arg, struct tcp_pcb *pcb,
403 struct pbuf *p, err_t err) {
404 struct rfb_state *state = arg;
409 outputf("RFB: recv err %d", err);
410 /* FIXME do something better here? */
415 outputf("RFB: Connection closed");
416 close_conn(pcb, state);
420 if (p->tot_len > (RFB_BUF_SIZE - state->writepos)) {
422 outputf("RFB: Overflow!");
423 close_conn(pcb, state);
427 outputf("RFB: Processing %d", p->tot_len);
428 pbuf_copy_partial(p, state->data + state->writepos, p->tot_len, 0);
429 state->writepos += p->tot_len;
431 tcp_recved(pcb, p->tot_len);
435 switch (recv_fsm(pcb, state)) {
437 outputf("RFB FSM: blocking");
442 outputf("RFB FSM: ok");
444 /* Might as well send now... */
445 if (state->send_state == SST_IDLE
446 && state->update_requested) {
447 send_fsm(pcb, state);
450 if (state->readpos == state->writepos) {
456 state->data + state->readpos,
457 state->writepos - state->readpos);
462 outputf("RFB: Protocol error");
463 close_conn(pcb, state);
469 static err_t rfb_accept(void *arg, struct tcp_pcb *pcb, err_t err) {
470 struct rfb_state *state;
472 LWIP_UNUSED_ARG(arg);
473 LWIP_UNUSED_ARG(err);
475 state = (struct rfb_state *)mem_malloc(sizeof(struct rfb_state));
477 state->state = ST_BEGIN;
480 state->update_requested = 0;
481 state->send_state = SST_IDLE;
483 /* XXX: update_server_info() should be called from the 64ms timer, and deal
484 * with screen resizes appropriately. */
485 update_server_info();
489 outputf("rfb_accept: out of memory\n");
494 tcp_recv(pcb, rfb_recv);
495 tcp_sent(pcb, rfb_sent);
497 tcp_err(pcb, rfb_err);
498 tcp_poll(pcb, rfb_poll, 2);
500 tcp_write(pcb, "RFB 003.008\n", 12, 0);
512 tcp_bind(pcb, IP_ADDR_ANY, RFB_PORT);
513 pcb = tcp_listen(pcb);
514 tcp_accept(pcb, rfb_accept);