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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 567 - (hide annotations)
Wed Jan 21 11:08:39 2004 UTC (20 years, 4 months ago) by matthewc
Original Path: sourceforge.net/trunk/rdesktop/rdesktop.c
File MIME type: text/plain
File size: 15837 byte(s)
Bump version number to 1.3.1.
Fix spelling: syncronization -> synchronisation (synchronization would be
okay too, but I use the Australian/British spelling :))

1 forsberg 350 /* -*- c-basic-offset: 8 -*-
2 matty 10 rdesktop: A Remote Desktop Protocol client.
3     Entrypoint and utility functions
4 matthewc 567 Copyright (C) Matthew Chapman 1999-2004
5 jsorg71 100
6 matty 10 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
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10 jsorg71 100
11 matty 10 This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     GNU General Public License for more details.
15 jsorg71 100
16 matty 10 You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19     */
20    
21 matty 30 #include <stdarg.h> /* va_list va_start va_end */
22 matty 24 #include <unistd.h> /* read close getuid getgid getpid getppid gethostname */
23     #include <fcntl.h> /* open */
24     #include <pwd.h> /* getpwuid */
25 matthewc 211 #include <termios.h> /* tcgetattr tcsetattr */
26 matty 24 #include <sys/stat.h> /* stat */
27     #include <sys/time.h> /* gettimeofday */
28     #include <sys/times.h> /* times */
29 astrand 325 #include <errno.h>
30 matty 10 #include "rdesktop.h"
31    
32 matthewc 220 #ifdef EGD_SOCKET
33     #include <sys/socket.h> /* socket connect */
34     #include <sys/un.h> /* sockaddr_un */
35     #endif
36    
37     #ifdef WITH_OPENSSL
38     #include <openssl/md5.h>
39     #else
40     #include "crypto/md5.h"
41     #endif
42    
43 astrand 479 char g_title[64] = "";
44     char g_username[64];
45 matty 10 char hostname[16];
46 matthewc 38 char keymapname[16];
47 astrand 66 int keylayout = 0x409; /* Defaults to US keyboard layout */
48 astrand 500
49     int g_width = 800; /* width is special: If 0, the
50     geometry will be fetched from
51     _NET_WORKAREA. If negative,
52     absolute value specifies the
53     percent of the whole screen. */
54 jsorg71 447 int g_height = 600;
55 jsorg71 58 int tcp_port_rdp = TCP_PORT_RDP;
56 jsorg71 438 int g_server_bpp = 8;
57 jsorg71 450 int g_win_button_size = 0; /* If zero, disable single app mode */
58 jsorg71 437 BOOL g_bitmap_compression = True;
59 jsorg71 447 BOOL g_sendmotion = True;
60 jsorg71 437 BOOL g_orders = True;
61     BOOL g_encryption = True;
62 forsberg 427 BOOL packet_encryption = True;
63 jsorg71 438 BOOL g_desktop_save = True;
64 jsorg71 447 BOOL g_fullscreen = False;
65 jsorg71 450 BOOL g_grab_keyboard = True;
66     BOOL g_hide_decorations = False;
67 astrand 458 BOOL g_use_rdp5 = True;
68 matthewc 482 BOOL g_console_session = False;
69 astrand 552 BOOL g_numlock_sync = False;
70 jsorg71 450 extern BOOL g_owncolmap;
71 matty 10
72 stargo 501 #ifdef WITH_RDPSND
73 matthewc 520 BOOL g_rdpsnd = False;
74 stargo 501 #endif
75    
76 astrand 333 #ifdef RDP2VNC
77     extern int rfb_port;
78     extern int defer_time;
79     void
80     rdp2vnc_connect(char *server, uint32 flags, char *domain, char *password,
81     char *shell, char *directory);
82     #endif
83 matty 10 /* Display usage information */
84 matty 25 static void
85     usage(char *program)
86 matty 10 {
87 matthewc 122 fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");
88 matthewc 304 fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2003 Matt Chapman.\n");
89 matthewc 122 fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
90    
91 matthewc 222 fprintf(stderr, "Usage: %s [options] server[:port]\n", program);
92 astrand 333 #ifdef RDP2VNC
93     fprintf(stderr, " -V: vnc port\n");
94 forsberg 471 fprintf(stderr, " -Q: defer time (ms)\n");
95 astrand 333 #endif
96 astrand 111 fprintf(stderr, " -u: user name\n");
97     fprintf(stderr, " -d: domain\n");
98     fprintf(stderr, " -s: shell\n");
99     fprintf(stderr, " -c: working directory\n");
100 matthewc 211 fprintf(stderr, " -p: password (- to prompt)\n");
101 astrand 111 fprintf(stderr, " -n: client hostname\n");
102 matthewc 520 fprintf(stderr, " -k: keyboard layout on server (en-us, de, sv, etc.)\n");
103 astrand 111 fprintf(stderr, " -g: desktop geometry (WxH)\n");
104     fprintf(stderr, " -f: full-screen mode\n");
105     fprintf(stderr, " -b: force bitmap updates\n");
106     fprintf(stderr, " -e: disable encryption (French TS)\n");
107 forsberg 471 fprintf(stderr, " -E: disable encryption from client to server\n");
108 astrand 111 fprintf(stderr, " -m: do not send motion events\n");
109 n-ki 279 fprintf(stderr, " -C: use private colour map\n");
110 matthewc 520 fprintf(stderr, " -D: hide window manager decorations\n");
111 astrand 111 fprintf(stderr, " -K: keep window manager key bindings\n");
112 matthewc 520 fprintf(stderr, " -S: caption button size (single application mode)\n");
113 matthewc 223 fprintf(stderr, " -T: window title\n");
114 matthewc 567 fprintf(stderr, " -N: enable numlock synchronisation\n");
115 matthewc 520 fprintf(stderr, " -a: connection colour depth\n");
116     fprintf(stderr, " -r: enable specified device redirection (currently: sound)\n");
117 matthewc 482 fprintf(stderr, " -0: attach to console\n");
118     fprintf(stderr, " -4: use RDP version 4\n");
119     fprintf(stderr, " -5: use RDP version 5 (default)\n");
120 matty 10 }
121    
122 matthewc 211 static BOOL
123     read_password(char *password, int size)
124     {
125     struct termios tios;
126     BOOL ret = False;
127     int istty = 0;
128     char *p;
129    
130     if (tcgetattr(STDIN_FILENO, &tios) == 0)
131     {
132     fprintf(stderr, "Password: ");
133     tios.c_lflag &= ~ECHO;
134     tcsetattr(STDIN_FILENO, TCSANOW, &tios);
135     istty = 1;
136     }
137    
138     if (fgets(password, size, stdin) != NULL)
139     {
140     ret = True;
141    
142     /* strip final newline */
143     p = strchr(password, '\n');
144     if (p != NULL)
145     *p = 0;
146     }
147    
148     if (istty)
149     {
150     tios.c_lflag |= ECHO;
151     tcsetattr(STDIN_FILENO, TCSANOW, &tios);
152     fprintf(stderr, "\n");
153     }
154    
155     return ret;
156     }
157    
158 astrand 444 static void
159     parse_server_and_port(char *server)
160     {
161     char *p;
162     #ifdef IPv6
163     int addr_colons;
164     #endif
165    
166     #ifdef IPv6
167     p = server;
168     addr_colons = 0;
169     while (*p)
170     if (*p++ == ':')
171     addr_colons++;
172     if (addr_colons >= 2)
173     {
174     /* numeric IPv6 style address format - [1:2:3::4]:port */
175     p = strchr(server, ']');
176     if (*server == '[' && p != NULL)
177     {
178     if (*(p + 1) == ':' && *(p + 2) != '\0')
179     tcp_port_rdp = strtol(p + 2, NULL, 10);
180     /* remove the port number and brackets from the address */
181     *p = '\0';
182     strncpy(server, server + 1, strlen(server));
183     }
184     }
185     else
186     {
187     /* dns name or IPv4 style address format - server.example.com:port or 1.2.3.4:port */
188     p = strchr(server, ':');
189     if (p != NULL)
190     {
191     tcp_port_rdp = strtol(p + 1, NULL, 10);
192     *p = 0;
193     }
194     }
195     #else /* no IPv6 support */
196     p = strchr(server, ':');
197     if (p != NULL)
198     {
199     tcp_port_rdp = strtol(p + 1, NULL, 10);
200     *p = 0;
201     }
202     #endif /* IPv6 */
203    
204     }
205    
206 matty 10 /* Client program */
207 matty 25 int
208     main(int argc, char *argv[])
209 matty 10 {
210 matthewc 222 char server[64];
211 matty 30 char fullhostname[64];
212 matty 21 char domain[16];
213 astrand 479 char password[64];
214 astrand 238 char shell[128];
215 matty 21 char directory[32];
216 forsberg 424 BOOL prompt_password, rdp_retval = False;
217 matty 30 struct passwd *pw;
218     uint32 flags;
219 matthewc 222 char *p;
220 matty 10 int c;
221 astrand 289 int username_option = 0;
222 matty 10
223 matty 21 flags = RDP_LOGON_NORMAL;
224 matthewc 211 prompt_password = False;
225 matty 21 domain[0] = password[0] = shell[0] = directory[0] = 0;
226 matthewc 240 strcpy(keymapname, "en-us");
227 matty 21
228 astrand 333 #ifdef RDP2VNC
229 forsberg 471 #define VNCOPT "V:Q:"
230 astrand 333 #else
231     #define VNCOPT
232     #endif
233    
234 astrand 552 while ((c = getopt(argc, argv, VNCOPT "u:d:s:c:p:n:k:g:fbeEmCDKS:T:Na:r:045h?")) != -1)
235 matty 10 {
236     switch (c)
237     {
238 astrand 333 #ifdef RDP2VNC
239     case 'V':
240     rfb_port = strtol(optarg, NULL, 10);
241     if (rfb_port < 100)
242     rfb_port += 5900;
243     break;
244    
245 forsberg 471 case 'Q':
246 astrand 333 defer_time = strtol(optarg, NULL, 10);
247     if (defer_time < 0)
248     defer_time = 0;
249     break;
250     #endif
251    
252 matty 10 case 'u':
253 jsorg71 437 STRNCPY(g_username, optarg, sizeof(g_username));
254 astrand 289 username_option = 1;
255 matty 10 break;
256    
257 matty 21 case 'd':
258 matty 30 STRNCPY(domain, optarg, sizeof(domain));
259 matty 21 break;
260    
261     case 's':
262 matty 30 STRNCPY(shell, optarg, sizeof(shell));
263 matty 21 break;
264    
265     case 'c':
266 matty 30 STRNCPY(directory, optarg, sizeof(directory));
267 matty 21 break;
268    
269 matty 30 case 'p':
270 matthewc 211 if ((optarg[0] == '-') && (optarg[1] == 0))
271     {
272     prompt_password = True;
273     break;
274     }
275    
276 matty 30 STRNCPY(password, optarg, sizeof(password));
277     flags |= RDP_LOGON_AUTO;
278 matthewc 211
279     /* try to overwrite argument so it won't appear in ps */
280 n-ki 171 p = optarg;
281     while (*p)
282     *(p++) = 'X';
283 matty 30 break;
284    
285 matty 10 case 'n':
286 matty 30 STRNCPY(hostname, optarg, sizeof(hostname));
287 matty 10 break;
288    
289     case 'k':
290 astrand 82 STRNCPY(keymapname, optarg, sizeof(keymapname));
291 matty 10 break;
292    
293 matty 30 case 'g':
294 astrand 547 g_fullscreen = False;
295 astrand 263 if (!strcmp(optarg, "workarea"))
296     {
297 jsorg71 447 g_width = g_height = 0;
298 astrand 263 break;
299     }
300    
301 jsorg71 447 g_width = strtol(optarg, &p, 10);
302 astrand 500 if (g_width <= 0)
303     {
304     error("invalid geometry\n");
305     return 1;
306     }
307    
308 matty 30 if (*p == 'x')
309 jsorg71 447 g_height = strtol(p + 1, NULL, 10);
310 matty 30
311 astrand 500 if (g_height <= 0)
312 matty 30 {
313     error("invalid geometry\n");
314     return 1;
315     }
316 astrand 500
317     if (*p == '%')
318     g_width = -g_width;
319    
320 matty 10 break;
321    
322 matty 30 case 'f':
323 jsorg71 447 g_fullscreen = True;
324 matty 30 break;
325    
326 matty 10 case 'b':
327 jsorg71 437 g_orders = False;
328 matty 10 break;
329    
330 matty 30 case 'e':
331 jsorg71 437 g_encryption = False;
332 matty 10 break;
333 astrand 435 case 'E':
334 forsberg 427 packet_encryption = False;
335     break;
336 matty 30 case 'm':
337 jsorg71 447 g_sendmotion = False;
338 matty 28 break;
339 matty 29
340 n-ki 279 case 'C':
341 jsorg71 450 g_owncolmap = True;
342 n-ki 279 break;
343    
344 matthewc 520 case 'D':
345     g_hide_decorations = True;
346     break;
347    
348 astrand 76 case 'K':
349 jsorg71 450 g_grab_keyboard = False;
350 astrand 76 break;
351    
352 matthewc 520 case 'S':
353     if (!strcmp(optarg, "standard"))
354     {
355     g_win_button_size = 18;
356     break;
357     }
358    
359     g_win_button_size = strtol(optarg, &p, 10);
360    
361     if (*p)
362     {
363     error("invalid button size\n");
364     return 1;
365     }
366    
367     break;
368    
369 matthewc 223 case 'T':
370 jsorg71 450 STRNCPY(g_title, optarg, sizeof(g_title));
371 astrand 107 break;
372    
373 astrand 552 case 'N':
374     g_numlock_sync = True;
375     break;
376    
377 jsorg71 309 case 'a':
378 jsorg71 438 g_server_bpp = strtol(optarg, NULL, 10);
379     if (g_server_bpp != 8 && g_server_bpp != 16 && g_server_bpp != 15
380     && g_server_bpp != 24)
381 jsorg71 309 {
382     error("invalid server bpp\n");
383     return 1;
384     }
385     break;
386    
387 matthewc 520 case 'r':
388     if (!strcmp(optarg, "sound"))
389 stargo 501 #ifdef WITH_RDPSND
390 matthewc 520 g_rdpsnd = True;
391     #else
392     warning("Not compiled with sound support");
393     #endif
394 stargo 501 break;
395 matthewc 520
396 matthewc 482 case '0':
397     g_console_session = True;
398     break;
399    
400 astrand 458 case '4':
401     g_use_rdp5 = False;
402     break;
403    
404 forsberg 350 case '5':
405 jsorg71 438 g_use_rdp5 = True;
406 forsberg 350 break;
407 astrand 458
408 matty 28 case 'h':
409 matty 10 case '?':
410     default:
411     usage(argv[0]);
412     return 1;
413     }
414     }
415    
416     if (argc - optind < 1)
417     {
418     usage(argv[0]);
419     return 1;
420     }
421    
422 matthewc 222 STRNCPY(server, argv[optind], sizeof(server));
423 astrand 444 parse_server_and_port(server);
424 matty 10
425 astrand 289 if (!username_option)
426 matty 10 {
427     pw = getpwuid(getuid());
428     if ((pw == NULL) || (pw->pw_name == NULL))
429     {
430 matty 30 error("could not determine username, use -u\n");
431 matty 10 return 1;
432     }
433    
434 jsorg71 437 STRNCPY(g_username, pw->pw_name, sizeof(g_username));
435 matty 10 }
436    
437     if (hostname[0] == 0)
438     {
439 matty 30 if (gethostname(fullhostname, sizeof(fullhostname)) == -1)
440 matty 10 {
441 matty 30 error("could not determine local hostname, use -n\n");
442 matty 10 return 1;
443     }
444 matty 30
445     p = strchr(fullhostname, '.');
446     if (p != NULL)
447     *p = 0;
448    
449     STRNCPY(hostname, fullhostname, sizeof(hostname));
450 matty 10 }
451    
452 matthewc 211 if (prompt_password && read_password(password, sizeof(password)))
453     flags |= RDP_LOGON_AUTO;
454 matty 30
455 jsorg71 450 if (g_title[0] == 0)
456 astrand 107 {
457 jsorg71 450 strcpy(g_title, "rdesktop - ");
458     strncat(g_title, server, sizeof(g_title) - sizeof("rdesktop - "));
459 astrand 107 }
460 matty 12
461 astrand 333 #ifdef RDP2VNC
462     rdp2vnc_connect(server, flags, domain, password, shell, directory);
463 forsberg 424 return 0;
464 astrand 333 #else
465    
466 astrand 82 if (!ui_init())
467     return 1;
468 astrand 66
469 matthewc 474 #ifdef WITH_RDPSND
470 stargo 501 if (g_rdpsnd)
471     rdpsnd_init();
472 matthewc 474 #endif
473 matthewc 432 /* rdpdr_init(); */
474 forsberg 416
475 matthewc 53 if (!rdp_connect(server, flags, domain, password, shell, directory))
476     return 1;
477    
478 forsberg 427 /* By setting encryption to False here, we have an encrypted login
479     packet but unencrypted transfer of other packets */
480 astrand 435 if (!packet_encryption)
481 jsorg71 437 g_encryption = False;
482 forsberg 427
483    
484 matthewc 122 DEBUG(("Connection successful.\n"));
485 matthewc 211 memset(password, 0, sizeof(password));
486 matthewc 53
487 jsorg71 100 if (ui_create_window())
488 matty 10 {
489 forsberg 424 rdp_retval = rdp_main_loop();
490 matty 10 ui_destroy_window();
491     }
492    
493 matthewc 122 DEBUG(("Disconnecting...\n"));
494 matthewc 53 rdp_disconnect();
495 matthewc 188 ui_deinit();
496 astrand 333
497 astrand 435 if (True == rdp_retval)
498 forsberg 424 return 0;
499     else
500     return 2;
501    
502 astrand 333 #endif
503    
504 matty 10 }
505    
506 matthewc 220 #ifdef EGD_SOCKET
507     /* Read 32 random bytes from PRNGD or EGD socket (based on OpenSSL RAND_egd) */
508     static BOOL
509     generate_random_egd(uint8 * buf)
510     {
511     struct sockaddr_un addr;
512     BOOL ret = False;
513     int fd;
514    
515     fd = socket(AF_UNIX, SOCK_STREAM, 0);
516     if (fd == -1)
517     return False;
518    
519     addr.sun_family = AF_UNIX;
520     memcpy(addr.sun_path, EGD_SOCKET, sizeof(EGD_SOCKET));
521 astrand 259 if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
522 matthewc 220 goto err;
523    
524     /* PRNGD and EGD use a simple communications protocol */
525 astrand 259 buf[0] = 1; /* Non-blocking (similar to /dev/urandom) */
526     buf[1] = 32; /* Number of requested random bytes */
527 matthewc 220 if (write(fd, buf, 2) != 2)
528     goto err;
529    
530 astrand 259 if ((read(fd, buf, 1) != 1) || (buf[0] == 0)) /* Available? */
531 matthewc 220 goto err;
532    
533     if (read(fd, buf, 32) != 32)
534     goto err;
535    
536     ret = True;
537    
538 astrand 259 err:
539 matthewc 220 close(fd);
540     return ret;
541     }
542     #endif
543    
544 matty 10 /* Generate a 32-byte random for the secure transport code. */
545 matty 25 void
546 astrand 64 generate_random(uint8 * random)
547 matty 10 {
548     struct stat st;
549 matty 22 struct tms tmsbuf;
550 matthewc 220 MD5_CTX md5;
551     uint32 *r;
552     int fd, n;
553 matty 10
554 matthewc 220 /* If we have a kernel random device, try that first */
555 matty 30 if (((fd = open("/dev/urandom", O_RDONLY)) != -1)
556     || ((fd = open("/dev/random", O_RDONLY)) != -1))
557 matty 10 {
558 matthewc 220 n = read(fd, random, 32);
559 matty 10 close(fd);
560 matthewc 220 if (n == 32)
561     return;
562 matty 10 }
563    
564 matthewc 220 #ifdef EGD_SOCKET
565     /* As a second preference use an EGD */
566     if (generate_random_egd(random))
567     return;
568     #endif
569    
570 matty 10 /* Otherwise use whatever entropy we can gather - ideas welcome. */
571 astrand 259 r = (uint32 *) random;
572 matty 10 r[0] = (getpid()) | (getppid() << 16);
573     r[1] = (getuid()) | (getgid() << 16);
574 matty 24 r[2] = times(&tmsbuf); /* system uptime (clocks) */
575     gettimeofday((struct timeval *) &r[3], NULL); /* sec and usec */
576 matty 10 stat("/tmp", &st);
577     r[5] = st.st_atime;
578     r[6] = st.st_mtime;
579     r[7] = st.st_ctime;
580 matthewc 220
581     /* Hash both halves with MD5 to obscure possible patterns */
582     MD5_Init(&md5);
583 astrand 259 MD5_Update(&md5, random, 16);
584 matthewc 220 MD5_Final(random, &md5);
585 astrand 259 MD5_Update(&md5, random + 16, 16);
586     MD5_Final(random + 16, &md5);
587 matty 10 }
588    
589     /* malloc; exit if out of memory */
590 matty 25 void *
591     xmalloc(int size)
592 matty 10 {
593     void *mem = malloc(size);
594     if (mem == NULL)
595     {
596 matty 30 error("xmalloc %d\n", size);
597 matty 10 exit(1);
598     }
599     return mem;
600     }
601    
602     /* realloc; exit if out of memory */
603 matty 25 void *
604     xrealloc(void *oldmem, int size)
605 matty 10 {
606     void *mem = realloc(oldmem, size);
607     if (mem == NULL)
608     {
609 matty 30 error("xrealloc %d\n", size);
610 matty 10 exit(1);
611     }
612     return mem;
613     }
614    
615     /* free */
616 matty 25 void
617     xfree(void *mem)
618 matty 10 {
619     free(mem);
620     }
621    
622 matty 30 /* report an error */
623 matty 25 void
624 matty 30 error(char *format, ...)
625     {
626     va_list ap;
627    
628     fprintf(stderr, "ERROR: ");
629    
630     va_start(ap, format);
631     vfprintf(stderr, format, ap);
632     va_end(ap);
633     }
634    
635 matthewc 297 /* report a warning */
636     void
637     warning(char *format, ...)
638     {
639     va_list ap;
640    
641     fprintf(stderr, "WARNING: ");
642    
643     va_start(ap, format);
644     vfprintf(stderr, format, ap);
645     va_end(ap);
646     }
647    
648 matty 30 /* report an unimplemented protocol feature */
649     void
650     unimpl(char *format, ...)
651     {
652     va_list ap;
653    
654     fprintf(stderr, "NOT IMPLEMENTED: ");
655    
656     va_start(ap, format);
657     vfprintf(stderr, format, ap);
658     va_end(ap);
659     }
660    
661     /* produce a hex dump */
662     void
663 jsorg71 376 hexdump(unsigned char *p, int len)
664 matty 10 {
665     unsigned char *line = p;
666 jsorg71 376 int i, thisline, offset = 0;
667 matty 10
668     while (offset < len)
669     {
670 matthewc 169 printf("%04x ", offset);
671 matty 10 thisline = len - offset;
672     if (thisline > 16)
673     thisline = 16;
674    
675     for (i = 0; i < thisline; i++)
676 matthewc 169 printf("%02x ", line[i]);
677 matty 10
678 matty 30 for (; i < 16; i++)
679 matthewc 169 printf(" ");
680 matty 30
681 matty 10 for (i = 0; i < thisline; i++)
682 matthewc 169 printf("%c", (line[i] >= 0x20 && line[i] < 0x7f) ? line[i] : '.');
683 matty 10
684 matthewc 169 printf("\n");
685 matty 10 offset += thisline;
686     line += thisline;
687     }
688     }
689 astrand 325
690    
691     int
692     load_licence(unsigned char **data)
693     {
694 matthewc 367 char *home, *path;
695 astrand 325 struct stat st;
696 matthewc 367 int fd, length;
697 astrand 325
698     home = getenv("HOME");
699     if (home == NULL)
700     return -1;
701    
702 forsberg 416 path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));
703 astrand 325 sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
704    
705     fd = open(path, O_RDONLY);
706     if (fd == -1)
707     return -1;
708    
709     if (fstat(fd, &st))
710     return -1;
711    
712 forsberg 416 *data = (uint8 *) xmalloc(st.st_size);
713 matthewc 367 length = read(fd, *data, st.st_size);
714     close(fd);
715     xfree(path);
716     return length;
717 astrand 325 }
718    
719     void
720     save_licence(unsigned char *data, int length)
721     {
722 matthewc 367 char *home, *path, *tmppath;
723     int fd;
724 astrand 325
725     home = getenv("HOME");
726     if (home == NULL)
727     return;
728    
729 forsberg 416 path = (char *) xmalloc(strlen(home) + strlen(hostname) + sizeof("/.rdesktop/licence."));
730 astrand 325
731 matthewc 367 sprintf(path, "%s/.rdesktop", home);
732     if ((mkdir(path, 0700) == -1) && errno != EEXIST)
733 astrand 325 {
734 matthewc 367 perror(path);
735     return;
736 astrand 325 }
737    
738 matthewc 367 /* write licence to licence.hostname.new, then atomically rename to licence.hostname */
739 astrand 325
740 matthewc 367 sprintf(path, "%s/.rdesktop/licence.%s", home, hostname);
741 forsberg 416 tmppath = (char *) xmalloc(strlen(path) + sizeof(".new"));
742 matthewc 367 strcpy(tmppath, path);
743     strcat(tmppath, ".new");
744    
745 forsberg 416 fd = open(tmppath, O_WRONLY | O_CREAT | O_TRUNC, 0600);
746 matthewc 367 if (fd == -1)
747 astrand 325 {
748 matthewc 367 perror(tmppath);
749     return;
750 astrand 325 }
751    
752 matthewc 367 if (write(fd, data, length) != length)
753 astrand 325 {
754 matthewc 367 perror(tmppath);
755     unlink(tmppath);
756 astrand 325 }
757 matthewc 367 else if (rename(tmppath, path) == -1)
758 astrand 325 {
759 matthewc 367 perror(path);
760     unlink(tmppath);
761 astrand 325 }
762    
763 matthewc 367 close(fd);
764     xfree(tmppath);
765     xfree(path);
766 astrand 325 }

  ViewVC Help
Powered by ViewVC 1.1.26