6 #include "../aseg-paging/keyboard.h"
9 #include "lwip/stats.h"
13 #define SET_PIXEL_FORMAT 0
14 #define SET_ENCODINGS 2
15 #define FB_UPDATE_REQUEST 3
17 #define POINTER_EVENT 5
18 #define CLIENT_CUT_TEXT 6
20 #define RFB_BUF_SIZE 512
22 #define SCREEN_CHUNKS_X 8
23 #define SCREEN_CHUNKS_Y 8
39 struct server_init_message {
42 struct pixel_format fmt;
47 struct fb_update_req {
63 struct key_event_pkt {
70 struct pointer_event_pkt {
77 struct text_event_pkt {
84 struct update_header {
104 char data[RFB_BUF_SIZE];
108 char next_update_incremental;
109 char update_requested;
111 struct fb_update_req client_interest_area;
119 uint32_t checksums[SCREEN_CHUNKS_X][SCREEN_CHUNKS_Y];
125 uint32_t chunk_width;
126 uint32_t chunk_height;
128 uint32_t chunk_lindex;
130 uint32_t chunk_checksum;
132 uint32_t chunk_actually_sent;
135 static struct server_init_message server_info;
137 static void init_server_info() {
138 server_info.name_length = htonl(8);
139 memcpy(server_info.name_string, "NetWatch", 8);
142 static void update_server_info() {
144 outputf("RFB: setting fmt %d", fb->curmode.format);
145 server_info.fb_width = htons(fb->curmode.xres);
146 server_info.fb_height = htons(fb->curmode.yres);
147 switch (fb->curmode.format) {
149 server_info.fmt.bpp = 32;
150 server_info.fmt.depth = 24;
151 server_info.fmt.big_endian = 0;
152 server_info.fmt.true_color = 1;
153 server_info.fmt.red_max = htons(255);
154 server_info.fmt.green_max = htons(255);
155 server_info.fmt.blue_max = htons(255);
156 server_info.fmt.red_shift = 0;
157 server_info.fmt.green_shift = 8;
158 server_info.fmt.blue_shift = 16;
161 outputf("RFB: unknown fb fmt %d", fb->curmode.format);
165 outputf("RFB: fb null");
169 static int advance_chunk(struct rfb_state *state) {
171 state->chunk_xnum += 1;
173 if (state->chunk_xnum == SCREEN_CHUNKS_X) {
174 state->chunk_ynum += 1;
175 state->chunk_xnum = 0;
178 if (state->chunk_ynum == SCREEN_CHUNKS_Y) {
179 state->chunk_ynum = 0;
180 state->send_state = SST_IDLE;
181 if (!(state->chunk_actually_sent))
182 state->update_requested = 1;
189 static void send_fsm(struct tcp_pcb *pcb, struct rfb_state *state) {
190 struct update_header hdr;
192 unsigned char * lptr;
198 switch (state->send_state) {
203 if (state->update_requested) {
204 outputf("RFB send: update requested");
205 state->update_requested = 0;
206 state->chunk_actually_sent = 0;
207 state->send_state = SST_HEADER;
212 /* FALL THROUGH to SST_HEADER */
216 /* Calculate the width and height for this chunk, remembering
217 * that if SCREEN_CHUNKS_[XY] do not evenly divide the width and
218 * height, we may need to have shorter chunks at the edge of
221 state->chunk_width = fb->curmode.xres / SCREEN_CHUNKS_X;
222 if (fb->curmode.xres % SCREEN_CHUNKS_X != 0)
223 state->chunk_width += 1;
224 state->chunk_xpos = state->chunk_width * state->chunk_xnum;
225 totaldim = state->chunk_width * (state->chunk_xnum + 1);
226 if (totaldim > fb->curmode.xres) {
227 state->chunk_width -= (totaldim - fb->curmode.xres);
230 state->chunk_height = fb->curmode.yres / SCREEN_CHUNKS_Y;
231 if (fb->curmode.yres % SCREEN_CHUNKS_Y != 0)
232 state->chunk_height += 1;
233 state->chunk_ypos = state->chunk_height
235 totaldim = state->chunk_height * (state->chunk_ynum + 1);
236 if (totaldim > fb->curmode.yres) {
237 state->chunk_height -= (totaldim - fb->curmode.yres);
240 outputf("rfb send: (%d [%d], %d [%d]) %d x %d",
241 state->chunk_xnum, state->chunk_xpos,
242 state->chunk_ynum, state->chunk_ypos,
243 state->chunk_width, state->chunk_height);
245 /* Do we _actually_ need to send this chunk? */
246 if (fb->checksum_rect) {
247 state->chunk_checksum = fb->checksum_rect(state->chunk_xpos, state->chunk_ypos,
248 state->chunk_width, state->chunk_height);
250 if (state->chunk_checksum == state->checksums[state->chunk_xnum][state->chunk_ynum]) {
251 outputf("!!!!!!! SKIPPING: %08x", state->chunk_checksum);
252 if (advance_chunk(state))
256 /* Checksum gets set in data block, AFTER the data has been sent. */
259 outputf("actually sent");
260 state->chunk_actually_sent = 1;
264 state->chunk_lindex = 0;
265 hdr.nrects = htons(1);
266 hdr.xpos = htons(state->chunk_xpos);
267 hdr.ypos = htons(state->chunk_ypos);
268 hdr.width = htons(state->chunk_width);
269 hdr.height= htons(state->chunk_height);
270 hdr.enctype = htonl(0);
271 lines_left = state->chunk_height;
273 err = tcp_write(pcb, &hdr, sizeof(hdr), TCP_WRITE_FLAG_COPY);
277 outputf("RFB: header send error %d", err);
279 /* Try again later. */
283 state->send_state = SST_DATA;
285 /* FALL THROUGH to SST_DATA */
289 lines_left = state->chunk_height - state->chunk_lindex;
291 if (lines_left == 0) {
292 state->send_state = SST_HEADER;
293 state->checksums[state->chunk_xnum][state->chunk_ynum] = state->chunk_checksum;
294 if (advance_chunk(state))
300 + (fb->curmode.xres * fb->curmode.bytestride
301 * (state->chunk_ypos + state->chunk_lindex))
302 + (state->chunk_xpos * fb->curmode.bytestride);
304 /* The network card can't DMA from video RAM,
305 * so use TCP_WRITE_FLAG_COPY. */
306 err = tcp_write(pcb, lptr,
307 fb->curmode.bytestride * state->chunk_width, TCP_WRITE_FLAG_COPY);
310 state->chunk_lindex += 1;
313 outputf("RFB: send error %d", err);
318 if (tcp_sndbuf(pcb) == 0) {
324 if (tcp_output(pcb) != ERR_OK)
325 outputf("RFB: tcp_output bailed in send_fsm?");
328 static err_t rfb_sent(void *arg, struct tcp_pcb *pcb, uint16_t len) {
329 struct rfb_state *state = arg;
330 send_fsm(pcb, state);
334 static err_t rfb_poll(void *arg, struct tcp_pcb *pcb) {
335 struct rfb_state *state = arg;
336 send_fsm(pcb, state);
343 static void close_conn(struct tcp_pcb *pcb, struct rfb_state *state) {
357 static enum fsm_result recv_fsm(struct tcp_pcb *pcb, struct rfb_state *state) {
361 outputf("RFB FSM: st %d rp %d wp %d", state->state, state->readpos,
364 switch(state->state) {
366 if (state->writepos < 12) return NEEDMORE;
368 if (!strncmp(state->data, "RFB 003.003\n", 12)) {
370 } else if (!strncmp(state->data, "RFB 003.005\n", 12)) {
371 /* Spec states that "RFB 003.005", an incorrect value,
372 * should be treated by the server as 3.3. */
374 } else if (!strncmp(state->data, "RFB 003.007\n", 12)) {
376 } else if (!strncmp(state->data, "RFB 003.008\n", 12)) {
379 outputf("RFB: Negotiation fail");
383 outputf("RFB: Negotiated v3.%d", state->version);
385 state->readpos += 12;
386 state->state = ST_CLIENTINIT;
388 /* We support one security type, currently "none".
389 * Send that and SecurityResult. */
390 if (state->version >= 7) {
391 tcp_write(pcb, "\x01\x01\x00\x00\x00\x00", 6, 0);
393 tcp_write(pcb, "\x01\x00\x00\x00\x00", 5, 0);
401 if (state->version >= 7) {
402 /* Ignore the security type and ClientInit */
403 if (state->writepos < 2) return NEEDMORE;
406 /* Just ClientInit */
407 if (state->writepos < 1) return NEEDMORE;
411 state->state = ST_MAIN;
413 outputf("RFB: Sending server info", state->version);
414 tcp_write(pcb, &server_info, sizeof(server_info), TCP_WRITE_FLAG_COPY);
420 if (state->writepos < 1) return NEEDMORE;
422 outputf("RFB: cmd %d", state->data[0]);
423 switch (state->data[0]) {
425 case SET_PIXEL_FORMAT:
427 if (state->writepos < (sizeof(struct pixel_format) + 4))
429 outputf("RFB: SetPixelFormat");
431 struct pixel_format * new_fmt =
432 (struct pixel_format *)(&state->data[4]);
436 state->readpos += sizeof(struct pixel_format) + 4;
440 if (state->writepos < 4) return NEEDMORE;
442 struct set_encs_req * req = (struct set_encs_req *)state->data;
444 pktsize = sizeof(struct set_encs_req) + (4 * ntohs(req->num));
446 outputf("RFB: SetEncodings [%d]", ntohs(req->num));
447 if (state->writepos < pktsize) return NEEDMORE;
449 for (i = 0; i < ntohs(req->num); i++) {
450 outputf("RFB: Encoding: %d", ntohl(req->encodings[i]));
454 state->readpos += pktsize;
457 case FB_UPDATE_REQUEST:
458 if (state->writepos < sizeof(struct fb_update_req))
460 outputf("RFB: UpdateRequest");
462 state->update_requested = 1;
463 memcpy(&state->client_interest_area, state->data,
464 sizeof(struct fb_update_req));
466 state->readpos += sizeof(struct fb_update_req);
470 if (state->writepos < sizeof(struct key_event_pkt))
473 struct key_event_pkt * p = (struct key_event_pkt *)state->data;
475 outputf("RFB: Key: %d (%c)", htonl(p->keysym), (htonl(p->keysym) & 0xFF));
476 kbd_inject_keysym(htonl(p->keysym), p->downflag);
478 state->readpos += sizeof(struct key_event_pkt);
482 if (state->writepos < sizeof(struct pointer_event_pkt))
484 outputf("RFB: Pointer");
488 state->readpos += sizeof(struct pointer_event_pkt);
491 case CLIENT_CUT_TEXT:
492 if (state->writepos < sizeof(struct text_event_pkt))
494 outputf("RFB: Cut Text");
496 struct text_event_pkt * pkt =
497 (struct text_event_pkt *)state->data;
499 if (state->writepos < sizeof(struct text_event_pkt)
505 state->readpos += sizeof(struct text_event_pkt)
510 outputf("RFB: Bad command: %d", state->data[0]);
513 outputf("RFB: Bad state");
518 static err_t rfb_recv(void *arg, struct tcp_pcb *pcb,
519 struct pbuf *p, err_t err) {
520 struct rfb_state *state = arg;
525 outputf("RFB: recv err %d", err);
526 /* FIXME do something better here? */
531 outputf("RFB: Connection closed");
532 close_conn(pcb, state);
536 if (p->tot_len > (RFB_BUF_SIZE - state->writepos)) {
538 outputf("RFB: Overflow!");
539 close_conn(pcb, state);
543 outputf("RFB: Processing %d", p->tot_len);
544 pbuf_copy_partial(p, state->data + state->writepos, p->tot_len, 0);
545 state->writepos += p->tot_len;
547 tcp_recved(pcb, p->tot_len);
551 switch (recv_fsm(pcb, state)) {
553 outputf("RFB FSM: blocking");
558 outputf("RFB FSM: ok");
560 /* Kick off a send. */
561 if (state->send_state == SST_IDLE
562 && state->update_requested) {
563 send_fsm(pcb, state);
566 if (state->readpos == state->writepos) {
572 state->data + state->readpos,
573 state->writepos - state->readpos);
578 outputf("RFB: Protocol error");
579 close_conn(pcb, state);
585 static err_t rfb_accept(void *arg, struct tcp_pcb *pcb, err_t err) {
586 struct rfb_state *state;
588 LWIP_UNUSED_ARG(arg);
589 LWIP_UNUSED_ARG(err);
591 state = (struct rfb_state *)mem_malloc(sizeof(struct rfb_state));
593 state->state = ST_BEGIN;
596 state->update_requested = 0;
597 state->send_state = SST_IDLE;
598 state->chunk_xnum = 0;
599 state->chunk_ynum = 0;
600 memset(state->checksums, 0, sizeof(state->checksums));
602 /* XXX: update_server_info() should be called from the 64ms timer, and deal
603 * with screen resizes appropriately. */
604 update_server_info();
608 outputf("rfb_accept: out of memory\n");
613 tcp_recv(pcb, rfb_recv);
614 tcp_sent(pcb, rfb_sent);
615 tcp_poll(pcb, rfb_poll, 1);
617 tcp_err(pcb, rfb_err);
619 tcp_write(pcb, "RFB 003.008\n", 12, 0);
631 tcp_bind(pcb, IP_ADDR_ANY, RFB_PORT);
632 pcb = tcp_listen(pcb);
633 tcp_accept(pcb, rfb_accept);