Commit Graph

1588 Commits (00bae113d54014bafcf20c9f4c8c296e3e91bde5)
 

Author SHA1 Message Date
Quentin BUATHIER 00bae113d5 Check the return code of pipe 6 years ago
Quentin BUATHIER cedae6e6f9 Fix the concurrent issue hapenning between the freeing of the client and the clientOutput thread 7 years ago
Quentin BUATHIER 96e163bdae Fix use-after-free 7 years ago
Christian Beier 474f64e5db
SDLvncviewer: work around SDL_TEXTINPUT not generating chars with CTRL down 7 years ago
Christian Beier 97c9b6c5d7
SDLvncviewer: handle mouse wheel events 7 years ago
Christian Beier b0957702a8
SDLvncviewer: adhere to C89 7 years ago
Christian Beier a2b5284e07
SDLvncviewer: implement Unicode input handling 7 years ago
Christian Beier 19660ff64d
TravisCI: install SDL2 dev packages for OSX as well 7 years ago
Christian Beier b917d8f236
TravisCI: install SDL2 dev packages 7 years ago
Christian Beier c562ed4b99
SDLvncviewer: remove obsolete video scaling code 7 years ago
Christian Beier bfdb850bfb
SDLvncviewer: use SDL2 for clipboard handling
By using this, we can get rid of our own homebrewn solution scrap.[c|h] and drop X11 from the build system.
7 years ago
Christian Beier 8f1b565dbe
SDLvncviewer: make input work with SDL2
... at least somewhat. This is far from perfect but no regression compared to SDL1.2 functionality.
7 years ago
Christian Beier 65126b5826
SDLvncviewer: make display work with SDL2 7 years ago
Christian Beier 4d3c7dfc04
CMake: look for SDL2 instead of SDL
FindSDL2.cmake was downloaded from
https://github.com/tcbrindle/sdl2-cmake-scripts/blob/master/FindSDL2.cmake
7 years ago
Christian Beier 436a047f56
SDLvncviewer: add a very simple GetCredentials callback 7 years ago
Christian Beier 1781ecda34
CMake: add a LIBVNCSERVER_HAVE_GNUTLS #define 7 years ago
Christian Beier e775aec64e
build: decouple GnuTLS|OpenSSL detection from WebSockets support 7 years ago
Christian Beier 3c05dd565e
crypto: remove polarssl wrapper
This is not even in the build system anymore.
7 years ago
Christian Beier a2ebdf46cc
CMake: declare that websockets depend on crypto 7 years ago
Christian Beier 49f1d8de47
build: remove LIBVNCSERVER_WITH_CLIENT_TLS #define
It is not used anywhere anymore.
7 years ago
Christian Beier 85fb69515c
crypto: move to common
As of now, only LibVNCServer makes uses of these digest functions _and_
they depend on sys/uio.h, but in the future LibVNCClient will need those
as well.
7 years ago
Christian Beier 161e7cab02
Merge pull request #235 from eddiejames/master
Tight: export SendCompressedData and SendTightHeader functions
7 years ago
Eddie James dd873fce45 Tight: export SendCompressedData and SendTightHeader functions
These functions can be used to send already compressed jpegs to a
client, circumventing the usual rect/region update methods which
operate on a raw rgb framebuffer. Rename the functions with the usual
rfb prefix and add the prototypes in rfb.h.

Signed-off-by: Eddie James <eajames@us.ibm.com>
7 years ago
Christian Beier a67e22dd1f
AppVeyorCI: remove unused statements 7 years ago
Christian Beier 84dee73eee
AppVeyorCI: remove Visual Studio 2013 as it somehow got broken at AppVeyor's side 7 years ago
Christian Beier 127b44ca0e
README: remove reference to functions not existing anymore
Closes #202.
7 years ago
Christian Beier b997331e52
Merge pull request #215 from BastiaanOlij/fix_nozlib_compile_error
libvncclient: zrle.c: Move undef of REALBPP down

