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

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

revision 678 by jsorg71, Mon Apr 26 22:31:22 2004 UTC revision 1042 by astrand, Tue Jan 24 12:40:24 2006 UTC
# Line 1  Line 1 
1  /* -*- c-basic-offset: 8 -*-  /* -*- 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-2003     Copyright (C) Matthew Chapman 1999-2005
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 30  Line 30 
30  #include <errno.h>  #include <errno.h>
31  #include "rdesktop.h"  #include "rdesktop.h"
32    
33    #ifdef HAVE_LOCALE_H
34    #include <locale.h>
35    #endif
36    #ifdef HAVE_ICONV
37    #ifdef HAVE_LANGINFO_H
38    #include <langinfo.h>
39    #endif
40    #endif
41    
42  #ifdef EGD_SOCKET  #ifdef EGD_SOCKET
43    #include <sys/types.h>
44  #include <sys/socket.h>         /* socket connect */  #include <sys/socket.h>         /* socket connect */
45  #include <sys/un.h>             /* sockaddr_un */  #include <sys/un.h>             /* sockaddr_un */
46  #endif  #endif
47    
 #ifdef WITH_OPENSSL  
48  #include <openssl/md5.h>  #include <openssl/md5.h>
 #else  
 #include "crypto/md5.h"  
 #endif  
