Skip to content

Commit

Permalink
Merge pull request #625 from speidy/proxy_session_info
Browse files Browse the repository at this point in the history
Pass session info in proxy mode
  • Loading branch information
speidy committed Jan 23, 2017
2 parents e217e68 + b7da395 commit 482671f
Show file tree
Hide file tree
Showing 9 changed files with 126 additions and 4 deletions.
11 changes: 11 additions & 0 deletions libxrdp/libxrdp.c
Expand Up @@ -1487,6 +1487,17 @@ libxrdp_fastpath_send_frame_marker(struct xrdp_session *session,
}
free_stream(s);
return 0;
}

/*****************************************************************************/
int EXPORT_CC
libxrdp_send_session_info(struct xrdp_session *session, const char *data,
int data_bytes)
{
struct xrdp_rdp *rdp;

LLOGLN(10, ("libxrdp_send_session_info:"));
rdp = (struct xrdp_rdp *) (session->rdp);
return xrdp_rdp_send_session_info(rdp, data, data_bytes);
}

3 changes: 3 additions & 0 deletions libxrdp/libxrdp.h
Expand Up @@ -402,6 +402,9 @@ int APP_CC
xrdp_rdp_disconnect(struct xrdp_rdp *self);
int APP_CC
xrdp_rdp_send_deactivate(struct xrdp_rdp *self);
int APP_CC
xrdp_rdp_send_session_info(struct xrdp_rdp *self, const char *data,
int data_bytes);

/* xrdp_orders.c */
struct xrdp_orders * APP_CC
Expand Down
3 changes: 3 additions & 0 deletions libxrdp/libxrdpinc.h
Expand Up @@ -247,5 +247,8 @@ libxrdp_fastpath_send_surface(struct xrdp_session *session,
int EXPORT_CC
libxrdp_fastpath_send_frame_marker(struct xrdp_session *session,
int frame_action, int frame_id);
int EXPORT_CC
libxrdp_send_session_info(struct xrdp_session *session, const char *data,
int data_bytes);

#endif
40 changes: 40 additions & 0 deletions libxrdp/xrdp_rdp.c
Expand Up @@ -1275,3 +1275,43 @@ xrdp_rdp_send_deactivate(struct xrdp_rdp *self)
DEBUG(("out xrdp_rdp_send_deactivate"));
return 0;
}

/*****************************************************************************/
int APP_CC
xrdp_rdp_send_session_info(struct xrdp_rdp *self, const char *data,
int data_bytes)
{
struct stream *s;

LLOGLN(0, ("xrdp_rdp_send_session_info: data_bytes %d", data_bytes));
make_stream(s);
init_stream(s, 8192);

if (xrdp_rdp_init_data(self, s) != 0)
{
free_stream(s);
return 1;
}

if (s_check_rem_out(s, data_bytes))
{
out_uint8a(s, data, data_bytes);
}
else
{
free_stream(s);
return 1;
}

s_mark_end(s);

if (xrdp_rdp_send_data(self, s, RDP_DATA_PDU_LOGON) != 0)
{
free_stream(s);
return 1;
}

free_stream(s);
return 0;
}

27 changes: 27 additions & 0 deletions neutrinordp/xrdp-neutrinordp.c
Expand Up @@ -1954,6 +1954,28 @@ lfreerdp_verify_certificate(freerdp *instance, char *subject, char *issuer,
return 1;
}

/******************************************************************************/
static int DEFAULT_CC
lfreerdp_session_info(freerdp* instance, uint8* data, int data_bytes)
{
struct mod *mod;
int error;

LLOGLN(10, ("lfreerdp_session_info:"));
error = 0;
mod = ((struct mod_context *)(instance->context))->modi;
if (mod != 0)
{
LLOGLN(10, ("lfreerdp_session_info: mod->server_session_info %p",
mod->server_session_info));
if (mod->server_session_info != 0)
{
error = mod->server_session_info(mod, (char *)data, data_bytes);
}
}
return error;
}

