/[rdesktop]/sourceforge.net/trunk/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/trunk/rdesktop/rdesktop.c

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

revision 297 by matthewc, Tue Jan 28 12:27:28 2003 UTC revision 444 by astrand, Sun Aug 17 07:31:36 2003 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-2003
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 21  Line 21 
21  #include <stdarg.h>             /* va_list va_start va_end */  #include <stdarg.h>             /* va_list va_start va_end */
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 */
 #include <errno.h>              /* save licence uses it. */  
24  #include <pwd.h>                /* getpwuid */  #include <pwd.h>                /* getpwuid */
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 41  Line 41 
41  #endif  #endif
42    
43  char title[32] = "";  char title[32] = "";
44  char username[16];  char g_username[16];
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  int width = 800;                /* If width or height are reset to zero, the geometry will
49                                     be fetched from _NET_WORKAREA */                                     be fetched from _NET_WORKAREA */
50  int height = 600;  int height = 600;
51  int tcp_port_rdp = TCP_PORT_RDP;  int tcp_port_rdp = TCP_PORT_RDP;
52  BOOL bitmap_compression = True;  int g_server_bpp = 8;
53    int win_button_size = 0;        /* If zero, disable single app mode */
54    BOOL g_bitmap_compression = True;
55  BOOL sendmotion = True;  BOOL sendmotion = True;
56  BOOL orders = True;  BOOL g_orders = True;
57  BOOL encryption = True;  BOOL g_encryption = True;
58  BOOL desktop_save = True;  BOOL packet_encryption = True;
59    BOOL g_desktop_save = True;
60  BOOL fullscreen = False;  BOOL fullscreen = False;
61  BOOL grab_keyboard = True;  BOOL grab_keyboard = True;
62  BOOL hide_decorations = False;  BOOL hide_decorations = False;
63    BOOL g_use_rdp5 = False;
64  extern BOOL owncolmap;  extern BOOL owncolmap;
65    
66    #ifdef RDP2VNC
67    extern int rfb_port;
68    extern int defer_time;
69    void
70    rdp2vnc_connect(char *server, uint32 flags, char *domain, char *password,
71                    char *shell, char *directory);
72    #endif
73  /* Display usage information */  /* Display usage information */
74  static void  static void
75  usage(char *program)  usage(char *program)
76  {  {
77          fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");          fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");
78          fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2002 Matt Chapman.\n");          fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2003 Matt Chapman.\n");
79          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
80    
81          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);
82    #ifdef RDP2VNC
83            fprintf(stderr, "   -V: vnc port\n");
84            fprintf(stderr, "   -E: defer time (ms)\n");
85    #endif
86          fprintf(stderr, "   -u: user name\n");          fprintf(stderr, "   -u: user name\n");
87          fprintf(stderr, "   -d: domain\n");          fprintf(stderr, "   -d: domain\n");
88          fprintf(stderr, "   -s: shell\n");          fprintf(stderr, "   -s: shell\n");
89            fprintf(stderr, "   -S: caption button size (single application mode)\n");
90          fprintf(stderr, "   -c: working directory\n");          fprintf(stderr, "   -c: working directory\n");
91          fprintf(stderr, "   -p: password (- to prompt)\n");          fprintf(stderr, "   -p: password (- to prompt)\n");
92          fprintf(stderr, "   -n: client hostname\n");          fprintf(stderr, "   -n: client hostname\n");
# Line 79  usage(char *program) Line 95  usage(char *program)
95          fprintf(stderr, "   -f: full-screen mode\n");          fprintf(stderr, "   -f: full-screen mode\n");
96          fprintf(stderr, "   -b: force bitmap updates\n");          fprintf(stderr, "   -b: force bitmap updates\n");
97          fprintf(stderr, "   -e: disable encryption (French TS)\n");          fprintf(stderr, "   -e: disable encryption (French TS)\n");
98            fprintf(stderr, "   -E: disable encryption of everything but the logon packet\n");
99          fprintf(stderr, "   -m: do not send motion events\n");          fprintf(stderr, "   -m: do not send motion events\n");
100          fprintf(stderr, "   -C: use private colour map\n");          fprintf(stderr, "   -C: use private colour map\n");
101          fprintf(stderr, "   -K: keep window manager key bindings\n");          fprintf(stderr, "   -K: keep window manager key bindings\n");
102          fprintf(stderr, "   -T: window title\n");          fprintf(stderr, "   -T: window title\n");
103          fprintf(stderr, "   -D: hide window manager decorations\n");          fprintf(stderr, "   -D: hide window manager decorations\n");
104            fprintf(stderr, "   -a: server bpp\n");
105            fprintf(stderr, "   -5: Use RDP5 (EXPERIMENTAL!)\n");
106  }  }
107    
108  static BOOL  static BOOL
# Line 122  read_password(char *password, int size) Line 141  read_password(char *password, int size)
141          return ret;          return ret;
142  }  }
143    
144    static void
145    parse_server_and_port(char *server)
146    {
147            char *p;
148    #ifdef IPv6
149            int addr_colons;
150    #endif
151    
152    #ifdef IPv6
153            p = server;
154            addr_colons = 0;
155            while (*p)
156                    if (*p++ == ':')
157                            addr_colons++;
158            if (addr_colons >= 2)
159            {
160                    /* numeric IPv6 style address format - [1:2:3::4]:port */
161                    p = strchr(server, ']');
162                    if (*server == '[' && p != NULL)
163                    {
164                            if (*(p + 1) == ':' && *(p + 2) != '\0')
165                                    tcp_port_rdp = strtol(p + 2, NULL, 10);
166                            /* remove the port number and brackets from the address */
167                            *p = '\0';
168                            strncpy(server, server + 1, strlen(server));
169                    }
170            }
171            else
172            {
173                    /* dns name or IPv4 style address format - server.example.com:port or 1.2.3.4:port */
174                    p = strchr(server, ':');
175                    if (p != NULL)
176                    {
177                            tcp_port_rdp = strtol(p + 1, NULL, 10);
178                            *p = 0;
179                    }
180            }
181    #else /* no IPv6 support */
182            p = strchr(server, ':');
183            if (p != NULL)
184            {
185                    tcp_port_rdp = strtol(p + 1, NULL, 10);
186                    *p = 0;
187            }
188    #endif /* IPv6 */
189    
190    }
191    
192  /* Client program */  /* Client program */
193  int  int
194  main(int argc, char *argv[])  main(int argc, char *argv[])
# Line 132  main(int argc, char *argv[]) Line 199  main(int argc, char *argv[])
199          char password[16];          char password[16];
200          char shell[128];          char shell[128];
201          char directory[32];          char directory[32];
202          BOOL prompt_password;          BOOL prompt_password, rdp_retval = False;
203          struct passwd *pw;          struct passwd *pw;
204          uint32 flags;          uint32 flags;
205          char *p;          char *p;
# Line 144  main(int argc, char *argv[]) Line 211  main(int argc, char *argv[])
211          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
212          strcpy(keymapname, "en-us");          strcpy(keymapname, "en-us");
213    
214          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:fbemCKT:Dh?")) != -1)  #ifdef RDP2VNC
215    #define VNCOPT "V:E:"
216    #else
217    #define VNCOPT
218    #endif
219    
220            while ((c = getopt(argc, argv, VNCOPT "u:d:s:S:c:p:n:k:g:a:fbeEmCKT:Dh?54")) != -1)
221          {          {
222                  switch (c)                  switch (c)
223                  {                  {
224    #ifdef RDP2VNC
225                            case 'V':
226                                    rfb_port = strtol(optarg, NULL, 10);
227                                    if (rfb_port < 100)
228                                            rfb_port += 5900;
229                                    break;
230    
231                            case 'E':
232                                    defer_time = strtol(optarg, NULL, 10);
233                                    if (defer_time < 0)
234                                            defer_time = 0;
235                                    break;
236    #endif
237    
238                          case 'u':                          case 'u':
239                                  STRNCPY(username, optarg, sizeof(username));                                  STRNCPY(g_username, optarg, sizeof(g_username));
240                                  username_option = 1;                                  username_option = 1;
241                                  break;                                  break;
242    
# Line 161  main(int argc, char *argv[]) Line 248  main(int argc, char *argv[])
248                                  STRNCPY(shell, optarg, sizeof(shell));                                  STRNCPY(shell, optarg, sizeof(shell));
249                                  break;                                  break;
250    
251                            case 'S':
252                                    if (!strcmp(optarg, "standard"))
253                                    {
254                                            win_button_size = 18;
255                                            break;
256                                    }
257    
258                                    win_button_size = strtol(optarg, &p, 10);
259    
260                                    if (*p)
261                                    {
262                                            error("invalid button size\n");
263                                            return 1;
264                                    }
265    
266                                    break;
267    
268                          case 'c':                          case 'c':
269                                  STRNCPY(directory, optarg, sizeof(directory));                                  STRNCPY(directory, optarg, sizeof(directory));
270                                  break;                                  break;
# Line 212  main(int argc, char *argv[]) Line 316  main(int argc, char *argv[])
316                                  break;                                  break;
317    
318                          case 'b':                          case 'b':
319                                  orders = False;                                  g_orders = False;
320                                  break;                                  break;
321    
322                          case 'e':                          case 'e':
323                                  encryption = False;                                  g_encryption = False;
324                                    break;
325                            case 'E':
326                                    packet_encryption = False;
327                                  break;                                  break;
   
328                          case 'm':                          case 'm':
329                                  sendmotion = False;                                  sendmotion = False;
330                                  break;                                  break;
# Line 239  main(int argc, char *argv[]) Line 345  main(int argc, char *argv[])
345                                  hide_decorations = True;                                  hide_decorations = True;
346                                  break;                                  break;
347    
348                            case 'a':
349                                    g_server_bpp = strtol(optarg, NULL, 10);
350                                    if (g_server_bpp != 8 && g_server_bpp != 16 && g_server_bpp != 15
351                                        && g_server_bpp != 24)
352                                    {
353                                            error("invalid server bpp\n");
354                                            return 1;
355                                    }
356                                    break;
357    
358                            case '5':
359                                    g_use_rdp5 = True;
360                                    break;
361                          case 'h':                          case 'h':
362                          case '?':                          case '?':
363                          default:                          default:
# Line 254  main(int argc, char *argv[]) Line 373  main(int argc, char *argv[])
373          }          }
374    
375          STRNCPY(server, argv[optind], sizeof(server));          STRNCPY(server, argv[optind], sizeof(server));
376          p = strchr(server, ':');          parse_server_and_port(server);
         if (p != NULL)  
         {  
                 tcp_port_rdp = strtol(p + 1, NULL, 10);  
                 *p = 0;  
         }  
377    
378          if (!username_option)          if (!username_option)
379          {          {
# Line 270  main(int argc, char *argv[]) Line 384  main(int argc, char *argv[])
384                          return 1;                          return 1;
385                  }                  }
386    
387                  STRNCPY(username, pw->pw_name, sizeof(username));                  STRNCPY(g_username, pw->pw_name, sizeof(g_username));
388          }          }
389    
390          if (hostname[0] == 0)          if (hostname[0] == 0)
# Line 297  main(int argc, char *argv[]) Line 411  main(int argc, char *argv[])
411                  strncat(title, server, sizeof(title) - sizeof("rdesktop - "));                  strncat(title, server, sizeof(title) - sizeof("rdesktop - "));
412          }          }
413    
414    #ifdef RDP2VNC
415            rdp2vnc_connect(server, flags, domain, password, shell, directory);
416            return 0;
417    #else
418    
419          if (!ui_init())          if (!ui_init())
420                  return 1;                  return 1;
421    
422            /* rdpsnd_init(); */
423            /* rdpdr_init(); */
424    
425          if (!rdp_connect(server, flags, domain, password, shell, directory))          if (!rdp_connect(server, flags, domain, password, shell, directory))
426                  return 1;                  return 1;
427    
428            /* By setting encryption to False here, we have an encrypted login
429               packet but unencrypted transfer of other packets */
430            if (!packet_encryption)
431                    g_encryption = False;
432    
433    
434          DEBUG(("Connection successful.\n"));          DEBUG(("Connection successful.\n"));
435          memset(password, 0, sizeof(password));          memset(password, 0, sizeof(password));
436    
437          if (ui_create_window())          if (ui_create_window())
438          {          {
439                  rdp_main_loop();                  rdp_retval = rdp_main_loop();
440                  ui_destroy_window();                  ui_destroy_window();
441          }          }
442    
443          DEBUG(("Disconnecting...\n"));          DEBUG(("Disconnecting...\n"));
444          rdp_disconnect();          rdp_disconnect();
445          ui_deinit();          ui_deinit();
446          return 0;  
447            if (True == rdp_retval)
448                    return 0;
449            else
450                    return 2;
451    
452    #endif
453    
454  }  }
455    
456  #ifdef EGD_SOCKET  #ifdef EGD_SOCKET
# Line 475  unimpl(char *format, ...) Line 610  unimpl(char *format, ...)
610    
611  /* produce a hex dump */  /* produce a hex dump */
612  void  void
613  hexdump(unsigned char *p, unsigned int len)  hexdump(unsigned char *p, int len)
614  {  {
615          unsigned char *line = p;          unsigned char *line = p;
616          unsigned int thisline, offset = 0;          int i, thisline, offset = 0;
         int i;  
617    
618          while (offset < len)          while (offset < len)
619          {          {
# Line 503  hexdump(unsigned char *p, unsigned int l Line 637  hexdump(unsigned char *p, unsigned int l
637          }          }
638  }  }
639    
640  #ifdef SAVE_LICENCE  
641  int  int
642  load_licence(unsigned char **data)  load_licence(unsigned char **data)
643  {  {
644          char *path;          char *home, *path;
         char *home;  
645          struct stat st;          struct stat st;
646          int fd;          int fd, length;
647    
648          home = getenv("HOME");          home = getenv("HOME");
649          if (home == NULL)          if (home == NULL)
650                  return -1;                  return -1;
651    
652          path = xmalloc(strlen(home) + strlen(hostname) + 20);          path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));
653          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
654    
655          fd = open(path, O_RDONLY);          fd = open(path, O_RDONLY);
# Line 526  load_licence(unsigned char **data) Line 659  load_licence(unsigned char **data)
659          if (fstat(fd, &st))          if (fstat(fd, &st))
660                  return -1;                  return -1;
661    
662          *data = xmalloc(st.st_size);          *data = (uint8 *) xmalloc(st.st_size);
663          return read(fd, *data, st.st_size);          length = read(fd, *data, st.st_size);
664            close(fd);
665            xfree(path);
666            return length;
667  }  }
668    
669  void  void
670  save_licence(unsigned char *data, int length)  save_licence(unsigned char *data, int length)
671  {  {
672          char *fpath;            /* file path for licence */          char *home, *path, *tmppath;
673          char *fname, *fnamewrk; /* file name for licence .inkl path. */          int fd;
         char *home;  
         uint32 y;  
         struct flock fnfl;  
         int fnfd, fnwrkfd, i, wlen;  
         struct stream s, *s_ptr;  
         uint32 len;  
   
         /* Construct a stream, so that we can use macros to extract the  
          * licence.  
          */  
         s_ptr = &s;  
         s_ptr->p = data;  
         /* Skip first two bytes */  
         in_uint16(s_ptr, len);  
   
         /* Skip three strings */  
         for (i = 0; i < 3; i++)  
         {  
                 in_uint32(s_ptr, len);  
                 s_ptr->p += len;  
                 /* Make sure that we won't be past the end of data after  
                  * reading the next length value  
                  */  
                 if ((s_ptr->p) + 4 > data + length)  
                 {  
                         printf("Error in parsing licence key.\n");  
                         printf("Strings %d end value %x > supplied length (%x)\n",  
                                i, s_ptr->p, data + length);  
                         return;  
                 }  
         }  
         in_uint32(s_ptr, len);  
         if (s_ptr->p + len > data + length)  
         {  
                 printf("Error in parsing licence key.\n");  
                 printf("End of licence %x > supplied length (%x)\n", s_ptr->p + len, data + length);  
                 return;  
         }  
674    
675          home = getenv("HOME");          home = getenv("HOME");
676          if (home == NULL)          if (home == NULL)
677                  return;                  return;
678    
679          /* set and create the directory -- if it doesn't exist. */          path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));
         fpath = xmalloc(strlen(home) + 11);  
         STRNCPY(fpath, home, strlen(home) + 1);  
