/[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 980 - (hide annotations)
Mon Aug 15 12:06:59 2005 UTC (18 years, 9 months ago) by stargo
Original Path: sourceforge.net/trunk/rdesktop/rdesktop.c
File MIME type: text/plain
File size: 29112 byte(s)
Globally include limits.h for PATH_MAX, as this is used in types.h

1 forsberg 350 /* -*- c-basic-offset: 8 -*-
2 matty 10 rdesktop: A Remote Desktop Protocol client.
3     Entrypoint and utility functions
4 stargo 828 Copyright (C) Matthew Chapman 1999-2005
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 stargo 570 #include <ctype.h> /* toupper */
30 astrand 325 #include <errno.h>
31 matty 10 #include "rdesktop.h"
32    
33 stargo 857 #ifdef HAVE_LOCALE_H
34 stargo 855 #include <locale.h>
35 stargo 857 #endif
36 astrand 962 #ifdef HAVE_ICONV
37 stargo 857 #ifdef HAVE_LANGINFO_H
38 stargo 855 #include <langinfo.h>
39     #endif
40 stargo 857 #endif
41 stargo 855
42 matthewc 220 #ifdef EGD_SOCKET
43 stargo 881 #include <sys/types.h>
44 matthewc 220 #include <sys/socket.h> /* socket connect */
45     #include <sys/un.h> /* sockaddr_un */
46     #endif
47    
48     #include <openssl/md5.h>
49    
50 astrand 479 char g_title[64] = "";
51     char g_username[64];
52 jsorg71 710 char g_hostname[16];
53 astrand 975 char g_keymapname[PATH_MAX] = "";
54 jsorg71 710 int g_keylayout = 0x409; /* Defaults to US keyboard layout */
55 astrand 964 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 astrand 500
59     int g_width = 800; /* width is special: If 0, the
60     geometry will be fetched from
61     _NET_WORKAREA. If negative,
62     absolute value specifies the
63     percent of the whole screen. */
64 jsorg71 447 int g_height = 600;
65 stargo 800 int g_xpos = 0;
66     int g_ypos = 0;
67 stargo 867 int g_pos = 0; /* 0 position unspecified,
68     1 specified,
69     2 xpos neg,
70     4 ypos neg */
71 jsorg71 710 extern int g_tcp_port_rdp;
72 jsorg71 438 int g_server_bpp = 8;
73 jsorg71 450 int g_win_button_size = 0; /* If zero, disable single app mode */
74 jsorg71 437 BOOL g_bitmap_compression = True;
75 jsorg71 447 BOOL g_sendmotion = True;
76 jsorg71 678 BOOL g_bitmap_cache = True;
77 jsorg71 725 BOOL g_bitmap_cache_persist_enable = False;
78     BOOL g_bitmap_cache_precache = True;
79 jsorg71 437 BOOL g_encryption = True;
80 forsberg 427 BOOL packet_encryption = True;
81 jsorg71 848 BOOL g_desktop_save = True; /* desktop save order */
82     BOOL g_polygon_ellipse_orders = True; /* polygon / ellipse orders */
83 jsorg71 447 BOOL g_fullscreen = False;
84 jsorg71 450 BOOL g_grab_keyboard = True;
85     BOOL g_hide_decorations = False;
86 astrand 458 BOOL g_use_rdp5 = True;
87 matthewc 482 BOOL g_console_session = False;
88 astrand 552 BOOL g_numlock_sync = False;
89 stargo 648 BOOL g_owncolmap = False;
90 astrand 651 BOOL g_ownbackstore = True; /* We can't rely on external BackingStore */
91 stargo 648 uint32 g_embed_wnd;
92 astrand 651 uint32 g_rdp5_performanceflags =
93     RDP5_NO_WALLPAPER | RDP5_NO_FULLWINDOWDRAG | RDP5_NO_MENUANIMATIONS;
94 astrand 977 /* 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 matty 10
103 stargo 501 #ifdef WITH_RDPSND
104 matthewc 520 BOOL g_rdpsnd = False;
105 stargo 501 #endif
106    
107 stargo 855 #ifdef HAVE_ICONV
108     char g_codepage[16] = "";
109     #endif
110    
111 n-ki 569 extern RDPDR_DEVICE g_rdpdr_device[];
112     extern uint32 g_num_devices;
113 astrand 651 extern char *g_rdpdr_clientname;
114 n-ki 569
115 astrand 333 #ifdef RDP2VNC
116     extern int rfb_port;
117     extern int defer_time;
118     void
119     rdp2vnc_connect(char *server, uint32 flags, char *domain, char *password,
120     char *shell, char *directory);
121     #endif
122 matty 10 /* Display usage information */
123 matty 25 static void
124     usage(char *program)
125 matty 10 {
126 matthewc 122 fprintf(stderr, "rdesktop: A Remote Desktop Protocol client.\n");
127 stargo 828 fprintf(stderr, "Version " VERSION ". Copyright (C) 1999-2005 Matt Chapman.\n");
128 matthewc 122 fprintf(stderr, "See http://www.rdesktop.org/ for more information.\n\n");
129    
130 matthewc 222 fprintf(stderr, "Usage: %s [options] server[:port]\n", program);
131 astrand 333 #ifdef RDP2VNC
132     fprintf(stderr, " -V: vnc port\n");
133 forsberg 471 fprintf(stderr, " -Q: defer time (ms)\n");
134 astrand 333 #endif
135 astrand 111 fprintf(stderr, " -u: user name\n");
136     fprintf(stderr, " -d: domain\n");
137     fprintf(stderr, " -s: shell\n");
138     fprintf(stderr, " -c: working directory\n");
139 matthewc 211 fprintf(stderr, " -p: password (- to prompt)\n");
140 astrand 111 fprintf(stderr, " -n: client hostname\n");
141 matthewc 520 fprintf(stderr, " -k: keyboard layout on server (en-us, de, sv, etc.)\n");
142 astrand 111 fprintf(stderr, " -g: desktop geometry (WxH)\n");
143     fprintf(stderr, " -f: full-screen mode\n");
144     fprintf(stderr, " -b: force bitmap updates\n");
145 stargo 855 #ifdef HAVE_ICONV
146     fprintf(stderr, " -L: local codepage\n");
147     #endif
148 stargo 609 fprintf(stderr, " -B: use BackingStore of X-server (if available)\n");
149 astrand 111 fprintf(stderr, " -e: disable encryption (French TS)\n");
150 forsberg 471 fprintf(stderr, " -E: disable encryption from client to server\n");
151 astrand 111 fprintf(stderr, " -m: do not send motion events\n");
152 n-ki 279 fprintf(stderr, " -C: use private colour map\n");
153 matthewc 520 fprintf(stderr, " -D: hide window manager decorations\n");
154 astrand 111 fprintf(stderr, " -K: keep window manager key bindings\n");
155 matthewc 520 fprintf(stderr, " -S: caption button size (single application mode)\n");
156 matthewc 223 fprintf(stderr, " -T: window title\n");
157 n-ki 569 fprintf(stderr, " -N: enable numlock syncronization\n");
158 stargo 636 fprintf(stderr, " -X: embed into another window with a given id.\n");
159 matthewc 520 fprintf(stderr, " -a: connection colour depth\n");
160 jsorg71 773 fprintf(stderr, " -z: enable rdp compression\n");
161 jsorg71 725 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 n-ki 569 fprintf(stderr, " -r: enable specified device redirection (this flag can be repeated)\n");
164 astrand 608 fprintf(stderr,
165     " '-r comport:COM1=/dev/ttyS0': enable serial redirection of /dev/ttyS0 to COM1\n");
166 n-ki 578 fprintf(stderr, " or COM1=/dev/ttyS0,COM2=/dev/ttyS1\n");
167 astrand 608 fprintf(stderr,
168 astrand 747 " '-r disk:floppy=/mnt/floppy': enable redirection of /mnt/floppy to 'floppy' share\n");
169     fprintf(stderr, " or 'floppy=/mnt/floppy,cdrom=/mnt/cdrom'\n");
170 forsberg 646 fprintf(stderr, " '-r clientname=<client name>': Set the client name displayed\n");
171     fprintf(stderr, " for redirected disks\n");
172 astrand 608 fprintf(stderr,
173     " '-r lptport:LPT1=/dev/lp0': enable parallel redirection of /dev/lp0 to LPT1\n");
174 n-ki 578 fprintf(stderr, " or LPT1=/dev/lp0,LPT2=/dev/lp1\n");
175 n-ki 569 fprintf(stderr, " '-r printer:mydeskjet': enable printer redirection\n");
176 astrand 608 fprintf(stderr,
177 n-ki 628 " or mydeskjet=\"HP LaserJet IIIP\" to enter server driver as well\n");
178 n-ki 630 fprintf(stderr, " '-r sound:[local|off|remote]': enable sound redirection\n");
179 n-ki 628 fprintf(stderr, " remote would leave sound on server\n");
180 matthewc 482 fprintf(stderr, " -0: attach to console\n");
181     fprintf(stderr, " -4: use RDP version 4\n");
182     fprintf(stderr, " -5: use RDP version 5 (default)\n");
183 matty 10 }
184    
185 astrand 944 static void
186 astrand 676 print_disconnect_reason(uint16 reason)
187     {
188     char *text;
189    
190     switch (reason)
191     {
192     case exDiscReasonNoInfo:
193     text = "No information available";
194     break;
195    
196     case exDiscReasonAPIInitiatedDisconnect:
197     text = "Server initiated disconnect";
198     break;
199    
200     case exDiscReasonAPIInitiatedLogoff:
201     text = "Server initiated logoff";
202     break;
203    
204     case exDiscReasonServerIdleTimeout:
205     text = "Server idle timeout reached";
206     break;
207    
208     case exDiscReasonServerLogonTimeout:
209     text = "Server logon timeout reached";
210     break;
211    
212     case exDiscReasonReplacedByOtherConnection:
213     text = "The session was replaced";
214     break;
215    
216     case exDiscReasonOutOfMemory:
217     text = "The server is out of memory";
218     break;
219    
220     case exDiscReasonServerDeniedConnection:
221     text = "The server denied the connection";
222     break;
223    
224     case exDiscReasonServerDeniedConnectionFips:
225     text = "The server denied the connection for security reason";
226     break;
227    
228     case exDiscReasonLicenseInternal:
229     text = "Internal licensing error";
230     break;
231    
232     case exDiscReasonLicenseNoLicenseServer:
233     text = "No license server available";
234     break;
235    
236     case exDiscReasonLicenseNoLicense:
237     text = "No valid license available";
238     break;
239    
240     case exDiscReasonLicenseErrClientMsg:
241     text = "Invalid licensing message";
242     break;
243    
244     case exDiscReasonLicenseHwidDoesntMatchLicense:
245     text = "Hardware id doesn't match software license";
246     break;
247    
248     case exDiscReasonLicenseErrClientLicense:
249     text = "Client license error";
250     break;
251    
252     case exDiscReasonLicenseCantFinishProtocol:
253     text = "Network error during licensing protocol";
254     break;
255    
256     case exDiscReasonLicenseClientEndedProtocol:
257     text = "Licensing protocol was not completed";
258     break;
259    
260     case exDiscReasonLicenseErrClientEncryption:
261     text = "Incorrect client license enryption";
262     break;
263    
264     case exDiscReasonLicenseCantUpgradeLicense:
265     text = "Can't upgrade license";
266     break;
267    
268     case exDiscReasonLicenseNoRemoteConnections:
269     text = "The server is not licensed to accept remote connections";
270     break;
271    
272     default:
273     if (reason > 0x1000 && reason < 0x7fff)
274     {
275     text = "Internal protocol error";
276     }
277     else
278     {
279     text = "Unknown reason";
280     }
281     }
282     fprintf(stderr, "disconnect: %s.\n", text);
283     }
284    
285 astrand 977 static void
286     rdesktop_reset_state(void)
287     {
288     rdp_reset_state();
289     }
290    
291 matthewc 211 static BOOL
292     read_password(char *password, int size)
293     {
294     struct termios tios;
295     BOOL ret = False;
296     int istty = 0;
297     char *p;
298    
299     if (tcgetattr(STDIN_FILENO, &tios) == 0)
300     {
301     fprintf(stderr, "Password: ");
302     tios.c_lflag &= ~ECHO;
303     tcsetattr(STDIN_FILENO, TCSANOW, &tios);
304     istty = 1;
305     }
306    
307     if (fgets(password, size, stdin) != NULL)
308     {
309     ret = True;
310    
311     /* strip final newline */
312     p = strchr(password, '\n');
313     if (p != NULL)
314     *p = 0;
315     }
316    
317     if (istty)
318     {
319     tios.c_lflag |= ECHO;
320     tcsetattr(STDIN_FILENO, TCSANOW, &tios);
321     fprintf(stderr, "\n");
322     }
323    
324     return ret;
325     }
326    
327 astrand 444 static void
328     parse_server_and_port(char *server)
329     {
330     char *p;
331     #ifdef IPv6
332     int addr_colons;
333     #endif
334    
335     #ifdef IPv6
336     p = server;
337     addr_colons = 0;
338     while (*p)
339     if (*p++ == ':')
340     addr_colons++;
341     if (addr_colons >= 2)
342     {
343     /* numeric IPv6 style address format - [1:2:3::4]:port */
344     p = strchr(server, ']');
345     if (*server == '[' && p != NULL)
346     {
347     if (*(p + 1) == ':' && *(p + 2) != '\0')
348 jsorg71 710 g_tcp_port_rdp = strtol(p + 2, NULL, 10);
349 astrand 444 /* remove the port number and brackets from the address */
350     *p = '\0';
351     strncpy(server, server + 1, strlen(server));
352     }
353     }
354     else
355     {
356     /* dns name or IPv4 style address format - server.example.com:port or 1.2.3.4:port */
357     p = strchr(server, ':');
358     if (p != NULL)
359     {
360 jsorg71 710 g_tcp_port_rdp = strtol(p + 1, NULL, 10);
361 astrand 444 *p = 0;
362     }
363     }
364     #else /* no IPv6 support */
365     p = strchr(server, ':');
366     if (p != NULL)
367     {
368 jsorg71 710 g_tcp_port_rdp = strtol(p + 1, NULL, 10);
369 astrand 444 *p = 0;
370     }
371     #endif /* IPv6 */
372    
373     }
374    
375 matty 10 /* Client program */
376 matty 25 int
377     main(int argc, char *argv[])
378 matty 10 {
379 matthewc 222 char server[64];
380 matty 30 char fullhostname[64];
381 matty 21 char domain[16];
382 astrand 479 char password[64];
383 astrand 238 char shell[128];
384 matty 21 char directory[32];
385 astrand 676 BOOL prompt_password, deactivated;
386 matty 30 struct passwd *pw;
387 astrand 676 uint32 flags, ext_disc_reason = 0;
388 matthewc 222 char *p;
389 matty 10 int c;
390 astrand 973 char *locale = NULL;
391 astrand 289 int username_option = 0;
392 astrand 977 int run_count = 0; /* Session Directory support */
393     BOOL continue_connect = True; /* Session Directory support */
394 matty 10
395 astrand 973 #ifdef HAVE_LOCALE_H
396 astrand 962 /* Set locale according to environment */
397     locale = setlocale(LC_ALL, "");
398     if (locale)
399     {
400 astrand 974 locale = xstrdup(locale);
401 astrand 962 }
402    
403 astrand 973 #endif
404 matty 21 flags = RDP_LOGON_NORMAL;
405 matthewc 211 prompt_password = False;
406 matty 21 domain[0] = password[0] = shell[0] = directory[0] = 0;
407 stargo 636 g_embed_wnd = 0;
408 matty 21
409 n-ki 569 g_num_devices = 0;
410    
411 astrand 333 #ifdef RDP2VNC
412 forsberg 471 #define VNCOPT "V:Q:"
413 astrand 333 #else
414     #define VNCOPT
415     #endif
416    
417 jsorg71 725 while ((c = getopt(argc, argv,
418 stargo 855 VNCOPT "u:L:d:s:c:p:n:k:g:fbBeEmzCDKS:T:NX:a:x:Pr:045h?")) != -1)
419 matty 10 {
420     switch (c)
421     {
422 astrand 333 #ifdef RDP2VNC
423     case 'V':
424     rfb_port = strtol(optarg, NULL, 10);
425     if (rfb_port < 100)
426     rfb_port += 5900;
427     break;
428    
429 forsberg 471 case 'Q':
430 astrand 333 defer_time = strtol(optarg, NULL, 10);
431     if (defer_time < 0)
432     defer_time = 0;
433     break;
434     #endif
435    
436 matty 10 case 'u':
437 jsorg71 437 STRNCPY(g_username, optarg, sizeof(g_username));
438 astrand 289 username_option = 1;
439 matty 10 break;
440    
441 stargo 855 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 matty 21 case 'd':
450 matty 30 STRNCPY(domain, optarg, sizeof(domain));
451 matty 21 break;
452    
453     case 's':
454 matty 30 STRNCPY(shell, optarg, sizeof(shell));
455 matty 21 break;
456    
457     case 'c':
458 matty 30 STRNCPY(directory, optarg, sizeof(directory));
459 matty 21 break;
460    
461 matty 30 case 'p':
462 matthewc 211 if ((optarg[0] == '-') && (optarg[1] == 0))
463     {
464     prompt_password = True;
465     break;
466     }
467    
468 matty 30 STRNCPY(password, optarg, sizeof(password));
469     flags |= RDP_LOGON_AUTO;
470 matthewc 211
471     /* try to overwrite argument so it won't appear in ps */
472 n-ki 171 p = optarg;
473     while (*p)
474     *(p++) = 'X';
475 matty 30 break;
476    
477 matty 10 case 'n':
478 jsorg71 710 STRNCPY(g_hostname, optarg, sizeof(g_hostname));
479 matty 10 break;
480    
481     case 'k':
482 astrand 975 STRNCPY(g_keymapname, optarg, sizeof(g_keymapname));
483 matty 10 break;
484    
485 matty 30 case 'g':
486 astrand 547 g_fullscreen = False;
487 astrand 263 if (!strcmp(optarg, "workarea"))
488     {
489 jsorg71 447 g_width = g_height = 0;
490 astrand 263 break;
491     }
492    
493 jsorg71 447 g_width = strtol(optarg, &p, 10);
494 astrand 500 if (g_width <= 0)
495     {
496     error("invalid geometry\n");
497     return 1;
498     }
499    
500 matty 30 if (*p == 'x')
501 stargo 800 g_height = strtol(p + 1, &p, 10);
502 matty 30
503 astrand 500 if (g_height <= 0)
504 matty 30 {
505     error("invalid geometry\n");
506     return 1;
507     }
508 astrand 500
509     if (*p == '%')
510 stargo 800 {
511 astrand 500 g_width = -g_width;
512 stargo 800 p++;
513     }
514 astrand 500
515 stargo 800 if (*p == '+' || *p == '-')
516 stargo 867 {
517     g_pos |= (*p == '-') ? 2 : 1;
518 stargo 800 g_xpos = strtol(p, &p, 10);
519 astrand 801
520 stargo 867 }
521 stargo 800 if (*p == '+' || *p == '-')
522 stargo 867 {
523     g_pos |= (*p == '-') ? 4 : 1;
524 stargo 800 g_ypos = strtol(p, NULL, 10);
525 stargo 867 }
526 stargo 800
527 matty 10 break;
528    
529 matty 30 case 'f':
530 jsorg71 447 g_fullscreen = True;
531 matty 30 break;
532    
533 matty 10 case 'b':
534 jsorg71 678 g_bitmap_cache = False;
535 matty 10 break;
536    
537 stargo 609 case 'B':
538     g_ownbackstore = False;
539     break;
540    
541 matty 30 case 'e':
542 jsorg71 437 g_encryption = False;
543 matty 10 break;
544 astrand 435 case 'E':
545 forsberg 427 packet_encryption = False;
546     break;
547 matty 30 case 'm':
548 jsorg71 447 g_sendmotion = False;
549 matty 28 break;
550 matty 29
551 n-ki 279 case 'C':
552 jsorg71 450 g_owncolmap = True;
553 n-ki 279 break;
554    
555 matthewc 520 case 'D':
556     g_hide_decorations = True;
557     break;
558    
559 astrand 76 case 'K':
560 jsorg71 450 g_grab_keyboard = False;
561 astrand 76 break;
562    
563 matthewc 520 case 'S':
564     if (!strcmp(optarg, "standard"))
565     {
566     g_win_button_size = 18;
567     break;
568     }
569    
570     g_win_button_size = strtol(optarg, &p, 10);
571    
572     if (*p)
573     {
574     error("invalid button size\n");
575     return 1;
576     }
577    
578     break;
579    
580 matthewc 223 case 'T':
581 jsorg71 450 STRNCPY(g_title, optarg, sizeof(g_title));
582 astrand 107 break;
583    
584 astrand 552 case 'N':
585     g_numlock_sync = True;
586     break;
587    
588 stargo 636 case 'X':
589 stargo 871 g_embed_wnd = strtol(optarg, NULL, 0);
590 stargo 636 break;
591 astrand 651
592 jsorg71 309 case 'a':
593 jsorg71 438 g_server_bpp = strtol(optarg, NULL, 10);
594     if (g_server_bpp != 8 && g_server_bpp != 16 && g_server_bpp != 15
595     && g_server_bpp != 24)
596 jsorg71 309 {
597     error("invalid server bpp\n");
598     return 1;
599     }
600     break;
601    
602 jsorg71 773 case 'z':
603     DEBUG(("rdp compression enabled\n"));
604 jdmeijer 889 flags |= (RDP_LOGON_COMPRESSION | RDP_LOGON_COMPRESSION2);
605 jsorg71 773 break;
606    
607 stargo 637 case 'x':
608     if (strncmp("modem", optarg, 1) == 0)
609     {
610 astrand 651 g_rdp5_performanceflags =
611     RDP5_NO_WALLPAPER | RDP5_NO_FULLWINDOWDRAG |
612     RDP5_NO_MENUANIMATIONS | RDP5_NO_THEMING;
613 stargo 637 }
614     else if (strncmp("broadband", optarg, 1) == 0)
615     {
616     g_rdp5_performanceflags = RDP5_NO_WALLPAPER;
617     }
618     else if (strncmp("lan", optarg, 1) == 0)
619     {
620     g_rdp5_performanceflags = RDP5_DISABLE_NOTHING;
621     }
622     else
623     {
624     g_rdp5_performanceflags = strtol(optarg, NULL, 16);
625     }
626     break;
627 astrand 651
628 jsorg71 725 case 'P':
629     g_bitmap_cache_persist_enable = True;
630     break;
631    
632 matthewc 520 case 'r':
633 n-ki 569
634     if (strncmp("sound", optarg, 5) == 0)
635     {
636 n-ki 629 optarg += 5;
637    
638     if (*optarg == ':')
639 n-ki 628 {
640 n-ki 629 *optarg++;
641     while ((p = next_arg(optarg, ',')))
642     {
643     if (strncmp("remote", optarg, 6) == 0)
644     flags |= RDP_LOGON_LEAVE_AUDIO;
645 n-ki 628
646 n-ki 630 if (strncmp("local", optarg, 5) == 0)
647 stargo 501 #ifdef WITH_RDPSND
648 n-ki 629 g_rdpsnd = True;
649 matthewc 520 #else
650 stargo 739 warning("Not compiled with sound support\n");
651 matthewc 520 #endif
652 n-ki 629
653     if (strncmp("off", optarg, 3) == 0)
654 stargo 685 #ifdef WITH_RDPSND
655 n-ki 629 g_rdpsnd = False;
656 stargo 685 #else
657 stargo 739 warning("Not compiled with sound support\n");
658 stargo 685 #endif
659 n-ki 629
660     optarg = p;
661 n-ki 628 }
662     }
663     else
664     {
665     #ifdef WITH_RDPSND
666     g_rdpsnd = True;
667     #else
668 stargo 739 warning("Not compiled with sound support\n");
669 n-ki 628 #endif
670     }
671 n-ki 569 }
672     else if (strncmp("disk", optarg, 4) == 0)
673     {
674     /* -r disk:h:=/mnt/floppy */
675     disk_enum_devices(&g_num_devices, optarg + 4);
676     }
677     else if (strncmp("comport", optarg, 7) == 0)
678     {
679     serial_enum_devices(&g_num_devices, optarg + 7);
680     }
681     else if (strncmp("lptport", optarg, 7) == 0)
682     {
683     parallel_enum_devices(&g_num_devices, optarg + 7);
684     }
685     else if (strncmp("printer", optarg, 7) == 0)
686     {
687     printer_enum_devices(&g_num_devices, optarg + 7);
688     }
689 forsberg 646 else if (strncmp("clientname", optarg, 7) == 0)
690     {
691 astrand 651 g_rdpdr_clientname = xmalloc(strlen(optarg + 11) + 1);
692 forsberg 646 strcpy(g_rdpdr_clientname, optarg + 11);
693     }
694 n-ki 569 else
695     {
696     warning("Unknown -r argument\n\n\tPossible arguments are: comport, disk, lptport, printer, sound\n");
697     }
698 stargo 501 break;
699 matthewc 520
700 matthewc 482 case '0':
701     g_console_session = True;
702     break;
703    
704 astrand 458 case '4':
705     g_use_rdp5 = False;
706     break;
707    
708 forsberg 350 case '5':
709 jsorg71 438 g_use_rdp5 = True;
710 forsberg 350 break;
711 astrand 458
712 matty 28 case 'h':
713 matty 10 case '?':
714     default:
715     usage(argv[0]);
716     return 1;
717     }
718     }
719    
720 stargo 610 if (argc - optind != 1)
721 matty 10 {
722     usage(argv[0]);
723     return 1;
724     }
725    
726 matthewc 222 STRNCPY(server, argv[optind], sizeof(server));
727 astrand 444 parse_server_and_port(server);
728 matty 10
729 astrand 289 if (!username_option)
730 matty 10 {
731     pw = getpwuid(getuid());
732     if ((pw == NULL) || (pw->pw_name == NULL))
733     {
734 matty 30 error("could not determine username, use -u\n");
735 matty 10 return 1;
736     }
737    
738 jsorg71 437 STRNCPY(g_username, pw->pw_name, sizeof(g_username));
739 matty 10 }
740    
741 stargo 855 #ifdef HAVE_ICONV
742     if (g_codepage[0] == 0)
743     {
744     if (setlocale(LC_CTYPE, ""))
745     {
746     STRNCPY(g_codepage, nl_langinfo(CODESET), sizeof(g_codepage));
747     }
748     else
749     {
750     STRNCPY(g_codepage, DEFAULT_CODEPAGE, sizeof(g_codepage));
751     }
752     }
753     #endif
754 stargo 861
755 jsorg71 710 if (g_hostname[0] == 0)
756 matty 10 {
757 matty 30 if (gethostname(fullhostname, sizeof(fullhostname)) == -1)
758 matty 10 {
759 matty 30 error("could not determine local hostname, use -n\n");
760 matty 10 return 1;
761     }
762 matty 30
763     p = strchr(fullhostname, '.');
764     if (p != NULL)
765     *p = 0;
766    
767 jsorg71 710 STRNCPY(g_hostname, fullhostname, sizeof(g_hostname));
768 matty 10 }
769    
770 astrand 975 if (g_keymapname[0] == 0)
771 astrand 973 {
772     if (locale && xkeymap_from_locale(locale))
773     {
774 astrand 975 fprintf(stderr, "Autoselected keyboard map %s\n", g_keymapname);
775 astrand 973 }
776     else
777     {
778 astrand 975 STRNCPY(g_keymapname, "en-us", sizeof(g_keymapname));
779 astrand 973 }
780     }
781     if (locale)
782     xfree(locale);
783    
784    
785 matthewc 211 if (prompt_password && read_password(password, sizeof(password)))
786     flags |= RDP_LOGON_AUTO;
787 matty 30
788 jsorg71 450 if (g_title[0] == 0)
789 astrand 107 {
790 jsorg71 450 strcpy(g_title, "rdesktop - ");
791     strncat(g_title, server, sizeof(g_title) - sizeof("rdesktop - "));
792 astrand 107 }
793 matty 12
794 astrand 333 #ifdef RDP2VNC
795     rdp2vnc_connect(server, flags, domain, password, shell, directory);
796 forsberg 424 return 0;
797 astrand 333 #else
798    
799 astrand 82 if (!ui_init())
800     return 1;
801 astrand 66
802 matthewc 474 #ifdef WITH_RDPSND
803 stargo 501 if (g_rdpsnd)
804     rdpsnd_init();
805 matthewc 474 #endif
806 n-ki 569 rdpdr_init();
807 forsberg 416
808 astrand 977 while (run_count < 2 && continue_connect) /* add support for Session Directory; only reconnect once */
809     {
810     if (run_count == 0)
811     {
812     if (!rdp_connect(server, flags, domain, password, shell, directory))
813     return 1;
814     }
815     else if (!rdp_reconnect
816     (server, flags, domain, password, shell, directory, g_redirect_cookie))
817     return 1;
818 matthewc 53
819 astrand 977 /* By setting encryption to False here, we have an encrypted login
820     packet but unencrypted transfer of other packets */
821     if (!packet_encryption)
822     g_encryption = False;
823 forsberg 427
824    
825 astrand 977 DEBUG(("Connection successful.\n"));
826     memset(password, 0, sizeof(password));
827 matthewc 53
828 astrand 977 if (run_count == 0)
829     if (!ui_create_window())
830     continue_connect = False;
831    
832     if (continue_connect)
833     rdp_main_loop(&deactivated, &ext_disc_reason);
834    
835     DEBUG(("Disconnecting...\n"));
836     rdp_disconnect();
837    
838     if ((g_redirect == True) && (run_count == 0)) /* Support for Session Directory */
839     {
840     /* reset state of major globals */
841     rdesktop_reset_state();
842    
843     STRNCPY(domain, g_redirect_domain, sizeof(domain));
844     STRNCPY(g_username, g_redirect_username, sizeof(g_username));
845     STRNCPY(password, g_redirect_password, sizeof(password));
846     STRNCPY(server, g_redirect_server, sizeof(server));
847     flags |= RDP_LOGON_AUTO;
848    
849     g_redirect = False;
850     }
851     else
852     {
853     continue_connect = False;
854     ui_destroy_window();
855     break;
856     }
857    
858     run_count++;
859 matty 10 }
860    
861 jsorg71 725 cache_save_state();
862 matthewc 188 ui_deinit();
863 astrand 333
864 astrand 676 if (ext_disc_reason >= 2)
865     print_disconnect_reason(ext_disc_reason);
866    
867     if (deactivated)
868     {
869     /* clean disconnect */
870 forsberg 424 return 0;
871 astrand 676 }
872 forsberg 424 else
873 astrand 676 {
874     if (ext_disc_reason == exDiscReasonAPIInitiatedDisconnect
875     || ext_disc_reason == exDiscReasonAPIInitiatedLogoff)
876     {
877     /* not so clean disconnect, but nothing to worry about */
878     return 0;
879     }
880     else
881     {
882     /* return error */
883     return 2;
884     }
885     }
886 forsberg 424
887 astrand 333 #endif
888    
889 matty 10 }
890    
891 matthewc 220 #ifdef EGD_SOCKET
892     /* Read 32 random bytes from PRNGD or EGD socket (based on OpenSSL RAND_egd) */
893     static BOOL
894     generate_random_egd(uint8 * buf)
895     {
896     struct sockaddr_un addr;
897     BOOL ret = False;
898     int fd;
899    
900     fd = socket(AF_UNIX, SOCK_STREAM, 0);
901     if (fd == -1)
902     return False;
903    
904     addr.sun_family = AF_UNIX;
905     memcpy(addr.sun_path, EGD_SOCKET, sizeof(EGD_SOCKET));
906 astrand 259 if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
907 matthewc 220 goto err;
908    
909     /* PRNGD and EGD use a simple communications protocol */
910 astrand 259 buf[0] = 1; /* Non-blocking (similar to /dev/urandom) */
911     buf[1] = 32; /* Number of requested random bytes */
912 matthewc 220 if (write(fd, buf, 2) != 2)
913     goto err;
914    
915 astrand 259 if ((read(fd, buf, 1) != 1) || (buf[0] == 0)) /* Available? */
916 matthewc 220 goto err;
917    
918     if (read(fd, buf, 32) != 32)
919     goto err;
920    
921     ret = True;
922    
923 astrand 259 err:
924 matthewc 220 close(fd);
925     return ret;
926     }
927     #endif
928    
929 matty 10 /* Generate a 32-byte random for the secure transport code. */
930 matty 25 void
931 astrand 64 generate_random(uint8 * random)
932 matty 10 {
933     struct stat st;
934 matty 22 struct tms tmsbuf;
935 matthewc 220 MD5_CTX md5;
936     uint32 *r;
937     int fd, n;
938 matty 10
939 matthewc 220 /* If we have a kernel random device, try that first */
940 matty 30 if (((fd = open("/dev/urandom", O_RDONLY)) != -1)
941     || ((fd = open("/dev/random", O_RDONLY)) != -1))
942 matty 10 {
943 matthewc 220 n = read(fd, random, 32);
944 matty 10 close(fd);
945 matthewc 220 if (n == 32)
946     return;
947 matty 10 }
948    
949 matthewc 220 #ifdef EGD_SOCKET
950     /* As a second preference use an EGD */
951     if (generate_random_egd(random))
952     return;
953     #endif
954    
955 matty 10 /* Otherwise use whatever entropy we can gather - ideas welcome. */
956 astrand 259 r = (uint32 *) random;
957 matty 10 r[0] = (getpid()) | (getppid() << 16);
958     r[1] = (getuid()) | (getgid() << 16);
959 matty 24 r[2] = times(&tmsbuf); /* system uptime (clocks) */
960     gettimeofday((struct timeval *) &r[3], NULL); /* sec and usec */
961 matty 10 stat("/tmp", &st);
962     r[5] = st.st_atime;
963     r[6] = st.st_mtime;
964     r[7] = st.st_ctime;
965 matthewc 220
966     /* Hash both halves with MD5 to obscure possible patterns */
967     MD5_Init(&md5);
968 astrand 259 MD5_Update(&md5, random, 16);
969 matthewc 220 MD5_Final(random, &md5);
970 astrand 259 MD5_Update(&md5, random + 16, 16);
971     MD5_Final(random + 16, &md5);
972 matty 10 }
973    
974     /* malloc; exit if out of memory */
975 matty 25 void *
976     xmalloc(int size)
977 matty 10 {
978     void *mem = malloc(size);
979     if (mem == NULL)
980     {
981 matty 30 error("xmalloc %d\n", size);
982 matty 10 exit(1);
983     }
984     return mem;
985     }
986    
987 astrand 974 /* strdup */
988     char *
989     xstrdup(const char *s)
990     {
991     char *mem = strdup(s);
992     if (mem == NULL)
993     {
994     perror("strdup");
995     exit(1);
996     }
997     return mem;
998     }
999    
1000 matty 10 /* realloc; exit if out of memory */
1001 matty 25 void *
1002     xrealloc(void *oldmem, int size)
1003 matty 10 {
1004 astrand 782 void *mem;
1005 jsorg71 773
1006     if (size < 1)
1007     size = 1;
1008     mem = realloc(oldmem, size);
1009 matty 10 if (mem == NULL)
1010     {
1011 matty 30 error("xrealloc %d\n", size);
1012 matty 10 exit(1);
1013     }
1014     return mem;
1015     }
1016    
1017     /* free */
1018 matty 25 void
1019     xfree(void *mem)
1020 matty 10 {
1021     free(mem);
1022     }
1023    
1024 matty 30 /* report an error */
1025 matty 25 void
1026 matty 30 error(char *format, ...)
1027     {
1028     va_list ap;
1029    
1030     fprintf(stderr, "ERROR: ");
1031    
1032     va_start(ap, format);
1033     vfprintf(stderr, format, ap);
1034     va_end(ap);
1035     }
1036    
1037 matthewc 297 /* report a warning */
1038     void
1039     warning(char *format, ...)
1040     {
1041     va_list ap;
1042    
1043     fprintf(stderr, "WARNING: ");
1044    
1045     va_start(ap, format);
1046     vfprintf(stderr, format, ap);
1047     va_end(ap);
1048     }
1049    
1050 matty 30 /* report an unimplemented protocol feature */
1051     void
1052     unimpl(char *format, ...)
1053     {
1054     va_list ap;
1055    
1056     fprintf(stderr, "NOT IMPLEMENTED: ");
1057    
1058     va_start(ap, format);
1059     vfprintf(stderr, format, ap);
1060     va_end(ap);
1061     }
1062    
1063     /* produce a hex dump */
1064     void
1065 n-ki 569 hexdump(unsigned char *p, unsigned int len)
1066 matty 10 {
1067     unsigned char *line = p;
1068 jsorg71 376 int i, thisline, offset = 0;
1069 matty 10
1070     while (offset < len)
1071     {
1072 matthewc 169 printf("%04x ", offset);
1073 matty 10 thisline = len - offset;
1074     if (thisline > 16)
1075     thisline = 16;
1076    
1077     for (i = 0; i < thisline; i++)
1078 matthewc 169 printf("%02x ", line[i]);
1079 matty 10
1080 matty 30 for (; i < 16; i++)
1081 matthewc 169 printf(" ");
1082 matty 30
1083 matty 10 for (i = 0; i < thisline; i++)
1084 matthewc 169 printf("%c", (line[i] >= 0x20 && line[i] < 0x7f) ? line[i] : '.');
1085 matty 10
1086 matthewc 169 printf("\n");
1087 matty 10 offset += thisline;
1088     line += thisline;
1089     }
1090     }
1091 astrand 325
1092 n-ki 569 /*
1093 n-ki 583 input: src is the string we look in for needle.
1094     Needle may be escaped by a backslash, in
1095     that case we ignore that particular needle.
1096 n-ki 569 return value: returns next src pointer, for
1097     succesive executions, like in a while loop
1098     if retval is 0, then there are no more args.
1099     pitfalls:
1100     src is modified. 0x00 chars are inserted to
1101     terminate strings.
1102     return val, points on the next val chr after ins
1103     0x00
1104 astrand 325
1105 n-ki 569 example usage:
1106     while( (pos = next_arg( optarg, ',')) ){
1107     printf("%s\n",optarg);
1108     optarg=pos;
1109     }
1110    
1111     */
1112     char *
1113     next_arg(char *src, char needle)
1114     {
1115     char *nextval;
1116 n-ki 571 char *p;
1117 n-ki 575 char *mvp = 0;
1118 n-ki 569
1119 n-ki 575 /* EOS */
1120 n-ki 569 if (*src == (char) 0x00)
1121     return 0;
1122    
1123 n-ki 571 p = src;
1124 n-ki 575 /* skip escaped needles */
1125 astrand 580 while ((nextval = strchr(p, needle)))
1126 n-ki 571 {
1127 n-ki 575 mvp = nextval - 1;
1128     /* found backslashed needle */
1129 astrand 580 if (*mvp == '\\' && (mvp > src))
1130 n-ki 575 {
1131     /* move string one to the left */
1132 astrand 580 while (*(mvp + 1) != (char) 0x00)
1133 n-ki 575 {
1134 astrand 580 *mvp = *(mvp + 1);
1135 n-ki 575 *mvp++;
1136     }
1137 astrand 580 *mvp = (char) 0x00;
1138 n-ki 575 p = nextval;
1139     }
1140     else
1141     {
1142 astrand 580 p = nextval + 1;
1143 n-ki 571 break;
1144 n-ki 575 }
1145    
1146 n-ki 571 }
1147    
1148 n-ki 575 /* more args available */
1149 n-ki 569 if (nextval)
1150     {
1151     *nextval = (char) 0x00;
1152     return ++nextval;
1153     }
1154    
1155 n-ki 575 /* no more args after this, jump to EOS */
1156 n-ki 569 nextval = src + strlen(src);
1157     return nextval;
1158     }
1159    
1160    
1161 stargo 570 void
1162 astrand 580 toupper_str(char *p)
1163 n-ki 569 {
1164 astrand 580 while (*p)
1165     {
1166     if ((*p >= 'a') && (*p <= 'z'))
1167 stargo 570 *p = toupper((int) *p);
1168 n-ki 569 p++;
1169     }
1170     }
1171    
1172    
1173     /* not all clibs got ltoa */
1174     #define LTOA_BUFSIZE (sizeof(long) * 8 + 1)
1175    
1176     char *
1177 stargo 603 l_to_a(long N, int base)
1178 n-ki 569 {
1179     static char ret[LTOA_BUFSIZE];
1180    
1181 n-ki 583 char *head = ret, buf[LTOA_BUFSIZE], *tail = buf + sizeof(buf);
1182 n-ki 569
1183 n-ki 583 register int divrem;
1184    
1185     if (base < 36 || 2 > base)
1186 n-ki 569 base = 10;
1187    
1188 n-ki 583 if (N < 0)
1189 n-ki 569 {
1190     *head++ = '-';
1191 n-ki 583 N = -N;
1192 n-ki 569 }
1193    
1194 n-ki 583 tail = buf + sizeof(buf);
1195     *--tail = 0;
1196    
1197     do
1198 n-ki 569 {
1199 n-ki 583 divrem = N % base;
1200     *--tail = (divrem <= 9) ? divrem + '0' : divrem + 'a' - 10;
1201     N /= base;
1202 n-ki 569 }
1203 n-ki 583 while (N);
1204 n-ki 569
1205 n-ki 583 strcpy(head, tail);
1206 n-ki 569 return ret;
1207     }
1208    
1209    
1210 astrand 325 int
1211     load_licence(unsigned char **data)
1212     {
1213 matthewc 367 char *home, *path;
1214 astrand 325 struct stat st;
1215 matthewc 367 int fd, length;
1216 astrand 325
1217     home = getenv("HOME");
1218     if (home == NULL)
1219     return -1;
1220    
1221 jsorg71 710 path = (char *) xmalloc(strlen(home) + strlen(g_hostname) + sizeof("/.rdesktop/licence."));
1222     sprintf(path, "%s/.rdesktop/licence.%s", home, g_hostname);
1223 astrand 325
1224     fd = open(path, O_RDONLY);
1225     if (fd == -1)
1226     return -1;
1227    
1228     if (fstat(fd, &st))
1229     return -1;
1230    
1231 forsberg 416 *data = (uint8 *) xmalloc(st.st_size);
1232 matthewc 367 length = read(fd, *data, st.st_size);
1233     close(fd);
1234     xfree(path);
1235     return length;
1236 astrand 325 }
1237    
1238     void
1239     save_licence(unsigned char *data, int length)
1240     {
1241 matthewc 367 char *home, *path, *tmppath;
1242     int fd;
1243 astrand 325
1244     home = getenv("HOME");
1245     if (home == NULL)
1246     return;
1247    
1248 jsorg71 710 path = (char *) xmalloc(strlen(home) + strlen(g_hostname) + sizeof("/.rdesktop/licence."));
1249 astrand 325
1250 matthewc 367 sprintf(path, "%s/.rdesktop", home);
1251     if ((mkdir(path, 0700) == -1) && errno != EEXIST)
1252 astrand 325 {
1253 matthewc 367 perror(path);
1254     return;
1255 astrand 325 }
1256    
1257 matthewc 367 /* write licence to licence.hostname.new, then atomically rename to licence.hostname */
1258 astrand 325
1259 jsorg71 710 sprintf(path, "%s/.rdesktop/licence.%s", home, g_hostname);
1260 forsberg 416 tmppath = (char *) xmalloc(strlen(path) + sizeof(".new"));
1261 matthewc 367 strcpy(tmppath, path);
1262     strcat(tmppath, ".new");
1263    
1264 forsberg 416 fd = open(tmppath, O_WRONLY | O_CREAT | O_TRUNC, 0600);
1265 matthewc 367 if (fd == -1)
1266 astrand 325 {
1267 matthewc 367 perror(tmppath);
1268     return;
1269 astrand 325 }
1270    
1271 matthewc 367 if (write(fd, data, length) != length)
1272 astrand 325 {
1273 matthewc 367 perror(tmppath);
1274     unlink(tmppath);
1275 astrand 325 }
1276 matthewc 367 else if (rename(tmppath, path) == -1)
1277 astrand 325 {
1278 matthewc 367 perror(path);
1279     unlink(tmppath);
1280 astrand 325 }
1281    
1282 matthewc 367 close(fd);
1283     xfree(tmppath);
1284     xfree(path);
1285 astrand 325 }
1286 jsorg71 725
1287     /* Create the bitmap cache directory */
1288     BOOL
1289     rd_pstcache_mkdir(void)
1290     {
1291     char *home;
1292     char bmpcache_dir[256];
1293    
1294     home = getenv("HOME");
1295    
1296     if (home == NULL)
1297     return False;
1298    
1299     sprintf(bmpcache_dir, "%s/%s", home, ".rdesktop");
1300    
1301     if ((mkdir(bmpcache_dir, S_IRWXU) == -1) && errno != EEXIST)
1302     {
1303     perror(bmpcache_dir);
1304     return False;
1305     }
1306    
1307     sprintf(bmpcache_dir, "%s/%s", home, ".rdesktop/cache");
1308    
1309     if ((mkdir(bmpcache_dir, S_IRWXU) == -1) && errno != EEXIST)
1310     {
1311     perror(bmpcache_dir);
1312     return False;
1313     }
1314    
1315     return True;
1316     }
1317    
1318     /* open a file in the .rdesktop directory */
1319     int
1320     rd_open_file(char *filename)
1321     {
1322     char *home;
1323     char fn[256];
1324 astrand 738 int fd;
1325 jsorg71 725
1326     home = getenv("HOME");
1327     if (home == NULL)
1328     return -1;
1329     sprintf(fn, "%s/.rdesktop/%s", home, filename);
1330     fd = open(fn, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
1331     if (fd == -1)
1332     perror(fn);
1333     return fd;
1334     }
1335    
1336     /* close file */
1337     void
1338     rd_close_file(int fd)
1339     {
1340 astrand 738 close(fd);
1341 jsorg71 725 }
1342    
1343     /* read from file*/
1344     int
1345     rd_read_file(int fd, void *ptr, int len)
1346     {
1347 astrand 738 return read(fd, ptr, len);
1348 jsorg71 725 }
1349    
1350     /* write to file */
1351     int
1352 astrand 738 rd_write_file(int fd, void *ptr, int len)
1353 jsorg71 725 {
1354 astrand 738 return write(fd, ptr, len);
1355 jsorg71 725 }
1356    
1357     /* move file pointer */
1358     int
1359     rd_lseek_file(int fd, int offset)
1360     {
1361 astrand 738 return lseek(fd, offset, SEEK_SET);
1362 jsorg71 725 }
1363    
1364     /* do a write lock on a file */
1365     BOOL
1366     rd_lock_file(int fd, int start, int len)
1367     {
1368     struct flock lock;
1369    
1370     lock.l_type = F_WRLCK;
1371     lock.l_whence = SEEK_SET;
1372     lock.l_start = start;
1373     lock.l_len = len;
1374     if (fcntl(fd, F_SETLK, &lock) == -1)
1375     return False;
1376     return True;
1377     }

  ViewVC Help
Powered by ViewVC 1.1.26