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 /* FALL THROUGH to SST_NEEDS_UPDATE*/
168 case SST_NEEDS_UPDATE:
169 outputf("RFB send: sending header");
171 state->frame_bytes = fb->curmode.xres * fb->curmode.yres * fb->curmode.bytestride;
173 hdr.nrects = htons(1);
176 hdr.width = htons(fb->curmode.xres);
177 hdr.height = htons(fb->curmode.yres);
178 hdr.enctype = htonl(0);
179 tcp_write(pcb, &hdr, sizeof(hdr), TCP_WRITE_FLAG_COPY);
181 state->update_pos = 0;
182 state->send_state = SST_SENDING;
184 /* FALL THROUGH to SST_SENDING*/
187 left = state->frame_bytes - state->update_pos;
190 state->send_state = SST_IDLE;
194 if (left > 8192) /* Sounds good enough to me. */
199 err = tcp_write(pcb, fb->fbaddr + state->update_pos, sndlength, TCP_WRITE_FLAG_COPY /* The card can't DMA from there. */);
200 if (err == ERR_MEM) /* Back down until lwip says we've got space. */
202 } while (err == ERR_MEM && sndlength > 1);
206 outputf("RFB: send error %d", err);
208 /* We'll just give up for now and come back when we have space later. */
212 state->update_pos += sndlength;
214 if (tcp_sndbuf(pcb) == 0) {
222 if (tcp_output(pcb) != ERR_OK)
223 outputf("RFB: tcp_output bailed in send_fsm?");
226 static err_t rfb_sent(void *arg, struct tcp_pcb *pcb, uint16_t len) {
227 struct rfb_state *state = arg;
228 send_fsm(pcb, state);
232 static void close_conn(struct tcp_pcb *pcb, struct rfb_state *state) {
246 static enum fsm_result recv_fsm(struct tcp_pcb *pcb, struct rfb_state *state) {
250 outputf("RFB FSM: st %d rp %d wp %d", state->state, state->readpos,
253 switch(state->state) {
255 if (state->writepos < 12) return NEEDMORE;
257 if (!strncmp(state->data, "RFB 003.003\n", 12)) {
259 } else if (!strncmp(state->data, "RFB 003.005\n", 12)) {
260 /* Spec states that "RFB 003.005", an incorrect value,
261 * should be treated by the server as 3.3. */
263 } else if (!strncmp(state->data, "RFB 003.007\n", 12)) {
265 } else if (!strncmp(state->data, "RFB 003.008\n", 12)) {
268 outputf("RFB: Negotiation fail");
272 outputf("RFB: Negotiated v3.%d", state->version);
274 state->readpos += 12;
275 state->state = ST_CLIENTINIT;
277 /* We support one security type, currently "none".
278 * Send that and SecurityResult. */
279 if (state->version >= 7) {
280 tcp_write(pcb, "\x01\x01\x00\x00\x00\x00", 6, 0);
282 tcp_write(pcb, "\x01\x00\x00\x00\x00", 5, 0);
290 if (state->version >= 7) {
291 /* Ignore the security type and ClientInit */
292 if (state->writepos < 2) return NEEDMORE;
295 /* Just ClientInit */
296 if (state->writepos < 1) return NEEDMORE;
300 state->state = ST_MAIN;
302 outputf("RFB: Sending server info", state->version);
303 tcp_write(pcb, &server_info, sizeof(server_info), TCP_WRITE_FLAG_COPY);
309 if (state->writepos < 1) return NEEDMORE;
311 outputf("RFB: cmd %d", state->data[0]);
312 switch (state->data[0]) {
314 case SET_PIXEL_FORMAT:
316 if (state->writepos < (sizeof(struct pixel_format) + 4))
318 outputf("RFB: SetPixelFormat");
320 struct pixel_format * new_fmt =
321 (struct pixel_format *)(&state->data[4]);
325 state->readpos += sizeof(struct pixel_format) + 4;
329 if (state->writepos < 4) return NEEDMORE;
331 struct set_encs_req * req = (struct set_encs_req *)state->data;
333 pktsize = sizeof(struct set_encs_req) + (4 * ntohs(req->num));
335 outputf("RFB: SetEncodings [%d]", ntohs(req->num));
336 if (state->writepos < pktsize) return NEEDMORE;
338 for (i = 0; i < ntohs(req->num); i++) {
339 outputf("RFB: Encoding: %d", ntohl(req->encodings[i]));
343 state->readpos += pktsize;
346 case FB_UPDATE_REQUEST:
347 if (state->writepos < sizeof(struct fb_update_req))
349 outputf("RFB: UpdateRequest");
351 state->update_requested = 1;
352 memcpy(&state->client_interest_area, state->data,
353 sizeof(struct fb_update_req));
355 state->readpos += sizeof(struct fb_update_req);
359 if (state->writepos < sizeof(struct key_event_pkt))
365 state->readpos += sizeof(struct key_event_pkt);
369 if (state->writepos < sizeof(struct pointer_event_pkt))
371 outputf("RFB: Pointer");
375 state->readpos += sizeof(struct pointer_event_pkt);
378 case CLIENT_CUT_TEXT:
379 if (state->writepos < sizeof(struct text_event_pkt))
381 outputf("RFB: Cut Text");
383 struct text_event_pkt * pkt =
384 (struct text_event_pkt *)state->data;
386 if (state->writepos < sizeof(struct text_event_pkt)
392 state->readpos += sizeof(struct text_event_pkt)
397 outputf("RFB: Bad command: %d", state->data[0]);
400 outputf("RFB: Bad state");
405 static err_t rfb_recv(void *arg, struct tcp_pcb *pcb,
406 struct pbuf *p, err_t err) {
407 struct rfb_state *state = arg;
412 outputf("RFB: recv err %d", err);
413 /* FIXME do something better here? */
418 outputf("RFB: Connection closed");
419 close_conn(pcb, state);
423 if (p->tot_len > (RFB_BUF_SIZE - state->writepos)) {
425 outputf("RFB: Overflow!");
426 close_conn(pcb, state);
430 outputf("RFB: Processing %d", p->tot_len);
431 pbuf_copy_partial(p, state->data + state->writepos, p->tot_len, 0);
432 state->writepos += p->tot_len;
434 tcp_recved(pcb, p->tot_len);
438 switch (recv_fsm(pcb, state)) {
440 outputf("RFB FSM: blocking");
445 outputf("RFB FSM: ok");
447 /* Kick off a send. */
448 if (state->send_state == SST_IDLE
449 && state->update_requested) {
450 send_fsm(pcb, state);
453 if (state->readpos == state->writepos) {
459 state->data + state->readpos,
460 state->writepos - state->readpos);
465 outputf("RFB: Protocol error");
466 close_conn(pcb, state);
472 static err_t rfb_accept(void *arg, struct tcp_pcb *pcb, err_t err) {
473 struct rfb_state *state;
475 LWIP_UNUSED_ARG(arg);
476 LWIP_UNUSED_ARG(err);
478 state = (struct rfb_state *)mem_malloc(sizeof(struct rfb_state));
480 state->state = ST_BEGIN;
483 state->update_requested = 0;
484 state->send_state = SST_IDLE;
486 /* XXX: update_server_info() should be called from the 64ms timer, and deal
487 * with screen resizes appropriately. */
488 update_server_info();
492 outputf("rfb_accept: out of memory\n");
497 tcp_recv(pcb, rfb_recv);
498 tcp_sent(pcb, rfb_sent);
500 tcp_err(pcb, rfb_err);
501 tcp_poll(pcb, rfb_poll, 2);
503 tcp_write(pcb, "RFB 003.008\n", 12, 0);
515 tcp_bind(pcb, IP_ADDR_ANY, RFB_PORT);
516 pcb = tcp_listen(pcb);
517 tcp_accept(pcb, rfb_accept);