/[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 318 by astrand, Mon Feb 10 12:58:51 2003 UTC revision 333 by astrand, Thu Feb 20 12:14:13 2003 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 <errno.h>
30  #include "rdesktop.h"  #include "rdesktop.h"
31    
32  #ifdef EGD_SOCKET  #ifdef EGD_SOCKET
# Line 49  int width = 800;               /* If width or height Line 50  int width = 800;               /* If width or height
50  int height = 600;  int height = 600;
51  int tcp_port_rdp = TCP_PORT_RDP;  int tcp_port_rdp = TCP_PORT_RDP;
52  int server_bpp = 8;  int server_bpp = 8;
53    int win_button_size = 0;        /* If zero, disable single app mode */
54  BOOL bitmap_compression = True;  BOOL bitmap_compression = True;
55  BOOL sendmotion = True;  BOOL sendmotion = True;
56  BOOL orders = True;  BOOL orders = True;
# Line 59  BOOL grab_keyboard = True; Line 61  BOOL grab_keyboard = True;
61  BOOL hide_decorations = False;  BOOL hide_decorations = False;
62  extern BOOL owncolmap;  extern BOOL owncolmap;
63    
64    #ifdef RDP2VNC
65    extern int rfb_port;
66    extern int defer_time;
67    void
68    rdp2vnc_connect(char *server, uint32 flags, char *domain, char *password,
69                    char *shell, char *directory);
70    #endif
71  /* Display usage information */  /* Display usage information */
72  static void  static void
73  usage(char *program)  usage(char *program)
# Line 68  usage(char *program) Line 77  usage(char *program)
77          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");          fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
78    
79          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);          fprintf(stderr, "Usage: %s [options] server[:port]\n", program);
80    #ifdef RDP2VNC
81            fprintf(stderr, "   -V: vnc port\n");
82            fprintf(stderr, "   -E: defer time (ms)\n");
83    #endif
84          fprintf(stderr, "   -u: user name\n");          fprintf(stderr, "   -u: user name\n");
85          fprintf(stderr, "   -d: domain\n");          fprintf(stderr, "   -d: domain\n");
86          fprintf(stderr, "   -s: shell\n");          fprintf(stderr, "   -s: shell\n");
87            fprintf(stderr, "   -S: caption button size (single application mode)\n");
88          fprintf(stderr, "   -c: working directory\n");          fprintf(stderr, "   -c: working directory\n");
89          fprintf(stderr, "   -p: password (- to prompt)\n");          fprintf(stderr, "   -p: password (- to prompt)\n");
90          fprintf(stderr, "   -n: client hostname\n");          fprintf(stderr, "   -n: client hostname\n");
# Line 145  main(int argc, char *argv[]) Line 159  main(int argc, char *argv[])
159          domain[0] = password[0] = shell[0] = directory[0] = 0;          domain[0] = password[0] = shell[0] = directory[0] = 0;
160          strcpy(keymapname, "en-us");          strcpy(keymapname, "en-us");
161    
162          while ((c = getopt(argc, argv, "u:d:s:c:p:n:k:g:a:fbemCKT:Dh?")) != -1)  #ifdef RDP2VNC
163    #define VNCOPT "V:E:"
164    #else
165    #define VNCOPT
166    #endif
167    
168            while ((c = getopt(argc, argv, VNCOPT "u:d:s:S:c:p:n:k:g:a:fbemCKT:Dh?")) != -1)
169          {          {
170                  switch (c)                  switch (c)
171                  {                  {
172    #ifdef RDP2VNC
173                            case 'V':
174                                    rfb_port = strtol(optarg, NULL, 10);
175                                    if (rfb_port < 100)
176                                            rfb_port += 5900;
177                                    break;
178    
179                            case 'E':
180                                    defer_time = strtol(optarg, NULL, 10);
181                                    if (defer_time < 0)
182                                            defer_time = 0;
183                                    break;
184    #endif
185    
186                          case 'u':                          case 'u':
187                                  STRNCPY(username, optarg, sizeof(username));                                  STRNCPY(username, optarg, sizeof(username));
188                                  username_option = 1;                                  username_option = 1;
# Line 162  main(int argc, char *argv[]) Line 196  main(int argc, char *argv[])
196                                  STRNCPY(shell, optarg, sizeof(shell));                                  STRNCPY(shell, optarg, sizeof(shell));
197                                  break;                                  break;
198    
199                            case 'S':
200                                    if (!strcmp(optarg, "standard"))
201                                    {
202                                            win_button_size = 18;
203                                            break;
204                                    }
205    
206                                    win_button_size = strtol(optarg, &p, 10);
207    
208                                    if (*p)
209                                    {
210                                            error("invalid button size\n");
211                                            return 1;
212                                    }
213    
214                                    break;
215    
216                          case 'c':                          case 'c':
217                                  STRNCPY(directory, optarg, sizeof(directory));                                  STRNCPY(directory, optarg, sizeof(directory));
218                                  break;                                  break;
# Line 308  main(int argc, char *argv[]) Line 359  main(int argc, char *argv[])
359                  strncat(title, server, sizeof(title) - sizeof("rdesktop - "));                  strncat(title, server, sizeof(title) - sizeof("rdesktop - "));
360          }          }
361    
362    #ifdef RDP2VNC
363            rdp2vnc_connect(server, flags, domain, password, shell, directory);
364    #else
365    
366          if (!ui_init())          if (!ui_init())
367                  return 1;                  return 1;
368    
# Line 326  main(int argc, char *argv[]) Line 381  main(int argc, char *argv[])
381          DEBUG(("Disconnecting...\n"));          DEBUG(("Disconnecting...\n"));
382          rdp_disconnect();          rdp_disconnect();
383          ui_deinit();          ui_deinit();
384    
385    #endif
386    
387          return 0;          return 0;
388  }  }
389    
# Line 513  hexdump(unsigned char *p, unsigned int l Line 571  hexdump(unsigned char *p, unsigned int l
571                  line += thisline;                  line += thisline;
572          }          }
573  }  }
574    
575    
576    int
577    load_licence(unsigned char **data)
578    {
579            char *path;
580            char *home;
581            struct stat st;
582            int fd;
583    
584            home = getenv("HOME");
585            if (home == NULL)
586                    return -1;
587    
588            path = xmalloc(strlen(home) + strlen(hostname) + 20);
589            sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
590    
591            fd = open(path, O_RDONLY);
592            if (fd == -1)
593                    return -1;
594    
595            if (fstat(fd, &st))
596                    return -1;
597    
598            *data = xmalloc(st.st_size);
599            return read(fd, *data, st.st_size);
600    }
601    
602    void
603    save_licence(unsigned char *data, int length)
604    {
605            char *fpath;            /* file path for licence */
606            char *fname, *fnamewrk; /* file name for licence .inkl path. */
607            char *home;
608            uint32 y;
609            struct flock fnfl;
610            int fnfd, fnwrkfd, i, wlen;
611            struct stream s, *s_ptr;
612            uint32 len;
613    
614            /* Construct a stream, so that we can use macros to extract the
615             * licence.
616             */
617            s_ptr = &s;
618            s_ptr->p = data;
619            /* Skip first two bytes */
620            in_uint16(s_ptr, len);
621    
622            /* Skip three strings */
623            for (i = 0; i < 3; i++)
624            {
625                    in_uint32(s_ptr, len);
626                    s_ptr->p += len;
627                    /* Make sure that we won't be past the end of data after
628                     * reading the next length value
629                     */
630                    if ((s_ptr->p) + 4 > data + length)
631                    {
632                            printf("Error in parsing licence key.\n");
633                            printf("Strings %d end value %x > supplied length (%x)\n", i,
634                                   (unsigned int) s_ptr->p, (unsigned int) data + length);
635                            return;
636                    }
637            }
638            in_uint32(s_ptr, len);
639            if (s_ptr->p + len > data + length)
640            {
641                    printf("Error in parsing licence key.\n");
642                    printf("End of licence %x > supplied length (%x)\n",
643                           (unsigned int) s_ptr->p + len, (unsigned int) data + length);
644                    return;
645            }
646    
647            home = getenv("HOME");
648            if (home == NULL)
649                    return;
650    
651            /* set and create the directory -- if it doesn't exist. */
652            fpath = xmalloc(strlen(home) + 11);
653            STRNCPY(fpath, home, strlen(home) + 1);
654    
655            sprintf(fpath, "%s/.rdesktop", fpath);
656            if (mkdir(fpath, 0700) == -1 && errno != EEXIST)
657            {
658                    perror("mkdir");
659                    exit(1);
660            }
661    
662            /* set the real licence filename, and put a write lock on it. */
663            fname = xmalloc(strlen(fpath) + strlen(hostname) + 10);
664            sprintf(fname, "%s/licence.%s", fpath, hostname);
665            fnfd = open(fname, O_RDONLY);
666            if (fnfd != -1)
667            {
668                    fnfl.l_type = F_WRLCK;
669                    fnfl.l_whence = SEEK_SET;
670                    fnfl.l_start = 0;
671                    fnfl.l_len = 1;
672                    fcntl(fnfd, F_SETLK, &fnfl);
673            }
674    
675            /* create a temporary licence file */
676            fnamewrk = xmalloc(strlen(fname) + 12);
677            for (y = 0;; y++)
678            {
679                    sprintf(fnamewrk, "%s.%lu", fname, (long unsigned int) y);
680                    fnwrkfd = open(fnamewrk, O_WRONLY | O_CREAT | O_EXCL, 0600);
681                    if (fnwrkfd == -1)
682                    {
683                            if (errno == EINTR || errno == EEXIST)
684                                    continue;
685                            perror("create");
686                            exit(1);
687                    }
688                    break;
689            }
690            /* write to the licence file */
691            for (y = 0; y < len;)
692            {
693                    do
694                    {
695                            wlen = write(fnwrkfd, s_ptr->p + y, len - y);
696                    }
697                    while (wlen == -1 && errno == EINTR);
698                    if (wlen < 1)
699                    {
700                            perror("write");
701                            unlink(fnamewrk);
702                            exit(1);
703                    }
704                    y += wlen;
705            }
706    
707            /* close the file and rename it to fname */
708            if (close(fnwrkfd) == -1)
709            {
710                    perror("close");
711                    unlink(fnamewrk);
712                    exit(1);
713            }
714            if (rename(fnamewrk, fname) == -1)
715            {
716                    perror("rename");
717                    unlink(fnamewrk);
718                    exit(1);
719            }
720            /* close the file lock on fname */
721            if (fnfd != -1)
722            {
723                    fnfl.l_type = F_UNLCK;
724                    fnfl.l_whence = SEEK_SET;
725                    fnfl.l_start = 0;
726                    fnfl.l_len = 1;
727                    fcntl(fnfd, F_SETLK, &fnfl);
728                    close(fnfd);
729            }
730    
731    }

Legend:
Removed from v.318  
changed lines
  Added in v.333

  ViewVC Help
Powered by ViewVC 1.1.26