Browse Source

Consistently use uint8_t for data buffers

These will always be byte streams at heart, so let's try to keep them
with a proper type. Should make it clearer how they will be used.
pull/1640/head
Pierre Ossman 1 year ago
parent
commit
19df176862
52 changed files with 108 additions and 99 deletions
  1. 1
    1
      common/rdr/FdInStream.cxx
  2. 1
    1
      common/rdr/FdInStream.h
  3. 2
    2
      common/rdr/FdOutStream.cxx
  4. 1
    1
      common/rdr/FdOutStream.h
  5. 1
    1
      common/rdr/InStream.h
  6. 2
    2
      common/rdr/MemInStream.h
  7. 1
    1
      common/rdr/MemOutStream.h
  8. 1
    1
      common/rdr/OutStream.h
  9. 1
    1
      common/rdr/TLSInStream.cxx
  10. 1
    1
      common/rdr/TLSOutStream.cxx
  11. 4
    4
      common/rfb/CConnection.cxx
  12. 1
    1
      common/rfb/CConnection.h
  13. 1
    1
      common/rfb/CMsgHandler.cxx
  14. 1
    1
      common/rfb/CMsgHandler.h
  15. 4
    4
      common/rfb/CMsgReader.cxx
  16. 2
    2
      common/rfb/CMsgWriter.cxx
  17. 1
    1
      common/rfb/CMsgWriter.h
  18. 2
    2
      common/rfb/CSecurityDH.cxx
  19. 2
    2
      common/rfb/CSecurityPlain.cxx
  20. 2
    2
      common/rfb/CSecurityRSAAES.cxx
  21. 2
    2
      common/rfb/CopyRectDecoder.cxx
  22. 2
    2
      common/rfb/CopyRectDecoder.h
  23. 3
    3
      common/rfb/Decoder.cxx
  24. 6
    4
      common/rfb/Decoder.h
  25. 1
    1
      common/rfb/H264Decoder.cxx
  26. 1
    1
      common/rfb/H264Decoder.h
  27. 2
    2
      common/rfb/HextileDecoder.cxx
  28. 1
    1
      common/rfb/HextileDecoder.h
  29. 4
    2
      common/rfb/HextileEncoder.cxx
  30. 1
    1
      common/rfb/JpegCompressor.cxx
  31. 1
    1
      common/rfb/JpegCompressor.h
  32. 1
    1
      common/rfb/RREDecoder.cxx
  33. 1
    1
      common/rfb/RREDecoder.h
  34. 1
    1
      common/rfb/RawDecoder.cxx
  35. 1
    1
      common/rfb/RawDecoder.h
  36. 9
    7
      common/rfb/SConnection.cxx
  37. 1
    1
      common/rfb/SConnection.h
  38. 1
    1
      common/rfb/SMsgHandler.h
  39. 2
    2
      common/rfb/SMsgReader.cxx
  40. 9
    6
      common/rfb/SMsgWriter.cxx
  41. 3
    3
      common/rfb/SMsgWriter.h
  42. 2
    2
      common/rfb/SSecurityPlain.cxx
  43. 2
    2
      common/rfb/SSecurityRSAAES.cxx
  44. 3
    3
      common/rfb/TightDecoder.cxx
  45. 3
    3
      common/rfb/TightDecoder.h
  46. 4
    4
      common/rfb/VNCSConnectionST.cxx
  47. 2
    2
      common/rfb/VNCSConnectionST.h
  48. 2
    2
      common/rfb/VNCServerST.cxx
  49. 2
    2
      common/rfb/ZRLEDecoder.cxx
  50. 1
    1
      common/rfb/ZRLEDecoder.h
  51. 1
    1
      vncviewer/CConn.cxx
  52. 1
    1
      vncviewer/CConn.h

+ 1
- 1
common/rdr/FdInStream.cxx View File

@@ -77,7 +77,7 @@ bool FdInStream::fillBuffer()
// returning EINTR.
//

