summaryrefslogtreecommitdiffstats
path: root/sesman/chansrv/rail.c
blob: fdfa8d91e82058f89e26f166054f1a37b82bbcd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
/**
 * xrdp: A Remote Desktop Protocol server.
 *
 * Copyright (C) Jay Sorg 2012
 *
 * 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.
 */

/*
   window manager info
   http://www.freedesktop.org/wiki/Specifications/wm-spec
*/

#include <X11/Xlib.h>
#include "chansrv.h"
#include "rail.h"
#include "xcommon.h"
#include "log.h"
#include "os_calls.h"

extern int g_rail_chan_id;      /* in chansrv.c */
extern int g_display_num;       /* in chansrv.c */

extern Display* g_display;           /* in xcommon.c */
extern Screen* g_screen;             /* in xcommon.c */
extern Window g_root_window;         /* in xcommon.c */
extern Atom g_wm_delete_window_atom; /* in xcommon.c */
extern Atom g_wm_protocols_atom;     /* in xcommon.c */

int g_rail_up = 0;

/* for rail_is_another_wm_running */
static int g_rail_running = 1;
static int g_rail_managed = 0;

/* Indicates a Client Execute PDU from client to server. */
#define TS_RAIL_ORDER_EXEC 0x0001
/* Indicates a Client Activate PDU from client to server. */
#define TS_RAIL_ORDER_ACTIVATE 0x0002
/* Indicates a Client System Parameters Update PDU from client
   to server or a Server System Parameters Update PDU
   from server to client. */
#define TS_RAIL_ORDER_SYSPARAM 0x0003
/* Indicates a Client System Command PDU from client to server. */
#define TS_RAIL_ORDER_SYSCOMMAND 0x0004
/* Indicates a bi-directional Handshake PDU. */
#define TS_RAIL_ORDER_HANDSHAKE 0x0005
/* Indicates a Client Notify Event PDU from client to server. */
#define TS_RAIL_ORDER_NOTIFY_EVENT 0x0006
/* Indicates a Client Window Move PDU from client to server. */
#define TS_RAIL_ORDER_WINDOWMOVE 0x0008
/* Indicates a Server Move/Size Start PDU and a Server Move/Size
   End PDU from server to client. */
#define TS_RAIL_ORDER_LOCALMOVESIZE 0x0009
/* Indicates a Server Min Max Info PDU from server to client. */
#define TS_RAIL_ORDER_MINMAXINFO 0x000a
/* Indicates a Client Information PDU from client to server. */
#define TS_RAIL_ORDER_CLIENTSTATUS 0x000b
/* Indicates a Client System Menu PDU from client to server. */
#define TS_RAIL_ORDER_SYSMENU 0x000c
/* Indicates a Server Language Bar Information PDU from server to
   client, or a Client Language Bar Information PDU from client to server. */
#define TS_RAIL_ORDER_LANGBARINFO 0x000d
/* Indicates a Server Execute Result PDU from server to client. */
#define TS_RAIL_ORDER_EXEC_RESULT 0x0080
/* Indicates a Client Get Application ID PDU from client to server. */
#define TS_RAIL_ORDER_GET_APPID_REQ 0x000E
/* Indicates a Server Get Application ID Response PDU from
   server to client. */
#define TS_RAIL_ORDER_GET_APPID_RESP 0x000F

/* Resize the window. */
#define SC_SIZE 0xF000
/* Move the window. */
#define SC_MOVE 0xF010
/* Minimize the window. */
#define SC_MINIMIZE 0xF020
/* Maximize the window. */
#define SC_MAXIMIZE 0xF030
/* Close the window. */
#define SC_CLOSE 0xF060
/* The ALT + SPACE key combination was pressed; display
   the window's system menu. */
#define SC_KEYMENU 0xF100
/* Restore the window to its original shape and size. */
#define SC_RESTORE 0xF120
/* Perform the default action of the window's system menu. */
#define SC_DEFAULT 0xF160

/******************************************************************************/
static int APP_CC
is_window_valid_child_of_root(unsigned int window_id)
{
  int found;
  unsigned int i;
  unsigned int nchild;
  Window r;
  Window p;
  Window* children;

  found = 0;
  XQueryTree(g_display, g_root_window, &r, &p, &children, &nchild);
  for (i = 0; i < nchild; i++)
  {
    if (window_id == children[i])
    {
      found = 1;
      break;
    }
  }
  XFree(children);
  return found;
}

