2011-08-07 21:52:40 +08: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-08 01:41:54 +08:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
#include <errno.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <sys/select.h>
|
|
|
|
#include <freerdp/utils/args.h>
|
|
|
|
#include <freerdp/utils/memory.h>
|
|
|
|
#include <freerdp/utils/semaphore.h>
|
|
|
|
#include <freerdp/utils/event.h>
|
|
|
|
#include <freerdp/constants.h>
|
|
|
|
|
|
|
|
#include "xf_event.h"
|
|
|
|
|
|
|
|
#include "xfreerdp.h"
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
#define MWM_HINTS_DECORATIONS (1L << 1)
|
|
|
|
#define PROP_MOTIF_WM_HINTS_ELEMENTS 5
|
|
|
|
|
|
|
|
struct _PropMotifWmHints
|
|
|
|
{
|
|
|
|
uint32 flags;
|
|
|
|
uint32 functions;
|
|
|
|
uint32 decorations;
|
|
|
|
sint32 inputMode;
|
|
|
|
uint32 status;
|
|
|
|
};
|
|
|
|
typedef struct _PropMotifWmHints PropMotifWmHints;
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
freerdp_sem g_sem;
|
|
|
|
static int g_thread_count = 0;
|
|
|
|
|
|
|
|
struct thread_data
|
|
|
|
{
|
|
|
|
freerdp* instance;
|
|
|
|
};
|
|
|
|
|
|
|
|
void xf_begin_paint(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
GDI* gdi;
|
|
|
|
|
|
|
|
gdi = GET_GDI(update);
|
|
|
|
gdi->primary->hdc->hwnd->invalid->null = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_end_paint(rdpUpdate* update)
|
|
|
|
{
|
|
|
|
GDI* gdi;
|
|
|
|
xfInfo* xfi;
|
2011-08-08 01:41:54 +08:00
|
|
|
XImage* image;
|
2011-08-07 21:52:40 +08:00
|
|
|
|
|
|
|
gdi = GET_GDI(update);
|
|
|
|
xfi = GET_XFI(update);
|
|
|
|
|
|
|
|
if (gdi->primary->hdc->hwnd->invalid->null)
|
|
|
|
return;
|
2011-08-08 01:41:54 +08:00
|
|
|
|
|
|
|
image = XCreateImage(xfi->display, xfi->visual, xfi->depth, ZPixmap, 0,
|
|
|
|
(char*) gdi->primary_buffer, gdi->width, gdi->height, xfi->scanline_pad, 0);
|
|
|
|
|
|
|
|
XPutImage(xfi->display, xfi->primary, xfi->gc_default, image, 0, 0, 0, 0, gdi->width, gdi->height);
|
|
|
|
|
|
|
|
XCopyArea(xfi->display, xfi->primary, xfi->window, xfi->gc_default,
|
|
|
|
gdi->primary->hdc->hwnd->invalid->x,
|
|
|
|
gdi->primary->hdc->hwnd->invalid->y,
|
|
|
|
gdi->primary->hdc->hwnd->invalid->w,
|
|
|
|
gdi->primary->hdc->hwnd->invalid->h,
|
|
|
|
gdi->primary->hdc->hwnd->invalid->x,
|
|
|
|
gdi->primary->hdc->hwnd->invalid->y);
|
|
|
|
|
|
|
|
XFlush(xfi->display);
|
|
|
|
|
|
|
|
XFree(image);
|
2011-08-07 21:52:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
boolean xf_get_fds(freerdp* instance, void** rfds, int* rcount, void** wfds, int* wcount)
|
|
|
|
{
|
|
|
|
xfInfo* xfi = GET_XFI(instance);
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
rfds[*rcount] = (void*)(long)(xfi->xfds);
|
|
|
|
(*rcount)++;
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean xf_check_fds(freerdp* instance, fd_set* set)
|
|
|
|
{
|
2011-08-08 01:41:54 +08: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 21:52:40 +08:00
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean xf_pre_connect(freerdp* instance)
|
|
|
|
{
|
|
|
|
xfInfo* xfi;
|
|
|
|
rdpSettings* settings;
|
|
|
|
|
|
|
|
xfi = (xfInfo*) xzalloc(sizeof(xfInfo));
|
|
|
|
SET_XFI(instance, xfi);
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
xfi->instance = instance;
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
settings = instance->settings;
|
|
|
|
|
|
|
|
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;
|
|
|
|
settings->order_support[NEG_MEMBLT_INDEX] = True;
|
|
|
|
settings->order_support[NEG_MEM3BLT_INDEX] = False;
|
|
|
|
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-08 01:41:54 +08:00
|
|
|
xfi->display = XOpenDisplay(NULL);
|
|
|
|
|
|
|
|
if (xfi->display == NULL)
|
|
|
|
{
|
|
|
|
printf("xf_pre_connect: failed to open display: %s\n", XDisplayName(NULL));
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
xf_kbd_init(xfi);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
xfi->decoration = True;
|
|
|
|
xfi->mouse_motion = True;
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_toggle_fullscreen(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
Pixmap contents = 0;
|
|
|
|
|
|
|
|
contents = XCreatePixmap(xfi->display, xfi->window, xfi->width, xfi->height, xfi->depth);
|
|
|
|
XCopyArea(xfi->display, xfi->primary, contents, xfi->gc, 0, 0, xfi->width, xfi->height, 0, 0);
|
|
|
|
|
|
|
|
//xf_destroy_window(xfi);
|
|
|
|
xfi->fullscreen = (xfi->fullscreen) ? False : True;
|
|
|
|
//xf_post_connect(xfi);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean xf_post_connect(freerdp* instance)
|
|
|
|
{
|
|
|
|
GDI* gdi;
|
|
|
|
xfInfo* xfi;
|
2011-08-08 01:41:54 +08:00
|
|
|
int input_mask;
|
|
|
|
XEvent xevent;
|
|
|
|
XGCValues gcv;
|
|
|
|
Atom kill_atom;
|
|
|
|
Atom protocol_atom;
|
|
|
|
XSizeHints *size_hints;
|
|
|
|
XClassHint *class_hints;
|
|
|
|
XSetWindowAttributes attribs;
|
2011-08-07 21:52:40 +08:00
|
|
|
|
|
|
|
xfi = GET_XFI(instance);
|
|
|
|
SET_XFI(instance->update, xfi);
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
if (xf_get_pixmap_info(xfi) != True)
|
|
|
|
return False;
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
gdi_init(instance, CLRCONV_ALPHA | CLRBUF_16BPP | CLRBUF_32BPP);
|
|
|
|
gdi = GET_GDI(instance->update);
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
if (xfi->fullscreen)
|
|
|
|
xfi->decoration = False;
|
|
|
|
|
|
|
|
xfi->width = xfi->fullscreen ? WidthOfScreen(xfi->screen) : gdi->width;
|
|
|
|
xfi->height = xfi->fullscreen ? HeightOfScreen(xfi->screen) : gdi->height;
|
|
|
|
|
|
|
|
attribs.background_pixel = BlackPixelOfScreen(xfi->screen);
|
|
|
|
attribs.border_pixel = WhitePixelOfScreen(xfi->screen);
|
|
|
|
attribs.backing_store = xfi->primary ? NotUseful : Always;
|
|
|
|
attribs.override_redirect = xfi->fullscreen;
|
|
|
|
attribs.colormap = xfi->colormap;
|
|
|
|
|
|
|
|
xfi->window = XCreateWindow(xfi->display, RootWindowOfScreen(xfi->screen),
|
|
|
|
0, 0, xfi->width, xfi->height, 0, xfi->depth, InputOutput, xfi->visual,
|
|
|
|
CWBackPixel | CWBackingStore | CWOverrideRedirect | CWColormap |
|
|
|
|
CWBorderPixel, &attribs);
|
|
|
|
|
|
|
|
class_hints = XAllocClassHint();
|
|
|
|
|
|
|
|
if (class_hints != NULL)
|
|
|
|
{
|
|
|
|
class_hints->res_name = "xfreerdp";
|
|
|
|
class_hints->res_class = "freerdp";
|
|
|
|
XSetClassHint(xfi->display, xfi->window, class_hints);
|
|
|
|
XFree(class_hints);
|
|
|
|
}
|
|
|
|
|
|
|
|
size_hints = XAllocSizeHints();
|
|
|
|
|
|
|
|
if (size_hints)
|
|
|
|
{
|
|
|
|
size_hints->flags = PMinSize | PMaxSize;
|
|
|
|
size_hints->min_width = size_hints->max_width = xfi->width;
|
|
|
|
size_hints->min_height = size_hints->max_height = xfi->height;
|
|
|
|
XSetWMNormalHints(xfi->display, xfi->window, size_hints);
|
|
|
|
XFree(size_hints);
|
|
|
|
}
|
|
|
|
|
|
|
|
input_mask =
|
|
|
|
KeyPressMask | KeyReleaseMask | ButtonPressMask | ButtonReleaseMask |
|
|
|
|
VisibilityChangeMask | FocusChangeMask | StructureNotifyMask |
|
|
|
|
PointerMotionMask | ExposureMask;
|
|
|
|
|
|
|
|
XSelectInput(xfi->display, xfi->window, input_mask);
|
|
|
|
XMapWindow(xfi->display, xfi->window);
|
|
|
|
|
|
|
|
if (xfi->decoration == False)
|
|
|
|
{
|
|
|
|
Atom atom;
|
|
|
|
PropMotifWmHints hints;
|
|
|
|
|
|
|
|
hints.decorations = 0;
|
|
|
|
hints.flags = MWM_HINTS_DECORATIONS;
|
|
|
|
|
|
|
|
atom = XInternAtom(xfi->display, "_MOTIF_WM_HINTS", False);
|
|
|
|
|
|
|
|
if (!atom)
|
|
|
|
{
|
|
|
|
printf("xf_post_connect: failed to obtain atom _MOTIF_WM_HINTS\n");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
XChangeProperty(xfi->display, xfi->window, atom, atom, 32,
|
|
|
|
PropModeReplace, (uint8*) &hints, PROP_MOTIF_WM_HINTS_ELEMENTS);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xfi->fullscreen)
|
|
|
|
{
|
|
|
|
XSetInputFocus(xfi->display, xfi->window, RevertToParent, CurrentTime);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* wait for VisibilityNotify */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
XMaskEvent(xfi->display, VisibilityChangeMask, &xevent);
|
|
|
|
}
|
|
|
|
while (xevent.type != VisibilityNotify);
|
|
|
|
|
|
|
|
xfi->unobscured = (xevent.xvisibility.state == VisibilityUnobscured);
|
|
|
|
memset(&gcv, 0, sizeof(gcv));
|
|
|
|
|
|
|
|
protocol_atom = XInternAtom(xfi->display, "WM_PROTOCOLS", True);
|
|
|
|
kill_atom = XInternAtom(xfi->display, "WM_DELETE_WINDOW", True);
|
|
|
|
XSetWMProtocols(xfi->display, xfi->window, &kill_atom, 1);
|
|
|
|
|
|
|
|
if (!xfi->gc)
|
|
|
|
xfi->gc = XCreateGC(xfi->display, xfi->window, GCGraphicsExposures, &gcv);
|
|
|
|
|
|
|
|
if (!xfi->primary)
|
|
|
|
xfi->primary = XCreatePixmap(xfi->display, xfi->window, xfi->width, xfi->height, xfi->depth);
|
|
|
|
|
|
|
|
xfi->drawing = xfi->primary;
|
|
|
|
|
|
|
|
xfi->bitmap_mono = XCreatePixmap(xfi->display, xfi->window, 8, 8, 1);
|
|
|
|
xfi->gc_mono = XCreateGC(xfi->display, xfi->bitmap_mono, GCGraphicsExposures, &gcv);
|
|
|
|
xfi->gc_default = XCreateGC(xfi->display, xfi->window, GCGraphicsExposures, &gcv);
|
|
|
|
XSetForeground(xfi->display, xfi->gc, BlackPixelOfScreen(xfi->screen));
|
|
|
|
XFillRectangle(xfi->display, xfi->primary, xfi->gc, 0, 0, xfi->width, xfi->height);
|
|
|
|
xfi->modifier_map = XGetModifierMapping(xfi->display);
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
instance->update->BeginPaint = xf_begin_paint;
|
|
|
|
instance->update->EndPaint = xf_end_paint;
|
|
|
|
|
|
|
|
freerdp_chanman_post_connect(GET_CHANMAN(instance), instance);
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
int xf_process_plugin_args(rdpSettings* settings, const char* name, FRDP_PLUGIN_DATA* plugin_data, void* user_data)
|
2011-08-07 21:52:40 +08:00
|
|
|
{
|
|
|
|
rdpChanMan* chanman = (rdpChanMan*) user_data;
|
|
|
|
|
|
|
|
printf("Load plugin %s\n", name);
|
|
|
|
freerdp_chanman_load_plugin(chanman, settings, name, plugin_data);
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
int xf_receive_channel_data(freerdp* instance, int channelId, uint8* data, int size, int flags, int total_size)
|
2011-08-07 21:52:40 +08:00
|
|
|
{
|
|
|
|
return freerdp_chanman_data(instance, channelId, data, size, flags, total_size);
|
|
|
|
}
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
void xf_process_cb_sync_event(rdpChanMan* chanman, freerdp* instance)
|
2011-08-07 21:52:40 +08:00
|
|
|
{
|
|
|
|
FRDP_EVENT* event;
|
|
|
|
FRDP_CB_FORMAT_LIST_EVENT* format_list_event;
|
|
|
|
|
|
|
|
event = freerdp_event_new(FRDP_EVENT_TYPE_CB_FORMAT_LIST, NULL, NULL);
|
|
|
|
|
|
|
|
format_list_event = (FRDP_CB_FORMAT_LIST_EVENT*)event;
|
|
|
|
format_list_event->num_formats = 0;
|
|
|
|
|
|
|
|
freerdp_chanman_send_event(chanman, "cliprdr", event);
|
|
|
|
}
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
void xf_process_channel_event(rdpChanMan* chanman, freerdp* instance)
|
2011-08-07 21:52:40 +08:00
|
|
|
{
|
|
|
|
FRDP_EVENT* event;
|
|
|
|
|
|
|
|
event = freerdp_chanman_pop_event(chanman);
|
|
|
|
if (event)
|
|
|
|
{
|
|
|
|
switch (event->event_type)
|
|
|
|
{
|
|
|
|
case FRDP_EVENT_TYPE_CB_SYNC:
|
|
|
|
xf_process_cb_sync_event(chanman, instance);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("xf_process_channel_event: unknown event type %d\n", event->event_type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
freerdp_event_free(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-08 01:41:54 +08:00
|
|
|
void xf_window_free(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
XFreeModifiermap(xfi->modifier_map);
|
|
|
|
xfi->modifier_map = 0;
|
|
|
|
|
|
|
|
XFreeGC(xfi->display, xfi->gc_default);
|
|
|
|
xfi->gc_default = 0;
|
|
|
|
|
|
|
|
XFreeGC(xfi->display, xfi->gc_mono);
|
|
|
|
xfi->gc_mono = 0;
|
|
|
|
|
|
|
|
/* Note: valgrind reports this at lost no matter what */
|
|
|
|
XFreePixmap(xfi->display, xfi->bitmap_mono);
|
|
|
|
xfi->bitmap_mono = 0;
|
|
|
|
|
|
|
|
XFreeGC(xfi->display, xfi->gc);
|
|
|
|
xfi->gc = 0;
|
|
|
|
|
|
|
|
XDestroyWindow(xfi->display, xfi->window);
|
|
|
|
xfi->window = 0;
|
|
|
|
|
|
|
|
if (xfi->primary)
|
|
|
|
{
|
|
|
|
XFreePixmap(xfi->display, xfi->primary);
|
|
|
|
xfi->primary = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void xf_free(xfInfo* xfi)
|
|
|
|
{
|
|
|
|
xf_window_free(xfi);
|
|
|
|
XCloseDisplay(xfi->display);
|
|
|
|
}
|
|
|
|
|
2011-08-07 21:52:40 +08:00
|
|
|
int dfreerdp_run(freerdp* instance)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int fds;
|
2011-08-08 01:41:54 +08:00
|
|
|
xfInfo* xfi;
|
2011-08-07 21:52:40 +08: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-08 01:41:54 +08:00
|
|
|
xfi = GET_XFI(instance);
|
2011-08-07 21:52:40 +08:00
|
|
|
chanman = GET_CHANMAN(instance);
|
|
|
|
|
|
|
|
instance->Connect(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-08 01:41:54 +08:00
|
|
|
printf("Failed to get xfreerdp file descriptor\n");
|
2011-08-07 21:52:40 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
max_fds = 0;
|
|
|
|
FD_ZERO(&rfds_set);
|
|
|
|
|
|
|
|
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-08 01:41:54 +08:00
|
|
|
printf("xfreerdp_run: select failed\n");
|
2011-08-07 21:52:40 +08: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-08 01:41:54 +08:00
|
|
|
printf("Failed to check xfreerdp file descriptor\n");
|
2011-08-07 21:52:40 +08: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);
|
|
|
|
freerdp_free(instance);
|
2011-08-08 01:41:54 +08:00
|
|
|
xf_free(xfi);
|
2011-08-07 21:52:40 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void* thread_func(void* param)
|
|
|
|
{
|
|
|
|
struct thread_data* data;
|
|
|
|
data = (struct thread_data*) param;
|
|
|
|
|
|
|
|
dfreerdp_run(data->instance);
|
|
|
|
|
|
|
|
xfree(data);
|
|
|
|
|
|
|
|
pthread_detach(pthread_self());
|
|
|
|
|
|
|
|
g_thread_count--;
|
|
|
|
|
|
|
|
if (g_thread_count < 1)
|
|
|
|
freerdp_sem_signal(&g_sem);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
pthread_t thread;
|
|
|
|
freerdp* instance;
|
|
|
|
struct thread_data* data;
|
|
|
|
rdpChanMan* chanman;
|
|
|
|
|
|
|
|
freerdp_chanman_global_init();
|
|
|
|
|
|
|
|
g_sem = freerdp_sem_new(1);
|
|
|
|
|
|
|
|
instance = freerdp_new();
|
|
|
|
instance->PreConnect = xf_pre_connect;
|
|
|
|
instance->PostConnect = xf_post_connect;
|
|
|
|
instance->ReceiveChannelData = xf_receive_channel_data;
|
|
|
|
|
|
|
|
chanman = freerdp_chanman_new();
|
|
|
|
SET_CHANMAN(instance, chanman);
|
|
|
|
|
|
|
|
freerdp_parse_args(instance->settings, argc, argv, xf_process_plugin_args, chanman, NULL, NULL);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|