/[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 474 by matthewc, Tue Sep 30 09:11:08 2003 UTC revision 603 by stargo, Sat Feb 7 18:47:06 2004 UTC
# Line 26  Line 26 
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 <ctype.h>              /* toupper */
30  #include <errno.h>  #include <errno.h>
31  #include "rdesktop.h"  #include "rdesktop.h"
32    
# Line 40  Line 41 
41  #include "crypto/md5.h"  #include "crypto/md5.h"
42  #endif  #endif
43    
44  char g_title[32] = "";  char g_title[64] = "";
45  char g_username[16];  char g_username[64];
46  char hostname[16];  char hostname[16];
47  char keymapname[16];  char keymapname[16];
48  int keylayout = 0x409;          /* Defaults to US keyboard layout */  int keylayout = 0x409;          /* Defaults to US keyboard layout */
49  int g_width = 800;              /* If width or height are reset to zero, the geometry will  
50                                     be fetched from _NET_WORKAREA */  int g_width = 800;              /* width is special: If 0, the
51                                       geometry will be fetched from
52                                       _NET_WORKAREA. If negative,
53                                       absolute value specifies the
54                                       percent of the whole screen. */
55  int g_height = 600;  int g_height = 600;
56  int tcp_port_rdp = TCP_PORT_RDP;  int tcp_port_rdp = TCP_PORT_RDP;
57  int g_server_bpp = 8;  int g_server_bpp = 8;
# Line 61  BOOL g_fullscreen = False; Line 66  BOOL g_fullscreen = False;
66  BOOL g_grab_keyboard = True;  BOOL g_grab_keyboard = True;
67  BOOL g_hide_decorations = False;  BOOL g_hide_decorations = False;
68  BOOL g_use_rdp5 = True;  BOOL g_use_rdp5 = True;
69    BOOL g_console_session = False;
70    BOOL g_numlock_sync = False;
71  extern BOOL g_owncolmap;  extern BOOL g_owncolmap;
72    
73    #ifdef WITH_RDPSND
74    BOOL g_rdpsnd = False;
75    #endif
76    
77    extern RDPDR_DEVICE g_rdpdr_device[];
78    extern uint32 g_num_devices;
79    
80  #ifdef RDP2VNC  #ifdef RDP2VNC
81  extern int rfb_port;  extern int rfb_port;
82  extern int defer_time;  extern int defer_time;
# Line 86  usage(char *program) Line 100  usage(char *program)
100          fprintf(stderr, "   -u: user name\n");          fprintf(stderr, "   -u: user name\n");
101          fprintf(stderr, "   -d: domain\n");          fprintf(stderr, "   -d: domain\n");
102          fprintf(stderr, "   -s: shell\n");          fprintf(stderr, "   -s: shell\n");
         fprintf(stderr, "   -S: caption button size (single application mode)\n");  
103          fprintf(stderr, "   -c: working directory\n");          fprintf(stderr, "   -c: working directory\n");
104          fprintf(stderr, "   -p: password (- to prompt)\n");          fprintf(stderr, "   -p: password (- to prompt)\n");
105          fprintf(stderr, "   -n: client hostname\n");          fprintf(stderr, "   -n: client hostname\n");
106          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");
107          fprintf(stderr, "   -g: desktop geometry (WxH)\n");          fprintf(stderr, "   -g: desktop geometry (WxH)\n");
108          fprintf(stderr, "   -f: full-screen mode\n");          fprintf(stderr, "   -f: full-screen mode\n");
109          fprintf(stderr, "   -b: force bitmap updates\n");          fprintf(stderr, "   -b: force bitmap updates\n");
# Line 98  usage(char *program) Line 111  usage(char *program)
111          fprintf(stderr, "   -E: disable encryption from client to server\n");          fprintf(stderr, "   -E: disable encryption from client to server\n");
112          fprintf(stderr, "   -m: do not send motion events\n");          fprintf(stderr, "   -m: do not send motion events\n");
113          fprintf(stderr, "   -C: use private colour map\n");          fprintf(stderr, "   -C: use private colour map\n");
114            fprintf(stderr, "   -D: hide window manager decorations\n");
115          fprintf(stderr, "   -K: keep window manager key bindings\n");          fprintf(stderr, "   -K: keep window manager key bindings\n");
116            fprintf(stderr, "   -S: caption button size (single application mode)\n");
117          fprintf(stderr, "   -T: window title\n");          fprintf(stderr, "   -T: window title\n");
118          fprintf(stderr, "   -D: hide window manager decorations\n");          fprintf(stderr, "   -N: enable numlock syncronization\n");
119          fprintf(stderr, "   -a: server bpp\n");          fprintf(stderr, "   -a: connection colour depth\n");
120          fprintf(stderr, "   -4: Use RDP version 4\n");          fprintf(stderr, "   -r: enable specified device redirection (this flag can be repeated)\n");
121          fprintf(stderr, "   -5: Use RDP version 5 (default)\n");          fprintf(stderr, "         '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");
122            fprintf(stderr, "             or      COM1=/dev/ttyS0,COM2=/dev/ttyS1\n");
123            fprintf(stderr, "         '-r disk:A=/mnt/floppy': enable redirection of /mnt/floppy to A:\n");
124            fprintf(stderr, "             or   A=/mnt/floppy,D=/mnt/cdrom'\n");
125            fprintf(stderr, "         '-r lptport:LPT1=/dev/lp0': enable parallel redirection of /dev/lp0 to LPT1\n");
126            fprintf(stderr, "             or      LPT1=/dev/lp0,LPT2=/dev/lp1\n");
127            fprintf(stderr, "         '-r printer:mydeskjet': enable printer redirection\n");
128            fprintf(stderr, "             or       mydeskjet=\"HP LaserJet IIIP\" to enter server driver as well\n");
129            fprintf(stderr, "         '-r sound': enable sound redirection\n");
130            fprintf(stderr, "   -0: attach to console\n");
131            fprintf(stderr, "   -4: use RDP version 4\n");
132            fprintf(stderr, "   -5: use RDP version 5 (default)\n");
133  }  }
134    
135  static BOOL  static BOOL
# Line 197  main(int argc, char *argv[]) Line 223  main(int argc, char *argv[])
223          char server[64];          char server[64];
224          char fullhostname[64];          char fullhostname[64];
225          char domain[16];          char domain[16];
226          char password[16];          char password[64];
227          char shell[128];          char shell[128];
228          char directory[32];          char directory[32];
229          BOOL prompt_password, rdp_retval = False;          BOOL prompt_password, rdp_retval = False;
# Line 205  main(int argc, char *argv[]) Line 231  main(int argc, char *argv[])
231          uint32 flags;          uint32 flags;
232          char *p;          char *p;
233          int c;          int c;
234    
235          int username_option = 0;          int username_option = 0;
236    
237          flags = RDP_LOGON_NORMAL;          flags = RDP_LOGON_NORMAL;
# Line 212  main(int argc, char *argv[]) Line 239  main(int argc, char *argv[])
239          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
240          strcpy(keymapname, "en-us");          strcpy(keymapname, "en-us");
241    
242            g_num_devices = 0;
243    
244  #ifdef RDP2VNC  #ifdef RDP2VNC
245  #define VNCOPT "V:Q:"  #define VNCOPT "V:Q:"
246  #else  #else
247  #define VNCOPT  #define VNCOPT
248  #endif  #endif
249    
250          while ((c = getopt(argc, argv, VNCOPT "u:d:s:S:c:p:n:k:g:a:fbeEmCKT:Dh?54")) != -1)          while ((c = getopt(argc, argv, VNCOPT "u:d:s:c:p:n:k:g:fbeEmCDKS:T:Na:r:045h?")) != -1)
251          {          {
252                  switch (c)                  switch (c)
253                  {                  {
# Line 249  main(int argc, char *argv[]) Line 278  main(int argc, char *argv[])
278                                  STRNCPY(shell, optarg, sizeof(shell));                                  STRNCPY(shell, optarg, sizeof(shell));
279                                  break;                                  break;
280    
                         case 'S':  
                                 if (!strcmp(optarg, "standard"))  
                                 {  
                                         g_win_button_size = 18;  
                                         break;  
                                 }  
   
                                 g_win_button_size = strtol(optarg, &p, 10);  
   
                                 if (*p)  
                                 {  
                                         error("invalid button size\n");  
                                         return 1;  
                                 }  
   
                                 break;  
   
281                          case 'c':                          case 'c':
282                                  STRNCPY(directory, optarg, sizeof(directory));                                  STRNCPY(directory, optarg, sizeof(directory));
283                                  break;                                  break;
# Line 295  main(int argc, char *argv[]) Line 307  main(int argc, char *argv[])
307                                  break;                                  break;
308    
309                          case 'g':                          case 'g':
310                                    g_fullscreen = False;
311                                  if (!strcmp(optarg, "workarea"))                                  if (!strcmp(optarg, "workarea"))
312                                  {                                  {
313                                          g_width = g_height = 0;                                          g_width = g_height = 0;
# Line 302  main(int argc, char *argv[]) Line 315  main(int argc, char *argv[])
315                                  }                                  }
316    
317                                  g_width = strtol(optarg, &p, 10);                                  g_width = strtol(optarg, &p, 10);
318                                    if (g_width <= 0)
319                                    {
320                                            error("invalid geometry\n");
321                                            return 1;
322                                    }
323    
324                                  if (*p == 'x')                                  if (*p == 'x')
325                                          g_height = strtol(p + 1, NULL, 10);                                          g_height = strtol(p + 1, NULL, 10);
326    
327                                  if ((g_width == 0) || (g_height == 0))                                  if (g_height <= 0)
328                                  {                                  {
329                                          error("invalid geometry\n");                                          error("invalid geometry\n");
330                                          return 1;                                          return 1;
331                                  }                                  }
332    
333                                    if (*p == '%')
334                                            g_width = -g_width;
335    
336                                  break;                                  break;
337    
338                          case 'f':                          case 'f':
# Line 334  main(int argc, char *argv[]) Line 357  main(int argc, char *argv[])
357                                  g_owncolmap = True;                                  g_owncolmap = True;
358                                  break;                                  break;
359    
360                            case 'D':
361                                    g_hide_decorations = True;
362                                    break;
363    
364                          case 'K':                          case 'K':
365                                  g_grab_keyboard = False;                                  g_grab_keyboard = False;
366                                  break;                                  break;
367    
368                            case 'S':
369                                    if (!strcmp(optarg, "standard"))
370                                    {
371                                            g_win_button_size = 18;
372                                            break;
373                                    }
374    
375                                    g_win_button_size = strtol(optarg, &p, 10);
376    
377                                    if (*p)
378                                    {
379                                            error("invalid button size\n");
380                                            return 1;
381                                    }
382    
383                                    break;
384    
385                          case 'T':                          case 'T':
386                                  STRNCPY(g_title, optarg, sizeof(g_title));                                  STRNCPY(g_title, optarg, sizeof(g_title));
387                                  break;                                  break;
388    
389                          case 'D':                          case 'N':
390                                  g_hide_decorations = True;                                  g_numlock_sync = True;
391                                  break;                                  break;
392    
393                          case 'a':                          case 'a':
# Line 356  main(int argc, char *argv[]) Line 400  main(int argc, char *argv[])
400                                  }                                  }
401                                  break;                                  break;
402    
403                            case 'r':
404    
405                                    if (strncmp("sound", optarg, 5) == 0)
406                                    {
407    #ifdef WITH_RDPSND
408                                            g_rdpsnd = True;
409    #else
410                                            warning("Not compiled with sound support");
411    #endif
412                                    }
413                                    else if (strncmp("disk", optarg, 4) == 0)
414                                    {
415                                            /* -r disk:h:=/mnt/floppy */
416                                            disk_enum_devices(&g_num_devices, optarg + 4);
417                                    }
418                                    else if (strncmp("comport", optarg, 7) == 0)
419                                    {
420                                            serial_enum_devices(&g_num_devices, optarg + 7);
421                                    }
422                                    else if (strncmp("lptport", optarg, 7) == 0)
423                                    {
424                                            parallel_enum_devices(&g_num_devices, optarg + 7);
425                                    }
426                                    else if (strncmp("printer", optarg, 7) == 0)
427                                    {
428                                            printer_enum_devices(&g_num_devices, optarg + 7);
429                                    }
430                                    else
431                                    {
432                                            warning("Unknown -r argument\n\n\tPossible arguments are: comport, disk, lptport, printer, sound\n");
433                                    }
434                                    break;
435    
436                            case '0':
437                                    g_console_session = True;
438                                    break;
439    
440                          case '4':                          case '4':
441                                  g_use_rdp5 = False;                                  g_use_rdp5 = False;
442                                  break;                                  break;
# Line 426  main(int argc, char *argv[]) Line 507  main(int argc, char *argv[])
507                  return 1;                  return 1;
508    
509  #ifdef WITH_RDPSND  #ifdef WITH_RDPSND
510          rdpsnd_init();          if (g_rdpsnd)
511                    rdpsnd_init();
512  #endif  #endif
513          /* rdpdr_init(); */          rdpdr_init();
514    
515          if (!rdp_connect(server, flags, domain, password, shell, directory))          if (!rdp_connect(server, flags, domain, password, shell, directory))
516                  return 1;                  return 1;
# Line 618  unimpl(char *format, ...) Line 700  unimpl(char *format, ...)
700    
701  /* produce a hex dump */  /* produce a hex dump */
702  void  void
703  hexdump(unsigned char *p, int len)  hexdump(unsigned char *p, unsigned int len)
704  {  {
705          unsigned char *line = p;          unsigned char *line = p;
706          int i, thisline, offset = 0;          int i, thisline, offset = 0;
# Line 645  hexdump(unsigned char *p, int len) Line 727  hexdump(unsigned char *p, int len)
727          }          }
728  }  }
729    
730    /*
731      input: src is the string we look in for needle.
732             Needle may be escaped by a backslash, in
733             that case we ignore that particular needle.
734      return value: returns next src pointer, for
735            succesive executions, like in a while loop
736            if retval is 0, then there are no more args.
737      pitfalls:
738            src is modified. 0x00 chars are inserted to
739            terminate strings.
740            return val, points on the next val chr after ins
741            0x00
742    
743            example usage:
744            while( (pos = next_arg( optarg, ',')) ){
745                    printf("%s\n",optarg);
746                    optarg=pos;
747            }
748    
749    */
750    char *
751    next_arg(char *src, char needle)
752    {
753            char *nextval;
754            char *p;
755            char *mvp = 0;
756    
757            /* EOS */
758            if (*src == (char) 0x00)
759                    return 0;
760    
761            p = src;
762            /*  skip escaped needles */
763            while ((nextval = strchr(p, needle)))
764            {
765                    mvp = nextval - 1;
766                    /* found backslashed needle */
767                    if (*mvp == '\\' && (mvp > src))
768                    {
769                            /* move string one to the left */
770                            while (*(mvp + 1) != (char) 0x00)
771                            {
772                                    *mvp = *(mvp + 1);
773                                    *mvp++;
774                            }
775                            *mvp = (char) 0x00;
776                            p = nextval;
777                    }
778                    else
779                    {
780                            p = nextval + 1;
781                            break;
782                    }
783    
784            }
785    
786            /* more args available */
787            if (nextval)
788            {
789                    *nextval = (char) 0x00;
790                    return ++nextval;
791            }
792    
793            /* no more args after this, jump to EOS */
794            nextval = src + strlen(src);
795            return nextval;
796    }
797    
798    
799    void
800    toupper_str(char *p)
801    {
802            while (*p)
803            {
804                    if ((*p >= 'a') && (*p <= 'z'))
805                            *p = toupper((int) *p);
806                    p++;
807            }
808    }
809    
810    
811    /* not all clibs got ltoa */
812    #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)
813    
814    char *
815    l_to_a(long N, int base)
816    {
817            static char ret[LTOA_BUFSIZE];
818    
819            char *head = ret, buf[LTOA_BUFSIZE], *tail = buf + sizeof(buf);
820    
821            register int divrem;
822    
823            if (base < 36 || 2 > base)
824                    base = 10;
825    
826            if (N < 0)
827            {
828                    *head++ = '-';
829                    N = -N;
830            }
831    
832            tail = buf + sizeof(buf);
833            *--tail = 0;
834    
835            do
836            {
837                    divrem = N % base;
838                    *--tail = (divrem <= 9) ? divrem + '0' : divrem + 'a' - 10;
839                    N /= base;
840            }
841            while (N);
842    
843            strcpy(head, tail);
844            return ret;
845    }
846    
847    
848  int  int
849  load_licence(unsigned char **data)  load_licence(unsigned char **data)

Legend:
Removed from v.474  
changed lines
  Added in v.603

  ViewVC Help
Powered by ViewVC 1.1.26