680    
681          sprintf(fpath, "%s/.rdesktop", fpath);          sprintf(path, "%s/.rdesktop", home);
682          if (mkdir(fpath, 0700) == -1 && errno != EEXIST)          if ((mkdir(path, 0700) == -1) && errno != EEXIST)
683          {          {
684                  perror("mkdir");                  perror(path);
685                  exit(1);                  return;
686          }          }
687    
688          /* set the real licence filename, and put a write lock on it. */          /* write licence to licence.hostname.new, then atomically rename to licence.hostname */
         fname = xmalloc(strlen(fpath) + strlen(hostname) + 10);  
         sprintf(fname, "%s/licence.%s", fpath, hostname);  
         fnfd = open(fname, O_RDONLY);  
         if (fnfd != -1)  
         {  
                 fnfl.l_type = F_WRLCK;  
                 fnfl.l_whence = SEEK_SET;  
                 fnfl.l_start = 0;  
                 fnfl.l_len = 1;  
                 fcntl(fnfd, F_SETLK, &fnfl);  
         }  
   
         /* create a temporary licence file */  
         fnamewrk = xmalloc(strlen(fname) + 12);  
         for (y = 0;; y++)  
         {  
                 sprintf(fnamewrk, "%s.%lu", fname, y);  
                 fnwrkfd = open(fnamewrk, O_WRONLY | O_CREAT | O_EXCL, 0600);  
                 if (fnwrkfd == -1)  
                 {  
                         if (errno == EINTR || errno == EEXIST)  
                                 continue;  
                         perror("create");  
                         exit(1);  
                 }  
                 break;  
         }  
         /* write to the licence file */  
         for (y = 0; y < len;)  
         {  
                 do  
                 {  
                         wlen = write(fnwrkfd, s_ptr->p + y, len - y);  
                 }  
                 while (wlen == -1 && errno == EINTR);  
                 if (wlen < 1)  
                 {  
                         perror("write");  
                         unlink(fnamewrk);  
                         exit(1);  
                 }  
                 y += wlen;  
         }  