/*****************************************************************************/
static int APP_CC
rail_send_init(void)
{
  struct stream* s;
  int bytes;
  char* size_ptr;

  LOG(10, ("chansrv::rail_send_init:"));
  make_stream(s);
  init_stream(s, 8182);
  out_uint16_le(s, TS_RAIL_ORDER_HANDSHAKE);
  size_ptr = s->p;
  out_uint16_le(s, 0);        /* size, set later */
  out_uint32_le(s, 1);        /* build number */
  s_mark_end(s);
  bytes = (int)((s->end - s->data) - 4);
  size_ptr[0] = bytes;
  size_ptr[1] = bytes >> 8;
  bytes = (int)(s->end - s->data);
  send_channel_data(g_rail_chan_id, s->data, bytes);
  free_stream(s);
  return 0;
}

/******************************************************************************/
static int DEFAULT_CC
anotherWMRunning(Display* display, XErrorEvent* xe)
{
  g_rail_running = 0;
  return -1;
}

/******************************************************************************/
static int APP_CC
rail_is_another_wm_running(void)
{
  XErrorHandler old;

  g_rail_running = 1;
  old = XSetErrorHandler((XErrorHandler)anotherWMRunning);
  XSelectInput(g_display, g_root_window,
               PropertyChangeMask | StructureNotifyMask |
               SubstructureRedirectMask | ButtonPressMask |
               SubstructureNotifyMask | FocusChangeMask |
               EnterWindowMask | LeaveWindowMask);
  XSync(g_display, 0);
  XSetErrorHandler((XErrorHandler)old);
  g_rail_managed = g_rail_running;
  if (!g_rail_managed)
  {
    return 1;
  }
  return 0;
}

/*****************************************************************************/
int APP_CC
rail_init(void)
{
  LOG(10, ("chansrv::rail_init:"));
  if (rail_is_another_wm_running())
  {
    log_message(LOG_LEVEL_ERROR, "rail_init: another window manager "
                "is running");
  }
  rail_send_init();
  g_rail_up = 1;
  return 0;
}