size_t FdInStream::readFd(void* buf, size_t len)
size_t FdInStream::readFd(uint8_t* buf, size_t len)
{
int n;
do {

+ 1
- 1
common/rdr/FdInStream.h View File

@@ -39,7 +39,7 @@ namespace rdr {
private:
virtual bool fillBuffer();

size_t readFd(void* buf, size_t len);
size_t readFd(uint8_t* buf, size_t len);

int fd;
bool closeWhenDone;

+ 2
- 2
common/rdr/FdOutStream.cxx View File

@@ -78,7 +78,7 @@ void FdOutStream::cork(bool enable)

bool FdOutStream::flushBuffer()
{
size_t n = writeFd((const void*) sentUpTo, ptr - sentUpTo);
size_t n = writeFd(sentUpTo, ptr - sentUpTo);
if (n == 0)
return false;

@@ -96,7 +96,7 @@ bool FdOutStream::flushBuffer()
// returning EINTR.
//

size_t FdOutStream::writeFd(const void* data, size_t length)
size_t FdOutStream::writeFd(const uint8_t* data, size_t length)
{
int n;


+ 1
- 1
common/rdr/FdOutStream.h View File

@@ -45,7 +45,7 @@ namespace rdr {

private:
virtual bool flushBuffer();
size_t writeFd(const void* data, size_t length);
size_t writeFd(const uint8_t* data, size_t length);
int fd;
struct timeval lastWrite;
};

+ 1
- 1
common/rdr/InStream.h View File

@@ -145,7 +145,7 @@ namespace rdr {

// readBytes() reads an exact number of bytes.

void readBytes(void* data, size_t length) {
void readBytes(uint8_t* data, size_t length) {
check(length);
memcpy(data, ptr, length);
ptr += length;

+ 2
- 2
common/rdr/MemInStream.h View File

@@ -36,8 +36,8 @@ namespace rdr {

public:

MemInStream(const void* data, size_t len, bool deleteWhenDone_=false)
: start((const uint8_t*)data), deleteWhenDone(deleteWhenDone_)
MemInStream(const uint8_t* data, size_t len, bool deleteWhenDone_=false)
: start(data), deleteWhenDone(deleteWhenDone_)
{
ptr = start;
end = start + len;

+ 1
- 1
common/rdr/MemOutStream.h View File

@@ -48,7 +48,7 @@ namespace rdr {

// data() returns a pointer to the buffer.

const void* data() { return (const void*)start; }
const uint8_t* data() { return start; }

protected:


+ 1
- 1
common/rdr/OutStream.h View File

@@ -70,7 +70,7 @@ namespace rdr {

// writeBytes() writes an exact number of bytes.

void writeBytes(const void* data, size_t length) {
void writeBytes(const uint8_t* data, size_t length) {
while (length > 0) {
check(1);
size_t n = length;

+ 1
- 1
common/rdr/TLSInStream.cxx View File

@@ -53,7 +53,7 @@ ssize_t TLSInStream::pull(gnutls_transport_ptr_t str, void* data, size_t size)
if (in->avail() < size)
size = in->avail();
in->readBytes(data, size);
in->readBytes((uint8_t*)data, size);
} catch (EndOfStream&) {
return 0;
} catch (SystemException &e) {

+ 1
- 1
common/rdr/TLSOutStream.cxx View File

@@ -44,7 +44,7 @@ ssize_t TLSOutStream::push(gnutls_transport_ptr_t str, const void* data,
self->saved_exception = NULL;

try {
out->writeBytes(data, size);
out->writeBytes((const uint8_t*)data, size);
out->flush();
} catch (SystemException &e) {
vlog.error("Failure sending TLS data: %s", e.str());

+ 4
- 4
common/rfb/CConnection.cxx View File

@@ -163,7 +163,7 @@ bool CConnection::processVersionMsg()
if (!is->hasData(12))
return false;

is->readBytes(verStr, 12);
is->readBytes((uint8_t*)verStr, 12);
verStr[12] = '\0';

if (sscanf(verStr, "RFB %03d.%03d\n",
@@ -192,7 +192,7 @@ bool CConnection::processVersionMsg()

sprintf(verStr, "RFB %03d.%03d\n",
server.majorVersion, server.minorVersion);
os->writeBytes(verStr, 12);
os->writeBytes((const uint8_t*)verStr, 12);
os->flush();

state_ = RFBSTATE_SECURITY_TYPES;
@@ -361,7 +361,7 @@ bool CConnection::processSecurityReasonMsg()
is->clearRestorePoint();

std::vector<char> reason(len + 1);
is->readBytes(reason.data(), len);
is->readBytes((uint8_t*)reason.data(), len);
reason[len] = '\0';

state_ = RFBSTATE_INVALID;
@@ -747,7 +747,7 @@ void CConnection::setPF(const PixelFormat& pf)
formatChange = true;
}

void CConnection::fence(uint32_t flags, unsigned len, const char data[])
void CConnection::fence(uint32_t flags, unsigned len, const uint8_t data[])
{
CMsgHandler::fence(flags, len, data);


+ 1
- 1
common/rfb/CConnection.h View File

@@ -249,7 +249,7 @@ namespace rfb {
// responds to requests, stating no support for synchronisation.
// When overriding, call CMsgHandler::fence() directly in order to
// state correct support for fence flags.
virtual void fence(uint32_t flags, unsigned len, const char data[]);
virtual void fence(uint32_t flags, unsigned len, const uint8_t data[]);

private:
bool processVersionMsg();

+ 1
- 1
common/rfb/CMsgHandler.cxx View File

@@ -70,7 +70,7 @@ void CMsgHandler::setName(const char* name)
}

void CMsgHandler::fence(uint32_t /*flags*/, unsigned /*len*/,
const char /*data*/ [])
const uint8_t /*data*/ [])
{
server.supportsFence = true;
}

+ 1
- 1
common/rfb/CMsgHandler.h View File

@@ -55,7 +55,7 @@ namespace rfb {
virtual void setCursorPos(const Point& pos) = 0;
virtual void setPixelFormat(const PixelFormat& pf);
virtual void setName(const char* name);
virtual void fence(uint32_t flags, unsigned len, const char data[]);
virtual void fence(uint32_t flags, unsigned len, const uint8_t data[]);
virtual void endOfContinuousUpdates();
virtual void supportsQEMUKeyEvent();
virtual void serverInit(int width, int height,

+ 4
- 4
common/rfb/CMsgReader.cxx View File

@@ -74,7 +74,7 @@ bool CMsgReader::readServerInit()
return false;
is->clearRestorePoint();
std::vector<char> name(len + 1);
is->readBytes(name.data(), len);
is->readBytes((uint8_t*)name.data(), len);
name[len] = '\0';
handler->serverInit(width, height, pf, name.data());

@@ -276,7 +276,7 @@ bool CMsgReader::readServerCutText()
return true;
}
std::vector<char> ca(len);
is->readBytes(ca.data(), len);
is->readBytes((uint8_t*)ca.data(), len);
std::string filtered(convertLF(ca.data(), len));
handler->serverCutText(filtered.c_str());

@@ -409,7 +409,7 @@ bool CMsgReader::readFence()
{
uint32_t flags;
uint8_t len;
char data[64];
uint8_t data[64];

if (!is->hasData(3 + 4 + 1))
return false;
@@ -763,7 +763,7 @@ bool CMsgReader::readSetDesktopName(int x, int y, int w, int h)
is->clearRestorePoint();

std::vector<char> name(len + 1);
is->readBytes(name.data(), len);
is->readBytes((uint8_t*)name.data(), len);
name[len] = '\0';

if (x || y || w || h) {

+ 2
- 2
common/rfb/CMsgWriter.cxx View File

@@ -130,7 +130,7 @@ void CMsgWriter::writeEnableContinuousUpdates(bool enable,
endMsg();
}

void CMsgWriter::writeFence(uint32_t flags, unsigned len, const char data[])
void CMsgWriter::writeFence(uint32_t flags, unsigned len, const uint8_t data[])
{
if (!server->supportsFence)
throw Exception("Server does not support fences");
@@ -200,7 +200,7 @@ void CMsgWriter::writeClientCutText(const char* str)
startMsg(msgTypeClientCutText);
os->pad(3);
os->writeU32(len);
os->writeBytes(str, len);
os->writeBytes((const uint8_t*)str, len);
endMsg();
}


+ 1
- 1
common/rfb/CMsgWriter.h View File

@@ -51,7 +51,7 @@ namespace rfb {
void writeFramebufferUpdateRequest(const Rect& r,bool incremental);
void writeEnableContinuousUpdates(bool enable, int x, int y, int w, int h);

void writeFence(uint32_t flags, unsigned len, const char data[]);
void writeFence(uint32_t flags, unsigned len, const uint8_t data[]);

void writeKeyEvent(uint32_t keysym, uint32_t keycode, bool down);
void writePointerEvent(const Point& pos, int buttonMask);

+ 2
- 2
common/rfb/CSecurityDH.cxx View File

@@ -130,7 +130,7 @@ void CSecurityDH::writeCredentials()
struct aes128_ctx aesCtx;
aes128_set_encrypt_key(&aesCtx, key);

char buf[128];
uint8_t buf[128];
if (!rs.hasData(128))
throw ConnFailedException("failed to generate random padding");
rs.readBytes(buf, 128);
@@ -140,7 +140,7 @@ void CSecurityDH::writeCredentials()
if (password.size() >= 64)
throw AuthFailureException("password is too long");
memcpy(buf + 64, password.c_str(), password.size() + 1);
aes128_encrypt(&aesCtx, 128, (uint8_t *)buf, (uint8_t *)buf);
aes128_encrypt(&aesCtx, 128, buf, buf);

rdr::OutStream* os = cc->getOutStream();
os->writeBytes(buf, 128);

+ 2
- 2
common/rfb/CSecurityPlain.cxx View File

@@ -41,8 +41,8 @@ bool CSecurityPlain::processMsg()
// Return the response to the server
os->writeU32(username.size());
os->writeU32(password.size());
os->writeBytes(username.data(), username.size());
os->writeBytes(password.data(), password.size());
os->writeBytes((const uint8_t*)username.data(), username.size());
os->writeBytes((const uint8_t*)password.data(), password.size());
os->flush();
return true;
}

+ 2
- 2
common/rfb/CSecurityRSAAES.cxx View File

@@ -445,7 +445,7 @@ void CSecurityRSAAES::writeCredentials()
if (username.size() > 255)
throw AuthFailureException("username is too long");
raos->writeU8(username.size());
raos->writeBytes(username.data(), username.size());
raos->writeBytes((const uint8_t*)username.data(), username.size());
} else {
raos->writeU8(0);
}
@@ -453,6 +453,6 @@ void CSecurityRSAAES::writeCredentials()
if (password.size() > 255)
throw AuthFailureException("password is too long");
raos->writeU8(password.size());
raos->writeBytes(password.data(), password.size());
raos->writeBytes((const uint8_t*)password.data(), password.size());
raos->flush();
}

+ 2
- 2
common/rfb/CopyRectDecoder.cxx View File

@@ -49,7 +49,7 @@ bool CopyRectDecoder::readRect(const Rect& /*r*/,


void CopyRectDecoder::getAffectedRegion(const Rect& rect,
const void* buffer,
const uint8_t* buffer,
size_t buflen,
const ServerParams& server,
Region* region)
@@ -64,7 +64,7 @@ void CopyRectDecoder::getAffectedRegion(const Rect& rect,
srcY-rect.tl.y))));
}

void CopyRectDecoder::decodeRect(const Rect& r, const void* buffer,
void CopyRectDecoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen,
const ServerParams& /*server*/,
ModifiablePixelBuffer* pb)

+ 2
- 2
common/rfb/CopyRectDecoder.h View File

@@ -28,10 +28,10 @@ namespace rfb {
virtual ~CopyRectDecoder();
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual void getAffectedRegion(const Rect& rect, const void* buffer,
virtual void getAffectedRegion(const Rect& rect, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
Region* region);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);
};

+ 3
- 3
common/rfb/Decoder.cxx View File

@@ -46,7 +46,7 @@ Decoder::~Decoder()
}

void Decoder::getAffectedRegion(const Rect& rect,
const void* /*buffer*/,
const uint8_t* /*buffer*/,
size_t /*buflen*/,
const ServerParams& /*server*/,
Region* region)
@@ -55,10 +55,10 @@ void Decoder::getAffectedRegion(const Rect& rect,
}

bool Decoder::doRectsConflict(const Rect& /*rectA*/,
const void* /*bufferA*/,
const uint8_t* /*bufferA*/,
size_t /*buflenA*/,
const Rect& /*rectB*/,
const void* /*bufferB*/,
const uint8_t* /*bufferB*/,
size_t /*buflenB*/,
const ServerParams& /*server*/)
{

+ 6
- 4
common/rfb/Decoder.h View File

@@ -19,6 +19,8 @@
#ifndef __RFB_DECODER_H__
#define __RFB_DECODER_H__

#include <stdint.h>

namespace rdr {
class InStream;
class OutStream;
@@ -62,7 +64,7 @@ namespace rfb {
// getAffectedRegion() returns the parts of the frame buffer will
// be either read from or written do when decoding this rect. The
// default implementation simply returns the given rectangle.
virtual void getAffectedRegion(const Rect& rect, const void* buffer,
virtual void getAffectedRegion(const Rect& rect, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
Region* region);

@@ -70,10 +72,10 @@ namespace rfb {
// in the order they were received. This will only be called if the
// DecoderPartiallyOrdered flag has been set.
virtual bool doRectsConflict(const Rect& rectA,
const void* bufferA,
const uint8_t* bufferA,
size_t buflenA,
const Rect& rectB,
const void* bufferB,
const uint8_t* bufferB,
size_t buflenB,
const ServerParams& server);

@@ -81,7 +83,7 @@ namespace rfb {
// given buffer, onto the ModifiablePixelBuffer. The PixelFormat of
// the PixelBuffer might not match the ConnParams and it is up to
// the decoder to do any necessary conversion.
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb)=0;


+ 1
- 1
common/rfb/H264Decoder.cxx View File

@@ -93,7 +93,7 @@ bool H264Decoder::readRect(const Rect& /*r*/,
return true;
}

void H264Decoder::decodeRect(const Rect& r, const void* buffer,
void H264Decoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen,
const ServerParams& /*server*/,
ModifiablePixelBuffer* pb)

+ 1
- 1
common/rfb/H264Decoder.h View File

@@ -35,7 +35,7 @@ namespace rfb {
virtual ~H264Decoder();
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);


+ 2
- 2
common/rfb/HextileDecoder.cxx View File

@@ -113,7 +113,7 @@ bool HextileDecoder::readRect(const Rect& r, rdr::InStream* is,
return true;
}

void HextileDecoder::decodeRect(const Rect& r, const void* buffer,
void HextileDecoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb)
{
@@ -158,7 +158,7 @@ void HextileDecoder::hextileDecode(const Rect& r, rdr::InStream* is,
int tileType = is->readU8();

if (tileType & hextileRaw) {
is->readBytes(buf, t.area() * sizeof(T));
is->readBytes((uint8_t*)buf, t.area() * sizeof(T));
pb->imageRect(pf, t, buf);
continue;
}

+ 1
- 1
common/rfb/HextileDecoder.h View File

@@ -31,7 +31,7 @@ namespace rfb {
virtual ~HextileDecoder();
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);
private:

+ 4
- 2
common/rfb/HextileEncoder.cxx View File

@@ -161,7 +161,8 @@ void HextileEncoder::hextileEncode(rdr::OutStream* os,
if (encodedLen < 0) {
pb->getImage(buf, t);
os->writeU8(hextileRaw);
os->writeBytes(buf, t.width() * t.height() * sizeof(T));
os->writeBytes((const uint8_t*)buf,
t.width() * t.height() * sizeof(T));
oldBgValid = oldFgValid = false;
continue;
}
@@ -557,7 +558,8 @@ void HextileEncoder::hextileEncodeBetter(rdr::OutStream* os,
if ( (tileType & hextileRaw) != 0 ||
encodedLen >= t.width() * t.height() * sizeof(T)) {
os->writeU8(hextileRaw);
os->writeBytes(buf, t.width() * t.height() * sizeof(T));
os->writeBytes((const uint8_t*)buf,
t.width() * t.height() * sizeof(T));
oldBgValid = oldFgValid = false;
continue;
}

+ 1
- 1
common/rfb/JpegCompressor.cxx View File

@@ -254,7 +254,7 @@ void JpegCompressor::compress(const uint8_t *buf, volatile int stride,
delete[] rowPointer;
}

void JpegCompressor::writeBytes(const void* /*data*/, int /*length*/)
void JpegCompressor::writeBytes(const uint8_t* /*data*/, int /*length*/)
{
throw rdr::Exception("writeBytes() is not valid with a JpegCompressor instance. Use compress() instead.");
}

+ 1
- 1
common/rfb/JpegCompressor.h View File

@@ -45,7 +45,7 @@ namespace rfb {

void compress(const uint8_t *, int, const Rect&, const PixelFormat&, int, int);

void writeBytes(const void*, int);
void writeBytes(const uint8_t*, int);

private:


+ 1
- 1
common/rfb/RREDecoder.cxx View File

@@ -66,7 +66,7 @@ bool RREDecoder::readRect(const Rect& /*r*/, rdr::InStream* is,
return true;
}

void RREDecoder::decodeRect(const Rect& r, const void* buffer,
void RREDecoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb)
{

+ 1
- 1
common/rfb/RREDecoder.h View File

@@ -31,7 +31,7 @@ namespace rfb {
virtual ~RREDecoder();
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);
private:

+ 1
- 1
common/rfb/RawDecoder.cxx View File

@@ -46,7 +46,7 @@ bool RawDecoder::readRect(const Rect& r, rdr::InStream* is,
return true;
}

void RawDecoder::decodeRect(const Rect& r, const void* buffer,
void RawDecoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb)
{

+ 1
- 1
common/rfb/RawDecoder.h View File

@@ -27,7 +27,7 @@ namespace rfb {
virtual ~RawDecoder();
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);
};

+ 9
- 7
common/rfb/SConnection.cxx View File

@@ -88,7 +88,7 @@ void SConnection::initialiseProtocol()
char str[13];

sprintf(str, "RFB %03d.%03d\n", defaultMajorVersion, defaultMinorVersion);
os->writeBytes(str, 12);
os->writeBytes((const uint8_t*)str, 12);
os->flush();

state_ = RFBSTATE_PROTOCOL_VERSION;
@@ -126,7 +126,7 @@ bool SConnection::processVersionMsg()
if (!is->hasData(12))
return false;

is->readBytes(verStr, 12);
is->readBytes((uint8_t*)verStr, 12);
verStr[12] = '\0';

if (sscanf(verStr, "RFB %03d.%03d\n",
@@ -298,7 +298,8 @@ bool SConnection::handleAuthFailureTimeout(Timer* /*t*/)
os->writeU32(secResultFailed);
if (!client.beforeVersion(3,8)) { // 3.8 onwards have failure message
os->writeU32(authFailureMsg.size());
os->writeBytes(authFailureMsg.data(), authFailureMsg.size());
os->writeBytes((const uint8_t*)authFailureMsg.data(),
authFailureMsg.size());
}
os->flush();
} catch (rdr::Exception& e) {
@@ -326,12 +327,12 @@ void SConnection::throwConnFailedException(const char* format, ...)
if (client.majorVersion == 3 && client.minorVersion == 3) {
os->writeU32(0);
os->writeU32(strlen(str));
os->writeBytes(str, strlen(str));
os->writeBytes((const uint8_t*)str, strlen(str));
os->flush();
} else {
os->writeU8(0);
os->writeU32(strlen(str));
os->writeBytes(str, strlen(str));
os->writeBytes((const uint8_t*)str, strlen(str));
os->flush();
}
}
@@ -467,7 +468,7 @@ void SConnection::approveConnection(bool accept, const char* reason)
if (!reason)
reason = "Authentication failure";
os->writeU32(strlen(reason));
os->writeBytes(reason, strlen(reason));
os->writeBytes((const uint8_t*)reason, strlen(reason));
}
}
os->flush();
@@ -519,7 +520,8 @@ void SConnection::framebufferUpdateRequest(const Rect& /*r*/,
}
}

void SConnection::fence(uint32_t flags, unsigned len, const char data[])
void SConnection::fence(uint32_t flags, unsigned len,
const uint8_t data[])
{
if (!(flags & fenceFlagRequest))
return;

+ 1
- 1
common/rfb/SConnection.h View File

@@ -132,7 +132,7 @@ namespace rfb {
// it responds directly to requests (stating it doesn't support any
// synchronisation) and drops responses. Override to implement more proper
// support.
virtual void fence(uint32_t flags, unsigned len, const char data[]);
virtual void fence(uint32_t flags, unsigned len, const uint8_t data[]);

// enableContinuousUpdates() is called when the client wants to enable
// or disable continuous updates, or change the active area.

+ 1
- 1
common/rfb/SMsgHandler.h View File

@@ -51,7 +51,7 @@ namespace rfb {
virtual void framebufferUpdateRequest(const Rect& r, bool incremental) = 0;
virtual void setDesktopSize(int fb_width, int fb_height,
const ScreenSet& layout) = 0;
virtual void fence(uint32_t flags, unsigned len, const char data[]) = 0;
virtual void fence(uint32_t flags, unsigned len, const uint8_t data[]) = 0;
virtual void enableContinuousUpdates(bool enable,
int x, int y, int w, int h) = 0;


+ 2
- 2
common/rfb/SMsgReader.cxx View File

@@ -229,7 +229,7 @@ bool SMsgReader::readFence()
{
uint32_t flags;
uint8_t len;
char data[64];
uint8_t data[64];

if (!is->hasData(3 + 4 + 1))
return false;
@@ -315,7 +315,7 @@ bool SMsgReader::readClientCutText()
}

std::vector<char> ca(len);
is->readBytes(ca.data(), len);
is->readBytes((uint8_t*)ca.data(), len);
std::string filtered(convertLF(ca.data(), len));
handler->clientCutText(filtered.c_str());


+ 9
- 6
common/rfb/SMsgWriter.cxx View File

@@ -63,7 +63,7 @@ void SMsgWriter::writeServerInit(uint16_t width, uint16_t height,
os->writeU16(height);
pf.write(os);
os->writeU32(strlen(name));
os->writeBytes(name, strlen(name));
os->writeBytes((const uint8_t*)name, strlen(name));
endMsg();
}

@@ -101,7 +101,7 @@ void SMsgWriter::writeServerCutText(const char* str)
startMsg(msgTypeServerCutText);
os->pad(3);
os->writeU32(len);
os->writeBytes(str, len);
os->writeBytes((const uint8_t*)str, len);
endMsg();
}

@@ -211,7 +211,8 @@ void SMsgWriter::writeClipboardProvide(uint32_t flags,
endMsg();
}

void SMsgWriter::writeFence(uint32_t flags, unsigned len, const char data[])
void SMsgWriter::writeFence(uint32_t flags, unsigned len,
const uint8_t data[])
{
if (!client->supportsEncoding(pseudoEncodingFence))
throw Exception("Client does not support fences");
@@ -585,12 +586,13 @@ void SMsgWriter::writeSetDesktopNameRect(const char *name)
os->writeU16(0);
os->writeU32(pseudoEncodingDesktopName);
os->writeU32(strlen(name));
os->writeBytes(name, strlen(name));
os->writeBytes((const uint8_t*)name, strlen(name));
}

void SMsgWriter::writeSetCursorRect(int width, int height,
int hotspotX, int hotspotY,
const void* data, const void* mask)
const uint8_t* data,
const uint8_t* mask)
{
if (!client->supportsEncoding(pseudoEncodingCursor))
throw Exception("Client does not support local cursors");
@@ -608,7 +610,8 @@ void SMsgWriter::writeSetCursorRect(int width, int height,

void SMsgWriter::writeSetXCursorRect(int width, int height,
int hotspotX, int hotspotY,
const void* data, const void* mask)
const uint8_t* data,
const uint8_t* mask)
{
if (!client->supportsEncoding(pseudoEncodingXCursor))
throw Exception("Client does not support local cursors");

+ 3
- 3
common/rfb/SMsgWriter.h View File

@@ -68,7 +68,7 @@ namespace rfb {
const uint8_t* const* data);

// writeFence() sends a new fence request or response to the client.
void writeFence(uint32_t flags, unsigned len, const char data[]);
void writeFence(uint32_t flags, unsigned len, const uint8_t data[]);

// writeEndOfContinuousUpdates() indicates that we have left continuous
// updates mode.
@@ -135,10 +135,10 @@ namespace rfb {
void writeSetDesktopNameRect(const char *name);
void writeSetCursorRect(int width, int height,
int hotspotX, int hotspotY,
const void* data, const void* mask);
const uint8_t* data, const uint8_t* mask);
void writeSetXCursorRect(int width, int height,
int hotspotX, int hotspotY,
const void* data, const void* mask);
const uint8_t* data, const uint8_t* mask);
void writeSetCursorWithAlphaRect(int width, int height,
int hotspotX, int hotspotY,
const uint8_t* data);

+ 2
- 2
common/rfb/SSecurityPlain.cxx View File

@@ -99,8 +99,8 @@ bool SSecurityPlain::processMsg()
if (!is->hasData(ulen + plen))
return false;
state = 2;
is->readBytes(username, ulen);
is->readBytes(password, plen);
is->readBytes((uint8_t*)username, ulen);
is->readBytes((uint8_t*)password, plen);
password[plen] = 0;
username[ulen] = 0;
plen = 0;

+ 2
- 2
common/rfb/SSecurityRSAAES.cxx View File

@@ -539,12 +539,12 @@ bool SSecurityRSAAES::readCredentials()
uint8_t lenUsername = rais->readU8();
if (!rais->hasDataOrRestore(lenUsername + 1))
return false;
rais->readBytes(username, lenUsername);
rais->readBytes((uint8_t*)username, lenUsername);
username[lenUsername] = 0;
uint8_t lenPassword = rais->readU8();
if (!rais->hasDataOrRestore(lenPassword))
return false;
rais->readBytes(password, lenPassword);
rais->readBytes((uint8_t*)password, lenPassword);
password[lenPassword] = 0;
rais->clearRestorePoint();
return true;

+ 3
- 3
common/rfb/TightDecoder.cxx View File

@@ -192,10 +192,10 @@ bool TightDecoder::readRect(const Rect& r, rdr::InStream* is,
}

bool TightDecoder::doRectsConflict(const Rect& /*rectA*/,
const void* bufferA,
const uint8_t* bufferA,
size_t buflenA,
const Rect& /*rectB*/,
const void* bufferB,
const uint8_t* bufferB,
size_t buflenB,
const ServerParams& /*server*/)
{
@@ -219,7 +219,7 @@ bool TightDecoder::doRectsConflict(const Rect& /*rectA*/,
return false;
}

void TightDecoder::decodeRect(const Rect& r, const void* buffer,
void TightDecoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb)
{

+ 3
- 3
common/rfb/TightDecoder.h View File

@@ -34,13 +34,13 @@ namespace rfb {
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual bool doRectsConflict(const Rect& rectA,
const void* bufferA,
const uint8_t* bufferA,
size_t buflenA,
const Rect& rectB,
const void* bufferB,
const uint8_t* bufferB,
size_t buflenB,
const ServerParams& server);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);


+ 4
- 4
common/rfb/VNCSConnectionST.cxx View File

@@ -672,7 +672,7 @@ void VNCSConnectionST::setDesktopSize(int fb_width, int fb_height,
writer()->writeDesktopSize(reasonClient, result);
}

void VNCSConnectionST::fence(uint32_t flags, unsigned len, const char data[])
void VNCSConnectionST::fence(uint32_t flags, unsigned len, const uint8_t data[])
{
uint8_t type;

@@ -685,7 +685,7 @@ void VNCSConnectionST::fence(uint32_t flags, unsigned len, const char data[])
delete [] fenceData;
fenceData = NULL;
if (len > 0) {
fenceData = new char[len];
fenceData = new uint8_t[len];
memcpy(fenceData, data, len);
}

@@ -771,7 +771,7 @@ void VNCSConnectionST::supportsLocalCursor()

void VNCSConnectionST::supportsFence()
{
char type = 0;
uint8_t type = 0;
writer()->writeFence(fenceFlagRequest, sizeof(type), &type);
}

@@ -825,7 +825,7 @@ bool VNCSConnectionST::isShiftPressed()

void VNCSConnectionST::writeRTTPing()
{
char type;
uint8_t type;

if (!client.supportsFence())
return;

+ 2
- 2
common/rfb/VNCSConnectionST.h View File

@@ -128,7 +128,7 @@ namespace rfb {
virtual void framebufferUpdateRequest(const Rect& r, bool incremental);
virtual void setDesktopSize(int fb_width, int fb_height,
const ScreenSet& layout);
virtual void fence(uint32_t flags, unsigned len, const char data[]);
virtual void fence(uint32_t flags, unsigned len, const uint8_t data[]);
virtual void enableContinuousUpdates(bool enable,
int x, int y, int w, int h);
virtual void handleClipboardRequest();
@@ -174,7 +174,7 @@ namespace rfb {
bool pendingSyncFence, syncFence;
uint32_t fenceFlags;
unsigned fenceDataLen;
char *fenceData;
uint8_t *fenceData;

Congestion congestion;
Timer congestionTimer;

+ 2
- 2
common/rfb/VNCServerST.cxx View File

@@ -139,11 +139,11 @@ void VNCServerST::addSocket(network::Socket* sock, bool outgoing)
rdr::OutStream& os = sock->outStream();

// Shortest possible way to tell a client it is not welcome
os.writeBytes("RFB 003.003\n", 12);
os.writeBytes((const uint8_t*)"RFB 003.003\n", 12);
os.writeU32(0);
const char* reason = "Too many security failures";
os.writeU32(strlen(reason));
os.writeBytes(reason, strlen(reason));
os.writeBytes((const uint8_t*)reason, strlen(reason));
os.flush();
} catch (rdr::Exception&) {
}

+ 2
- 2
common/rfb/ZRLEDecoder.cxx View File

@@ -99,7 +99,7 @@ bool ZRLEDecoder::readRect(const Rect& /*r*/, rdr::InStream* is,
return true;
}

void ZRLEDecoder::decodeRect(const Rect& r, const void* buffer,
void ZRLEDecoder::decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb)
{
@@ -185,7 +185,7 @@ void ZRLEDecoder::zrleDecode(const Rect& r, rdr::InStream* is,
*ptr = readOpaque24B(zis);
}
} else {
zis->readBytes(buf, t.area() * sizeof(T));
zis->readBytes((uint8_t*)buf, t.area() * sizeof(T));
}

} else {

+ 1
- 1
common/rfb/ZRLEDecoder.h View File

@@ -32,7 +32,7 @@ namespace rfb {
virtual ~ZRLEDecoder();
virtual bool readRect(const Rect& r, rdr::InStream* is,
const ServerParams& server, rdr::OutStream* os);
virtual void decodeRect(const Rect& r, const void* buffer,
virtual void decodeRect(const Rect& r, const uint8_t* buffer,
size_t buflen, const ServerParams& server,
ModifiablePixelBuffer* pb);


+ 1
- 1
vncviewer/CConn.cxx View File

@@ -434,7 +434,7 @@ void CConn::setCursorPos(const Point& pos)
desktop->setCursorPos(pos);
}

void CConn::fence(uint32_t flags, unsigned len, const char data[])
void CConn::fence(uint32_t flags, unsigned len, const uint8_t data[])
{
CMsgHandler::fence(flags, len, data);


+ 1
- 1
vncviewer/CConn.h View File

@@ -65,7 +65,7 @@ public:
const uint8_t* data);
void setCursorPos(const rfb::Point& pos);

void fence(uint32_t flags, unsigned len, const char data[]);
void fence(uint32_t flags, unsigned len, const uint8_t data[]);

void setLEDState(unsigned int state);


Loading…
Cancel
Save