/******************************************************************************/
tintptr EXPORT_CC
mod_init(void)
Expand Down Expand Up @@ -1988,6 +2010,11 @@ mod_init(void)
mod->inst->ReceiveChannelData = lfreerdp_receive_channel_data;
mod->inst->Authenticate = lfreerdp_authenticate;
mod->inst->VerifyCertificate = lfreerdp_verify_certificate;
#if defined(VERSION_STRUCT_RDP_FREERDP)
#if VERSION_STRUCT_RDP_FREERDP > 0
mod->inst->SessionInfo = lfreerdp_session_info;
#endif
#endif

freerdp_context_new(mod->inst);

Expand Down
27 changes: 24 additions & 3 deletions neutrinordp/xrdp-neutrinordp.h
Expand Up @@ -151,9 +151,30 @@ struct mod
int flags);
int (*server_set_pointer_ex)(struct mod *mod, int x, int y, char *data,
char *mask, int bpp);

tintptr server_dumby[100 - 37]; /* align, 100 minus the number of server
functions above */
int (*server_add_char_alpha)(struct mod* mod, int font, int character,
int offset, int baseline,
int width, int height, char* data);
int (*server_create_os_surface_bpp)(struct mod* v, int rdpindex,
int width, int height, int bpp);
int (*server_paint_rect_bpp)(struct mod* v, int x, int y, int cx, int cy,
char* data, int width, int height,
int srcx, int srcy, int bpp);
int (*server_composite)(struct mod* v, int srcidx, int srcformat,
int srcwidth, int srcrepeat, int* srctransform,
int mskflags, int mskidx, int mskformat,
int mskwidth, int mskrepeat, int op,
int srcx, int srcy, int mskx, int msky,
int dstx, int dsty, int width, int height,
int dstformat);
int (*server_paint_rects)(struct mod* v,
int num_drects, short *drects,
int num_crects, short *crects,
char *data, int width, int height,
int flags, int frame_id);
int (*server_session_info)(struct mod* v, const char *data,
int data_bytes);
tintptr server_dumby[100 - 44]; /* align, 100 minus the number of server
functions above */
/* common */
tintptr handle; /* pointer to self as long */
tintptr wm;
Expand Down
3 changes: 3 additions & 0 deletions xrdp/xrdp.h
Expand Up @@ -514,3 +514,6 @@ int DEFAULT_CC
server_add_char_alpha(struct xrdp_mod* mod, int font, int character,
int offset, int baseline,
int width, int height, char* data);
int DEFAULT_CC
server_session_info(struct xrdp_mod *mod, const char *data, int data_bytes);

12 changes: 12 additions & 0 deletions xrdp/xrdp_mm.c
Expand Up @@ -472,6 +472,7 @@ xrdp_mm_setup_mod1(struct xrdp_mm *self)
self->mod->server_paint_rect_bpp = server_paint_rect_bpp;
self->mod->server_composite = server_composite;
self->mod->server_paint_rects = server_paint_rects;
self->mod->server_session_info = server_session_info;
self->mod->si = (tintptr) &(self->wm->session->si);
}
}
Expand Down Expand Up @@ -2602,6 +2603,17 @@ server_paint_rects(struct xrdp_mod* mod, int num_drects, short *drects,
return 0;
}

/*****************************************************************************/
int DEFAULT_CC
server_session_info(struct xrdp_mod *mod, const char *data, int data_bytes)
{
struct xrdp_wm *wm;

LLOGLN(10, ("server_session_info:"));
wm = (struct xrdp_wm *)(mod->wm);
return libxrdp_send_session_info(wm->session, data, data_bytes);
}

/*****************************************************************************/
int DEFAULT_CC
server_set_pointer(struct xrdp_mod *mod, int x, int y,
Expand Down
4 changes: 3 additions & 1 deletion xrdp/xrdp_types.h
Expand Up @@ -146,7 +146,9 @@ struct xrdp_mod
int num_crects, short *crects,
char *data, int width, int height,
int flags, int frame_id);
tintptr server_dumby[100 - 43]; /* align, 100 minus the number of server
int (*server_session_info)(struct xrdp_mod* v, const char *data,
int data_bytes);
tintptr server_dumby[100 - 44]; /* align, 100 minus the number of server
functions above */
/* common */
tintptr handle; /* pointer to self as int */
Expand Down

0 comments on commit 482671f

Please sign in to comment.