/[rdesktop]/sourceforge.net/branches/seamlessrdp-branch/rdesktop/rdesktop.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/branches/seamlessrdp-branch/rdesktop/rdesktop.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 279 by n-ki, Tue Nov 26 10:09:14 2002 UTC revision 567 by matthewc, Wed Jan 21 11:08:39 2004 UTC
# Line 1  Line 1 
1  /*  /* -*- c-basic-offset: 8 -*-
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Entrypoint and utility functions     Entrypoint and utility functions
4     Copyright (C) Matthew Chapman 1999-2002     Copyright (C) Matthew Chapman 1999-2004
5    
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# Line 22  Line 22 
22  #include <unistd.h>             /* read close getuid getgid getpid getppid gethostname */  #include <unistd.h>             /* read close getuid getgid getpid getppid gethostname */
23  #include <fcntl.h>              /* open */  #include <fcntl.h>              /* open */
24  #include <pwd.h>                /* getpwuid */  #include <pwd.h>                /* getpwuid */
 #include <limits.h>             /* PATH_MAX */  
25  #include <termios.h>            /* tcgetattr tcsetattr */  #include <termios.h>            /* tcgetattr tcsetattr */
26  #include <sys/stat.h>           /* stat */  #include <sys/stat.h>           /* stat */
27  #include <sys/time.h>           /* gettimeofday */  #include <sys/time.h>           /* gettimeofday */
28  #include <sys/times.h>          /* times */  #include <sys/times.h>          /* times */
29    #include <errno.h>
30  #include "rdesktop.h"  #include "rdesktop.h"
31    
32  #ifdef EGD_SOCKET  #ifdef EGD_SOCKET
# Line 40  Line 40 
40  #include "crypto/md5.h"  #include "crypto/md5.h"
41  #endif  #endif
42    
43  char title[32] = "";  char g_title[64] = "";
44  char username[16];  char g_username[64];
45  char hostname[16];  char hostname[16];
46  char keymapname[16];  char keymapname[16];
47  int keylayout = 0x409;          /* Defaults to US keyboard layout */  int keylayout = 0x409;          /* Defaults to US keyboard layout */
48  int width = 800;                /* If width or height are reset to zero, the geometry will  
49                                     be fetched from _NET_WORKAREA */  int g_width = 800;              /* width is special: If 0, the
50  int height = 600;                                     geometry will be fetched from
51                                       _NET_WORKAREA. If negative,
52                                       absolute value specifies the
53                                       percent of the whole screen. */
54    int g_height = 600;
55  int tcp_port_rdp = TCP_PORT_RDP;  int tcp_port_rdp = TCP_PORT_RDP;
56  BOOL bitmap_compression = True;  int g_server_bpp = 8;
57  BOOL sendmotion = True;  int g_win_button_size = 0;      /* If zero, disable single app mode */
58  BOOL orders = True;  BOOL g_bitmap_compression = True;
59  BOOL encryption = True;  BOOL g_sendmotion = True;
60  BOOL desktop_save = True;  BOOL g_orders = True;
61  BOOL fullscreen = False;  BOOL g_encryption = True;
62  BOOL grab_keyboard = True;  BOOL packet_encryption = True;
63  BOOL hide_decorations = False;  BOOL g_desktop_save = True;
64  extern BOOL owncolmap;  BOOL g_fullscreen = False;
65    BOOL g_grab_keyboard = True;
66    BOOL g_hide_decorations = False;
67    BOOL g_use_rdp5 = True;
68    BOOL g_console_session = False;
69    BOOL g_numlock_sync = False;
70    extern BOOL g_owncolmap;
71    
72    #ifdef WITH_RDPSND
73    BOOL g_rdpsnd = False;
74    #endif
75    
76    #ifdef RDP2VNC
77    extern int rfb_port;
78    extern int defer_time;
79    void
80    rdp2vnc_connect(char *server, uint32 flags, char *domain, char *password,
81                    char *shell, char *directory);
82    #endif
83  /* Display usage information */  /* Display usage information */
84  static void  static void
85  usage(char *program)  usage(char *program)
86  {  {
87          fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");          fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");
88          fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2002 Matt Chapman.\n");          fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2003 Matt Chapman.\n");
89          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
90    
91          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);
92    #ifdef RDP2VNC
93            fprintf(stderr, "   -V: vnc port\n");
94            fprintf(stderr, "   -Q: defer time (ms)\n");
95    #endif
96          fprintf(stderr, "   -u: user name\n");          fprintf(stderr, "   -u: user name\n");
97          fprintf(stderr, "   -d: domain\n");          fprintf(stderr, "   -d: domain\n");
98          fprintf(stderr, "   -s: shell\n");          fprintf(stderr, "   -s: shell\n");
99          fprintf(stderr, "   -c: working directory\n");          fprintf(stderr, "   -c: working directory\n");
100          fprintf(stderr, "   -p: password (- to prompt)\n");          fprintf(stderr, "   -p: password (- to prompt)\n");
101          fprintf(stderr, "   -n: client hostname\n");          fprintf(stderr, "   -n: client hostname\n");
102          fprintf(stderr, "   -k: keyboard layout on terminal server (us,sv,gr,etc.)\n");          fprintf(stderr, "   -k: keyboard layout on server (en-us, de, sv, etc.)\n");
103          fprintf(stderr, "   -g: desktop geometry (WxH)\n");          fprintf(stderr, "   -g: desktop geometry (WxH)\n");
104          fprintf(stderr, "   -f: full-screen mode\n");          fprintf(stderr, "   -f: full-screen mode\n");
105          fprintf(stderr, "   -b: force bitmap updates\n");          fprintf(stderr, "   -b: force bitmap updates\n");
106          fprintf(stderr, "   -e: disable encryption (French TS)\n");          fprintf(stderr, "   -e: disable encryption (French TS)\n");
107            fprintf(stderr, "   -E: disable encryption from client to server\n");
108          fprintf(stderr, "   -m: do not send motion events\n");          fprintf(stderr, "   -m: do not send motion events\n");
109          fprintf(stderr, "   -C: use private colour map\n");          fprintf(stderr, "   -C: use private colour map\n");
110            fprintf(stderr, "   -D: hide window manager decorations\n");
111          fprintf(stderr, "   -K: keep window manager key bindings\n");          fprintf(stderr, "   -K: keep window manager key bindings\n");
112            fprintf(stderr, "   -S: caption button size (single application mode)\n");
113          fprintf(stderr, "   -T: window title\n");          fprintf(stderr, "   -T: window title\n");
114          fprintf(stderr, "   -D: hide window manager decorations\n");          fprintf(stderr, "   -N: enable numlock synchronisation\n");
115            fprintf(stderr, "   -a: connection colour depth\n");
116            fprintf(stderr, "   -r: enable specified device redirection (currently: sound)\n");
117            fprintf(stderr, "   -0: attach to console\n");
118            fprintf(stderr, "   -4: use RDP version 4\n");
119            fprintf(stderr, "   -5: use RDP version 5 (default)\n");
120  }  }
121    
122  static BOOL  static BOOL
# Line 122  read_password(char *password, int size) Line 155  read_password(char *password, int size)
155          return ret;          return ret;
156  }  }
157    
158    static void
159    parse_server_and_port(char *server)
160    {
161            char *p;
162    #ifdef IPv6
163            int addr_colons;
164    #endif
165    
166    #ifdef IPv6
167            p = server;
168            addr_colons = 0;
169            while (*p)
170                    if (*p++ == ':')
171                            addr_colons++;
172            if (addr_colons >= 2)
173            {
174                    /* numeric IPv6 style address format - [1:2:3::4]:port */
175                    p = strchr(server, ']');
176                    if (*server == '[' && p != NULL)
177                    {
178                            if (*(p + 1) == ':' && *(p + 2) != '\0')
179                                    tcp_port_rdp = strtol(p + 2, NULL, 10);
180                            /* remove the port number and brackets from the address */
181                            *p = '\0';
182                            strncpy(server, server + 1, strlen(server));
183                    }
184            }
185            else
186            {
187                    /* dns name or IPv4 style address format - server.example.com:port or 1.2.3.4:port */
188                    p = strchr(server, ':');
189                    if (p != NULL)
190                    {
191                            tcp_port_rdp = strtol(p + 1, NULL, 10);
192                            *p = 0;
193                    }
194            }
195    #else /* no IPv6 support */
196            p = strchr(server, ':');
197            if (p != NULL)
198            {
199                    tcp_port_rdp = strtol(p + 1, NULL, 10);
200                    *p = 0;
201            }
202    #endif /* IPv6 */
203    
204    }
205    
206  /* Client program */  /* Client program */
207  int  int
208  main(int argc, char *argv[])  main(int argc, char *argv[])
# Line 129  main(int argc, char *argv[]) Line 210  main(int argc, char *argv[])
210          char server[64];          char server[64];
211          char fullhostname[64];          char fullhostname[64];
212          char domain[16];          char domain[16];
213          char password[16];          char password[64];
214          char shell[128];          char shell[128];
215          char directory[32];          char directory[32];
216          BOOL prompt_password;          BOOL prompt_password, rdp_retval = False;
217          struct passwd *pw;          struct passwd *pw;
218          uint32 flags;          uint32 flags;
219          char *p;          char *p;
220          int c;          int c;
221            int username_option = 0;
222    
223          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
224          prompt_password = False;          prompt_password = False;
225          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
226          strcpy(keymapname, "en-us");          strcpy(keymapname, "en-us");
227    
228          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:fbemCKT:Dh?")) != -1)  #ifdef RDP2VNC
229    #define VNCOPT "V:Q:"
230    #else
231    #define VNCOPT
232    #endif
233    
234            while ((c = getopt(argc, argv, VNCOPT "u:d:s:c:p:n:k:g:fbeEmCDKS:T:Na:r:045h?")) != -1)
235          {          {
236                  switch (c)                  switch (c)
237                  {                  {
238    #ifdef RDP2VNC
239                            case 'V':
240                                    rfb_port = strtol(optarg, NULL, 10);
241                                    if (rfb_port < 100)
242                                            rfb_port += 5900;
243                                    break;
244    
245                            case 'Q':
246                                    defer_time = strtol(optarg, NULL, 10);
247                                    if (defer_time < 0)
248                                            defer_time = 0;
249                                    break;
250    #endif
251    
252                          case 'u':                          case 'u':
253                                  STRNCPY(username, optarg, sizeof(username));                                  STRNCPY(g_username, optarg, sizeof(g_username));
254                                    username_option = 1;
255                                  break;                                  break;
256    
257                          case 'd':                          case 'd':
# Line 188  main(int argc, char *argv[]) Line 291  main(int argc, char *argv[])
291                                  break;                                  break;
292    
293                          case 'g':                          case 'g':
294                                    g_fullscreen = False;
295                                  if (!strcmp(optarg, "workarea"))                                  if (!strcmp(optarg, "workarea"))
296                                  {                                  {
297                                          width = height = 0;                                          g_width = g_height = 0;
298                                          break;                                          break;
299                                  }                                  }
300    
301                                  width = strtol(optarg, &p, 10);                                  g_width = strtol(optarg, &p, 10);
302                                    if (g_width <= 0)
303                                    {
304                                            error("invalid geometry\n");
305                                            return 1;
306                                    }
307    
308                                  if (*p == 'x')                                  if (*p == 'x')
309                                          height = strtol(p + 1, NULL, 10);                                          g_height = strtol(p + 1, NULL, 10);
310    
311                                  if ((width == 0) || (height == 0))                                  if (g_height <= 0)
312                                  {                                  {
313                                          error("invalid geometry\n");                                          error("invalid geometry\n");
314                                          return 1;                                          return 1;
315                                  }                                  }
316    
317                                    if (*p == '%')
318                                            g_width = -g_width;
319    
320                                  break;                                  break;
321    
322                          case 'f':                          case 'f':
323                                  fullscreen = True;                                  g_fullscreen = True;
324                                  break;                                  break;
325    
326                          case 'b':                          case 'b':
327                                  orders = False;                                  g_orders = False;
328                                  break;                                  break;
329    
330                          case 'e':                          case 'e':
331                                  encryption = False;                                  g_encryption = False;
332                                    break;
333                            case 'E':
334                                    packet_encryption = False;
335                                  break;                                  break;
   
336                          case 'm':                          case 'm':
337                                  sendmotion = False;                                  g_sendmotion = False;
338                                  break;                                  break;
339    
340                          case 'C':                          case 'C':
341                                  owncolmap = True;                                  g_owncolmap = True;
342                                    break;
343    
344                            case 'D':
345                                    g_hide_decorations = True;
346                                  break;                                  break;
347    
348                          case 'K':                          case 'K':
349                                  grab_keyboard = False;                                  g_grab_keyboard = False;
350                                    break;
351    
352                            case 'S':
353                                    if (!strcmp(optarg, "standard"))
354                                    {
355                                            g_win_button_size = 18;
356                                            break;
357                                    }
358    
359                                    g_win_button_size = strtol(optarg, &p, 10);
360    
361                                    if (*p)
362                                    {
363                                            error("invalid button size\n");
364                                            return 1;
365                                    }
366    
367                                  break;                                  break;
368    
369                          case 'T':                          case 'T':
370                                  STRNCPY(title, optarg, sizeof(title));                                  STRNCPY(g_title, optarg, sizeof(g_title));
371                                  break;                                  break;
372    
373                          case 'D':                          case 'N':
374                                  hide_decorations = True;                                  g_numlock_sync = True;
375                                    break;
376    
377                            case 'a':
378                                    g_server_bpp = strtol(optarg, NULL, 10);
379                                    if (g_server_bpp != 8 && g_server_bpp != 16 && g_server_bpp != 15
380                                        && g_server_bpp != 24)
381                                    {
382                                            error("invalid server bpp\n");
383                                            return 1;
384                                    }
385                                    break;
386    
387                            case 'r':
388                                    if (!strcmp(optarg, "sound"))
389    #ifdef WITH_RDPSND
390                                            g_rdpsnd = True;
391    #else
392                                            warning("Not compiled with sound support");
393    #endif
394                                    break;
395    
396                            case '0':
397                                    g_console_session = True;
398                                    break;
399    
400                            case '4':
401                                    g_use_rdp5 = False;
402                                    break;
403    
404                            case '5':
405                                    g_use_rdp5 = True;
406                                  break;                                  break;
407    
408                          case 'h':                          case 'h':
# Line 252  main(int argc, char *argv[]) Line 420  main(int argc, char *argv[])
420          }          }
421    
422          STRNCPY(server, argv[optind], sizeof(server));          STRNCPY(server, argv[optind], sizeof(server));
423          p = strchr(server, ':');          parse_server_and_port(server);
         if (p != NULL)  
         {  
                 tcp_port_rdp = strtol(p + 1, NULL, 10);  
                 *p = 0;  
         }  
424    
425          if (username[0] == 0)          if (!username_option)
426          {          {
427                  pw = getpwuid(getuid());                  pw = getpwuid(getuid());
428                  if ((pw == NULL) || (pw->pw_name == NULL))                  if ((pw == NULL) || (pw->pw_name == NULL))
# Line 268  main(int argc, char *argv[]) Line 431  main(int argc, char *argv[])
431                          return 1;                          return 1;
432                  }                  }
433    
434                  STRNCPY(username, pw->pw_name, sizeof(username));                  STRNCPY(g_username, pw->pw_name, sizeof(g_username));
435          }          }
436    
437          if (hostname[0] == 0)          if (hostname[0] == 0)
# Line 289  main(int argc, char *argv[]) Line 452  main(int argc, char *argv[])
452          if (prompt_password && read_password(password, sizeof(password)))          if (prompt_password && read_password(password, sizeof(password)))
453                  flags |= RDP_LOGON_AUTO;                  flags |= RDP_LOGON_AUTO;
454    
455          if (title[0] == 0)          if (g_title[0] == 0)
456          {          {
457                  strcpy(title, "rdesktop - ");                  strcpy(g_title, "rdesktop - ");
458                  strncat(title, server, sizeof(title) - sizeof("rdesktop - "));                  strncat(g_title, server, sizeof(g_title) - sizeof("rdesktop - "));
459          }          }
460    
461    #ifdef RDP2VNC
462            rdp2vnc_connect(server, flags, domain, password, shell, directory);
463            return 0;
464    #else
465    
466          if (!ui_init())          if (!ui_init())
467                  return 1;                  return 1;
468    
469    #ifdef WITH_RDPSND
470            if (g_rdpsnd)
471                    rdpsnd_init();
472    #endif
473            /* rdpdr_init(); */
474    
475          if (!rdp_connect(server, flags, domain, password, shell, directory))          if (!rdp_connect(server, flags, domain, password, shell, directory))
476                  return 1;                  return 1;
477    
478            /* By setting encryption to False here, we have an encrypted login
479               packet but unencrypted transfer of other packets */
480            if (!packet_encryption)
481                    g_encryption = False;
482    
483    
484          DEBUG(("Connection successful.\n"));          DEBUG(("Connection successful.\n"));
485          memset(password, 0, sizeof(password));          memset(password, 0, sizeof(password));
486    
487          if (ui_create_window())          if (ui_create_window())
488          {          {
489                  rdp_main_loop();                  rdp_retval = rdp_main_loop();
490                  ui_destroy_window();                  ui_destroy_window();
491          }          }
492    
493          DEBUG(("Disconnecting...\n"));          DEBUG(("Disconnecting...\n"));
494          rdp_disconnect();          rdp_disconnect();
495          ui_deinit();          ui_deinit();
496          return 0;  
497            if (True == rdp_retval)
498                    return 0;
499            else
500                    return 2;
501    
502    #endif
503    
504  }  }
505    
506  #ifdef EGD_SOCKET  #ifdef EGD_SOCKET
# Line 445  error(char *format, ...) Line 632  error(char *format, ...)
632          va_end(ap);          va_end(ap);
633  }  }
634    
635    /* report a warning */
636    void
637    warning(char *format, ...)
638    {
639            va_list ap;
640    
641            fprintf(stderr, "WARNING: ");
642    
643            va_start(ap, format);
644            vfprintf(stderr, format, ap);
645            va_end(ap);
646    }
647    
648  /* report an unimplemented protocol feature */  /* report an unimplemented protocol feature */
649  void  void
650  unimpl(char *format, ...)  unimpl(char *format, ...)
# Line 460  unimpl(char *format, ...) Line 660  unimpl(char *format, ...)
660    
661  /* produce a hex dump */  /* produce a hex dump */
662  void  void
663  hexdump(unsigned char *p, unsigned int len)  hexdump(unsigned char *p, int len)
664  {  {
665          unsigned char *line = p;          unsigned char *line = p;
666          unsigned int thisline, offset = 0;          int i, thisline, offset = 0;
         int i;  
667    
668          while (offset < len)          while (offset < len)
669          {          {
# Line 488  hexdump(unsigned char *p, unsigned int l Line 687  hexdump(unsigned char *p, unsigned int l
687          }          }
688  }  }
689    
690  #ifdef SAVE_LICENCE  
691  int  int
692  load_licence(unsigned char **data)  load_licence(unsigned char **data)
693  {  {
694          char path[PATH_MAX];          char *home, *path;
         char *home;  
695          struct stat st;          struct stat st;
696          int fd;          int fd, length;
697    
698          home = getenv("HOME");          home = getenv("HOME");
699          if (home == NULL)          if (home == NULL)
700                  return -1;                  return -1;
701    
702          STRNCPY(path, home, sizeof(path));          path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));
703          strncat(path, "/.rdesktop/licence", sizeof(path) - strlen(path) - 1);          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
704    
705          fd = open(path, O_RDONLY);          fd = open(path, O_RDONLY);
706          if (fd == -1)          if (fd == -1)
# Line 511  load_licence(unsigned char **data) Line 709  load_licence(unsigned char **data)
709          if (fstat(fd, &st))          if (fstat(fd, &st))
710                  return -1;                  return -1;
711    
712          *data = xmalloc(st.st_size);          *data = (uint8 *) xmalloc(st.st_size);
713          return read(fd, *data, st.st_size);          length = read(fd, *data, st.st_size);
714            close(fd);
715            xfree(path);
716            return length;
717  }  }
718    
719  void  void
720  save_licence(unsigned char *data, int length)  save_licence(unsigned char *data, int length)
721  {  {
722          char path[PATH_MAX];          char *home, *path, *tmppath;
         char *home;  
723          int fd;          int fd;
724    
725          home = getenv("HOME");          home = getenv("HOME");
726          if (home == NULL)          if (home == NULL)
727                  return;                  return;
728    
729          STRNCPY(path, home, sizeof(path));          path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));
730          strncat(path, "/.rdesktop", sizeof(path) - strlen(path) - 1);  
731          mkdir(path, 0700);          sprintf(path, "%s/.rdesktop", home);
732            if ((mkdir(path, 0700) == -1) && errno != EEXIST)
733            {
734                    perror(path);
735                    return;
736            }
737    
738          strncat(path, "/licence", sizeof(path) - strlen(path) - 1);          /* write licence to licence.hostname.new, then atomically rename to licence.hostname */
739    
740          fd = open(path, O_WRONLY | O_CREAT | O_TRUNC, 0600);          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
741            tmppath = (char *) xmalloc(strlen(path) + sizeof(".new"));
742            strcpy(tmppath, path);
743            strcat(tmppath, ".new");
744    
745            fd = open(tmppath, O_WRONLY | O_CREAT | O_TRUNC, 0600);
746          if (fd == -1)          if (fd == -1)
747          {          {
748                  perror("open");                  perror(tmppath);
749                  return;                  return;
750          }          }
751    
752          write(fd, data, length);          if (write(fd, data, length) != length)
753            {
754                    perror(tmppath);
755                    unlink(tmppath);
756            }
757            else if (rename(tmppath, path) == -1)
758            {
759                    perror(path);
760                    unlink(tmppath);
761            }
762    
763          close(fd);          close(fd);
764            xfree(tmppath);
765            xfree(path);
766  }  }
 #endif  

Legend:
Removed from v.279  
changed lines
  Added in v.567

  ViewVC Help
Powered by ViewVC 1.1.26