/*****************************************************************************/
int APP_CC
rail_deinit(void)
{
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_exec(struct stream* s, int size)
{
  int flags;

  LOG(10, ("chansrv::rail_process_exec:"));
  in_uint16_le(s, flags);
  LOG(10, ("  flags 0x%8.8x", flags));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_activate(struct stream* s, int size)
{
  int window_id;
  int enabled;

  LOG(10, ("chansrv::rail_process_activate:"));
  in_uint32_le(s, window_id);
  in_uint8(s, enabled);
  LOG(10, ("  window_id 0x%8.8x enabled %d", window_id, enabled));
  if (enabled)
  {
    LOG(0, ("chansrv::rail_process_activate: calling XRaiseWindow 0x%8.8x", window_id));
    XRaiseWindow(g_display, window_id);
    LOG(0, ("chansrv::rail_process_activate: calling XSetInputFocus 0x%8.8x", window_id));
    XSetInputFocus(g_display, window_id, RevertToParent, CurrentTime);
  }
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_system_param(struct stream* s, int size)
{
  int system_param;

  LOG(10, ("chansrv::rail_process_system_param:"));
  in_uint32_le(s, system_param);
  LOG(10, ("  system_param 0x%8.8x", system_param));
  return 0;
}

/******************************************************************************/
static int APP_CC
rail_close_window(int window_id)
{
  XEvent ce;

  LOG(10, ("chansrv::rail_close_window:"));
  g_memset(&ce, 0, sizeof(ce));
  ce.xclient.type = ClientMessage;
  ce.xclient.message_type = g_wm_protocols_atom;
  ce.xclient.display = g_display;
  ce.xclient.window = window_id;
  ce.xclient.format = 32;
  ce.xclient.data.l[0] = g_wm_delete_window_atom;
  ce.xclient.data.l[1] = CurrentTime;
  XSendEvent(g_display, window_id, False, NoEventMask, &ce);
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_system_command(struct stream* s, int size)
{
  int window_id;
  int command;

  LOG(10, ("chansrv::rail_process_system_command:"));
  in_uint32_le(s, window_id);
  in_uint16_le(s, command);
  switch (command)
  {
    case SC_SIZE:
      LOG(10, ("  window_id 0x%8.8x SC_SIZE", window_id));
      break;
    case SC_MOVE:
      LOG(10, ("  window_id 0x%8.8x SC_MOVE", window_id));
      break;
    case SC_MINIMIZE:
      LOG(10, ("  window_id 0x%8.8x SC_MINIMIZE", window_id));
      break;
    case SC_MAXIMIZE:
      LOG(10, ("  window_id 0x%8.8x SC_MAXIMIZE", window_id));
      break;
    case SC_CLOSE:
      LOG(10, ("  window_id 0x%8.8x SC_CLOSE", window_id));
      rail_close_window(window_id);
      break;
    case SC_KEYMENU:
      LOG(10, ("  window_id 0x%8.8x SC_KEYMENU", window_id));
      break;
    case SC_RESTORE:
      LOG(10, ("  window_id 0x%8.8x SC_RESTORE", window_id));
      break;
    case SC_DEFAULT:
      LOG(10, ("  window_id 0x%8.8x SC_DEFAULT", window_id));
      break;
    default:
      LOG(10, ("  window_id 0x%8.8x unknown command command %d",
          window_id, command));
      break;
  }
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_handshake(struct stream* s, int size)
{
  int build_number;

  LOG(10, ("chansrv::rail_process_handshake:"));
  in_uint32_le(s, build_number);
  LOG(10, ("  build_number 0x%8.8x", build_number));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_notify_event(struct stream* s, int size)
{
  int window_id;
  int notify_id;
  int message;

  LOG(10, ("chansrv::rail_process_notify_event:"));
  in_uint32_le(s, window_id);
  in_uint32_le(s, notify_id);
  in_uint32_le(s, message);
  LOG(10, ("  window_id 0x%8.8x notify_id 0x%8.8x message 0x%8.8x",
      window_id, notify_id, message));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_window_move(struct stream* s, int size)
{
  int window_id;
  int left;
  int top;
  int right;
  int bottom;

  LOG(0, ("chansrv::rail_process_window_move:"));
  in_uint32_le(s, window_id);
  in_uint16_le(s, left);
  in_uint16_le(s, top);
  in_uint16_le(s, right);
  in_uint16_le(s, bottom);
  LOG(0, ("  window_id 0x%8.8x left %d top %d right %d bottom %d width %d height %d",
      window_id, left, top, right, bottom, right - left, bottom - top));
  XMoveResizeWindow(g_display, window_id, left, top, right - left, bottom - top);
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_local_move_size(struct stream* s, int size)
{
  int window_id;
  int is_move_size_start;
  int move_size_type;
  int pos_x;
  int pos_y;

  LOG(10, ("chansrv::rail_process_local_move_size:"));
  in_uint32_le(s, window_id);
  in_uint16_le(s, is_move_size_start);
  in_uint16_le(s, move_size_type);
  in_uint16_le(s, pos_x);
  in_uint16_le(s, pos_y);
  LOG(10, ("  window_id 0x%8.8x is_move_size_start %d move_size_type %d "
      "pos_x %d pos_y %d", window_id, is_move_size_start, move_size_type,
      pos_x, pos_y));
  return 0;
}

/*****************************************************************************/
/* server to client only */
static int APP_CC
rail_process_min_max_info(struct stream* s, int size)
{
  LOG(10, ("chansrv::rail_process_min_max_info:"));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_client_status(struct stream* s, int size)
{
  int flags;

  LOG(10, ("chansrv::rail_process_client_status:"));
  in_uint32_le(s, flags);
  LOG(10, ("  flags 0x%8.8x", flags));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_sys_menu(struct stream* s, int size)
{
  int window_id;
  int left;
  int top;

  LOG(10, ("chansrv::rail_process_sys_menu:"));
  in_uint32_le(s, window_id);
  in_uint16_le(s, left);
  in_uint16_le(s, top);
  LOG(10, ("  window_id 0x%8.8x left %d top %d", window_id, left, top));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_lang_bar_info(struct stream* s, int size)
{
  int language_bar_status;

  LOG(10, ("chansrv::rail_process_lang_bar_info:"));
  in_uint32_le(s, language_bar_status);
  LOG(10, ("  language_bar_status 0x%8.8x", language_bar_status));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_appid_req(struct stream* s, int size)
{
  LOG(10, ("chansrv::rail_process_appid_req:"));
  return 0;
}

/*****************************************************************************/
static int APP_CC
rail_process_appid_resp(struct stream* s, int size)
{
  LOG(10, ("chansrv::rail_process_appid_resp:"));
  return 0;
}

/*****************************************************************************/
/* server to client only */
static int APP_CC
rail_process_exec_result(struct stream* s, int size)
{
  LOG(10, ("chansrv::rail_process_exec_result:"));
  return 0;
}

/*****************************************************************************/
/* data in from client ( client -> xrdp -> chansrv ) */
int APP_CC
rail_data_in(struct stream* s, int chan_id, int chan_flags, int length,
             int total_length)
{
  int code;
  int size;

  LOG(10, ("chansrv::rail_data_in:"));
  in_uint8(s, code);
  in_uint8s(s, 1);
  in_uint16_le(s, size);
  switch (code)
  {
    case TS_RAIL_ORDER_EXEC: /* 1 */
      rail_process_exec(s, size);
      break;
    case TS_RAIL_ORDER_ACTIVATE: /* 2 */
      rail_process_activate(s, size);
      break;
    case TS_RAIL_ORDER_SYSPARAM: /* 3 */
      rail_process_system_param(s, size);
      break;
    case TS_RAIL_ORDER_SYSCOMMAND: /* 4 */
      rail_process_system_command(s, size);
      break;
    case TS_RAIL_ORDER_HANDSHAKE: /* 5 */
      rail_process_handshake(s, size);
      break;
    case TS_RAIL_ORDER_NOTIFY_EVENT: /* 6 */
      rail_process_notify_event(s, size);
      break;
    case TS_RAIL_ORDER_WINDOWMOVE: /* 8 */
      rail_process_window_move(s, size);
      break;
    case TS_RAIL_ORDER_LOCALMOVESIZE: /* 9 */
      rail_process_local_move_size(s, size);
      break;
    case TS_RAIL_ORDER_MINMAXINFO: /* 10 */
      rail_process_min_max_info(s, size);
      break;
    case TS_RAIL_ORDER_CLIENTSTATUS: /* 11 */
      rail_process_client_status(s, size);
      break;
    case TS_RAIL_ORDER_SYSMENU: /* 12 */
      rail_process_sys_menu(s, size);
      break;
    case TS_RAIL_ORDER_LANGBARINFO: /* 13 */
      rail_process_lang_bar_info(s, size);
      break;
    case TS_RAIL_ORDER_GET_APPID_REQ: /* 14 */
      rail_process_appid_req(s, size);
      break;
    case TS_RAIL_ORDER_GET_APPID_RESP: /* 15 */
      rail_process_appid_resp(s, size);
      break;
    case TS_RAIL_ORDER_EXEC_RESULT: /* 128 */
      rail_process_exec_result(s, size);
      break;
    default:
      LOG(10, ("rail_data_in: unknown code %d size %d", code, size));
      break;
  }
  XFlush(g_display);
  return  0;
}

/*****************************************************************************/
/* returns 0, event handled, 1 unhandled */
int APP_CC
rail_xevent(void* xevent)
{
  XEvent* lxevent;
  XWindowChanges xwc;
  int rv;
  int nchildren_return = 0;
  Window root_return;
  Window parent_return;
  Window *children_return;
  Window wreturn;
  int revert_to;
  XWindowAttributes wnd_attributes;

  LOG(10, ("chansrv::rail_xevent:"));
  if (!g_rail_up)
  {
    return 1;
  }
  rv = 1;
  lxevent = (XEvent*)xevent;
  switch (lxevent->type)
  {
    case ConfigureRequest:
      LOG(10, ("  got ConfigureRequest window_id 0x%8.8x", lxevent->xconfigurerequest.window));
      g_memset(&xwc, 0, sizeof(xwc));
      xwc.x = lxevent->xconfigurerequest.x;
      xwc.y = lxevent->xconfigurerequest.y;
      xwc.width = lxevent->xconfigurerequest.width;
      xwc.height = lxevent->xconfigurerequest.height;
      xwc.border_width = lxevent->xconfigurerequest.border_width;
      xwc.sibling = lxevent->xconfigurerequest.above;
      xwc.stack_mode = lxevent->xconfigurerequest.detail;
      XConfigureWindow(g_display,
                       lxevent->xconfigurerequest.window,
                       lxevent->xconfigurerequest.value_mask,
                       &xwc);
      rv = 0;
      break;

    case MapRequest:
      LOG(10, ("  got MapRequest"));
      XMapWindow(g_display, lxevent->xmaprequest.window);
      rv = 0;
      break;

    case MapNotify:
      LOG(10, ("  got MapNotify"));
      break;

    case UnmapNotify:
      LOG(10, ("  got UnmapNotify"));
      break;

    case ConfigureNotify:
      LOG(10, ("  got ConfigureNotify"));
      break;

    case FocusIn:
      LOG(10, ("  got FocusIn"));
      break;

    case ButtonPress:
      LOG(10, ("  got ButtonPress"));
      break;

    case EnterNotify:
      LOG(10, ("  got EnterNotify"));
      break;

    case LeaveNotify:
      LOG(10, ("  got LeaveNotify"));
      break;

  }
  return rv;
}