689    
690          /* close the file and rename it to fname */          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
691          if (close(fnwrkfd) == -1)          tmppath = (char *) xmalloc(strlen(path) + sizeof(".new"));
692            strcpy(tmppath, path);
693            strcat(tmppath, ".new");
694    
695            fd = open(tmppath, O_WRONLY | O_CREAT | O_TRUNC, 0600);
696            if (fd == -1)
697          {          {
698                  perror("close");                  perror(tmppath);
699                  unlink(fnamewrk);                  return;
                 exit(1);  
700          }          }
701          if (rename(fnamewrk, fname) == -1)  
702            if (write(fd, data, length) != length)
703          {          {
704                  perror("rename");                  perror(tmppath);
705                  unlink(fnamewrk);                  unlink(tmppath);
                 exit(1);  
706          }          }
707          /* close the file lock on fname */          else if (rename(tmppath, path) == -1)
         if (fnfd != -1)  
708          {          {
709                  fnfl.l_type = F_UNLCK;                  perror(path);
710                  fnfl.l_whence = SEEK_SET;                  unlink(tmppath);
                 fnfl.l_start = 0;  
                 fnfl.l_len = 1;  
                 fcntl(fnfd, F_SETLK, &fnfl);  
                 close(fnfd);  
711          }          }
712    
713            close(fd);
714            xfree(tmppath);
715            xfree(path);
716  }  }
 #endif  

Legend:
Removed from v.297  
changed lines
  Added in v.444

  ViewVC Help
Powered by ViewVC 1.1.26