rfbproto.c which includes this file expects an undefined REALBPP after the inclusion. Do this whether or not there is zlib available.
7 years ago
Christian Beier 5c0ff7e072
CMake: require FFMPEG version >= 3.1.0
re #231
7 years ago
Christian Beier 7e7103071b
AppVeyorCI: build with Visual Studio 2017 as well 7 years ago
Christian Beier f23248a415
rfbserver: fix a typo 7 years ago
Christian Beier 449cbe9028
rfbserver: get rid of inttypes.h again 7 years ago
Christian Beier b0c77391e6
Merge branch 'clientcuttext' of https://github.com/ppisar/libvncserver into ppisar-clientcuttext 7 years ago
Christian Beier 078590786c
libvncclient/sasl: prefix the header guard (again) to fix a warning 7 years ago
Christian Beier 71c3215d8f
SDLvncviewer: enable the X11 clipboard if X11 was found 7 years ago
Christian Beier c49204c815
androidvncserver: fix print_usage and a compiler warning 7 years ago
Christian Beier 8d4d021966
androidvncserver: add some boilerplate comment that should have been in the 1st code drop 7 years ago
Christian Beier c7c18332c8
androidvncserver: fix a quite serious typo
Closes #225.
7 years ago
Petr Písař 28afb6c537 Limit client cut text length to 1 MB
This patch constrains a client cut text length to 1 MB. Otherwise
a client could make server allocate 2 GB of memory and that seems to
be to much to classify it as a denial of service.

The limit also prevents from an integer overflow followed by copying
an uninitilized memory when processing msg.cct.length value larger
than SIZE_MAX or INT_MAX - sz_rfbClientCutTextMsg.

This patch also corrects accepting length value of zero (malloc(0) is
interpreted on differnet systems differently).

CVE-2018-7225
<https://github.com/LibVNC/libvncserver/issues/218>
7 years ago
Christian Beier 020c30f63d
AppVeyorCI: set path to devenv tool based on environment 7 years ago
Christian Beier f84d90c9e8
androidvncserver: remove keycodes not in NDK anymore
This makes the android VNC server example build again.
7 years ago
Bastiaan Olij c5b8763b61 Moved undef of REALBPP down 7 years ago
Christian Beier d34c7b07ac
Merge pull request #203 from dcommander/turbovnc-client
Include Tight decoding optimizations from TurboVNC
7 years ago
DRC d7b14624cb Include Tight decoding optimizations from TurboVNC
- As with the encoder, the decoder now uses the TurboJPEG wrapper, which
  allows it to decode JPEG images directly into the framebuffer.  This
  eliminates a buffer copy (CopyRectangle()) as well as the expensive
  RGB pixel conversion in DecompressJpegRectBPP().  The TurboJPEG
  wrapper performs RGB pixel conversion more optimally, and only when
  necessary (it uses the libjpeg-turbo colorspace extensions when
  available, in order to avoid RGB conversion.)
- The other Tight subencoding types are also now decoded directly into
  the framebuffer, which eliminates buffer copies.
- The Tight decoder now supports the rfbTightNoZlib extension, which
  allows the server to bypass zlib compression when Compression Level 0
  is selected.  The encoder already supports this extension.  Passing
  the data stream through zlib when Compression Level 0 is selected
  needlessly wastes CPU time, since all zlib is doing is copying the
  data internally into its own structures.
7 years ago
Christian Beier ccd7208cf3
Merge pull request #197 from wwqwwqwd/master
Add trle decoder
7 years ago
Wiki Wang beb82f8dde Add trle decoder 8 years ago
Christian Beier 6814e946e0
libvncclient: rename rfbsasl.[c|h] to sasl.[c|h] to be in line with naming of other files 8 years ago
Christian Beier df11e806a3
Move HAVE_SASL #ifdefs into header file to have less LOC 8 years ago
Christian Beier 666f37efc0
Fix building whithout SASL 8 years ago
Christian Beier 98e1be528f
Merge branch 'sasl2' of git://github.com/simonwaterman/libvncserver into simonwaterman-sasl2 8 years ago
Christian Beier 1155edec9e Merge pull request #188 from Cordius/master
fix: the function should not return a value
8 years ago