2011-08-07 17:52:40 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* X11 Client
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2011-09-29 08:33:16 +04:00
|
|
|
#ifdef WITH_XCURSOR
|
|
|
|
#include <X11/Xcursor/Xcursor.h>
|
|
|
|
#endif
|
|
|
|
|
2011-08-20 07:15:49 +04:00
|
|
|
#ifdef WITH_XINERAMA
|
|
|
|
#include <X11/extensions/Xinerama.h>
|
|
|
|
#endif
|
|
|
|
|
2011-09-19 02:44:49 +04:00
|
|
|
#include <errno.h>
|
2011-08-26 06:01:33 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2011-08-09 04:31:21 +04:00
|
|
|
#include <locale.h>
|
2011-09-19 02:44:49 +04:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <string.h>
|
2011-09-08 10:41:08 +04:00
|
|
|
#include <termios.h>
|
2011-09-19 02:44:49 +04:00
|
|
|
#include <pthread.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <freerdp/constants.h>
|
2011-10-04 13:40:03 +04:00
|
|
|
#include <freerdp/codec/nsc.h>
|
2011-10-03 04:52:17 +04:00
|
|
|
#include <freerdp/codec/rfx.h>
|
2011-10-03 04:28:20 +04:00
|
|
|
#include <freerdp/codec/color.h>
|
2011-08-07 17:52:40 +04:00
|
|
|
#include <freerdp/utils/args.h>
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
#include <freerdp/utils/semaphore.h>
|
2011-09-29 08:33:16 +04:00
|
|
|
#include <freerdp/utils/memory.h>
|
2011-08-07 17:52:40 +04:00
|
|
|
#include <freerdp/utils/event.h>
|
2011-09-29 08:37:30 +04:00
|
|
|
#include <freerdp/utils/signal.h>
|
2011-09-25 03:08:16 +04:00
|
|
|
#include <freerdp/utils/passphrase.h>
|
2011-08-11 07:07:03 +04:00
|
|
|
#include <freerdp/plugins/cliprdr.h>
|
|
|
|
#include <freerdp/rail.h>
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-26 02:07:52 +04:00
|
|
|
#include "xf_gdi.h"
|
2011-08-16 08:22:00 +04:00
|
|
|
#include "xf_rail.h"
|
2011-09-20 12:27:59 +04:00
|
|
|
#include "xf_tsmf.h"
|
2011-08-07 17:52:40 +04:00
|
|
|
#include "xf_event.h"
|
2011-09-23 07:37:17 +04:00
|
|
|
#include "xf_cliprdr.h"
|
2011-08-31 04:59:42 +04:00
|
|
|
#include "xf_monitor.h"
|
2011-08-26 06:01:33 +04:00
|
|
|
#include "xf_keyboard.h"
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
#include "xfreerdp.h"
|
|
|
|
|
|
|
|
freerdp_sem g_sem;
|
|
|
|
static int g_thread_count = 0;
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
static long xv_port = 0;
|
2011-09-29 09:03:07 +04:00
|
|
|
const size_t password_size = 512;
|
2011-09-20 12:27:59 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
struct thread_data
|
|
|
|
{
|
|
|
|
freerdp* instance;
|
|
|
|
};
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
void xf_sw_begin_paint(rdpUpdate* update)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
|
|
|
GDI* gdi;
|
|
|
|
gdi = GET_GDI(update);
|
|
|
|
gdi->primary->hdc->hwnd->invalid->null = 1;
|
2011-08-24 09:47:43 +04:00
|
|
|
gdi->primary->hdc->hwnd->ninvalid = 0;
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
void xf_sw_end_paint(rdpUpdate* update)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
|
|
|
GDI* gdi;
|
|
|
|
xfInfo* xfi;
|
2011-08-07 22:09:18 +04:00
|
|
|
sint32 x, y;
|
|
|
|
uint32 w, h;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
gdi = GET_GDI(update);
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
if (xfi->remote_app != True)
|
|
|
|
{
|
2011-08-26 21:37:23 +04:00
|
|
|
if (xfi->complex_regions != True)
|
|
|
|
{
|
|
|
|
if (gdi->primary->hdc->hwnd->invalid->null)
|
|
|
|
return;
|
2011-08-25 06:35:55 +04:00
|
|
|
|
2011-08-26 21:37:23 +04:00
|
|
|
x = gdi->primary->hdc->hwnd->invalid->x;
|
|
|
|
y = gdi->primary->hdc->hwnd->invalid->y;
|
|
|
|
w = gdi->primary->hdc->hwnd->invalid->w;
|
|
|
|
h = gdi->primary->hdc->hwnd->invalid->h;
|
|
|
|
|
|
|
|
XPutImage(xfi->display, xfi->primary, xfi->gc, xfi->image, x, y, x, y, w, h);
|
|
|
|
XCopyArea(xfi->display, xfi->primary, xfi->window->handle, xfi->gc, x, y, w, h, x, y);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int ninvalid;
|
|
|
|
HGDI_RGN cinvalid;
|
2011-08-25 06:35:55 +04:00
|
|
|
|
2011-08-26 21:37:23 +04:00
|
|
|
if (gdi->primary->hdc->hwnd->ninvalid < 1)
|
|
|
|
return;
|
2011-08-24 09:47:43 +04:00
|
|
|
|
2011-08-26 21:37:23 +04:00
|
|
|
ninvalid = gdi->primary->hdc->hwnd->ninvalid;
|
|
|
|
cinvalid = gdi->primary->hdc->hwnd->cinvalid;
|
2011-08-24 09:47:43 +04:00
|
|
|
|
2011-08-26 21:37:23 +04:00
|
|
|
for (i = 0; i < ninvalid; i++)
|
|
|
|
{
|
|
|
|
x = cinvalid[i].x;
|
|
|
|
y = cinvalid[i].y;
|
|
|
|
w = cinvalid[i].w;
|
|
|
|
h = cinvalid[i].h;
|
2011-08-24 09:47:43 +04:00
|
|
|
|
2011-08-26 21:37:23 +04:00
|
|
|
XPutImage(xfi->display, xfi->primary, xfi->gc, xfi->image, x, y, x, y, w, h);
|
|
|
|
XCopyArea(xfi->display, xfi->primary, xfi->window->handle, xfi->gc, x, y, w, h, x, y);
|
|
|
|
}
|
2011-08-24 09:47:43 +04:00
|
|
|
|
2011-08-26 21:37:23 +04:00
|
|
|
XFlush(xfi->display);
|
2011-08-24 09:47:43 +04:00
|
|
|
}
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-24 09:47:43 +04:00
|
|
|
if (gdi->primary->hdc->hwnd->invalid->null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
x = gdi->primary->hdc->hwnd->invalid->x;
|
|
|
|
y = gdi->primary->hdc->hwnd->invalid->y;
|
|
|
|
w = gdi->primary->hdc->hwnd->invalid->w;
|
|
|
|
h = gdi->primary->hdc->hwnd->invalid->h;
|
|
|
|
|
2011-08-19 20:43:44 +04:00
|
|
|
xf_rail_paint(xfi, update->rail, x, y, x + w - 1, y + h - 1);
|
2011-08-18 09:16:49 +04:00
|
|
|
}
|
2011-08-07 17:52:40 +04:00
|
|
|
}
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
void xf_sw_desktop_resize(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
|
|
|
rdpSettings* settings;
|
|
|
|
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
settings = xfi->instance->settings;
|
|
|
|
|
|
|
|
if (xfi->fullscreen != True)
|
|
|
|
{
|
|
|
|
GDI* gdi = GET_GDI(update);
|
|
|
|
gdi_resize(gdi, xfi->width, xfi->height);
|
|
|
|
|
|
|
|
if (xfi->image)
|
|
|
|
{
|
|
|
|
xfi->image->data = NULL;
|
|
|
|
XDestroyImage(xfi->image);
|
|
|
|
xfi->image = XCreateImage(xfi->display, xfi->visual, xfi->depth, ZPixmap, 0,
|
|
|
|
(char*) gdi->primary_buffer, gdi->width, gdi->height, xfi->scanline_pad, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_hw_begin_paint(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
xfi->hdc->hwnd->invalid->null = 1;
|
|
|
|
xfi->hdc->hwnd->ninvalid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_hw_end_paint(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
|
|
|
sint32 x, y;
|
|
|
|
uint32 w, h;
|
|
|
|
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
|
|
|
|
if (xfi->remote_app)
|
|
|
|
{
|
|
|
|
if (xfi->hdc->hwnd->invalid->null)
|
|
|
|
return;
|
|
|
|
|
|
|
|
x = xfi->hdc->hwnd->invalid->x;
|
|
|
|
y = xfi->hdc->hwnd->invalid->y;
|
|
|
|
w = xfi->hdc->hwnd->invalid->w;
|
|
|
|
h = xfi->hdc->hwnd->invalid->h;
|
|
|
|
|
|
|
|
xf_rail_paint(xfi, update->rail, x, y, x + w - 1, y + h - 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_hw_desktop_resize(rdpUpdate* update)
|
2011-09-06 12:22:53 +04:00
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
2011-09-07 09:27:39 +04:00
|
|
|
boolean same;
|
2011-09-06 12:22:53 +04:00
|
|
|
rdpSettings* settings;
|
|
|
|
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
settings = xfi->instance->settings;
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
if (xfi->fullscreen != True)
|
2011-09-07 09:27:39 +04:00
|
|
|
{
|
|
|
|
xfi->width = settings->width;
|
|
|
|
xfi->height = settings->height;
|
|
|
|
|
|
|
|
if (xfi->window)
|
|
|
|
xf_ResizeDesktopWindow(xfi, xfi->window, settings->width, settings->height);
|
|
|
|
|
|
|
|
if (xfi->primary)
|
|
|
|
{
|
2011-09-23 08:06:39 +04:00
|
|
|
same = (xfi->primary == xfi->drawing) ? True : False;
|
|
|
|
|
2011-09-07 09:27:39 +04:00
|
|
|
XFreePixmap(xfi->display, xfi->primary);
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
xfi->primary = XCreatePixmap(xfi->display, xfi->drawable,
|
|
|
|
xfi->width, xfi->height, xfi->depth);
|
2011-09-07 09:27:39 +04:00
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
if (same)
|
|
|
|
xfi->drawing = xfi->primary;
|
2011-09-07 09:27:39 +04:00
|
|
|
}
|
|
|
|
}
|
2011-09-06 12:22:53 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 08:33:16 +04:00
|
|
|
void xf_pointer_position(rdpUpdate* update, POINTER_POSITION_UPDATE* pointer_position)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_pointer_system(rdpUpdate* update, POINTER_SYSTEM_UPDATE* pointer_system)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_pointer_color(rdpUpdate* update, POINTER_COLOR_UPDATE* pointer_color)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_pointer_new(rdpUpdate* update, POINTER_NEW_UPDATE* pointer_new)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
|
|
|
Cursor cursor;
|
|
|
|
XcursorImage ci;
|
|
|
|
POINTER_COLOR_UPDATE* ptrAttr;
|
|
|
|
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
ptrAttr = &pointer_new->colorPtrAttr;
|
|
|
|
|
|
|
|
memset(&ci, 0, sizeof(ci));
|
|
|
|
ci.version = XCURSOR_IMAGE_VERSION;
|
|
|
|
ci.size = sizeof(ci);
|
|
|
|
ci.width = ptrAttr->width;
|
|
|
|
ci.height = ptrAttr->height;
|
|
|
|
ci.xhot = ptrAttr->xPos;
|
|
|
|
ci.yhot = ptrAttr->yPos;
|
|
|
|
ci.pixels = (XcursorPixel*) malloc(ci.width * ci.height * 4);
|
|
|
|
memset(ci.pixels, 0, ci.width * ci.height * 4);
|
|
|
|
|
|
|
|
if ((ptrAttr->andMaskData != 0) && (ptrAttr->xorMaskData != 0))
|
|
|
|
{
|
|
|
|
freerdp_alpha_cursor_convert((uint8*) (ci.pixels), ptrAttr->xorMaskData, ptrAttr->andMaskData,
|
|
|
|
ptrAttr->width, ptrAttr->height, pointer_new->xorBpp, xfi->clrconv);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pointer_new->xorBpp > 24)
|
|
|
|
{
|
2011-09-30 06:31:13 +04:00
|
|
|
freerdp_image_swap_color_order((uint8*) ci.pixels, ci.width, ci.height);
|
2011-09-29 08:33:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
cursor = XcursorImageLoadCursor(xfi->display, &ci);
|
|
|
|
xfree(ci.pixels);
|
|
|
|
|
|
|
|
pointer_put(xfi->cache->pointer, ptrAttr->cacheIndex, NULL, (void*) cursor);
|
|
|
|
|
|
|
|
if (xfi->remote_app != True)
|
|
|
|
XDefineCursor(xfi->display, xfi->window->handle, cursor);
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_pointer_cached(rdpUpdate* update, POINTER_CACHED_UPDATE* pointer_cached)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
|
|
|
void* extra;
|
|
|
|
Cursor cursor;
|
|
|
|
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
|
|
|
|
pointer_get(xfi->cache->pointer, pointer_cached->cacheIndex, &extra);
|
|
|
|
cursor = (Cursor) extra;
|
|
|
|
|
|
|
|
if (xfi->remote_app != True)
|
|
|
|
XDefineCursor(xfi->display, xfi->window->handle, cursor);
|
|
|
|
}
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
boolean xf_get_fds(freerdp* instance, void** rfds, int* rcount, void** wfds, int* wcount)
|
|
|
|
{
|
|
|
|
xfInfo* xfi = GET_XFI(instance);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
rfds[*rcount] = (void*)(long)(xfi->xfds);
|
|
|
|
(*rcount)++;
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean xf_check_fds(freerdp* instance, fd_set* set)
|
|
|
|
{
|
2011-08-07 21:41:54 +04:00
|
|
|
XEvent xevent;
|
|
|
|
xfInfo* xfi = GET_XFI(instance);
|
|
|
|
|
|
|
|
while (XPending(xfi->display))
|
|
|
|
{
|
|
|
|
memset(&xevent, 0, sizeof(xevent));
|
|
|
|
XNextEvent(xfi->display, &xevent);
|
|
|
|
|
|
|
|
if (xf_event_process(instance, &xevent) != True)
|
|
|
|
return False;
|
|
|
|
}
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-10-04 14:44:52 +04:00
|
|
|
void xf_create_window(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
XEvent xevent;
|
2011-10-07 23:50:07 +04:00
|
|
|
char* title;
|
|
|
|
char* hostname;
|
|
|
|
int width, height;
|
2011-10-04 14:44:52 +04:00
|
|
|
|
2011-10-07 23:50:07 +04:00
|
|
|
width = xfi->width;
|
|
|
|
height = xfi->height;
|
2011-10-04 14:44:52 +04:00
|
|
|
|
|
|
|
xfi->attribs.background_pixel = BlackPixelOfScreen(xfi->screen);
|
|
|
|
xfi->attribs.border_pixel = WhitePixelOfScreen(xfi->screen);
|
|
|
|
xfi->attribs.backing_store = xfi->primary ? NotUseful : Always;
|
|
|
|
xfi->attribs.override_redirect = xfi->fullscreen;
|
|
|
|
xfi->attribs.colormap = xfi->colormap;
|
|
|
|
|
|
|
|
if (xfi->remote_app != True)
|
|
|
|
{
|
2011-10-07 23:50:07 +04:00
|
|
|
if (xfi->fullscreen)
|
|
|
|
{
|
|
|
|
width = xfi->fullscreen ? WidthOfScreen(xfi->screen) : xfi->width;
|
|
|
|
height = xfi->fullscreen ? HeightOfScreen(xfi->screen) : xfi->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
hostname = xfi->instance->settings->hostname;
|
|
|
|
title = xmalloc(sizeof("FreeRDP: ") + strlen(hostname));
|
|
|
|
sprintf(title, "FreeRDP: %s", hostname);
|
2011-10-04 14:44:52 +04:00
|
|
|
|
2011-10-07 23:50:07 +04:00
|
|
|
xfi->window = xf_CreateDesktopWindow(xfi, title, width, height, xfi->decorations);
|
|
|
|
xfree(title);
|
2011-10-04 14:44:52 +04:00
|
|
|
|
|
|
|
if (xfi->fullscreen)
|
|
|
|
xf_SetWindowFullscreen(xfi, xfi->window, xfi->fullscreen);
|
|
|
|
|
|
|
|
/* wait for VisibilityNotify */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
XMaskEvent(xfi->display, VisibilityChangeMask, &xevent);
|
|
|
|
}
|
|
|
|
while (xevent.type != VisibilityNotify);
|
|
|
|
|
|
|
|
xfi->unobscured = (xevent.xvisibility.state == VisibilityUnobscured);
|
|
|
|
|
|
|
|
XSetWMProtocols(xfi->display, xfi->window->handle, &(xfi->WM_DELETE_WINDOW), 1);
|
|
|
|
xfi->drawable = xfi->window->handle;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xfi->drawable = DefaultRootWindow(xfi->display);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-24 08:46:34 +04:00
|
|
|
void xf_toggle_fullscreen(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
Pixmap contents = 0;
|
|
|
|
|
|
|
|
contents = XCreatePixmap(xfi->display, xfi->window->handle, xfi->width, xfi->height, xfi->depth);
|
|
|
|
XCopyArea(xfi->display, xfi->primary, contents, xfi->gc, 0, 0, xfi->width, xfi->height, 0, 0);
|
|
|
|
|
2011-09-14 06:20:04 +04:00
|
|
|
XDestroyWindow(xfi->display, xfi->window->handle);
|
2011-08-24 08:46:34 +04:00
|
|
|
xfi->fullscreen = (xfi->fullscreen) ? False : True;
|
2011-10-04 14:44:52 +04:00
|
|
|
xf_create_window(xfi);
|
2011-08-24 08:46:34 +04:00
|
|
|
|
|
|
|
XCopyArea(xfi->display, contents, xfi->primary, xfi->gc, 0, 0, xfi->width, xfi->height, 0, 0);
|
|
|
|
XFreePixmap(xfi->display, contents);
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean xf_get_pixmap_info(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int vi_count;
|
|
|
|
int pf_count;
|
|
|
|
XVisualInfo* vi;
|
|
|
|
XVisualInfo* vis;
|
|
|
|
XVisualInfo template;
|
|
|
|
XPixmapFormatValues* pf;
|
|
|
|
XPixmapFormatValues* pfs;
|
|
|
|
|
|
|
|
pfs = XListPixmapFormats(xfi->display, &pf_count);
|
|
|
|
|
|
|
|
if (pfs == NULL)
|
|
|
|
{
|
|
|
|
printf("xf_get_pixmap_info: XListPixmapFormats failed\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < pf_count; i++)
|
|
|
|
{
|
|
|
|
pf = pfs + i;
|
|
|
|
|
|
|
|
if (pf->depth == xfi->depth)
|
|
|
|
{
|
|
|
|
xfi->bpp = pf->bits_per_pixel;
|
|
|
|
xfi->scanline_pad = pf->scanline_pad;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XFree(pfs);
|
|
|
|
|
|
|
|
memset(&template, 0, sizeof(template));
|
|
|
|
template.class = TrueColor;
|
|
|
|
template.screen = xfi->screen_number;
|
|
|
|
|
|
|
|
vis = XGetVisualInfo(xfi->display, VisualClassMask | VisualScreenMask, &template, &vi_count);
|
|
|
|
|
|
|
|
if (vis == NULL)
|
|
|
|
{
|
|
|
|
printf("xf_get_pixmap_info: XGetVisualInfo failed\n");
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < vi_count; i++)
|
|
|
|
{
|
|
|
|
vi = vis + i;
|
|
|
|
|
|
|
|
if (vi->depth == xfi->depth)
|
|
|
|
{
|
|
|
|
xfi->visual = vi->visual;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
XFree(vis);
|
|
|
|
|
|
|
|
if ((xfi->visual == NULL) || (xfi->scanline_pad == 0))
|
|
|
|
{
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
boolean xf_pre_connect(freerdp* instance)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
2011-10-05 05:29:01 +04:00
|
|
|
boolean bitmap_cache;
|
2011-08-07 17:52:40 +04:00
|
|
|
rdpSettings* settings;
|
|
|
|
|
|
|
|
xfi = (xfInfo*) xzalloc(sizeof(xfInfo));
|
|
|
|
SET_XFI(instance, xfi);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
xfi->instance = instance;
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
settings = instance->settings;
|
2011-10-05 05:29:01 +04:00
|
|
|
bitmap_cache = settings->bitmap_cache;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
settings->order_support[NEG_DSTBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_PATBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_SCRBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_OPAQUE_RECT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_DRAWNINEGRID_INDEX] = False;
|
|
|
|
settings->order_support[NEG_MULTIDSTBLT_INDEX] = False;
|
|
|
|
settings->order_support[NEG_MULTIPATBLT_INDEX] = False;
|
|
|
|
settings->order_support[NEG_MULTISCRBLT_INDEX] = False;
|
|
|
|
settings->order_support[NEG_MULTIOPAQUERECT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MULTI_DRAWNINEGRID_INDEX] = False;
|
|
|
|
settings->order_support[NEG_LINETO_INDEX] = True;
|
|
|
|
settings->order_support[NEG_POLYLINE_INDEX] = True;
|
2011-10-05 05:29:01 +04:00
|
|
|
settings->order_support[NEG_MEMBLT_INDEX] = bitmap_cache;
|
|
|
|
settings->order_support[NEG_MEM3BLT_INDEX] = bitmap_cache;
|
|
|
|
settings->order_support[NEG_MEMBLT_V2_INDEX] = bitmap_cache;
|
|
|
|
settings->order_support[NEG_MEM3BLT_V2_INDEX] = bitmap_cache;
|
2011-08-07 17:52:40 +04:00
|
|
|
settings->order_support[NEG_SAVEBITMAP_INDEX] = True;
|
|
|
|
settings->order_support[NEG_GLYPH_INDEX_INDEX] = True;
|
|
|
|
settings->order_support[NEG_FAST_INDEX_INDEX] = True;
|
|
|
|
settings->order_support[NEG_FAST_GLYPH_INDEX] = True;
|
|
|
|
settings->order_support[NEG_POLYGON_SC_INDEX] = False;
|
|
|
|
settings->order_support[NEG_POLYGON_CB_INDEX] = False;
|
|
|
|
settings->order_support[NEG_ELLIPSE_SC_INDEX] = False;
|
|
|
|
settings->order_support[NEG_ELLIPSE_CB_INDEX] = False;
|
|
|
|
|
|
|
|
freerdp_chanman_pre_connect(GET_CHANMAN(instance), instance);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
xfi->display = XOpenDisplay(NULL);
|
|
|
|
|
|
|
|
if (xfi->display == NULL)
|
|
|
|
{
|
|
|
|
printf("xf_pre_connect: failed to open display: %s\n", XDisplayName(NULL));
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
2011-08-24 08:46:34 +04:00
|
|
|
xfi->_NET_WM_ICON = XInternAtom(xfi->display, "_NET_WM_ICON", False);
|
|
|
|
xfi->_MOTIF_WM_HINTS = XInternAtom(xfi->display, "_MOTIF_WM_HINTS", False);
|
|
|
|
xfi->_NET_CURRENT_DESKTOP = XInternAtom(xfi->display, "_NET_CURRENT_DESKTOP", False);
|
|
|
|
xfi->_NET_WORKAREA = XInternAtom(xfi->display, "_NET_WORKAREA", False);
|
|
|
|
xfi->_NET_WM_STATE = XInternAtom(xfi->display, "_NET_WM_STATE", False);
|
|
|
|
xfi->_NET_WM_STATE_FULLSCREEN = XInternAtom(xfi->display, "_NET_WM_STATE_FULLSCREEN", False);
|
2011-08-25 01:16:57 +04:00
|
|
|
xfi->_NET_WM_WINDOW_TYPE = XInternAtom(xfi->display, "_NET_WM_WINDOW_TYPE", False);
|
|
|
|
|
|
|
|
xfi->_NET_WM_WINDOW_TYPE_NORMAL = XInternAtom(xfi->display, "_NET_WM_WINDOW_TYPE_NORMAL", False);
|
|
|
|
xfi->_NET_WM_WINDOW_TYPE_DIALOG = XInternAtom(xfi->display, "_NET_WM_WINDOW_TYPE_DIALOG", False);
|
|
|
|
xfi->_NET_WM_WINDOW_TYPE_UTILITY = XInternAtom(xfi->display, "_NET_WM_WINDOW_TYPE_UTILITY", False);
|
|
|
|
xfi->_NET_WM_STATE_SKIP_TASKBAR = XInternAtom(xfi->display, "_NET_WM_STATE_SKIP_TASKBAR", False);
|
|
|
|
xfi->_NET_WM_STATE_SKIP_PAGER = XInternAtom(xfi->display, "_NET_WM_STATE_SKIP_PAGER", False);
|
2011-08-24 08:46:34 +04:00
|
|
|
|
2011-09-01 02:22:21 +04:00
|
|
|
xfi->_NET_WM_MOVERESIZE = XInternAtom(xfi->display, "_NET_WM_MOVERESIZE", False);
|
|
|
|
|
2011-09-21 16:36:49 +04:00
|
|
|
xfi->WM_PROTOCOLS = XInternAtom(xfi->display, "WM_PROTOCOLS", False);
|
|
|
|
xfi->WM_DELETE_WINDOW = XInternAtom(xfi->display, "WM_DELETE_WINDOW", False);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
xf_kbd_init(xfi);
|
|
|
|
|
2011-09-07 10:19:11 +04:00
|
|
|
xfi->clrconv = xnew(CLRCONV);
|
2011-08-26 22:48:51 +04:00
|
|
|
xfi->clrconv->palette = NULL;
|
|
|
|
xfi->clrconv->alpha = 1;
|
|
|
|
xfi->clrconv->invert = 0;
|
|
|
|
xfi->clrconv->rgb555 = 0;
|
|
|
|
|
|
|
|
xfi->cache = cache_new(instance->settings);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
xfi->xfds = ConnectionNumber(xfi->display);
|
|
|
|
xfi->screen_number = DefaultScreen(xfi->display);
|
|
|
|
xfi->screen = ScreenOfDisplay(xfi->display, xfi->screen_number);
|
|
|
|
xfi->depth = DefaultDepthOfScreen(xfi->screen);
|
|
|
|
xfi->big_endian = (ImageByteOrder(xfi->display) == MSBFirst);
|
|
|
|
|
2011-08-27 02:33:07 +04:00
|
|
|
xfi->mouse_motion = settings->mouse_motion;
|
2011-08-26 21:37:23 +04:00
|
|
|
xfi->complex_regions = True;
|
2011-10-07 23:50:07 +04:00
|
|
|
xfi->decorations = settings->decorations;
|
2011-08-17 22:51:17 +04:00
|
|
|
xfi->remote_app = settings->remote_app;
|
2011-08-19 19:12:30 +04:00
|
|
|
xfi->fullscreen = settings->fullscreen;
|
2011-10-05 02:46:49 +04:00
|
|
|
xfi->grab_keyboard = settings->grab_keyboard;
|
2011-10-07 23:50:07 +04:00
|
|
|
xfi->fullscreen_toggle = True;
|
2011-09-23 08:06:39 +04:00
|
|
|
xfi->sw_gdi = settings->sw_gdi;
|
2011-08-17 22:13:44 +04:00
|
|
|
|
2011-08-31 04:59:42 +04:00
|
|
|
xf_detect_monitors(xfi, settings);
|
2011-08-20 07:15:49 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
boolean xf_post_connect(freerdp* instance)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
2011-08-07 21:41:54 +04:00
|
|
|
XGCValues gcv;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
xfi = GET_XFI(instance);
|
|
|
|
SET_XFI(instance->update, xfi);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
if (xf_get_pixmap_info(xfi) != True)
|
|
|
|
return False;
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
if (xfi->sw_gdi)
|
|
|
|
{
|
|
|
|
GDI* gdi;
|
2011-09-28 01:10:07 +04:00
|
|
|
uint32 flags;
|
|
|
|
|
|
|
|
flags = CLRCONV_ALPHA;
|
|
|
|
|
|
|
|
if (xfi->bpp > 16)
|
|
|
|
flags |= CLRBUF_32BPP;
|
|
|
|
else
|
|
|
|
flags |= CLRBUF_16BPP;
|
|
|
|
|
2011-10-05 02:35:47 +04:00
|
|
|
gdi_init(instance, flags, NULL);
|
2011-09-23 08:06:39 +04:00
|
|
|
gdi = GET_GDI(instance->update);
|
|
|
|
xfi->primary_buffer = gdi->primary_buffer;
|
|
|
|
}
|
|
|
|
else
|
2011-08-26 22:48:51 +04:00
|
|
|
{
|
|
|
|
xfi->srcBpp = instance->settings->color_depth;
|
|
|
|
xf_gdi_register_update_callbacks(instance->update);
|
2011-09-12 05:22:03 +04:00
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
xfi->hdc = gdi_GetDC();
|
|
|
|
xfi->hdc->bitsPerPixel = xfi->bpp;
|
|
|
|
xfi->hdc->bytesPerPixel = xfi->bpp / 8;
|
|
|
|
|
|
|
|
xfi->hdc->alpha = xfi->clrconv->alpha;
|
|
|
|
xfi->hdc->invert = xfi->clrconv->invert;
|
|
|
|
xfi->hdc->rgb555 = xfi->clrconv->rgb555;
|
|
|
|
|
|
|
|
xfi->hdc->hwnd = (HGDI_WND) malloc(sizeof(GDI_WND));
|
|
|
|
xfi->hdc->hwnd->invalid = gdi_CreateRectRgn(0, 0, 0, 0);
|
|
|
|
xfi->hdc->hwnd->invalid->null = 1;
|
|
|
|
|
|
|
|
xfi->hdc->hwnd->count = 32;
|
|
|
|
xfi->hdc->hwnd->cinvalid = (HGDI_RGN) malloc(sizeof(GDI_RGN) * xfi->hdc->hwnd->count);
|
|
|
|
xfi->hdc->hwnd->ninvalid = 0;
|
|
|
|
|
|
|
|
xfi->primary_buffer = (uint8*) xzalloc(xfi->width * xfi->height * xfi->bpp);
|
|
|
|
|
2011-09-12 05:22:03 +04:00
|
|
|
if (instance->settings->rfx_codec)
|
|
|
|
xfi->rfx_context = (void*) rfx_context_new();
|
2011-10-03 23:42:32 +04:00
|
|
|
|
|
|
|
if (instance->settings->ns_codec)
|
|
|
|
xfi->nsc_context = (void*) nsc_context_new();
|
2011-08-26 22:48:51 +04:00
|
|
|
}
|
2011-08-26 02:07:52 +04:00
|
|
|
|
2011-10-07 23:50:07 +04:00
|
|
|
xfi->width = instance->settings->width;
|
|
|
|
xfi->height = instance->settings->height;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-10-04 14:44:52 +04:00
|
|
|
xf_create_window(xfi);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-08-18 09:16:49 +04:00
|
|
|
memset(&gcv, 0, sizeof(gcv));
|
|
|
|
xfi->modifier_map = XGetModifierMapping(xfi->display);
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-10-10 05:23:18 +04:00
|
|
|
xfi->gc = XCreateGC(xfi->display, xfi->drawable, GCGraphicsExposures, &gcv);
|
|
|
|
xfi->primary = XCreatePixmap(xfi->display, xfi->drawable, xfi->width, xfi->height, xfi->depth);
|
2011-08-26 22:48:51 +04:00
|
|
|
xfi->drawing = xfi->primary;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
2011-10-10 05:23:18 +04:00
|
|
|
xfi->bitmap_mono = XCreatePixmap(xfi->display, xfi->drawable, 8, 8, 1);
|
2011-09-12 06:32:22 +04:00
|
|
|
xfi->gc_mono = XCreateGC(xfi->display, xfi->bitmap_mono, GCGraphicsExposures, &gcv);
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
XSetForeground(xfi->display, xfi->gc, BlackPixelOfScreen(xfi->screen));
|
|
|
|
XFillRectangle(xfi->display, xfi->primary, xfi->gc, 0, 0, xfi->width, xfi->height);
|
|
|
|
|
2011-08-07 22:09:18 +04:00
|
|
|
xfi->image = XCreateImage(xfi->display, xfi->visual, xfi->depth, ZPixmap, 0,
|
2011-09-23 08:06:39 +04:00
|
|
|
(char*) xfi->primary_buffer, xfi->width, xfi->height, xfi->scanline_pad, 0);
|
2011-08-07 22:09:18 +04:00
|
|
|
|
2011-09-14 22:47:04 +04:00
|
|
|
xfi->bmp_codec_none = (uint8*) xmalloc(64 * 64 * 4);
|
|
|
|
|
2011-09-23 08:06:39 +04:00
|
|
|
if (xfi->sw_gdi)
|
|
|
|
{
|
|
|
|
instance->update->BeginPaint = xf_sw_begin_paint;
|
|
|
|
instance->update->EndPaint = xf_sw_end_paint;
|
|
|
|
instance->update->DesktopResize = xf_sw_desktop_resize;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
instance->update->BeginPaint = xf_hw_begin_paint;
|
|
|
|
instance->update->EndPaint = xf_hw_end_paint;
|
|
|
|
instance->update->DesktopResize = xf_hw_desktop_resize;
|
|
|
|
}
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-09-29 08:33:16 +04:00
|
|
|
instance->update->PointerPosition = xf_pointer_position;
|
|
|
|
instance->update->PointerSystem = xf_pointer_system;
|
|
|
|
instance->update->PointerColor = xf_pointer_color;
|
|
|
|
instance->update->PointerNew = xf_pointer_new;
|
|
|
|
instance->update->PointerCached = xf_pointer_cached;
|
|
|
|
|
2011-08-22 01:32:18 +04:00
|
|
|
xfi->rail = rail_new(instance->settings);
|
2011-08-18 00:45:09 +04:00
|
|
|
instance->update->rail = (void*) xfi->rail;
|
|
|
|
rail_register_update_callbacks(xfi->rail, instance->update);
|
|
|
|
xf_rail_register_callbacks(xfi, xfi->rail);
|
2011-08-16 08:22:00 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
freerdp_chanman_post_connect(GET_CHANMAN(instance), instance);
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
xf_tsmf_init(xfi, xv_port);
|
2011-09-23 18:49:59 +04:00
|
|
|
|
|
|
|
if (xfi->remote_app != True)
|
|
|
|
xf_cliprdr_init(xfi, GET_CHANMAN(instance));
|
2011-09-20 12:27:59 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-09-29 09:03:07 +04:00
|
|
|
boolean xf_authenticate(freerdp* instance, char** username, char** password, char** domain)
|
|
|
|
{
|
|
|
|
*password = xmalloc(password_size * sizeof(char));
|
|
|
|
|
|
|
|
if (freerdp_passphrase_read("Password: ", *password, password_size) == NULL)
|
|
|
|
return False;
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-26 06:01:33 +04:00
|
|
|
int xf_process_ui_args(rdpSettings* settings, const char* opt, const char* val, void* user_data)
|
|
|
|
{
|
2011-09-20 12:27:59 +04:00
|
|
|
int argc = 0;
|
|
|
|
|
2011-08-26 06:01:33 +04:00
|
|
|
if (strcmp("--kbd-list", opt) == 0)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
rdpKeyboardLayout* layouts;
|
|
|
|
|
|
|
|
layouts = freerdp_kbd_get_layouts(RDP_KEYBOARD_LAYOUT_TYPE_STANDARD);
|
|
|
|
printf("\nKeyboard Layouts\n");
|
|
|
|
for (i = 0; layouts[i].code; i++)
|
|
|
|
printf("0x%08X\t%s\n", layouts[i].code, layouts[i].name);
|
|
|
|
free(layouts);
|
|
|
|
|
|
|
|
layouts = freerdp_kbd_get_layouts(RDP_KEYBOARD_LAYOUT_TYPE_VARIANT);
|
|
|
|
printf("\nKeyboard Layout Variants\n");
|
|
|
|
for (i = 0; layouts[i].code; i++)
|
|
|
|
printf("0x%08X\t%s\n", layouts[i].code, layouts[i].name);
|
|
|
|
free(layouts);
|
|
|
|
|
|
|
|
layouts = freerdp_kbd_get_layouts(RDP_KEYBOARD_LAYOUT_TYPE_IME);
|
|
|
|
printf("\nKeyboard Input Method Editors (IMEs)\n");
|
|
|
|
for (i = 0; layouts[i].code; i++)
|
|
|
|
printf("0x%08X\t%s\n", layouts[i].code, layouts[i].name);
|
|
|
|
free(layouts);
|
|
|
|
|
|
|
|
exit(0);
|
|
|
|
}
|
2011-09-20 12:27:59 +04:00
|
|
|
else if (strcmp("--xv-port", opt) == 0)
|
|
|
|
{
|
|
|
|
xv_port = atoi(val);
|
|
|
|
argc = 2;
|
|
|
|
}
|
2011-08-26 06:01:33 +04:00
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
return argc;
|
2011-08-26 06:01:33 +04:00
|
|
|
}
|
|
|
|
|
2011-08-18 01:28:26 +04:00
|
|
|
int xf_process_plugin_args(rdpSettings* settings, const char* name, RDP_PLUGIN_DATA* plugin_data, void* user_data)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
|
|
|
rdpChanMan* chanman = (rdpChanMan*) user_data;
|
|
|
|
|
2011-09-02 21:29:17 +04:00
|
|
|
printf("loading plugin %s\n", name);
|
2011-08-07 17:52:40 +04:00
|
|
|
freerdp_chanman_load_plugin(chanman, settings, name, plugin_data);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
int xf_receive_channel_data(freerdp* instance, int channelId, uint8* data, int size, int flags, int total_size)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
|
|
|
return freerdp_chanman_data(instance, channelId, data, size, flags, total_size);
|
|
|
|
}
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
void xf_process_channel_event(rdpChanMan* chanman, freerdp* instance)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
2011-08-18 05:33:22 +04:00
|
|
|
xfInfo* xfi;
|
2011-08-18 01:28:26 +04:00
|
|
|
RDP_EVENT* event;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-08-18 05:33:22 +04:00
|
|
|
xfi = GET_XFI(instance);
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
event = freerdp_chanman_pop_event(chanman);
|
2011-08-18 05:33:22 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
if (event)
|
|
|
|
{
|
2011-08-18 05:33:22 +04:00
|
|
|
switch (event->event_class)
|
|
|
|
{
|
|
|
|
case RDP_EVENT_CLASS_RAIL:
|
|
|
|
xf_process_rail_event(xfi, chanman, event);
|
|
|
|
break;
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
case RDP_EVENT_CLASS_TSMF:
|
|
|
|
xf_process_tsmf_event(xfi, event);
|
2011-08-18 05:33:22 +04:00
|
|
|
break;
|
|
|
|
|
2011-09-20 12:27:59 +04:00
|
|
|
case RDP_EVENT_CLASS_CLIPRDR:
|
2011-09-23 07:37:17 +04:00
|
|
|
xf_process_cliprdr_event(xfi, event);
|
2011-08-07 17:52:40 +04:00
|
|
|
break;
|
2011-09-20 12:27:59 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2011-09-20 12:27:59 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
freerdp_event_free(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
void xf_window_free(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
XFreeModifiermap(xfi->modifier_map);
|
|
|
|
xfi->modifier_map = 0;
|
|
|
|
|
|
|
|
XFreeGC(xfi->display, xfi->gc);
|
|
|
|
xfi->gc = 0;
|
|
|
|
|
2011-08-18 06:31:27 +04:00
|
|
|
xf_DestroyWindow(xfi, xfi->window);
|
2011-08-09 06:24:12 +04:00
|
|
|
xfi->window = NULL;
|
2011-08-07 21:41:54 +04:00
|
|
|
|
|
|
|
if (xfi->primary)
|
|
|
|
{
|
|
|
|
XFreePixmap(xfi->display, xfi->primary);
|
|
|
|
xfi->primary = 0;
|
|
|
|
}
|
2011-09-07 09:51:29 +04:00
|
|
|
|
|
|
|
if (xfi->image)
|
|
|
|
{
|
|
|
|
xfi->image->data = NULL;
|
|
|
|
XDestroyImage(xfi->image);
|
|
|
|
xfi->image = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xfi->cache)
|
|
|
|
{
|
|
|
|
cache_free(xfi->cache);
|
|
|
|
xfi->cache = NULL;
|
|
|
|
}
|
2011-09-07 10:19:11 +04:00
|
|
|
|
|
|
|
xfree(xfi->clrconv);
|
|
|
|
rail_free(xfi->rail);
|
2011-09-20 12:27:59 +04:00
|
|
|
|
|
|
|
xf_tsmf_uninit(xfi);
|
2011-09-23 07:37:17 +04:00
|
|
|
xf_cliprdr_uninit(xfi);
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void xf_free(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
xf_window_free(xfi);
|
|
|
|
XCloseDisplay(xfi->display);
|
2011-08-13 07:46:00 +04:00
|
|
|
xfree(xfi);
|
2011-08-07 21:41:54 +04:00
|
|
|
}
|
|
|
|
|
2011-08-13 07:46:00 +04:00
|
|
|
int xfreerdp_run(freerdp* instance)
|
2011-08-07 17:52:40 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int fds;
|
2011-08-07 21:41:54 +04:00
|
|
|
xfInfo* xfi;
|
2011-08-07 17:52:40 +04:00
|
|
|
int max_fds;
|
|
|
|
int rcount;
|
|
|
|
int wcount;
|
|
|
|
void* rfds[32];
|
|
|
|
void* wfds[32];
|
|
|
|
fd_set rfds_set;
|
|
|
|
fd_set wfds_set;
|
|
|
|
rdpChanMan* chanman;
|
|
|
|
|
|
|
|
memset(rfds, 0, sizeof(rfds));
|
|
|
|
memset(wfds, 0, sizeof(wfds));
|
|
|
|
|
2011-08-22 13:42:16 +04:00
|
|
|
if (!instance->Connect(instance))
|
|
|
|
return 0;
|
2011-08-13 07:46:00 +04:00
|
|
|
|
2011-08-07 21:41:54 +04:00
|
|
|
xfi = GET_XFI(instance);
|
2011-08-07 17:52:40 +04:00
|
|
|
chanman = GET_CHANMAN(instance);
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
rcount = 0;
|
|
|
|
wcount = 0;
|
|
|
|
|
|
|
|
if (instance->GetFileDescriptor(instance, rfds, &rcount, wfds, &wcount) != True)
|
|
|
|
{
|
|
|
|
printf("Failed to get FreeRDP file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (freerdp_chanman_get_fds(chanman, instance, rfds, &rcount, wfds, &wcount) != True)
|
|
|
|
{
|
|
|
|
printf("Failed to get channel manager file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (xf_get_fds(instance, rfds, &rcount, wfds, &wcount) != True)
|
|
|
|
{
|
2011-08-07 21:41:54 +04:00
|
|
|
printf("Failed to get xfreerdp file descriptor\n");
|
2011-08-07 17:52:40 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_fds = 0;
|
|
|
|
FD_ZERO(&rfds_set);
|
2011-08-16 07:13:30 +04:00
|
|
|
FD_ZERO(&wfds_set);
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
for (i = 0; i < rcount; i++)
|
|
|
|
{
|
|
|
|
fds = (int)(long)(rfds[i]);
|
|
|
|
|
|
|
|
if (fds > max_fds)
|
|
|
|
max_fds = fds;
|
|
|
|
|
|
|
|
FD_SET(fds, &rfds_set);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (max_fds == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (select(max_fds + 1, &rfds_set, &wfds_set, NULL, NULL) == -1)
|
|
|
|
{
|
|
|
|
/* these are not really errors */
|
|
|
|
if (!((errno == EAGAIN) ||
|
|
|
|
(errno == EWOULDBLOCK) ||
|
|
|
|
(errno == EINPROGRESS) ||
|
|
|
|
(errno == EINTR))) /* signal occurred */
|
|
|
|
{
|
2011-08-07 21:41:54 +04:00
|
|
|
printf("xfreerdp_run: select failed\n");
|
2011-08-07 17:52:40 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (instance->CheckFileDescriptor(instance) != True)
|
|
|
|
{
|
|
|
|
printf("Failed to check FreeRDP file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (xf_check_fds(instance, &rfds_set) != True)
|
|
|
|
{
|
2011-08-07 21:41:54 +04:00
|
|
|
printf("Failed to check xfreerdp file descriptor\n");
|
2011-08-07 17:52:40 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (freerdp_chanman_check_fds(chanman, instance) != True)
|
|
|
|
{
|
|
|
|
printf("Failed to check channel manager file descriptor\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xf_process_channel_event(chanman, instance);
|
|
|
|
}
|
|
|
|
|
|
|
|
freerdp_chanman_close(chanman, instance);
|
|
|
|
freerdp_chanman_free(chanman);
|
2011-08-24 19:07:55 +04:00
|
|
|
instance->Disconnect(instance);
|
2011-09-07 09:51:29 +04:00
|
|
|
gdi_free(instance);
|
2011-08-07 17:52:40 +04:00
|
|
|
freerdp_free(instance);
|
2011-08-07 21:41:54 +04:00
|
|
|
xf_free(xfi);
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* thread_func(void* param)
|
|
|
|
{
|
|
|
|
struct thread_data* data;
|
|
|
|
data = (struct thread_data*) param;
|
|
|
|
|
2011-08-13 07:46:00 +04:00
|
|
|
xfreerdp_run(data->instance);
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
xfree(data);
|
|
|
|
|
|
|
|
pthread_detach(pthread_self());
|
|
|
|
|
|
|
|
g_thread_count--;
|
|
|
|
|
|
|
|
if (g_thread_count < 1)
|
2011-08-13 07:46:00 +04:00
|
|
|
freerdp_sem_signal(g_sem);
|
2011-08-07 17:52:40 +04:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
pthread_t thread;
|
|
|
|
freerdp* instance;
|
|
|
|
rdpChanMan* chanman;
|
2011-09-29 09:03:07 +04:00
|
|
|
struct thread_data* data;
|
2011-08-07 17:52:40 +04:00
|
|
|
|
2011-09-28 09:27:14 +04:00
|
|
|
freerdp_handle_signals();
|
|
|
|
|
2011-08-09 04:31:21 +04:00
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
freerdp_chanman_global_init();
|
|
|
|
|
|
|
|
g_sem = freerdp_sem_new(1);
|
|
|
|
|
|
|
|
instance = freerdp_new();
|
|
|
|
instance->PreConnect = xf_pre_connect;
|
|
|
|
instance->PostConnect = xf_post_connect;
|
2011-09-29 09:03:07 +04:00
|
|
|
instance->Authenticate = xf_authenticate;
|
2011-08-07 17:52:40 +04:00
|
|
|
instance->ReceiveChannelData = xf_receive_channel_data;
|
|
|
|
|
|
|
|
chanman = freerdp_chanman_new();
|
|
|
|
SET_CHANMAN(instance, chanman);
|
|
|
|
|
2011-10-10 05:43:31 +04:00
|
|
|
instance->settings->sw_gdi = False;
|
2011-08-26 22:48:51 +04:00
|
|
|
|
2011-08-26 06:01:33 +04:00
|
|
|
if (freerdp_parse_args(instance->settings, argc, argv,
|
|
|
|
xf_process_plugin_args, chanman, xf_process_ui_args, NULL) < 0)
|
2011-08-24 11:12:07 +04:00
|
|
|
return 1;
|
2011-09-19 02:44:49 +04:00
|
|
|
|
2011-08-07 17:52:40 +04:00
|
|
|
data = (struct thread_data*) xzalloc(sizeof(struct thread_data));
|
|
|
|
data->instance = instance;
|
|
|
|
|
|
|
|
g_thread_count++;
|
|
|
|
pthread_create(&thread, 0, thread_func, data);
|
|
|
|
|
|
|
|
while (g_thread_count > 0)
|
|
|
|
{
|
|
|
|
freerdp_sem_wait(g_sem);
|
|
|
|
}
|
|
|
|
|
|
|
|
freerdp_chanman_global_uninit();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|