aboutsummaryrefslogtreecommitdiffstats
path: root/doc/rfbtight.tex
blob: 088ab60ed532ca0c04a80769b6fbc4444ef08a1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
\documentclass[a4paper]{article}
\usepackage{geometry}
\geometry{verbose,a4paper,tmargin=20mm,bmargin=20mm,lmargin=30mm,rmargin=30mm}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1ex plus 0.5ex minus 0.2ex}

\newcommand{\typestr}[1]{\textit{#1}}
\newcommand{\literal}[1]{\textit{\textbf{#1}}}

\begin{document}

\title{TightVNC Extensions to the RFB~Protocol
       \thanks{This document refers to RFB protocol versions 3.3, 3.7}}
\author{Constantin Kaplinsky\\
        TightVNC Group}
\date{Revision 1 --- July, 2006}
\maketitle

\tableofcontents

\newpage
\section{Overview}
This document describes various extensions to the RFB protocol used in
the TightVNC distribution and in other software compatible with
TightVNC. Only differences from the stardard RFB protocol are
discussed. The original RFB protocol specification (protocol versions
3.3, 3.7, 3.8) can be obtained here:
\begin{center}
\texttt{http://www.realvnc.com/docs/rfbproto.pdf}
\end{center}

At the moment of writing this document, TightVNC supports RFB protocol
version 3.3 (all TightVNC versions) and 3.7 (TightVNC 1.3.x). It does
not use the version 3.8 of the protocol, and it's not safe to assume
that the TightVNC-specific changes to the protocol 3.7 initialization
procedure can be used with the protocol 3.8. However, all encodings,
pseudo-encodings and protocol messages described in this document can
be safely used with the protocol 3.8.
% (pseudo-)encodings: 3.3+, messages: 3.7+ with sec-type == Tight

TightVNC introduces the following protocol changes:
\begin{itemize}
\item extended protocol initialization procedure,
\item new encodings,
\item new pseudo-encodings,
\item new protocol messages.
\end{itemize}

\newpage
\section{Protocol initialization}

\subsection{Protocol version 3.3}
\subsection{Protocol version 3.7}

\newpage
\section{Encodings}
\subsection{Tight}
\begin{verbatim}
Encoding type:     7
Name signature:    "TIGHT___"
Vendor signature:  "TGHT"
\end{verbatim}
Tight encoding provides efficient compression for pixel data.

The first byte of each Tight-encoded rectangle is a
\typestr{compression-control} byte:

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8 &   & \typestr{compression-control} \\ \hline
\end{tabular}

\begin{quote}
The least significant four bits of \typestr{compression-control} byte
inform the client which zlib compression streams should be reset
before decoding the rectangle. Each bit is independent and corresponds
to a separate zlib stream that should be reset:

\begin{tabular}{l|l}
\hline
Bit & Description    \\
\hline
0   & if 1: reset stream 0 \\
1   & if 1: reset stream 1 \\
2   & if 1: reset stream 2 \\
3   & if 1: reset stream 4 \\
\hline
\end{tabular}

One of three possible compression methods are supported in Tight
encoding. These are \literal{BasicCompression},
\literal{FillCompression} and \literal{JpegCompression}. If the bit 7 (the
most significant bit) of \typestr{compression-control} byte is 0, then
the compression type is \literal{BasicCompression}. In that case, bits
7-4 (the most significant four bits) of \typestr{compression-control}
should be interpreted as follows:

\begin{tabular}{l|c|l}
\hline
Bits & Binary value & Description \\
\hline
5-4 & 00  & \literal{UseStream0} \\
    & 01  & \literal{UseStream1} \\
    & 10  & \literal{UseStream2} \\
    & 11  & \literal{UseStream3} \\
\hline
6   & 0   & --- \\
    & 1   & \literal{ReadFilterId} \\
\hline
7   & 0   & \literal{BasicCompression} \\
\hline
\end{tabular}

Otherwise, if the bit 7 of \typestr{compression-control} is set to 1,
then the compression method is either \literal{FillCompression} or
\literal{JpegCompression}, depending on other bits of the same byte:

\begin{tabular}{l|c|l}
\hline
Bits & Binary value & Description \\
\hline
7-4 & 1000 & \literal{FillCompression} \\
    & 1001 & \literal{JpegCompression} \\
    & any other & invalid \\
\hline
\end{tabular}

Note: \literal{JpegCompression} may only be used when
\typestr{bits-per-pixel} is either 16 or 32.

\end{quote}

The data following the \typestr{compression-control} byte depends on
the compression method.

\subsubsection*{\literal{FillCompression}}

-- If the compression type is "fill", then the only pixel value follows, in
 client pixel format (see NOTE 1). This value applies to all pixels of the
 rectangle.

\subsubsection*{\literal{JpegCompression}}

-- If the compression type is "jpeg", the following data stream looks like
 this:

   1..3 bytes:  data size (N) in compact representation;
   N bytes:     JPEG image.

 Data size is compactly represented in one, two or three bytes, according
 to the following scheme:

  0xxxxxxx                    (for values 0..127)
  1xxxxxxx 0yyyyyyy           (for values 128..16383)
  1xxxxxxx 1yyyyyyy zzzzzzzz  (for values 16384..4194303)

 Here each character denotes one bit, xxxxxxx are the least significant 7
 bits of the value (bits 0-6), yyyyyyy are bits 7-13, and zzzzzzzz are the
 most significant 8 bits (bits 14-21). For example, decimal value 10000
 should be represented as two bytes: binary 10010000 01001110, or
 hexadecimal 90 4E.

\subsubsection*{\literal{BasicCompression}}

-- If the compression type is "basic" and bit 6 of the compression control
 byte was set to 1, then the next (second) byte specifies "filter id" which
 tells the decoder what filter type was used by the encoder to pre-process
 pixel data before the compression. The "filter id" byte can be one of the
 following:

   0:  no filter ("copy" filter);
   1:  "palette" filter;
   2:  "gradient" filter.

-- If bit 6 of the compression control byte is set to 0 (no "filter id"
 byte), or if the filter id is 0, then raw pixel values in the client
 format (see NOTE 1) will be compressed. See below details on the
 compression.

-- The "gradient" filter pre-processes pixel data with a simple algorithm
 which converts each color component to a difference between a "predicted"
 intensity and the actual intensity. Such a technique does not affect
 uncompressed data size, but helps to compress photo-like images better. 
 Pseudo-code for converting intensities to differences is the following:

   P[i,j] := V[i-1,j] + V[i,j-1] - V[i-1,j-1];
   if (P[i,j] < 0) then P[i,j] := 0;
   if (P[i,j] > MAX) then P[i,j] := MAX;
   D[i,j] := V[i,j] - P[i,j];

 Here V[i,j] is the intensity of a color component for a pixel at
 coordinates (i,j). MAX is the maximum value of intensity for a color
 component.

-- The "palette" filter converts true-color pixel data to indexed colors
 and a palette which can consist of 2..256 colors. If the number of colors
 is 2, then each pixel is encoded in 1 bit, otherwise 8 bits is used to
 encode one pixel. 1-bit encoding is performed such way that the most
 significant bits correspond to the leftmost pixels, and each raw of pixels
 is aligned to the byte boundary. When "palette" filter is used, the
 palette is sent before the pixel data. The palette begins with an unsigned
 byte which value is the number of colors in the palette minus 1 (i.e. 1
 means 2 colors, 255 means 256 colors in the palette). Then follows the
 palette itself which consist of pixel values in client pixel format (see
 NOTE 1).

-- The pixel data is compressed using the zlib library. But if the data
 size after applying the filter but before the compression is less then 12,
 then the data is sent as is, uncompressed. Four separate zlib streams
 (0..3) can be used and the decoder should read the actual stream id from
 the compression control byte (see NOTE 2).

 If the compression is not used, then the pixel data is sent as is,
 otherwise the data stream looks like this:

   1..3 bytes:  data size (N) in compact representation;
   N bytes:     zlib-compressed data.

 Data size is compactly represented in one, two or three bytes, just like
 in the "jpeg" compression method (see above).

-- NOTE 1. If the color depth is 24, and all three color components are
 8-bit wide, then one pixel in Tight encoding is always represented by
 three bytes, where the first byte is red component, the second byte is
 green component, and the third byte is blue component of the pixel color
 value. This applies to colors in palettes as well.

-- NOTE 2. The decoder must reset compression streams' states before
 decoding the rectangle, if some of bits 0,1,2,3 in the compression control
 byte are set to 1. Note that the decoder must reset zlib streams even if
 the compression type is "fill" or "jpeg".

-- NOTE 3. The "gradient" filter and "jpeg" compression may be used only
 when bits-per-pixel value is either 16 or 32, not 8.

-- NOTE 4. The width of any Tight-encoded rectangle cannot exceed 2048
 pixels. If a rectangle is wider, it must be split into several rectangles
 and each one should be encoded separately.

\newpage
\section{Pseudo-encodings}
\subsection{NewFBSize}
\begin{verbatim}
Encoding type:     0xFFFFFF21
Name signature:    "NEWFBSIZ"
Vendor signature:  "TGHT"
\end{verbatim}

The NewFBSize pseudo-encoding is used to transmit information about
framebuffer size changes from server to client.

This pseudo-encoding was introduced in TightVNC, and was adopted for
use in RealVNC 4 (see the DesktopSize pseudo-encoding in the RFB 3.7+
specification). However, there is known incompatibility between
TightVNC and RealVNC in the way the server sends information about new
framebuffer size. TightVNC implementation requires that a NewFBSize
``rectangle'' must be the last one in a framebuffer update, while
RealVNC does not make such a requirement. As a result, TightVNC
viewers may incorrectly interpret the data stream received from
RealVNC 4 servers.

Hopefully, this incompatibility will be fixed in future versions of
TightVNC. Ideally, the server should send NewFBSize ``rectangles''
according to the TightVNC rules (with valid rectangle counter in the
FramebufferUpdate header), while the client should interpet it in
accordance to the DesktopSize pseudo-encoding description from
RealVNC's official RFB specification.

Below is the complete specification of the NewFBSize pseudo-encoding,
as it was introduced in TightVNC:

\subsubsection*{
\begin{center}
      Handling framebuffer size changes in the RFB protocol v.3\\
                 Technical Specification, revision 3
\end{center}
}

\begin{quote}
The following pseudo-encoding is used to transmit information about
framebuffer size changes from server to client:

\begin{center}
\texttt{\#define rfbEncodingNewFBSize 0xFFFFFF21}
\end{center}

A client supporting variable framebuffer size should send this
pseudo-encoding number in the encodings list within the SetEncodings
RFB message.

After a client informed the server about this capability, the server
may send a special rectangle within the FramebufferUpdate RFB message,
where the header contains encoding-type field set to the
rfbEncodingNewFBSize value. Fields width and height in this rectangle
header should be interpreted as new framebuffer size, fields
x-position and y-position are currently not used and should be set to
zero values by the server. Unlike true rectangle in framebuffer
updates, this one should not include any pixel data. This rectangle
must always be the last one in a FramebufferUpdate message, and a
client should treat it similarly to the LastRect marker, that is, it
should not expect more rectangles in this update, even if the
number-of-rectangles field in the FramebufferUpdate message header
exceeds current number of rectangles.

Immediately after receiving such a special rectangle, a client should
change its framebuffer size accordingly, and should interpret all
following framebuffer updates in context of the new framebuffer size.

Changing framebuffer size invalidates framebuffer contents, so the
server should mark all the framebuffer contents as changed.

FIXME: Allow zero-size framebuffer?
\end{quote}

\subsection{RichCursor}
\subsection{XCursor}
\subsection{PointerPos}
\subsection{CompressLevel}
\subsection{QualityLevel}

\subsection{LastRect}
\begin{verbatim}
Encoding type:     0xFFFFFF20
Name signature:    "LASTRECT"
Vendor signature:  "TGHT"
\end{verbatim}

\typestr{LastRect} enables \typestr{FramebufferUpdate} messages that
include less rectangles than was specified in the message header. For
example, VNC server can send a big conter like 0xFFFF as
\typestr{number-of-rectangles}, then arbitrary number of rectangles and
pseudo-rectangles (less than 0xFFFF). Finally, it sends
\typestr{LastRect} pseudo-rectangle which marks the end of current
\typestr{FramebufferUpdate} message.

The fields
\typestr{x-position}, \typestr{y-position}, \typestr{width} and
\typestr{height} are not used and should be filled with zero values.

To enable this pseudo-encoding, the client specifies
\typestr{LastRect} in the \typestr{SetEncodings} message. From that
moment, the server may use \typestr{LastRect} pseudo-encoding in some
of the framebuffer updates it will send.

% For each message, describe its place in the message sequence.

\newpage
\section{Protocol messages, file transfers (client to server)}

\subsection{FileListRequest}
\begin{verbatim}
Message type:      130
Name signature:    "FTC_LSRQ"
Vendor signature:  "TGHT"
\end{verbatim}

The client sends \typestr{FileListRequest} message to obtain the list
of files in a particular directory. The server is expected to respond
with exactly one \typestr{FileListData} message.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 130 & \typestr{message-type} \\
1 & U8  &     & \typestr{flags} \\
2 & U16 &     & \typestr{dirname-length} \\
\typestr{dirname-length} & U8 array & & \typestr{dirname-string} \\
\hline\end{tabular}

The \typestr{flags} byte has the following format:

\begin{tabular}{l|l|l}
\hline
Bits & Binary value   & Description \\ \hline
3-0 & 0000            & do not compress file list data \\
    & 0001..1001      & use compression level 1..9 \\
    & 1010 or greater & invalid \\
\hline
4   & 0   & list of files and directories requested \\
    & 1   & list of directories only requested \\
\hline
\end{tabular}

The client can request compression only if enabled via the server's
\typestr{FileEnableCompression} message. Otherwise, bits 3-0 of
\typestr{flags} must be all zeroes (for no compression). See more
details in the specification for the \typestr{FileEnableCompression}
message.

% Add a note that specifying compression levels is not fatal here.

The \typestr{dirname-string} should be an absolute path represented in
Unix-style format: it should start with a forward slash
(``\verb|/|''), path components should be separated also with forward
slashes. There should be no trailing slash at the end of the path,
except for the root (highest level) directory which is denoted with a
single slash. Note that Windows-style path like
``\verb|c:\Program Files\TightVNC|'' should be sent as
``\verb|/c:/Program Files/TightVNC|''.

\newpage
\subsection{FileDownloadRequest}
\begin{verbatim}
Message type:      131
Name signature:    "FTC_DNRQ"
Vendor signature:  "TGHT"
\end{verbatim}

The client sends \typestr{FileDownloadRequest} message to start
downloading (receiving) a particular file from the server.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 131 & \typestr{message-type} \\
1 & U8  &     & \typestr{flags} \\
2 & U16 &     & \typestr{filename-length} \\
4 & U32 &     & \typestr{initial-offset} \\
\typestr{filename-length} & U8 array & & \typestr{filename-string} \\
\hline\end{tabular}

The \typestr{flags} byte has the following format:

\begin{tabular}{l|l|l}
\hline
Bits & Binary value   & Description \\ \hline
3-0 & 0000            & do not compress file data \\
    & 0001..1001      & use compression level 1..9 \\
    & 1010 or greater & invalid \\
\hline
\end{tabular}

% \typestr{initial-offset}
% do not use compression when not enabled by the server

After the client sends \typestr{FileDownloadRequest}, the server is
expected to respond with one of the following:

\begin{itemize}

\item \typestr{FileLastRequestFailed} message, if there was an error
opening file on the server side.

\item Arbitrary number (including zero) of \typestr{FileDownloadData}
messages with file data, and then one more \typestr{FileDownloadData}
message with \typestr{raw-length} and \typestr{compressed-length}
fields set to zero. This is the normal scenario when there was no
error and download was not interrupted.

\item Arbitrary number (including zero) of \typestr{FileDownloadData}
messages with file data, and then one \typestr{FileDownloadFailed}
message. This happens when the server cannot complete file download
for some reason.

\item \dots

\end{itemize}

% Can FileDownloadFailed go first? -- probably yes.
% How zero-size files are transmitted?
% How to detect the beginning of the next file, when previous
%   download was cancelled with FileDownloadCancel?

The \typestr{filename-string} should be a file name with complete
absolute path represented in Unix-style format: it should start with a
forward slash (``\verb|/|''), path components should be separated also
with forward slashes. For example, Windows-style file name
``\verb|c:\Temp\Report.doc|'' should be sent as
``\verb|/c:/Temp/Report.doc|''.

\newpage
\subsection{FileUploadRequest}
\begin{verbatim}
Message type:      132
Name signature:    "FTC_UPRQ"
Vendor signature:  "TGHT"
\end{verbatim}

The client sends \typestr{FileUploadRequest} message to start
uploading (sending) a particular file to the server.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 132 & \typestr{message-type} \\
1 & U8  &     & \typestr{flags} \\
2 & U16 &     & \typestr{filename-length} \\
4 & U32 &     & \typestr{initial-offset} \\
\typestr{filename-length} & U8 array & & \typestr{filename-string} \\
\hline\end{tabular}

The \typestr{flags} byte has the following format:

\begin{tabular}{l|l|l}
\hline
Bits & Binary value   & Description \\ \hline
3-0 & 0000            & file data is expected to be uncompressed \\
    & 0001..1001      & expected compression level (1..9) \\
    & 1010 or greater & invalid \\
\hline
\end{tabular}

% \typestr{initial-offset}
% do not use compression when not enabled by the server

Normally, the server does not respond to this message, so the client
can start sending \typestr{FileUploadData} messages immediately.
However, the server may send \typestr{FileUploadCancel} to make the
client cancel current upload. The client can cancel current upload by
sending \typestr{FileUploadFailed} message.

The \typestr{filename-string} should be a file name with complete
absolute path represented in Unix-style format: it should start with a
forward slash (``\verb|/|''), path components should be separated also
with forward slashes. For example, Windows-style file name
``\verb|c:\Temp\Report.doc|'' should be sent as
``\verb|/c:/Temp/Report.doc|''.

\newpage
\subsection{FileUploadData}
\begin{verbatim}
Message type:      133
Name signature:    "FTC_UPDT"
Vendor signature:  "TGHT"
\end{verbatim}

The client uses \typestr{FileUploadData} message to send each
successive portion of file data, as a part of file upload procedure.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 133 & \typestr{message-type} \\
1 & U8  &     & \typestr{flags} \\
2 & U16 &     & \typestr{raw-length} \\
2 & U16 &     & \typestr{compressed-length} \\
\typestr{compressed-length} & U8 array & & \typestr{file-data} \\
\hline\end{tabular}

The \typestr{flags} byte has the following format:

\begin{tabular}{l|l|l}
\hline
Bits & Binary value   & Description \\ \hline
3-0 & 0000            & file data is not compressed \\
    & 0001..1001      & compression level used (1..9) \\
    & 1010 or greater & invalid \\
\hline
\end{tabular}

Last message per file (both \typestr{raw-length} and
\typestr{compressed-length} are set to zeroes):

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 133 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &   0 & \typestr{raw-length} \\
2 & U16 &   0 & \typestr{compressed-length} \\
4 & U32 &     & \typestr{modification-time} \\
\hline\end{tabular}

% do not use compression when not enabled by the server
% data is compressed with zlib
% format of the modification-time

\newpage
\subsection{FileDownloadCancel}
\begin{verbatim}
Message type:      134
Name signature:    "FTC_DNCN"
Vendor signature:  "TGHT"
\end{verbatim}

The client sends \typestr{FileDownloadCancel} message to make the
server break current download operation.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 134 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{reason-length} \\
\typestr{reason-length} & U8 array & & \typestr{reason-string} \\
\hline\end{tabular}

% reason-string may be empty

\newpage
\subsection{FileUploadFailed}
\begin{verbatim}
Message type:      135
Name signature:    "FTC_UPFL"
Vendor signature:  "TGHT"
\end{verbatim}

The client sends \typestr{FileUploadFailed} message to notify the
server that current upload operation will not be completed.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 135 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{reason-length} \\
\typestr{reason-length} & U8 array & & \typestr{reason-string} \\
\hline\end{tabular}

% reason-string may be empty

\newpage
\subsection{FileCreateDirRequest}
\begin{verbatim}
Message type:      136
Name signature:    "FTC_FCDR"
Vendor signature:  "TGHT"
\end{verbatim}

\typestr{FileCreateDirRequest} message requests the server to create a
new directory.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 136 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{dirname-length} \\
\typestr{dirname-length} & U8 array & & \typestr{dirname-string} \\
\hline\end{tabular}

The \typestr{dirname-string} should be an absolute path represented in
Unix-style format: it should start with a forward slash
(``\verb|/|''), path components should be separated also with forward
slashes. There should be no trailing slash at the end of the path.
Note that Windows-style path like
``\verb|c:\Temp\MyNewDir|'' should be sent as
``\verb|/c:/Temp/MyNewDir|''.

% All components of the path except the last one should exist in the
% server's file system?

\newpage
\subsection{FileDirSizeRequest}
\begin{verbatim}
Message type:      137
Name signature:    "FTC_DSRQ"
Vendor signature:  "TGHT"
\end{verbatim}

The client can send \typestr{FileDirSizeRequest} message to inquire
about the total size of all files within a particular directory on the
server (including files in sub-directories).

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 137 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{dirname-length} \\
\typestr{dirname-length} & U8 array & & \typestr{dirname-string} \\
\hline\end{tabular}

The \typestr{dirname-string} should be an absolute path represented in
Unix-style format: it should start with a forward slash
(``\verb|/|''), path components should be separated also with forward
slashes. There should be no trailing slash at the end of the path,
except for the root (highest level) directory which is denoted with a
single slash. Note that Windows-style path like
``\verb|c:\Program Files\TightVNC|'' should be sent as
``\verb|/c:/Program Files/TightVNC|''.

\newpage
\subsection{FileRenameRequest}
\begin{verbatim}
Message type:      138
Name signature:    "FTC_RNRQ"
Vendor signature:  "TGHT"
\end{verbatim}

\typestr{FileRenameRequest} message requests the server to rename the
specified file or directory.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 138 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{old-name-length} \\
2 & U16 &     & \typestr{new-name-length} \\
\typestr{old-name-length} & U8 array & & \typestr{old-name-string} \\
\typestr{new-name-length} & U8 array & & \typestr{new-name-string} \\
\hline\end{tabular}

Both \typestr{old-name-string} and \typestr{new-name-string} should be
file names with complete absolute paths and should be represented in
Unix-style format: the strings should start with forward slashes
(``\verb|/|''), path components should be separated also with forward
slashes. For example, Windows-style file name
``\verb|c:\Temp\Report.doc|'' should be sent as
``\verb|/c:/Temp/Report.doc|''.

% All components of two paths except the last one should be the same?

\newpage
\subsection{FileDeleteRequest}
\begin{verbatim}
Message type:      139
Name signature:    "FTC_RMRQ"
Vendor signature:  "TGHT"
\end{verbatim}

\typestr{FileDeleteRequest} message requests the server to delete the
specified file or directory.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 139 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{filename-length} \\
\typestr{filename-length} & U8 array & & \typestr{filename-string} \\
\hline\end{tabular}

The \typestr{filename-string} should be a file name with complete
absolute path represented in Unix-style format: it should start with a
forward slash (``\verb|/|''), path components should be separated also
with forward slashes. For example, Windows-style file name
``\verb|c:\Temp\Report.doc|'' should be sent as
``\verb|/c:/Temp/Report.doc|''.

\newpage
\section{Protocol messages, file transfers (server to client)}

\subsection{FileListData}
\begin{verbatim}
Message type:      130
Name signature:    "FTS_LSDT"
Vendor signature:  "TGHT"
\end{verbatim}

The server sends \typestr{FileListData} message in response to
\typestr{FileListRequest} client message. \typestr{FileListData}
message lists files and sub-directories in a particular directory, and
includes information about file sizes and last modification times.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 130 & \typestr{message-type} \\
1 & U8  &     & \typestr{flags} \\
2 & U16 &     & \typestr{number-of-files} \\
2 & U16 &     & \typestr{raw-length} \\
2 & U16 &     & \typestr{compressed-length} \\
8 $\times$ \typestr{number-of-files} & U32 array & & \typestr{file-properties-data} \\
\typestr{compressed-length} & U8 array & & \typestr{file-names-data} \\
\hline\end{tabular}

The \typestr{flags} byte has the following format:

\begin{tabular}{l|l|l}
\hline
Bits & Binary value   & Description \\ \hline
3-0 & 0000            & file list data is not compressed \\
    & 0001..1001      & compression level used (1..9) \\
    & 1010 or greater & invalid \\
\hline
4   & 0   & list of files and directories requested \\
    & 1   & list of directories only requested \\
\hline
5   & 0   & success \\
    & 1   & non-existent or inaccessible directory requested \\
\hline
\end{tabular}

In the \typestr{flags} byte:

\begin{itemize}
\item bit 4 duplicates the same bit from the corresponding
  \typestr{FileListRequest} message;
\item if bit 5 is set to 1, then \typestr{number-of-files},
  \typestr{raw-length} and \typestr{compressed-length} all should be
  set to zero values. In that case, \typestr{file-properties-data} and
  \typestr{file-names-data} should be empty;
\item compression bits (bits 3-0) should be set only if compression
  was requested by the client in the corresponding
  \typestr{FileListRequest} message.
\end{itemize}

\typestr{File-properties-data} array is sent as
\typestr{number-of-files} repetitions of the following structure:

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
4 & U32 &  & \typestr{file-size} \\
4 & U32 &  & \typestr{modification-time} \\
\hline\end{tabular}

In that structure, \typestr{file-size} is specified in bytes,
\typestr{modification-time} is an offset is seconds since the Epoch
(00:00:00 UTC, January 1, 1970).

\typestr{File-names-data} is a sequence of file and directory names
found in the requested directory. Names do not include paths.
Each individual record is terminated with a zero byte. The
\typestr{file-names-data} list should include
\typestr{number-of-files} individual records. If compression is
enabled (bits 3-0 of \typestr{flags} designate a valid compression
level), then \typestr{file-names-data} is compressed using zlib
library.

% the number-of-files may be 0; in that case ...
% how directories should be ditinguished
% what about symbolic links etc.
% describe raw-length and compressed-length

\newpage
\subsection{FileDownloadData}
\begin{verbatim}
Message type:      131
Name signature:    "FTS_DNDT"
Vendor signature:  "TGHT"
\end{verbatim}

The server uses \typestr{FileDownloadData} message to send each
successive portion of file data, as a part of file download procedure.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 131 & \typestr{message-type} \\
1 & U8  &     & \typestr{flags} \\
2 & U16 &     & \typestr{raw-length} \\
2 & U16 &     & \typestr{compressed-length} \\
\typestr{compressed-length} & U8 array & & \typestr{file-data} \\
\hline\end{tabular}

Last message per file (both \typestr{raw-length} and
\typestr{compressed-length} are set to zeroes):

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 131 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &   0 & \typestr{raw-length} \\
2 & U16 &   0 & \typestr{compressed-length} \\
4 & U32 &     & \typestr{modification-time} \\
\hline\end{tabular}

The \typestr{flags} byte has the following format:

\begin{tabular}{l|l|l}
\hline
Bits & Binary value   & Description \\ \hline
3-0 & 0000            & file data is not compressed \\
    & 0001..1001      & compression level used (1..9) \\
    & 1010 or greater & invalid \\
\hline
\end{tabular}

Compression should be used only if it was requested by the client in
corresponding \typestr{FileListRequest} message.

% data is compressed with zlib
% format of the modification-time

\newpage
\subsection{FileUploadCancel}
\begin{verbatim}
Message type:      132
Name signature:    "FTS_UPCN"
Vendor signature:  "TGHT"
\end{verbatim}

The server sends \typestr{FileUploadCancel} message to make the client
break current upload operation.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 132 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{reason-length} \\
\typestr{reason-length} & U8 array & & \typestr{reason-string} \\
\hline\end{tabular}

% reason-string may be empty

\newpage
\subsection{FileDownloadFailed}
\begin{verbatim}
Message type:      133
Name signature:    "FTS_DNFL"
Vendor signature:  "TGHT"
\end{verbatim}

The server sends \typestr{FileDownloadFailed} message to notify the
client that current download operation will not be completed.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 133 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{reason-length} \\
\typestr{reason-length} & U8 array & & \typestr{reason-string} \\
\hline\end{tabular}

% reason-string may be empty

\newpage
\subsection{FileDirSizeData}
\begin{verbatim}
Message type:      134
Name signature:    "FTS_DSDT"
Vendor signature:  "TGHT"
\end{verbatim}

The server sends \typestr{FileDirSizeData} message in response to
\typestr{FileDirSizeRequest} client message. \typestr{FileDirSizeData}
message returns total size of all files within the requested directory
on the server (including files in sub-directories). The size in bytes
is returned as an unsigned 48-bit value.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 134 & \typestr{message-type} \\
1 &     &     & \typestr{padding} \\
2 & U16 &     & \typestr{dir-size-high-bits} \\
4 & U32 &     & \typestr{dir-size-low-bits} \\
\hline\end{tabular}

\newpage
\subsection{FileLastRequestFailed}
\begin{verbatim}
Message type:      135
Name signature:    "FTS_RQFL"
Vendor signature:  "TGHT"
\end{verbatim}

The server sends \typestr{FileLastRequestFailed} message if it cannot
execute an operation requested by the client. It can be sent in
response to the following client messages:
\typestr{FileDownloadRequest}, \typestr{FileCreateDirRequest},
\typestr{FileRenameRequest}, \typestr{FileDeleteRequest}.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 135 & \typestr{message-type} \\
1 & U8  &     & \typestr{message-type-of-request} \\
2 & U16 &     & \typestr{reason-length} \\
\typestr{reason-length} & U8 array & & \typestr{reason-string} \\
\hline\end{tabular}

% reason-string may be empty

\newpage
\subsection{FileEnableCompression}
\begin{verbatim}
Message type:      137
Name signature:    "FTS_CMPR"
Vendor signature:  "TGHT"
\end{verbatim}

This message controls compression in file transfer operations.
\typestr{Enable-flag} is non-zero (true) if the client should be
allowed to request and use compression for file transfers, or zero
(false) otherwise.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 137 & \typestr{message-type} \\
1 & U8  &     & \typestr{enable-flag} \\
\hline\end{tabular}

\typestr{FileEnableCompression} message controls how clients send the
following messages:

\begin{itemize}
\item \typestr{FileListRequest}
\item \typestr{FileDownloadRequest}
\item \typestr{FileUploadRequest}
\item \typestr{FileUploadData}
\end{itemize}

If the client did not receive a \typestr{FileEnableCompression}
message from the server, or the most recent
\typestr{FileEnableCompression} message included \typestr{enable-flag}
set to false, then it must specify zero as compression level in the
messages listed above and, most importantly, may not compress file
data on uploading files.

Otherwise, if the most recent \typestr{FileEnableCompression} message
included non-zero \typestr{enable-flag}, then the client is allowed to
request non-zero compression level and may send compressed data in
\typestr{FileUploadData} messages.

This message should not have effect on file transfers that are already
in progress.

\begin{quote}
Note: this message was introduced to preserve compatibility with
servers that do not support compression in file transfers. Old servers
expect uncompressed data in \typestr{FileUploadData} messages but new
clients might send it compressed. Using
\typestr{FileEnableCompression} message makes sure the client will
never compress upload data unless enabled explicitly by the server.
\end{quote}

\newpage
\section{Protocol messages (client to server)}

\subsection{EnableContinuousUpdates}
\begin{verbatim}
Message type:      150
Name signature:    "CUC_ENCU"
Vendor signature:  "TGHT"
\end{verbatim}

This message either enables continuous updates for the specified
pixels, or disables continuous updates completely.

If \typestr{enable-flag} is set to true (non-zero), continuous updates
are enabled for the framebuffer area specified by
\typestr{x-position}, \typestr{y-position}, \typestr{width} and
\typestr{height}.

If \typestr{enable-flag} is set to false (zero), continuous updates
are to be completely disabled. In this case, the values of
\typestr{x-position}, \typestr{y-position}, \typestr{width} and
\typestr{height} are not used.

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 150 & \typestr{message-type} \\
1 & U8  &     & \typestr{enable-flag} \\
2 & U16 &     & \typestr{x-position} \\
2 & U16 &     & \typestr{y-position} \\
2 & U16 &     & \typestr{width} \\
2 & U16 &     & \typestr{height} \\
\hline\end{tabular}

Normally, the server would send \typestr{FramebufferUpdate} messages
only in response to corresponding \typestr{FramebufferUpdateRequest}
messages received from the client. In contrast, when continuous
updates are in effect, the server is allowed to send a
\typestr{FramebufferUpdate} message at any time, not waiting for
client requests.

Initially, contunuous updates are disabled since they violate the
original RFB protocol. To enable this mode, the client sends an
\typestr{EnableContinuousUpdates} message with non-zero
\typestr{enable-flag}. On receiving such a message, the server
immediately enables continuous updates for the area specified by
\typestr{x-position}, \typestr{y-position}, \typestr{width} and
\typestr{height}. The server will not send updates for pixels outside
of this area.

If continuous updates are already in effect, the client may always
change the coordinates of currently updated area by sending another
\typestr{EnableContinuousUpdates} message with non-zero
\typestr{enable-flag}. On receiving each next message, the server
discards old coordinates and re-enables continuous updates for the
newly specified area.

If \typestr{enable-flag} is set to zero, the server should disable
continuous updates completely and respond with an
\typestr{EndOfContinuousUpdates} message. After the client has
received an \typestr{EndOfContinuousUpdates}, it can be sure that
there will be no more updates without prior update requests.

The client may send a message with zero \typestr{enable-flag} even if
continuous updates were disabled already. In response, the server
should send an \typestr{EndOfContinuousUpdates} each time it is asked
to disable continuous updates. This behavior may be useful for
protocol synchronization purposes.

While continuous updates are in effect, the server completely ignores
incremental update requests (\typestr{FramebufferUpdateRequest} with
\typestr{incremental} flag set to non-zero). Such requests are ignored
regardless of the coordinates specified within the request. Thus, it's
not possible to request an incremental update for pixels outside of
current continuously updated area.

Non-incremental update requests (\typestr{FramebufferUpdateRequest}
with \typestr{incremental} flag set to zero) should work as usual.
That is, in response to such requests, the server should send the
entire contents of the specified area as soon as possible.

FIXME: Respect incremental update requests?

FIXME: Decide how to handle framebuffer size changes.

FIXME: Decide how to change pixel format while continuously updating.

See also:
\begin{itemize}
\item \typestr{EndOfContinuousUpdates} server-to-client message.
\end{itemize}

\newpage
\section{Protocol messages (server to client)}

\subsection{EndOfContinuousUpdates}
\begin{verbatim}
Message type:      150
Name signature:    "CUS_EOCU"
Vendor signature:  "TGHT"
\end{verbatim}

The server sends \typestr{EndOfContinuousUpdates} message in response
to each \typestr{EnableContinuousUpdates} message if and only if its
\typestr{enable-flag} was set to false (zero).

\begin{tabular}{l|lc|l} \hline
No.\ of bytes & Type & [Value] & Description \\ \hline
1 & U8  & 150 & \typestr{message-type} \\
\hline\end{tabular}

The message informs the client that it should not expect unsolicited
framebuffer updates any more. In other words, after this message,
there will be no framebuffer updates with no corresponding update
requests received from the client.

Note that this message should be sent each time the client is asking
to disable continuous updates, even if continuous updates were not
previously enabled.

FIXME: Allow unsolicited EndOfContinuousUpdates messages?

See also:
\begin{itemize}
\item \typestr{EnableContinuousUpdates} client-to-server message.
\end{itemize}

\end{document}