2016-04-16 20:50:23 +02:00
|
|
|
|
/****************************************************************************
|
|
|
|
|
* graphics/vnc/vnc_negotiate.c
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2016 Gregory Nutt. All rights reserved.
|
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
*
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
|
* distribution.
|
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Included Files
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <errno.h>
|
2016-04-16 23:59:00 +02:00
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <debug.h>
|
2016-04-16 20:50:23 +02:00
|
|
|
|
|
2016-04-19 14:59:33 +02:00
|
|
|
|
#ifdef CONFIG_NET_SOCKOPTS
|
|
|
|
|
# include <sys/time.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
#include <nuttx/video/fb.h>
|
2016-04-16 20:50:23 +02:00
|
|
|
|
#include <nuttx/video/rfb.h>
|
|
|
|
|
|
|
|
|
|
#include "vnc_server.h"
|
|
|
|
|
|
2016-04-16 21:06:39 +02:00
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Private Data
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#if defined(CONFIG_VNCSERVER_PROTO3p3)
|
|
|
|
|
static const char g_vncproto[] = RFB_PROTOCOL_VERSION_3p3;
|
|
|
|
|
#elif defined(CONFIG_VNCSERVER_PROTO3p8)
|
|
|
|
|
static const char g_vncproto[] = RFB_PROTOCOL_VERSION_3p8;
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-16 20:50:23 +02:00
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Public Functions
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* Name: vnc_negotiate
|
|
|
|
|
*
|
|
|
|
|
* Description:
|
2016-04-17 01:48:15 +02:00
|
|
|
|
* Perform the VNC initialization sequence after the client has sucessfully
|
2016-04-16 20:50:23 +02:00
|
|
|
|
* connected to the server. Negotiate security, framebuffer and color
|
|
|
|
|
* properties.
|
|
|
|
|
*
|
|
|
|
|
* Input Parameters:
|
2016-04-17 16:20:14 +02:00
|
|
|
|
* session - An instance of the session structure.
|
2016-04-16 20:50:23 +02:00
|
|
|
|
*
|
|
|
|
|
* Returned Value:
|
|
|
|
|
* Returns zero (OK) on success; a negated errno value on failure.
|
|
|
|
|
*
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_VNCSERVER_PROTO3p3
|
|
|
|
|
int vnc_negotiate(FAR struct vnc_session_s *session)
|
|
|
|
|
{
|
2016-04-16 23:59:00 +02:00
|
|
|
|
FAR struct rfb_sectype_s *sectype;
|
|
|
|
|
FAR struct rfb_serverinit_s *serverinit;
|
|
|
|
|
FAR struct rfb_pixelfmt_s *pixelfmt;
|
|
|
|
|
FAR struct rfb_setpixelformat_s *setformat;
|
|
|
|
|
ssize_t nsent;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
ssize_t nrecvd;
|
|
|
|
|
size_t len;
|
|
|
|
|
int errcode;
|
|
|
|
|
|
2016-04-19 14:59:33 +02:00
|
|
|
|
#ifdef CONFIG_NET_SOCKOPTS
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
/* Set a receive timeout so that we don't hang if the client does not
|
|
|
|
|
* respond according to RFB 3.3 protocol.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
tv.tv_sec = 5;
|
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
ret = psock_setsockopt(&session->connect, SOL_SOCKET, SO_RCVTIMEO,
|
|
|
|
|
&tv, sizeof(struct timeval));
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Failed to set receive timeout: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
/* Inform the client of the VNC protocol version */
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Send protocol version: %s\n", g_vncproto);
|
|
|
|
|
|
2016-04-16 21:06:39 +02:00
|
|
|
|
len = strlen(g_vncproto);
|
2016-04-16 23:59:00 +02:00
|
|
|
|
nsent = psock_send(&session->connect, g_vncproto, len, 0);
|
|
|
|
|
if (nsent < 0)
|
2016-04-16 21:06:39 +02:00
|
|
|
|
{
|
2016-04-16 23:59:00 +02:00
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Send ProtocolVersion failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
DEBUGASSERT(nsent == len);
|
|
|
|
|
|
|
|
|
|
/* Receive the echo of the protocol string */
|
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Receive echo from VNC client\n");
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
nrecvd = psock_recv(&session->connect, session->inbuf, len, 0);
|
2016-04-17 17:17:37 +02:00
|
|
|
|
if (nrecvd < 0)
|
2016-04-16 21:06:39 +02:00
|
|
|
|
{
|
2016-04-16 23:59:00 +02:00
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Receive protocol confirmation failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
DEBUGASSERT(nrecvd == len);
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
/* Tell the client that we won't use any stinkin' security.
|
|
|
|
|
*
|
|
|
|
|
* "Version 3.3 The server decides the security type and sends a single
|
|
|
|
|
* word:"
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Send security type (None)\n");
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
sectype = (FAR struct rfb_sectype_s *)session->outbuf;
|
2016-04-16 23:59:00 +02:00
|
|
|
|
rfb_putbe32(sectype->type, RFB_SECTYPE_NONE);
|
|
|
|
|
|
|
|
|
|
nsent = psock_send(&session->connect, sectype,
|
|
|
|
|
sizeof(struct rfb_sectype_s), 0);
|
|
|
|
|
if (nsent < 0)
|
|
|
|
|
{
|
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Send Security failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUGASSERT(nsent == sizeof(struct rfb_sectype_s));
|
|
|
|
|
|
|
|
|
|
/* Receive the ClientInit message
|
|
|
|
|
*
|
|
|
|
|
* "Once the client and server are sure that they’re happy to talk to one
|
|
|
|
|
* another using the agreed security type, the protocol passes to the
|
|
|
|
|
* initialisation phase. The client sends a ClientInit message followed
|
|
|
|
|
* by the server sending a ServerInit message."
|
|
|
|
|
*
|
|
|
|
|
* In this implementation, the sharing flag is ignored.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Receive ClientInit\n");
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
nrecvd = psock_recv(&session->connect, session->inbuf,
|
2016-04-16 23:59:00 +02:00
|
|
|
|
sizeof(struct rfb_clientinit_s), 0);
|
|
|
|
|
if (nrecvd < 0)
|
|
|
|
|
{
|
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Receive ClientInit failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUGASSERT(nrecvd == sizeof(struct rfb_clientinit_s));
|
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
/* Send the ServerInit message
|
2016-04-16 23:59:00 +02:00
|
|
|
|
*
|
|
|
|
|
* "After receiving the ClientInit message, the server sends a ServerInit
|
|
|
|
|
* message. This tells the client the width and height of the server’s
|
|
|
|
|
* framebuffer, its pixel format and the name associated with the desktop:
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Receive ServerInit\n");
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
serverinit = (FAR struct rfb_serverinit_s *)session->outbuf;
|
2016-04-16 23:59:00 +02:00
|
|
|
|
|
|
|
|
|
rfb_putbe16(serverinit->width, CONFIG_VNCSERVER_SCREENWIDTH);
|
|
|
|
|
rfb_putbe16(serverinit->height, CONFIG_VNCSERVER_SCREENHEIGHT);
|
|
|
|
|
rfb_putbe32(serverinit->namelen, 0);
|
|
|
|
|
|
|
|
|
|
pixelfmt = &serverinit->format;
|
|
|
|
|
pixelfmt->bpp = RFB_BITSPERPIXEL;
|
|
|
|
|
pixelfmt->depth = RFB_PIXELDEPTH;
|
|
|
|
|
pixelfmt->bigendian = 0;
|
|
|
|
|
pixelfmt->truecolor = RFB_TRUECOLOR;
|
|
|
|
|
|
|
|
|
|
rfb_putbe16(pixelfmt->rmax, RFB_RMAX);
|
|
|
|
|
rfb_putbe16(pixelfmt->gmax, RFB_GMAX);
|
|
|
|
|
rfb_putbe16(pixelfmt->bmax, RFB_BMAX);
|
|
|
|
|
|
|
|
|
|
pixelfmt->rshift = RFB_RSHIFT;
|
|
|
|
|
pixelfmt->gshift = RFB_GSHIFT;
|
|
|
|
|
pixelfmt->bshift = RFB_BSHIFT;
|
|
|
|
|
|
|
|
|
|
nsent = psock_send(&session->connect, serverinit,
|
|
|
|
|
SIZEOF_RFB_SERVERINIT_S(0), 0);
|
|
|
|
|
if (nsent < 0)
|
|
|
|
|
{
|
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Send ServerInit failed: %d\n", errcode);
|
|
|
|
|
return -errcode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DEBUGASSERT(nsent == SIZEOF_RFB_SERVERINIT_S(0));
|
|
|
|
|
|
|
|
|
|
/* We now expect to receive the SetPixelFormat message from the client.
|
|
|
|
|
* This may override some of our framebuffer settings.
|
|
|
|
|
*/
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Receive SetPixelFormat\n");
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
setformat = (FAR struct rfb_setpixelformat_s *)session->inbuf;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
nrecvd = psock_recv(&session->connect, setformat,
|
|
|
|
|
sizeof(struct rfb_setpixelformat_s), 0);
|
|
|
|
|
if (nrecvd < 0)
|
|
|
|
|
{
|
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Receive SetFormat failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
|
|
|
|
}
|
|
|
|
|
else if (nrecvd != sizeof(struct rfb_setpixelformat_s))
|
|
|
|
|
{
|
|
|
|
|
/* Must not be a SetPixelFormat message? */
|
|
|
|
|
|
|
|
|
|
gdbg("ERROR: SetFormat wrong size: %d\n", (int)nrecvd);
|
|
|
|
|
return -EPROTO;
|
|
|
|
|
}
|
|
|
|
|
else if (setformat->msgtype != RFB_SETPIXELFMT_MSG)
|
|
|
|
|
{
|
2016-04-18 22:07:08 +02:00
|
|
|
|
gdbg("ERROR: Not a SetFormat message: %d\n", (int)setformat->msgtype);
|
2016-04-16 23:59:00 +02:00
|
|
|
|
return -EPROTO;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Check if the client request format is one that we can handle. */
|
|
|
|
|
|
|
|
|
|
pixelfmt = &setformat->format;
|
|
|
|
|
|
|
|
|
|
if (pixelfmt->truecolor == 0)
|
|
|
|
|
{
|
|
|
|
|
/* At present, we support only TrueColor formats */
|
|
|
|
|
|
|
|
|
|
gdbg("ERROR: No support for palette colors\n");
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (pixelfmt->bpp == 16 && pixelfmt->depth == 15)
|
|
|
|
|
{
|
|
|
|
|
session->colorfmt = FB_FMT_RGB16_555;
|
|
|
|
|
session->bpp = 16;
|
|
|
|
|
}
|
|
|
|
|
else if (pixelfmt->bpp == 16 && pixelfmt->depth == 16)
|
|
|
|
|
{
|
|
|
|
|
session->colorfmt = FB_FMT_RGB16_565;
|
|
|
|
|
session->bpp = 16;
|
|
|
|
|
}
|
|
|
|
|
else if (pixelfmt->bpp == 32 && pixelfmt->depth == 24)
|
|
|
|
|
{
|
|
|
|
|
session->colorfmt = FB_FMT_RGB32;
|
|
|
|
|
session->bpp = 32;
|
|
|
|
|
}
|
|
|
|
|
else if (pixelfmt->bpp == 32 && pixelfmt->depth == 32)
|
|
|
|
|
{
|
|
|
|
|
session->colorfmt = FB_FMT_RGB32;
|
|
|
|
|
session->bpp = 32;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* We do not support any other conversions */
|
|
|
|
|
|
|
|
|
|
gdbg("ERROR: No support for this BPP=%d and depth=%d\n",
|
|
|
|
|
pixelfmt->bpp, pixelfmt->depth);
|
|
|
|
|
return -ENOSYS;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Receive supported encoding types from client, but ignore them.
|
|
|
|
|
* we will do only raw format.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-04-19 02:55:36 +02:00
|
|
|
|
gvdbg("Receive encoding types\n");
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
(void)psock_recv(&session->connect, session->inbuf,
|
2016-04-18 00:48:30 +02:00
|
|
|
|
CONFIG_VNCSERVER_INBUFFER_SIZE, 0);
|
2016-04-16 23:59:00 +02:00
|
|
|
|
|
|
|
|
|
session->state = VNCSERVER_CONFIGURED;
|
|
|
|
|
return OK;
|
2016-04-16 20:50:23 +02:00
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifdef CONFIG_VNCSERVER_PROTO3p8
|
|
|
|
|
int vnc_negotiate(FAR struct vnc_session_s *session)
|
|
|
|
|
{
|
2016-04-16 23:59:00 +02:00
|
|
|
|
ssize_t nsent;
|
|
|
|
|
ssize_t nrecvd;
|
|
|
|
|
size_t len;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
2016-04-19 14:59:33 +02:00
|
|
|
|
#ifdef CONFIG_NET_SOCKOPTS
|
|
|
|
|
struct timeval tv;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
/* Set a receive timeout so that we don't hang if the client does not
|
|
|
|
|
* respond according to RFB 3.3 protocol.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
tv.tv_sec = 5;
|
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
ret = psock_setsockopt(&session->connect, SOL_SOCKET, SO_RCVTIMEO,
|
|
|
|
|
&tv, sizeof(struct timeval));
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Failed to set receive timeout: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
/* Inform the client of the VNC protocol version */
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
|
|
|
|
len = strlen(g_vncproto);
|
2016-04-16 23:59:00 +02:00
|
|
|
|
nsent = psock_send(&session->connect, g_vncproto, len, 0);
|
|
|
|
|
if (nsent < 0)
|
2016-04-16 21:06:39 +02:00
|
|
|
|
{
|
2016-04-16 23:59:00 +02:00
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Send ProtocolVersion failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
DEBUGASSERT(nsent == len);
|
|
|
|
|
|
|
|
|
|
/* Receive the echo of the protocol string */
|
|
|
|
|
|
2016-04-17 16:20:14 +02:00
|
|
|
|
nrecvd = psock_recv(&session->connect, session->inbuf, len, 0);
|
2016-04-16 21:06:39 +02:00
|
|
|
|
if (nrecvd <= 0)
|
|
|
|
|
{
|
2016-04-16 23:59:00 +02:00
|
|
|
|
errcode = get_errno();
|
|
|
|
|
gdbg("ERROR: Receive protocol confirmation failed: %d\n", errcode);
|
|
|
|
|
DEBUGASSERT(errcode > 0);
|
|
|
|
|
return -errcode;
|
2016-04-16 21:06:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2016-04-16 23:59:00 +02:00
|
|
|
|
DEBUGASSERT(nrecvd == len);
|
|
|
|
|
|
2016-04-16 21:06:39 +02:00
|
|
|
|
/* Offer the client a choice of security -- where None is the only option. */
|
2016-04-16 23:59:00 +02:00
|
|
|
|
#warning Missing logic
|
2016-04-16 21:06:39 +02:00
|
|
|
|
|
2016-04-16 20:50:23 +02:00
|
|
|
|
return OK;
|
|
|
|
|
}
|
|
|
|
|
#endif
|