49    
50  char g_title[64] = "";  char g_title[64] = "";
51  char g_username[64];  char g_username[64];
52  char hostname[16];  char g_hostname[16];
53  char keymapname[16];  char g_keymapname[PATH_MAX] = "";
54  int keylayout = 0x409;          /* Defaults to US keyboard layout */  unsigned int g_keylayout = 0x409;       /* Defaults to US keyboard layout */
55    int g_keyboard_type = 0x4;      /* Defaults to US keyboard layout */
56    int g_keyboard_subtype = 0x0;   /* Defaults to US keyboard layout */
57    int g_keyboard_functionkeys = 0xc;      /* Defaults to US keyboard layout */
58    
59  int g_width = 800;              /* width is special: If 0, the  int g_width = 800;              /* width is special: If 0, the
60                                     geometry will be fetched from                                     geometry will be fetched from
# Line 53  int g_width = 800;             /* width is special: Line 62  int g_width = 800;             /* width is special:
62                                     absolute value specifies the                                     absolute value specifies the
63                                     percent of the whole screen. */                                     percent of the whole screen. */
64  int g_height = 600;  int g_height = 600;
65  int tcp_port_rdp = TCP_PORT_RDP;  int g_xpos = 0;
66  int g_server_bpp = 8;  int g_ypos = 0;
67    int g_pos = 0;                  /* 0 position unspecified,
68                                       1 specified,
69                                       2 xpos neg,
70                                       4 ypos neg  */
71    extern int g_tcp_port_rdp;
72    int g_server_depth = 8;
73  int g_win_button_size = 0;      /* If zero, disable single app mode */  int g_win_button_size = 0;      /* If zero, disable single app mode */
74  BOOL g_bitmap_compression = True;  BOOL g_bitmap_compression = True;
75  BOOL g_sendmotion = True;  BOOL g_sendmotion = True;
76  BOOL g_bitmap_cache = True;  BOOL g_bitmap_cache = True;
77    BOOL g_bitmap_cache_persist_enable = False;
78    BOOL g_bitmap_cache_precache = True;
79  BOOL g_encryption = True;  BOOL g_encryption = True;
80  BOOL packet_encryption = True;  BOOL packet_encryption = True;
81  BOOL g_desktop_save = True;  BOOL g_desktop_save = True;     /* desktop save order */
82    BOOL g_polygon_ellipse_orders = True;   /* polygon / ellipse orders */
83  BOOL g_fullscreen = False;  BOOL g_fullscreen = False;
84  BOOL g_grab_keyboard = True;  BOOL g_grab_keyboard = True;
85  BOOL g_hide_decorations = False;  BOOL g_hide_decorations = False;
# Line 73  BOOL g_ownbackstore = True;    /* We can't Line 91  BOOL g_ownbackstore = True;    /* We can't
91  uint32 g_embed_wnd;  uint32 g_embed_wnd;
92  uint32 g_rdp5_performanceflags =  uint32 g_rdp5_performanceflags =
93          RDP5_NO_WALLPAPER | RDP5_NO_FULLWINDOWDRAG | RDP5_NO_MENUANIMATIONS;          RDP5_NO_WALLPAPER | RDP5_NO_FULLWINDOWDRAG | RDP5_NO_MENUANIMATIONS;
94    /* Session Directory redirection */
95    BOOL g_redirect = False;
96    char g_redirect_server[64];
97    char g_redirect_domain[16];
98    char g_redirect_password[64];
99    char g_redirect_username[64];
100    char g_redirect_cookie[128];
101    uint32 g_redirect_flags = 0;
102    
103  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
104  BOOL g_rdpsnd = False;  BOOL g_rdpsnd = False;
105  #endif  #endif
106    
107    #ifdef HAVE_ICONV
108    char g_codepage[16] = "";
109    #endif
110    
111  extern RDPDR_DEVICE g_rdpdr_device[];  extern RDPDR_DEVICE g_rdpdr_device[];
112  extern uint32 g_num_devices;  extern uint32 g_num_devices;
113  extern char *g_rdpdr_clientname;  extern char *g_rdpdr_clientname;
# Line 94  static void Line 124  static void
124  usage(char *program)  usage(char *program)
125  {  {
126          fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");          fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");
127          fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2003 Matt Chapman.\n");          fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2005 Matt Chapman.\n");
128          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
129    
130          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);
# Line 112  usage(char *program) Line 142  usage(char *program)
142          fprintf(stderr, "   -g: desktop geometry (WxH)\n");          fprintf(stderr, "   -g: desktop geometry (WxH)\n");
143          fprintf(stderr, "   -f: full-screen mode\n");          fprintf(stderr, "   -f: full-screen mode\n");
144          fprintf(stderr, "   -b: force bitmap updates\n");          fprintf(stderr, "   -b: force bitmap updates\n");
145    #ifdef HAVE_ICONV
146            fprintf(stderr, "   -L: local codepage\n");
147    #endif
148          fprintf(stderr, "   -B: use BackingStore of X-server (if available)\n");          fprintf(stderr, "   -B: use BackingStore of X-server (if available)\n");
149          fprintf(stderr, "   -e: disable encryption (French TS)\n");          fprintf(stderr, "   -e: disable encryption (French TS)\n");
150          fprintf(stderr, "   -E: disable encryption from client to server\n");          fprintf(stderr, "   -E: disable encryption from client to server\n");
# Line 124  usage(char *program) Line 157  usage(char *program)
157          fprintf(stderr, "   -N: enable numlock syncronization\n");          fprintf(stderr, "   -N: enable numlock syncronization\n");
158          fprintf(stderr, "   -X: embed into another window with a given id.\n");          fprintf(stderr, "   -X: embed into another window with a given id.\n");
159          fprintf(stderr, "   -a: connection colour depth\n");          fprintf(stderr, "   -a: connection colour depth\n");
160          fprintf(stderr,          fprintf(stderr, "   -z: enable rdp compression\n");
161                  "   -x: RDP5 experience (m[odem 28.8], b[roadband], l[an] or hex number)\n");          fprintf(stderr, "   -x: RDP5 experience (m[odem 28.8], b[roadband], l[an] or hex nr.)\n");
162            fprintf(stderr, "   -P: use persistent bitmap caching\n");
163          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");
164          fprintf(stderr,          fprintf(stderr,
165                  "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");                  "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");
166          fprintf(stderr, "             or      COM1=/dev/ttyS0,COM2=/dev/ttyS1\n");          fprintf(stderr, "             or      COM1=/dev/ttyS0,COM2=/dev/ttyS1\n");
167          fprintf(stderr,          fprintf(stderr,
168                  "         '-r disk:A=/mnt/floppy': enable redirection of /mnt/floppy to A:\n");                  "         '-r disk:floppy=/mnt/floppy': enable redirection of /mnt/floppy to 'floppy' share\n");
169          fprintf(stderr, "             or   A=/mnt/floppy,D=/mnt/cdrom'\n");          fprintf(stderr, "             or   'floppy=/mnt/floppy,cdrom=/mnt/cdrom'\n");
170          fprintf(stderr, "         '-r clientname=<client name>': Set the client name displayed\n");          fprintf(stderr, "         '-r clientname=<client name>': Set the client name displayed\n");
171          fprintf(stderr, "             for redirected disks\n");          fprintf(stderr, "             for redirected disks\n");
172          fprintf(stderr,          fprintf(stderr,
# Line 148  usage(char *program) Line 182  usage(char *program)
182          fprintf(stderr, "   -5: use RDP version 5 (default)\n");          fprintf(stderr, "   -5: use RDP version 5 (default)\n");
183  }  }
184    
185  void  static void
186  print_disconnect_reason(uint16 reason)  print_disconnect_reason(uint16 reason)
187  {  {
188          char *text;          char *text;
# Line 248  print_disconnect_reason(uint16 reason) Line 282  print_disconnect_reason(uint16 reason)
282          fprintf(stderr, "disconnect: %s.\n", text);          fprintf(stderr, "disconnect: %s.\n", text);
283  }  }
284    
285    static void
286    rdesktop_reset_state(void)
287    {
288            rdp_reset_state();
289    }
290    
291  static BOOL  static BOOL
292  read_password(char *password, int size)  read_password(char *password, int size)
293  {  {
# Line 305  parse_server_and_port(char *server) Line 345  parse_server_and_port(char *server)
345                  if (*server == '[' && p != NULL)                  if (*server == '[' && p != NULL)
346                  {                  {
347                          if (*(p + 1) == ':' && *(p + 2) != '\0')                          if (*(p + 1) == ':' && *(p + 2) != '\0')
348                                  tcp_port_rdp = strtol(p + 2, NULL, 10);                                  g_tcp_port_rdp = strtol(p + 2, NULL, 10);
349                          /* remove the port number and brackets from the address */                          /* remove the port number and brackets from the address */
350                          *p = '\0';                          *p = '\0';
351                          strncpy(server, server + 1, strlen(server));                          strncpy(server, server + 1, strlen(server));
# Line 317  parse_server_and_port(char *server) Line 357  parse_server_and_port(char *server)
357                  p = strchr(server, ':');                  p = strchr(server, ':');
358                  if (p != NULL)                  if (p != NULL)
359                  {                  {
360                          tcp_port_rdp = strtol(p + 1, NULL, 10);                          g_tcp_port_rdp = strtol(p + 1, NULL, 10);
361                          *p = 0;                          *p = 0;
362                  }                  }
363          }          }
# Line 325  parse_server_and_port(char *server) Line 365  parse_server_and_port(char *server)
365          p = strchr(server, ':');          p = strchr(server, ':');
366          if (p != NULL)          if (p != NULL)
367          {          {
368                  tcp_port_rdp = strtol(p + 1, NULL, 10);                  g_tcp_port_rdp = strtol(p + 1, NULL, 10);
369                  *p = 0;                  *p = 0;
370          }          }
371  #endif /* IPv6 */  #endif /* IPv6 */
# Line 347  main(int argc, char *argv[]) Line 387  main(int argc, char *argv[])
387          uint32 flags, ext_disc_reason = 0;          uint32 flags, ext_disc_reason = 0;
388          char *p;          char *p;
389          int c;          int c;
390            char *locale = NULL;
391          int username_option = 0;          int username_option = 0;
392            int run_count = 0;      /* Session Directory support */
393            BOOL continue_connect = True;   /* Session Directory support */
394    
395    #ifdef HAVE_LOCALE_H
396            /* Set locale according to environment */
397            locale = setlocale(LC_ALL, "");
398            if (locale)
399            {
400                    locale = xstrdup(locale);
401            }
402    
403    #endif
404          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
405          prompt_password = False;          prompt_password = False;
406          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
         strcpy(keymapname, "en-us");  
407          g_embed_wnd = 0;          g_embed_wnd = 0;
408    
409          g_num_devices = 0;          g_num_devices = 0;
# Line 364  main(int argc, char *argv[]) Line 414  main(int argc, char *argv[])
414  #define VNCOPT  #define VNCOPT
415  #endif  #endif
416    
417          while ((c = getopt(argc, argv, VNCOPT "u:d:s:c:p:n:k:g:fbBeEmCDKS:T:NX:a:x:r:045h?")) != -1)          while ((c = getopt(argc, argv,
418                               VNCOPT "u:L:d:s:c:p:n:k:g:fbBeEmzCDKS:T:NX:a:x:Pr:045h?")) != -1)
419          {          {
420                  switch (c)                  switch (c)
421                  {                  {
# Line 387  main(int argc, char *argv[]) Line 438  main(int argc, char *argv[])
438                                  username_option = 1;                                  username_option = 1;
439                                  break;                                  break;
440    
441                            case 'L':
442    #ifdef HAVE_ICONV
443                                    STRNCPY(g_codepage, optarg, sizeof(g_codepage));
444    #else
445                                    error("iconv support not available\n");
446    #endif
447                                    break;
448    
449                          case 'd':                          case 'd':
450                                  STRNCPY(domain, optarg, sizeof(domain));                                  STRNCPY(domain, optarg, sizeof(domain));
451                                  break;                                  break;
# Line 416  main(int argc, char *argv[]) Line 475  main(int argc, char *argv[])
475                                  break;                                  break;
476    
477                          case 'n':                          case 'n':
478                                  STRNCPY(hostname, optarg, sizeof(hostname));                                  STRNCPY(g_hostname, optarg, sizeof(g_hostname));
479                                  break;                                  break;
480    
481                          case 'k':                          case 'k':
482                                  STRNCPY(keymapname, optarg, sizeof(keymapname));                                  STRNCPY(g_keymapname, optarg, sizeof(g_keymapname));
483                                  break;                                  break;
484    
485                          case 'g':                          case 'g':
# Line 439  main(int argc, char *argv[]) Line 498  main(int argc, char *argv[])
498                                  }                                  }
499    
500                                  if (*p == 'x')                                  if (*p == 'x')
501                                          g_height = strtol(p + 1, NULL, 10);                                          g_height = strtol(p + 1, &p, 10);
502    
503                                  if (g_height <= 0)                                  if (g_height <= 0)
504                                  {                                  {
# Line 448  main(int argc, char *argv[]) Line 507  main(int argc, char *argv[])
507                                  }                                  }
508    
509                                  if (*p == '%')                                  if (*p == '%')
510                                    {
511                                          g_width = -g_width;                                          g_width = -g_width;
512                                            p++;
513                                    }
514    
515                                    if (*p == '+' || *p == '-')
516                                    {
517                                            g_pos |= (*p == '-') ? 2 : 1;
518                                            g_xpos = strtol(p, &p, 10);
519    
520                                    }
521                                    if (*p == '+' || *p == '-')
522                                    {
523                                            g_pos |= (*p == '-') ? 4 : 1;
524                                            g_ypos = strtol(p, NULL, 10);
525                                    }
526    
527                                  break;                                  break;
528    
# Line 512  main(int argc, char *argv[]) Line 586  main(int argc, char *argv[])
586                                  break;                                  break;
587    
588                          case 'X':                          case 'X':
589                                  g_embed_wnd = strtol(optarg, NULL, 10);                                  g_embed_wnd = strtol(optarg, NULL, 0);
590                                  break;                                  break;
591    
592                          case 'a':                          case 'a':
593                                  g_server_bpp = strtol(optarg, NULL, 10);                                  g_server_depth = strtol(optarg, NULL, 10);
594                                  if (g_server_bpp != 8 && g_server_bpp != 16 && g_server_bpp != 15                                  if (g_server_depth != 8 &&
595                                      && g_server_bpp != 24)                                      g_server_depth != 16 &&
596                                        g_server_depth != 15 && g_server_depth != 24)
597                                  {                                  {
598                                          error("invalid server bpp\n");                                          error("Invalid server colour depth.\n");
599                                          return 1;                                          return 1;
600                                  }                                  }
601                                  break;                                  break;
602    
603                          case 'x':                          case 'z':
604                                    DEBUG(("rdp compression enabled\n"));
605                                    flags |= (RDP_LOGON_COMPRESSION | RDP_LOGON_COMPRESSION2);
606                                    break;
607    
608                                  if (strncmp("modem", optarg, 1) == 0)                          case 'x':
609                                    if (str_startswith(optarg, "m"))        /* modem */
610                                  {                                  {
611                                          g_rdp5_performanceflags =                                          g_rdp5_performanceflags =
612                                                  RDP5_NO_WALLPAPER | RDP5_NO_FULLWINDOWDRAG |                                                  RDP5_NO_WALLPAPER | RDP5_NO_FULLWINDOWDRAG |
613                                                  RDP5_NO_MENUANIMATIONS | RDP5_NO_THEMING;                                                  RDP5_NO_MENUANIMATIONS | RDP5_NO_THEMING;
614                                  }                                  }
615                                  else if (strncmp("broadband", optarg, 1) == 0)                                  else if (str_startswith(optarg, "b"))   /* broadband */
616                                  {                                  {
617                                          g_rdp5_performanceflags = RDP5_NO_WALLPAPER;                                          g_rdp5_performanceflags = RDP5_NO_WALLPAPER;
618                                  }                                  }
619                                  else if (strncmp("lan", optarg, 1) == 0)                                  else if (str_startswith(optarg, "l"))   /* lan */
620                                  {                                  {
621                                          g_rdp5_performanceflags = RDP5_DISABLE_NOTHING;                                          g_rdp5_performanceflags = RDP5_DISABLE_NOTHING;
622                                  }                                  }
# Line 547  main(int argc, char *argv[]) Line 626  main(int argc, char *argv[])
626                                  }                                  }
627                                  break;                                  break;
628    
629                            case 'P':
630                                    g_bitmap_cache_persist_enable = True;
631                                    break;
632    
633                          case 'r':                          case 'r':
634    
635                                  if (strncmp("sound", optarg, 5) == 0)                                  if (str_startswith(optarg, "sound"))
636                                  {                                  {
637                                          optarg += 5;                                          optarg += 5;
638    
# Line 558  main(int argc, char *argv[]) Line 641  main(int argc, char *argv[])
641                                                  *optarg++;                                                  *optarg++;
642                                                  while ((p = next_arg(optarg, ',')))                                                  while ((p = next_arg(optarg, ',')))
643                                                  {                                                  {
644                                                          if (strncmp("remote", optarg, 6) == 0)                                                          if (str_startswith(optarg, "remote"))
645                                                                  flags |= RDP_LOGON_LEAVE_AUDIO;                                                                  flags |= RDP_LOGON_LEAVE_AUDIO;
646    
647                                                          if (strncmp("local", optarg, 5) == 0)                                                          if (str_startswith(optarg, "local"))
648  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
649                                                                  g_rdpsnd = True;                                                                  g_rdpsnd = True;
650  #else  #else
651                                                                  warning("Not compiled with sound support");                                                                  warning("Not compiled with sound support\n");
652  #endif  #endif
653    
654                                                          if (strncmp("off", optarg, 3) == 0)                                                          if (str_startswith(optarg, "off"))
655    #ifdef WITH_RDPSND
656                                                                  g_rdpsnd = False;                                                                  g_rdpsnd = False;
657    #else
658                                                                    warning("Not compiled with sound support\n");
659    #endif
660    
661                                                          optarg = p;                                                          optarg = p;
662                                                  }                                                  }
# Line 579  main(int argc, char *argv[]) Line 666  main(int argc, char *argv[])
666  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
667                                                  g_rdpsnd = True;                                                  g_rdpsnd = True;
668  #else  #else
669                                                  warning("Not compiled with sound support");                                                  warning("Not compiled with sound support\n");
670  #endif  #endif
671                                          }                                          }
672                                  }                                  }
673                                  else if (strncmp("disk", optarg, 4) == 0)                                  else if (str_startswith(optarg, "disk"))
674                                  {                                  {
675                                          /* -r disk:h:=/mnt/floppy */                                          /* -r disk:h:=/mnt/floppy */
676                                          disk_enum_devices(&g_num_devices, optarg + 4);                                          disk_enum_devices(&g_num_devices, optarg + 4);
677                                  }                                  }
678                                  else if (strncmp("comport", optarg, 7) == 0)                                  else if (str_startswith(optarg, "comport"))
679                                  {                                  {
680                                          serial_enum_devices(&g_num_devices, optarg + 7);                                          serial_enum_devices(&g_num_devices, optarg + 7);
681                                  }                                  }
682                                  else if (strncmp("lptport", optarg, 7) == 0)                                  else if (str_startswith(optarg, "lptport"))
683                                  {                                  {
684                                          parallel_enum_devices(&g_num_devices, optarg + 7);                                          parallel_enum_devices(&g_num_devices, optarg + 7);
685                                  }                                  }
686                                  else if (strncmp("printer", optarg, 7) == 0)                                  else if (str_startswith(optarg, "printer"))
687                                  {                                  {
688                                          printer_enum_devices(&g_num_devices, optarg + 7);                                          printer_enum_devices(&g_num_devices, optarg + 7);
689                                  }                                  }
690                                  else if (strncmp("clientname", optarg, 7) == 0)                                  else if (str_startswith(optarg, "clientname"))
691                                  {                                  {
692                                          g_rdpdr_clientname = xmalloc(strlen(optarg + 11) + 1);                                          g_rdpdr_clientname = xmalloc(strlen(optarg + 11) + 1);
693                                          strcpy(g_rdpdr_clientname, optarg + 11);                                          strcpy(g_rdpdr_clientname, optarg + 11);
# Line 652  main(int argc, char *argv[]) Line 739  main(int argc, char *argv[])
739                  STRNCPY(g_username, pw->pw_name, sizeof(g_username));                  STRNCPY(g_username, pw->pw_name, sizeof(g_username));
740          }          }
741    
742          if (hostname[0] == 0)  #ifdef HAVE_ICONV
743            if (g_codepage[0] == 0)
744            {
745                    if (setlocale(LC_CTYPE, ""))
746                    {
747                            STRNCPY(g_codepage, nl_langinfo(CODESET), sizeof(g_codepage));
748                    }
749                    else
750                    {
751                            STRNCPY(g_codepage, DEFAULT_CODEPAGE, sizeof(g_codepage));
752                    }
753            }
754    #endif
755    
756            if (g_hostname[0] == 0)
757          {          {
758                  if (gethostname(fullhostname, sizeof(fullhostname)) == -1)                  if (gethostname(fullhostname, sizeof(fullhostname)) == -1)
759                  {                  {
# Line 664  main(int argc, char *argv[]) Line 765  main(int argc, char *argv[])
765                  if (p != NULL)                  if (p != NULL)
766                          *p = 0;                          *p = 0;
767    
768                  STRNCPY(hostname, fullhostname, sizeof(hostname));                  STRNCPY(g_hostname, fullhostname, sizeof(g_hostname));
769            }
770    
771            if (g_keymapname[0] == 0)
772            {
773                    if (locale && xkeymap_from_locale(locale))
774                    {
775                            fprintf(stderr, "Autoselected keyboard map %s\n", g_keymapname);
776                    }
777                    else
778                    {
779                            STRNCPY(g_keymapname, "en-us", sizeof(g_keymapname));
780                    }
781          }          }
782            if (locale)
783                    xfree(locale);
784    
785    
786          if (prompt_password && read_password(password, sizeof(password)))          if (prompt_password && read_password(password, sizeof(password)))
787                  flags |= RDP_LOGON_AUTO;                  flags |= RDP_LOGON_AUTO;
# Line 690  main(int argc, char *argv[]) Line 806  main(int argc, char *argv[])
806  #endif  #endif
807          rdpdr_init();          rdpdr_init();
808    
809          if (!rdp_connect(server, flags, domain, password, shell, directory))          while (run_count < 2 && continue_connect)       /* add support for Session Directory; only reconnect once */
810                  return 1;          {
811                    if (run_count == 0)
812                    {
813                            if (!rdp_connect(server, flags, domain, password, shell, directory))
814                                    return 1;
815                    }
816                    else if (!rdp_reconnect
817                             (server, flags, domain, password, shell, directory, g_redirect_cookie))
818                            return 1;
819    
820          /* By setting encryption to False here, we have an encrypted login                  /* By setting encryption to False here, we have an encrypted login
821             packet but unencrypted transfer of other packets */                     packet but unencrypted transfer of other packets */
822          if (!packet_encryption)                  if (!packet_encryption)
823                  g_encryption = False;                          g_encryption = False;
824    
825    
826          DEBUG(("Connection successful.\n"));                  DEBUG(("Connection successful.\n"));
827          memset(password, 0, sizeof(password));                  memset(password, 0, sizeof(password));
828    
829          if (ui_create_window())                  if (run_count == 0)
830          {                          if (!ui_create_window())
831                  rdp_main_loop(&deactivated, &ext_disc_reason);                                  continue_connect = False;
832                  ui_destroy_window();  
833                    if (continue_connect)
834                            rdp_main_loop(&deactivated, &ext_disc_reason);
835    
836                    DEBUG(("Disconnecting...\n"));
837                    rdp_disconnect();
838    
839                    if ((g_redirect == True) && (run_count == 0))   /* Support for Session Directory */
840                    {
841                            /* reset state of major globals */
842                            rdesktop_reset_state();
843    
844                            STRNCPY(domain, g_redirect_domain, sizeof(domain));
845                            STRNCPY(g_username, g_redirect_username, sizeof(g_username));
846                            STRNCPY(password, g_redirect_password, sizeof(password));
847                            STRNCPY(server, g_redirect_server, sizeof(server));
848                            flags |= RDP_LOGON_AUTO;
849    
850                            g_redirect = False;
851                    }
852                    else
853                    {
854                            continue_connect = False;
855                            ui_destroy_window();
856                            break;
857                    }
858    
859                    run_count++;
860          }          }
861    
862          DEBUG(("Disconnecting...\n"));          cache_save_state();
         rdp_disconnect();  
863          ui_deinit();          ui_deinit();
864    
865          if (ext_disc_reason >= 2)          if (ext_disc_reason >= 2)
# Line 835  xmalloc(int size) Line 985  xmalloc(int size)
985          return mem;          return mem;
986  }  }
987    
988    /* strdup */
989    char *
990    xstrdup(const char *s)
991    {
992            char *mem = strdup(s);
993            if (mem == NULL)
994            {
995                    perror("strdup");
996                    exit(1);
997            }
998            return mem;
999    }
1000    
1001  /* realloc; exit if out of memory */  /* realloc; exit if out of memory */
1002  void *  void *
1003  xrealloc(void *oldmem, int size)  xrealloc(void *oldmem, int size)
1004  {  {
1005          void *mem = realloc(oldmem, size);          void *mem;
1006    
1007            if (size < 1)
1008                    size = 1;
1009            mem = realloc(oldmem, size);
1010          if (mem == NULL)          if (mem == NULL)
1011          {          {
1012                  error("xrealloc %d\n", size);                  error("xrealloc %d\n", size);
# Line 1004  toupper_str(char *p) Line 1171  toupper_str(char *p)
1171  }  }
1172    
1173    
1174    BOOL
1175    str_startswith(const char *s, const char *prefix)
1176    {
1177            return (strncmp(s, prefix, strlen(prefix)) == 0);
1178    }
1179    
1180    
1181  /* not all clibs got ltoa */  /* not all clibs got ltoa */
1182  #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)  #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)
1183    
# Line 1052  load_licence(unsigned char **data) Line 1226  load_licence(unsigned char **data)
1226          if (home == NULL)          if (home == NULL)
1227                  return -1;                  return -1;
1228    
1229          path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));          path = (char *) xmalloc(strlen(home) + strlen(g_hostname) + sizeof("/.rdesktop/licence."));
1230          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);          sprintf(path, "%s/.rdesktop/licence.%s", home, g_hostname);
1231    
1232          fd = open(path, O_RDONLY);          fd = open(path, O_RDONLY);
1233          if (fd == -1)          if (fd == -1)
# Line 1079  save_licence(unsigned char *data, int le Line 1253  save_licence(unsigned char *data, int le
1253          if (home == NULL)          if (home == NULL)
1254                  return;                  return;
1255    
1256          path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));          path = (char *) xmalloc(strlen(home) + strlen(g_hostname) + sizeof("/.rdesktop/licence."));
1257    
1258          sprintf(path, "%s/.rdesktop", home);          sprintf(path, "%s/.rdesktop", home);
1259          if ((mkdir(path, 0700) == -1) && errno != EEXIST)          if ((mkdir(path, 0700) == -1) && errno != EEXIST)
# Line 1090  save_licence(unsigned char *data, int le Line 1264  save_licence(unsigned char *data, int le
1264    
1265          /* write licence to licence.hostname.new, then atomically rename to licence.hostname */          /* write licence to licence.hostname.new, then atomically rename to licence.hostname */
1266    
1267          sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);          sprintf(path, "%s/.rdesktop/licence.%s", home, g_hostname);
1268          tmppath = (char *) xmalloc(strlen(path) + sizeof(".new"));          tmppath = (char *) xmalloc(strlen(path) + sizeof(".new"));
1269          strcpy(tmppath, path);          strcpy(tmppath, path);
1270          strcat(tmppath, ".new");          strcat(tmppath, ".new");
# Line 1117  save_licence(unsigned char *data, int le Line 1291  save_licence(unsigned char *data, int le
1291          xfree(tmppath);          xfree(tmppath);
1292          xfree(path);          xfree(path);
1293  }  }
1294    
1295    /* Create the bitmap cache directory */
1296    BOOL
1297    rd_pstcache_mkdir(void)
1298    {
1299            char *home;
1300            char bmpcache_dir[256];
1301    
1302            home = getenv("HOME");
1303    
1304            if (home == NULL)
1305                    return False;
1306    
1307            sprintf(bmpcache_dir, "%s/%s", home, ".rdesktop");
1308    
1309            if ((mkdir(bmpcache_dir, S_IRWXU) == -1) && errno != EEXIST)
1310            {
1311                    perror(bmpcache_dir);
1312                    return False;
1313            }
1314    
1315            sprintf(bmpcache_dir, "%s/%s", home, ".rdesktop/cache");
1316    
1317            if ((mkdir(bmpcache_dir, S_IRWXU) == -1) && errno != EEXIST)
1318            {
1319                    perror(bmpcache_dir);
1320                    return False;
1321            }
1322    
1323            return True;
1324    }
1325    
1326    /* open a file in the .rdesktop directory */
1327    int
1328    rd_open_file(char *filename)
1329    {
1330            char *home;
1331            char fn[256];
1332            int fd;
1333    
1334            home = getenv("HOME");
1335            if (home == NULL)
1336                    return -1;
1337            sprintf(fn, "%s/.rdesktop/%s", home, filename);
1338            fd = open(fn, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
1339            if (fd == -1)
1340                    perror(fn);
1341            return fd;
1342    }
1343    
1344    /* close file */
1345    void
1346    rd_close_file(int fd)
1347    {
1348            close(fd);
1349    }
1350    
1351    /* read from file*/
1352    int
1353    rd_read_file(int fd, void *ptr, int len)
1354    {
1355            return read(fd, ptr, len);
1356    }
1357    
1358    /* write to file */
1359    int
1360    rd_write_file(int fd, void *ptr, int len)
1361    {
1362            return write(fd, ptr, len);
1363    }
1364    
1365    /* move file pointer */
1366    int
1367    rd_lseek_file(int fd, int offset)
1368    {
1369            return lseek(fd, offset, SEEK_SET);
1370    }
1371    
1372    /* do a write lock on a file */
1373    BOOL
1374    rd_lock_file(int fd, int start, int len)
1375    {
1376            struct flock lock;
1377    
1378            lock.l_type = F_WRLCK;
1379            lock.l_whence = SEEK_SET;
1380            lock.l_start = start;
1381            lock.l_len = len;
1382            if (fcntl(fd, F_SETLK, &lock) == -1)
1383                    return False;
1384            return True;
1385    }

Legend:
Removed from v.678  
changed lines
  Added in v.1042

  ViewVC Help
Powered by ViewVC 1.1.26